@charset "utf-8";


* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    transition: color .3s;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    color: #333;
    font-family: "微软雅黑";
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
}

body {
    font-size: .15rem;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

img,
input {
    border: 0;
    outline: none;
}


html {
    font-size: 5.208333vw;
}

body {
    font-size: .15rem;
}

.wap {
    display: none !important;
}

.w17 {
    width: 17rem;
    margin: 0 auto;
}

 

@media screen and (max-width:1024px) {
    html {
        font-size: 100px;
    }
}


@media screen and (max-width:1024px) {
    .w17 {
        width: auto;
        max-width: none;
        padding-left: 10px;
        padding-right: 10px;
    }

  

    .pc {
        display: none !important;
    }

    .wap {
        display: block !important;
    }
}

/* 滚动条样式 */
@media screen and (min-width:1024px) {
    ::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    ::-webkit-scrollbar-track {
        width: 4px;
        /* background: rgba(0, 0, 0, .5); */
        -webkit-border-radius: 2em;
        -moz-border-radius: 2em;
        border-radius: 2em;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(108, 134, 170, 0.2);
        background-clip: padding-box;
        min-height: 28px;
        -webkit-border-radius: 2em;
        -moz-border-radius: 2em;
        border-radius: 2em;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(108, 134, 170, 0.2);
    }
}

body .clear {
    clear: both;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

/* 弹性布局的常用样式预设 */
.flex {
    display: flex;
}

/* 弹性布局-横向对齐方式 */
.flex-jcfs {
    display: flex;
    justify-content: flex-start;
}

.flex-jcct {
    display: flex;
    justify-content: center;
}

.flex-jcfe {
    display: flex;
    justify-content: flex-end;
}

.flex-jcsb {
    display: flex;
    justify-content: space-between;
}

.flex-jcsa {
    display: flex;
    justify-content: space-around;
}

/* 弹性布局-纵向对齐方式 */
.flex-alfs {
    display: flex;
    align-items: flex-start;
}

.flex-alct {
    display: flex;
    align-items: center;
}

.flex-alend {
    display: flex;
    align-items: flex-end;
}