/* CSS Document */
.mc{ margin: 0 auto !important;}
.wow {
    transition-delay: 0.3s;
}
.pc {
    display: block;
}
.mob {
    display: none;
}
.wrap{
    width: 100%;
    max-width: 1436px;
    padding: 0 15px;
	margin:0 auto;
}
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 320px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px -1px 0 #F2F2F2 inset;
    transition: all .3s;
    z-index: 10;
}
.header.no-show{
    transform: translateY(-100%);
}
.logo {
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: all .3s;
    height: 100px;
}
.logo a {
    display: block;
    transition: all .3s;
}
.logo img {
    height: 58px;
    transition: all .3s;
}
.nav {
    float: right;
}
.navBox {
    margin: 0 auto;
    text-align: right;
}
.navList {
    list-style: none;
    margin: 0;
    font-size: 0;
    display: inline-block;
    vertical-align: top;
    transition: all .3s;
}
.navList > li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-left: 1.4vw;
}
.navList > li > a {
    position: relative;
    display: block;
    line-height: 100px;
    font-size: 18px;
    color: #333333;
    font-weight: bold;
    transition: all .3s;
}
.navList > li > a::before{
    display: block;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: var(--baseColor);
    transition: all .3s;
}
.navList > li > a:hover,
.navList > li.cur > a,
.navList > li.active > a{
    color: var(--baseColor);
}
.navList > li > a:hover::before,
.navList > li.cur > a::before,
.navList > li.active > a::before{
    left: 0;
    right: auto;
    width: 100%;
}
.navSecond{
    list-style: none;
    position: absolute;
    left: 50%;
    top: auto;
    width: 100%;
    min-width: 140px;
    font-size: 16px;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 5px 5px;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    display: none;
}
.navCon > li{
    list-style: none;
}
.navCon > li > a{
    display: block;
    color: #333333;
    line-height: 1.4;
    padding: 10px 0;
    transition: all .3s;
}
.navCon > li > a:hover{
    color: var(--baseColor);
    background-color: #F2F2F2;
}
.navClose{
    display: none;
}
.navMob{
    display: none;
}
.navRig {
    position: relative;
    float: right;
    line-height: 80px;
    text-align: right;
    font-size: 0;
    transition: all .3s;
}
.navRig li {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    position: relative;
}
.navRig li + li{
    margin-left: .1rem;
}
.navRig a,
.navRig i,
.navRig span {
    display: inline-block;
    vertical-align: middle;
    color: #666666;
    line-height: 34px;
}
.navRigCon{
    position: absolute;
    right: 0;
    top: auto;
    background-color: #EEEEEE;
    color: #222222;
    white-space: nowrap;
    line-height: 22px;
    border: 1px solid #DDDDDD;
    border-radius: 0 0 10px 5px;
    padding: .1rem 0;
    text-align: left;
    width: 100%;
    min-width: 120px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}
.navRigCon a{
    display: block;
    font-size: 14px;
    color: #222222;
    padding: 0 15px;
}
.navRigCon a:hover{
    color: var(--baseColor);
}
.navRig li.navCompany{
    width: 120px;
}
.navRig li.navCompany span{
    width: 100%;
    background: url(../images/icon_arrow.png) right center #EEEEEE no-repeat;
    border: 1px solid #DDDDDD;
    border-radius: 10px 5px 10px 5px;
    text-align: center;
    cursor: pointer;
}
.navRig li.navCompany span i{
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    background: url(../images/icon_company.png) center center no-repeat;
    margin-top: -4px;
}
.navRig li.navCompany span i.icon_down{
    background: url(../images/icon_down.png) center center no-repeat;
    transition: all .3s;
}
.navRig li.navCompany.cur span{
    border-radius: 10px 5px 0 0;
}
.navRig li.navCompany.cur span i.icon_down{
    transform: rotate(180deg);
}
.navRig li.navCompany .navRigCon{
    transform: translateY(-22px);
    border-top: none;
}
.navRig li.navSearch > span {
    width: 36px;
    height: 36px;
    background: url(../images/icon_search.png) center center #EEEEEE no-repeat;
    border: 1px solid #DDDDDD;
    border-radius: 10px 5px 10px 5px;
    cursor: pointer;
}
.navRig li.navLang > .icon_lang{
    width: 36px;
    height: 36px;
    background: url(../images/icon_lang.png) center center #EEEEEE no-repeat;
    border: 1px solid #DDDDDD;
    border-radius: 10px 5px 10px 5px;
}
.navRig li.navLang > .icon_lang::before{
    display: block;
    content: "";
    width: 34px;
    height: 15px;
    background-color: #EEEEEE;
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    position: absolute;
    right: 0;
    top: auto;
    margin-top: 32px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.navRig li.navLang.cur > .icon_lang{
    border-radius: 10px 5px 0 0;
}
.navRig li.navLang.cur > .icon_lang::before{
    opacity: 1;
    visibility: visible;
}
.navRig li.navLang .navRigCon{
    transform: translateY(-10px);
    border-radius: 10px 0 10px 5px;
}
.navRig li.navBtn {
    cursor: pointer;
    display: none;
}
.navRig li.navBtn::before{
    display: none;
}
.navBtn span {
    width: 22px;
    height: 30px;
    position: relative;
}
.navBtn span b {
    display: block;
    width: 100%;
    height: 2px;
    background: #333333;
    position: absolute;
    left: 0;
    top: calc((100% - 4px) / 2);
    transition: all .3s;
}
.navBtn span b:nth-child(1) {
    transform: translateY(6px) rotate(0deg);
}
.navBtn span b:nth-child(3) {
    transform: translateY(-6px) rotate(0deg);
}
.navBtn.active b:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}
.navBtn.active b:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.navBtn.active b:nth-child(2) {
    opacity: 0;
}

.mainBg{
    position: relative;
    min-height: 50vh;
    font-size: 14px;
    color: #333333;
    line-height: 2;
    background-color: #FFFFFF;
    overflow: hidden;
    z-index: 1;
}
.grayBg{
    background-color: #F2F2F2;
}
.whiteBg{
    background-color: #FFFFFF;
}
.main{
    font-size: 14px;
    color: #666666;
    line-height: 2;
    padding: .3rem;
    min-height: 40vh;
    background-color: #FFFFFF;
}
.line{
    display: block;
    width: 100%;
    height: 1px;
    background: #EEEEEE;
    margin: .2rem 0;
    clear: both;
}
.line.margin{
    margin: 0;
}
.main h4{
    font-size: 20px;
    color: #333333;
    line-height: 1.2;
    margin-bottom: .2rem;
    font-weight: normal;
}
.main h4 span{
    font-size: 16px;
    color: #666666;
}
.main h5{
    font-size: 18px;
    font-weight: normal;
    margin-bottom: .1rem;
}
.main .square{
    position: relative;
    padding-left: 30px;
}
.main .square::before{
    display: block;
    content: "";
    width: 13px;
    height: 13px;
    background-color: var(--baseColor);
    position: absolute;
    left: 0;
    top: 4px;
}

.footBg{
    position: relative;
    overflow: hidden;
    font-size: 14px;
    color: #999999;
    line-height: 1.8;
    background-color: #2E3033;
}
.footBg a{
    color: #999999;
}
.footBg a:hover{
    color: var(--baseColor);
}
.ftTop{
    padding: 50px 0;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.ftLef{
    flex: auto;
    padding-right: 80px;
}
.ftNav{
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
}
.ftNav li{
    padding: 0 10px;
}
.ftNav li h3{
    margin-bottom: 10px;
}
.ftNav li h3 a {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 2;
    transition: all .3s;
}
.ftCon p{
    margin: 5px 0;
}
.ftCon p a{
    color: #999999;
    transition: all .3s;
}
.ftCon p a:hover {
    color: var(--baseColor);
}
.wxList {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    float: right;
    width: 27%;
    text-align: center;
}
.wxList li {
    width: 33.33%;
    padding-left: 14px;
}
.wxList img {
    display: block;
    max-width: 100%;
    height: auto;
}
.wxList p {
    margin: .1rem 0;
}
.ftBot{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .24rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright{
    font-size: 14px;
    line-height: 2;
}
.copyright a{
    color: #999999;
}
#top{
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: .1rem;
    background: url(../images/onTop.png) center center #484c51 no-repeat;
    cursor: pointer;
}
#top:hover{
    background-color: var(--baseColor);
}

/* 页码 */
.page{
    margin: 40px 0;
    text-align: center;
}
.page a,
.page span{
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    margin: 2px;
    color: #333333;
    background-color: #EEEEEE;
}
.page a:hover,
.page a.active{
    color: #FFFFFF;
    background-color: var(--baseColor);
    border-color: var(--baseColor);
}
.page a.prev{
    font-size: 18px;
}
.page a.next{
    font-size: 18px;
}

.banText{
    position: absolute;
    left: 0;
    top: 100px;
    right: 0;
    bottom: 0;
    z-index: 1;
    color: var(--baseColor);
    text-align: center;
}
.banTit{
    font-size: 50px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin: 1vw 0;
}
.banDes{
    font-size: 20px;
    line-height: 1.4;
    margin: 1vw 0;
    font-weight: bold;
}
/* 遮罩 */
.maskBg{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
    display: none;
}
.mask{
    display: block;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-45%);
}
.maskCon{
    overflow: hidden;
}
.maskCon video{
    display: block;
    width: 100%;
    height: auto;
    max-height: 80vh;
}
.close{
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 24px;
    height: 24px;
    background: url(../images/close.png) center center no-repeat;
    background-size: contain;
    cursor: pointer;
    margin-bottom: .2rem;
    transition: all .3s;
}
.close:hover{
    transform: rotate(180deg);
}


/* 内页banner */
.banIn{
    position: relative;
    height: 600px;
    overflow: hidden;
}
.banIn .img{
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.banIn .banTit{
    letter-spacing: 0;
}
.inTit{
    font-size: 48px;
    line-height: 1.4;
    margin: .1rem 0;
    font-weight: normal;
}
.inDes{
    font-size: 16px;
    line-height: 1.4;
    max-width: 600px;
}
.innerBg{
    padding: .3rem 0 .42rem;
}

/* 在线客服 */
.onLine {
    list-style: none;
    position: fixed;
    right: .2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 0 .2rem rgba(0, 0, 0, 0.1);
    text-align: center;
}
.onLine li{
    position: relative;
    width: 50px;
}
.onLine li + li::after{
    display: block;
    content: "";
    width: 80%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 10%;
    background-color: #DDDDDD;
}
.onLine li a{
    display: block;
    color: #000000;
    padding: .1rem 5px;
    background-color: #FFFFFF;
}
.onLine li a img{
    display: block;
    width: 28px;
    height: auto;
    margin: 0 auto 5px;
}
.onLine li a:hover{
    color: var(--baseColor);
}

.hmTit{
    text-align: center;
    margin: .5rem 0;
}
.hmCn{
    font-size: 36px;
    color: #333333;
    line-height: 1.2;
    font-weight: normal;
}
.hmDes{
    display: block;
    color: #666666;
    line-height: 1.5;
    margin: .15rem auto;
}
.hmMore{
    display: block;
    width: 130px;
    line-height: 38px;
    color: var(--baseColor);
    border: 1px solid var(--baseColor);
    border-radius: 20px;
    margin: 0 auto;
    text-align: center;
    transition: all .3s;
}
.hmMore:hover{
    color: #FFFFFF;
    background-color: var(--baseColor);
}
.hmMore.hides{
    display: none;
}
.hmMore.white{
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.hmMore.white:hover{
    color: var(--baseColor);
    background-color: #FFFFFF;
}


/* 面包屑导航+分类 */
.breadNav{
    list-style: none;
    float: right;
    font-size: 0;
    line-height: 64px;
}
.breadNav li{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #333333;
}
.breadNav li a{
    color: #333333;
}
.breadNav li a:hover{
    color: var(--baseColor);
}
.breadNav li + li{
    padding-left: 12px;
    margin-left: 8px;
    white-space: nowrap;
    max-width: 400px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.breadNav li + li::before{
    display: block;
    content: "/";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
}
.sort{
    float: left;
    font-size: 0;
    list-style: none;
    line-height: 64px;
}
.sort li{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
}
.sort li + li{
    margin-left: 30px;
}
.sort li::after{
    display: block;
    content: "";
    width: 0%;
    height: 2px;
    background-color: var(--baseColor);
    position: absolute;
    left: 0;
    bottom: 0;
}
.sort li a{
    display: block;
    color: #333333;
}
.sort li:not(.active) a:hover{
    color: var(--baseColor);
}
.sort li.active::after{
    width: 100%;
}

.anchor{
    display: block;
    padding-top: 80px;
    margin-top: -80px;
}

@media (max-width:1600px) {
    .wrap{
        max-width: 1230px;
    }
    .logo{
        height: 80px;
    }
    .logo img{
        height: 48px;
    }
    .navList > li > a{
        font-size: 16px;
        line-height: 80px;
    }
    .navRig li{
        font-size: 16px;
    }
    .wxList{
        width: 32%;
    }
    .hmTit{
        margin: .4rem 0;
    }
    .hmCn{
        font-size: 30px;
    }
    #top{
        width: 48px;
        height: 48px;
        border-radius: .08rem;
        background-size: 35% auto;
    }
    .banText{
        top: 80px;
    }
    .banTit{
        font-size: 44px;
    }
    .banDes{
        font-size: 18px;
    }
    .banIn{
        height: 540px;
    }
    .breadNav,
    .sort{
        line-height: 50px;
    }
}
@media (max-width:1400px) {
    .logo img{
        height: 44px;
    }
    .hmCn{
        font-size: 28px;
    }
    .banTit{
        font-size: 38px;
    }
    .banDes{
        font-size: 16px;
    }
    .banIn{
        height: 500px;
    }
    .main h4{
        font-size: 18px;
        margin-bottom: .1rem;
    }
    .main h5{
        font-size: 16px;
    }
}
@media (min-width:992px) {
    .ftCon{
        display: block !important;
    }
}
@media (max-width:1200px) {
    .mobile-nav-open{
        overflow: hidden;
    }
    .wrap {
        width: 100%;
        max-width: 970px;
    }
    .header .wrap{
        max-width: 100%;
    }
    .logo {
        float: left;
        height: 60px;
    }
    .logo img {
        height: 40px;
    }
    .navRig {
        position: static;
        float: right;
        line-height: 60px;
        margin: 0;
    }
    .navRig li {
        position: static;
        margin-left: 0;
        font-size: 14px;
    }
    .navRig li.navBtn {
        display: inline-block;
    }
    .navBox {
        position: fixed;
        left: 100%;
        top: 60px;
        bottom: 0;
        width: 100%;
        padding: 0 .3rem;
        overflow-y: auto;
        z-index: 2;
        background-color: rgba(255, 255, 255, 0.9);
        transition: all .5s;
    }
    .navBox.nav-sub-open{
        overflow-y: hidden;
    }
    .nav-open .navBox{
        left: 0;
    }
    .navShade{
        display: block;
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: none !important;
    }
    .navTop{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 60px;
        position: sticky;
        top: 0;
        background-color: #FFFFFF;
        z-index: 2;
    }
    .navTop span{
        display: block;
        width: 22px;
        height: 30px;
        background-size: 18px auto;
        background-position: center center;
        background-repeat: no-repeat;
        margin-left: .2rem;
        cursor: pointer;
    }
    .searchIcoBtn{
        background-image: url(../images/icon_search_mob.png);
    }
    .closeIcoBtn{
        background-image: url(../images/close_mob.png);
    }
    .navList {
        position: relative;
        text-align: left;
        display: block;
        margin: 0 auto;
        padding: .2rem 0;
    }
    .navList > li {
        display: block;
        margin: 0;
        text-align: left;
        border-bottom: 1px dashed #EEEEEE;
    }
     .navList > li:last-child{
         border-bottom: none;
     }
    .navList > li > a {
        height: auto;
        line-height: 38px;
        padding: 0 !important;
        padding-right: 20px !important;
    }
    .navList > li > a::before {
        display: none;
    }
    .navList > li.dropdown > a::after{
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        content: "\f105";
        font-size: 140%;
        font-family: FontAwesome;
    }
    .navSecond{
        position: fixed;
        left: 100%;
        top: 0;
        bottom: 0;
        width: 100%;
        transform: translateX(0);
        text-align: left;
        box-shadow: none;
        overflow-y: auto;
        display: block !important;
        background-color: #FFFFFF;
        transition: all .3s;
    }
    .navCon{
        padding: 0 .3rem;
    }
    .navCon > li > a:hover{
        background-color: transparent;
    }
    .navClose{
        display: block;
        font-size: 16px;
        line-height: 30px;
        padding: .2rem 0;
        margin-left: .3rem;
        padding-left: 18px;
        background: url(../images/back.png) left center no-repeat;
        background-size: 14px auto;
        z-index: 2;
        cursor: pointer;
    }
    .navSecond.fixed{
        left: 0;
    }

    .hmDes{
        font-size: 14px;
    }

    .banText{
        top: 60px;
    }
    .banTit{
        font-size: 34px;
    }
    .banIn{
        height: 3.8rem;
    }
    .banIn .banText{
        text-align: center;
    }
    .inTit{
        font-size: .32rem;
    }
    .inDes{
        font-size: 14px;
        margin: 0 auto;
    }
    .breadNav{
        background-position: left center;
    }
    .breadNav li{
        font-size: 14px;
    }
    .sort li{
        font-size: 14px;
    }
    .sort li + li{
        margin-left: .2rem;
    }
    .anchor {
        display: block;
        padding-top: 60px;
        margin-top: -60px;
    }
    .onLine li#msg{
        display: none;
    }
    .onLine li.onMob{
        display: block;
    }
    .main .square{
        padding-left: 18px;
    }
    .main .square::before{
        width: 10px;
        height: 10px;
    }
}

@media (max-width:991px) {
    .ftTop{
        display: block;
        padding: 0;
        overflow: hidden;
    }
    .ftLef{
        padding: 0;
        margin: .3rem 0 .5rem;
    }
    .ftNav{
        display: block;
    }
    .ftNav li h3{
        margin-bottom: 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    }
    .ftNav li h3 a{
        position: relative;
        display: block;
        line-height: 40px;
    }
    .ftNav li h3 a:hover{
        color: #FFFFFF;
    }
    .ftNav li.dropdown h3 a::after{
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        content: "";
        width: 14px;
        height: 40px;
        background: url(../images/ftIco.png) right center no-repeat;
        background-size: 12px auto;
        transition: all .3s;
    }
    .ftNav li.cur h3 a::after{
        transform: rotate(-180deg);
    }
    .ftCon{
        display: none;
        padding: .1rem;
        padding-left: .2rem;
        overflow: hidden;
    }
    .wxList{
        float: none;
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin: .3rem 0;
    }
    .wxList li{
        padding: .1rem;
    }
    .wxList img{
        margin: 0 auto;
        max-width: 1.6rem;
    }
    .ftBot{
        display: block;
    }
    .copyright{
        text-align: center;
    }
    #top{
        position: fixed;
        right: .2rem;
        bottom: .2rem;
        width: 42px;
        height: 42px;
        z-index: 2;
    }
    .banTit{
        font-size: 28px;
        letter-spacing: .1em;
        margin: .1rem 0;
    }
    .banDes{
        font-size: 14px;
        margin: .1rem 0;
    }
    .breadNav{
        float: none;
        width: 100%;
        line-height: 30px;
        padding: .1rem 0 0;
    }
    .breadNav li + li{
        padding-left: 10px;
        margin-left: 6px;
        max-width: 2.8rem;
    }
    .sort{
        float: none;
        margin: 0 -.1rem;
        line-height: 40px;
    }
    .sort li{
        margin: 0 .1rem;
    }
    .sort li + li{
        margin: 0 .1rem;
    }

}
@media (max-width:767px) {
    .header{
        position: sticky;
    }
    .hmCn{
        font-size: 20px;
    }
    .hmDes{
        font-size: 14px;
    }
    .banText{
        top: 0;
    }
    .banTit{
        font-size: .36rem;
    }
    .onLine{
        right: 0;
    }
    .onLine li a img{
        width: 24px;
    }
}

@media (max-width:640px) {
    .searchInput {
        font-size: 14px;
    }
    .searchBtn{
        background-size: 18px auto;
    }
    .searchClose{
        background-size: 16px auto;
    }
    .ftRig{
        display: none;
    }
    .ftNav{
        flex-wrap: wrap;
    }
    .ftNav li{
        width: 100%;
    }
    .copyright{
        font-size: 12px;
    }

    .hmMore.hides{
        display: block;
        margin-top: .3rem;
    }

    /* 页码 */
    .page{
        margin: .3rem 0;
    }
}
@media (max-width:460px) {
    .logo{
        height: 50px;
        overflow: hidden;
    }
    .logo img{
        height: 26px;
    }
    .navRig{
        line-height: 50px;
    }
    .navBox{
        top: 50px;
    }
    .ftNav li h3 a{
        font-size: 15px;
    }
    .hmMore{
        width: 120px;
        line-height: 32px;
    }
    /* 页码 */
    .page{
        font-size: 0;
    }
    .page a,
    .page span{
        width: 26px;
        height: 26px;
        line-height: 26px;
        font-size: 12px;
        margin: 1px;
    }
    .banDes{
        font-size: 12px;
    }
    .close{
        background-size: 16px auto;
    }

    .main .square{
        padding-left: 15px;
    }
    .main .square::before{
        top: 5px;
        width: 8px;
        height: 8px;
    }

    .onLine li a{
        padding: .14rem .1rem;
        background-color: rgba(255, 255, 255, 0.8);
    }
    .onLine li a img{
        margin: 0 auto;
    }
}