/* CSS Document */
.mc{ margin: 0 auto !important;}
.wow {
    transition-delay: 0.3s;
}
.pc {
    display: block;
}
.mob {
    display: none;
}
.wrap{
	width: 90%;
    max-width: 1470px;
    padding: 0 15px;
	margin:0 auto;
}
.wrap1600{
    max-width: 1630px;
}
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 320px;
    padding: 0;
    z-index: 10;
    padding: 0px 0;
    background: transparent;
    box-shadow: none;
    transition: all .3s;
}
.header.no-show{
    transform: translateY(-100%);
}
.header .wrap {
    width: 90%;
    max-width: 1800px;
}
.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: 80px;
    transition: all .3s;
}
.nav {
    float: right;
}
.navBox {
    margin: 0 auto;
    text-align: right;
}
.navList {
    list-style: none;
    margin: 0;
    font-size: 0;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    transition: all .3s;
}
.navList > li {
    display: inline-block;
    vertical-align: top;
    padding: 0 1.5vw;
}
.navList > li > a {
    position: relative;
    display: block;
    line-height: 100px;
    font-size: 18px;
    color: #FFFFFF;
    opacity: .8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: bold;
    transition: all .3s;
}
.navList > li > a::before{
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0rem;
    width: 0;
    height: 4px;
    background-color: #FFFFFF;
    transition: all .3s;
}


.navList > li:hover > a,
.navList > li.active > a{
    opacity: 1;

}
.navList > li:hover > a::before,
.navList > li.active > a::before{
    left: 0;
    width: 100%;
}
@media (min-width:1201px) {
    .navList > li:hover > .nav-dropdown{
        opacity: 1;
        visibility: visible;
        margin: 0;
        transition: all .3s linear;
    }
    .nav-dropdown-ul{
        display: none;
    }
}
.nav-dropdown{
    position: absolute;
    /*left: 0;
    right: 0;*/
    top: auto;
    background-color: #FFFFFF;
    padding: 0px 0px 0px 0px;    
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.05) inset;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    margin-top: 5px;
    min-width:120px;
    left:0px;
}
.nav-dropdown-con{
    max-width: 100%;
    /*margin: 0 auto;*/
}
.nav-dropdown-left{
    width: 35%;
    max-width: 600px;
    margin-right: 5%;
}
.nav-dropdown-title{
    color: #B3242C;
    line-height: 40px;
    margin: .2rem 0;
}
.nav-dropdown-img{
    margin: .2rem 0 .6rem;
}
.nav-dropdown-img img{
    width: 100%;
    height: auto;
}
.nav-dropdown-right{
    min-height: 80px;
    overflow: hidden;
    width:100%;
    margin:0 0px;
    float:left;
}
.nav-dropdown-list{
    position: relative;
    list-style: none;
    width: 100%;
    max-width: 100%;
    height: 100%;
    /*padding-top: calc(40px + .4rem);*/
    /*border-right: 1px solid #E1E1E3;*/
}
.nav-dropdown-list li a{
    display: block;
    color: #222222;
    line-height: 40px;
    padding: 5px 5px 5px 5px;
    transition: all .3s;
    font-size:14px;
    width:100%;
  text-align:center;
  border-bottom: 1px solid #f3f3f3;
}
.nav-dropdown-list > li > a{
    /*border-radius: 10px 0 0 10px;*/
}
.nav-dropdown-list li a img{
    max-width: 20px;
    height: auto;
    margin-right: 10px;
}
.nav-dropdown-list > li:hover > a{
    color: var(--baseColor);
    /*background-color: #F5F5F7;*/
}
@media (min-width:1201px) {
    .nav-dropdown-list li:hover > .nav-dropdown-ul{
        display: block;
    }
}
.nav-dropdown-list.one{
    width: 440px;
    border-right: 1px solid #E1E1E3;
}
.nav-dropdown-list.one > li > a{
    background-position: right 10px top 17px;
    background-repeat: no-repeat;
}
.nav-dropdown-list.one > li > a:hover{
    background-image: url(../images/navArrow.webp);
    background-position: right 14px top 17px;
}
.nav-dropdown-ul{
    list-style: none;
    position: absolute;
    left: 100%;
    top: 0;
    width: 240px;
    height: 100%;
    background-color: #F5F5F7;
    padding: calc(40px + .4rem) 0 .2rem;
    display: none;
}
.nav-dropdown-ul li a{
    position: relative;
    padding-left: 50px;
    transition: all .3s;
}
.nav-dropdown-ul li a i{
    display: block;
    position: absolute;
    left: 30px;
    top: 15px;
    width: 2px;
    background-color: #FFFFFF;
    height: calc(100% - 30px);
    margin-left: -5px;
    width: 0;
    transition: all .3s;
}
.nav-dropdown-ul li a span{
    position: absolute;
    left: 35px;
    top: 22px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--baseColor);
}
.nav-dropdown-ul.two > li:hover > a{
    color: #FFFFFF;
    background-color: var(--baseColor);
}
.nav-dropdown-ul.two > li:hover > a i{
    width: 2px;
    margin: 0;
}
.nav-dropdown-ul.three{
    background-color: #FAFAFB;
}
.nav-dropdown-ul.three > li:hover > a{
    color: var(--baseColor);
    background-color: rgba(246, 173, 27, .1);
}
.nav-dropdown-ul.four{
    font-size: 16px;
    background-color: #FFFFFF;
}
.nav-dropdown-ul.four li a{
    color: #666666;
}
.nav-dropdown-ul.four li:hover a{
    color: var(--baseColor);
}



.navRig {
    position: relative;
    float: right;
    line-height: 100px;
    text-align: right;
    font-size: 0;
    margin-left: 2vw;
    transition: all .3s;
}
.navRig li {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    position: relative;
}
.navRig li + li{
    margin-left: 2vw;
}
.navRig a,
.navRig i,
.navRig span {
    display: inline-block;
    vertical-align: middle;
    color: #FFFFFF;
    opacity: 0.8;
    line-height: 38px;
}
.navRig li.navSearch i {
    font-size: 120%;
    cursor: pointer;
}
.navSearchBox{
    position: absolute;
    height: 40px;
    right: -10px;
    top: 50%;
    margin-top: -18px;
    width: 240px;
    width: 0;
    border-radius: 20px;
    background-color: var(--baseColor);
    overflow: hidden;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    z-index: 2;
}
.searchInput{
    display: block;
    width: 100%;
    height: 40px;
    font-size: 14px;
    line-height: 38px;
    border: 0;
    padding: 0 40px 0 15px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0);
    color: #ffffff;
}
.searchInput::placeholder{
    color: #FFFFFF;
}
.searchInput:-moz-placeholder{
    color: #FFFFFF;
}
.searchInput::-moz-placeholder{
    color: #FFFFFF;
}
.searchInput:-ms-input-placeholder{
    color: #FFFFFF;
}
.searchBtn{
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    border: 0;
    right: -1px;
    top: -1px;
    color: #FFFFFF;
    background-color: transparent;
    text-align: center;
}
.searchBtn i{
    display: block;
    line-height: 40px;
    color: #FFFFFF !important;
}
@media (min-width:1201px) {
    .navSearchBox{
        display: block !important;
    }
    .navRig li:hover .navSearchBox{
        width: 240px;
    }
}
.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: #e4e4e4;
    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;
}

.header.whiteBg{ padding: 0; background-color: rgba(255, 255, 255, 0.7); box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.05);}
.header.whiteBg .navList > li > a{ color: #222222; text-shadow: none;}
.header.whiteBg .logo .shows{ display: none;}
.header.whiteBg .logo .hides{ display: block;}
.header.whiteBg .navRig a,
.header.whiteBg .navRig i,
.header.whiteBg .navRig span{ color: #222222;}
.header.whiteBg .navList > li > a::before{ background-color: var(--baseColor);}
.header.whiteBg .navBtn span b{ background-color: #222222;}


.header.bg{ background-color: #FFFFFF; box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.05);}
.header.bg .navList > li > a{ color: #222222; text-shadow: none;}
.header.bg .logo .shows{ display: none;}
.header.bg .logo .hides{ display: block;}
.header.bg .navRig a,
.header.bg .navRig i,
.header.bg .navRig span{ color: #222222;}
.header.bg .navList > li > a::before{ background-color: var(--baseColor);}


.header.bg .navBtn span b{ background-color: #222222;}

.header.sticky{ position: sticky; background-color: #FFFFFF; box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.05);}
.header.sticky .navList > li > a{ color: #222222; text-shadow: none;}
.header.sticky .logo .shows{ display: none;}
.header.sticky .logo .hides{ display: block;}
.header.sticky .navRig a,
.header.sticky .navRig i,
.header.sticky .navRig span{ color: #222222;}
.header.sticky .navList > li > a::before{ background-color: var(--baseColor);}
.header.sticky .navBtn span b{ background-color: #222222;}

.footBg{
    position: relative;
    overflow: hidden;
    background-color: #494A4D;
}
.footBg a{
    color: #c8c8c8;
    transition: all .3s;
}
.footBg a:hover{
    color: #FFFFFF;
}
.footLogo{
    margin: .6rem 0 .4rem;
}
.footLogo img{
    width: auto;
    max-height: .5rem;
}
.footCen{
    margin: .4rem 0;
}
.footNav{
    flex: auto;
    overflow: hidden;
}
.footNav li{
    flex: 1;
}
.footNav li h3{
    line-height: 1.2;
    margin: .2rem 0;
}
.footNav li h3 a{
    color: #FFFFFF;
}
.footNav li h3 i{
    display: none;
}
.footCon{
    line-height: 1.6;
    margin: 0 -5px;
}
.footCon p{
    padding: 5px;
}
.footCon p a{
    color: rgba(255, 255, 255, 0.75);
}
/*.footNav li:nth-child(4){
    flex: 3;
    margin-right: 3%;
}
.footNav li:nth-child(4) .footCon{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footNav li:nth-child(4) .footCon p{
    width: 48%;
}*/
.footWx{
    flex-shrink: 0;
    width: 12%;
    max-width: 150px;
    min-width: 120px;
    font-size: 14px;
    line-height: 28px;
    color: #FFFFFF;
    /*background-color: rgba(255, 255, 255, 0.1);*/
    text-align: center;
    margin-left: .3rem;
}
.footWx img{
    width: 100%;
}
.footWx p{
    padding: 5px;
}
.copyright{
    color: rgba(255, 255, 255, 0.3);
    line-height: 20px;
    padding: 15px 0;;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    letter-spacing: 1px;
}


.hmBox{
    padding-top: 100px;
}
.hmTit{
    position: relative;
}
.hmLine{
    display: block;
    width: 60px;
    height: 4px;
    max-width: .8rem;
    max-height: .04rem;
    background: var(--baseColor);
}
.hmTitCn{
    line-height: 1.2;
    margin: .3rem 0;
}
.hmTitEn{
    position: absolute;
    left: 0;
    top: 0;
    text-transform: uppercase;
    font-size: 120px;
    line-height: .7;
    opacity: .05;
    font-weight: bold;
    font-style: italic;
}
.hmTit .hmMore{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.hm2Text .hmMore,.hm3CP .hmMore,.hmTit .hmMore2{
    align-items: center;
    transition: all .3s;
    display:inline-block;
    margin-top:2em;
    width:209px;height:55px;
     background-image:url('/Content/XMSY/images/ljgd.png');
     margin-left:4%;
}
.hmTit .hmMore2{
 
  position: absolute;
  right: 0;

}
.hmMore i{
    display: block;
    width: 80px;
    max-width: .8rem;
    height: 1px;
    background: #222222;
    margin-right: .3rem;
    transform-origin: left center;
    transition: all .3s;

}
.hm2Text .hmMore:hover,.hm3CP .hmMore:hover,.hmTit .hmMore2:hover{
     background-image:url('/Content/XMSY/images/ljgd1.png');
}
.hmMore:hover i{
    transform: scaleX(1.2);
    background-color: var(--baseColor);
}

.banIn{
    position: relative;
    height: 100vh;
}
.inImg{
    position: fixed;
    width: 100%;
    height: 100%;
    transition: all 10s linear;
}
.inImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inText{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.inTit{
    line-height: 1.2;
    font-weight: normal;
}
.inLine{
    width: 130px;
    height: 4px;
    max-width: 1.5rem;
    max-height: .06rem;
    background: var(--baseColor);
    margin: .4rem auto;
}
.inDes{
    line-height: 1.5;
}
.inScroll{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}
.inScrollText{
    line-height: 2;
    text-transform: uppercase;
}
.inSrcollLine{
    position: relative;
    width: 1px;
    height: 60px;
    max-height: .8rem;
    background-color: rgba(255, 255, 255, 0.2);
    margin: .14rem auto 0;
    overflow: hidden;
}
.inSrcollLine i{
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 50%;
    background-color: #FFFFFF;
    animation: inScroll 3s linear infinite;
}

.sortBg{
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.05);
    z-index: 2;
}
.sortList .swiper-slide{
    width: auto;
}
.sortList .swiper-slide.active .sortLink{
    background-color: rgba(246, 173, 27, .1);
    font-weight: bold;
}
.sortLink{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    min-height: 1.4rem;
    padding: .15rem .2rem;
    line-height: 1.6;
    transition: all .3s;
}
.sortIco{
    width: 36px;
    height: 36px;
    max-width: .4rem;
    max-height: .4rem;
    margin: 0 auto .1rem;
}
.sortLink:hover{
    color: var(--baseColor);
}
.sortLink:hover .sortIco img{
    animation: pulse 1s linear;
}
ul.sortList{
    padding: 0 .8rem;
}
ul.sortList li{
    flex: auto;
}
ul.sortList li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 1rem;
    color: #222222;
    line-height: 30px;
    font-weight: normal;
}
ul.sortList li.active a{
    color: #FFFFFF;
    background-color: var(--baseColor);
}
.sortBg.fixed{
    position: sticky;
    top: 0;
}

.mainBg{
    position: relative;
    overflow: hidden;
    font-size: 14px;
    color: #000000;
    line-height: 30px;
    background-color: #FFFFFF;
    z-index: 1;
    min-height: 50vh;
}
.grayBg{
    background-color: #F7F7F7;
}
.whiteBg{
    background-color: #FFFFFF;
}

.boxH2{
    line-height: 1.1;
    line-height: 1.45;
    margin-bottom: .15rem;
}
.boxLine{
    width: 80px;
    height: 12px;
    background: #F6AD1B;
    max-width: 1rem;
    max-height: .12rem;
}
.boxTit.text-center .boxLine{
    margin: 0 auto;
}

/* 页码 */
.page{
    margin: .6rem 0;
    text-align: center;
}
.page a,
.page span{
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    margin: 0 1px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #000000;
    border-radius: 3px;
    background-color: #FFFFFF;  
    border: 1px solid #DCDCDC;
}
.page a:hover,
.page a.active{
    color: #FFFFFF;
    background-color: var(--baseColor);
    border-color: var(--baseColor);
}
.page span{
    border: none;
    background-color: transparent;
    font-weight: bold;
}
.page a.prev{
    font-size: 18px;
    border: none;
    background-color: transparent;
}
.page a.next{
    font-size: 18px;
    border: none;
    background-color: transparent;
}
.page a.prev:hover,
.page a.next:hover{
    color: #000000;
}
.page.text-right{
    text-align: right;
}

.pagination{
    margin: .6rem 0;
    text-align: center;
}
.pagination li{
    display: inline-block;
    vertical-align: middle;
}
.pagination li span,
.pagination li a{
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 1px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #000000;
    border-radius: 3px;
    background-color: #FFFFFF;  
    border: 1px solid #DCDCDC;
}
.pagination li:first-child span,
.pagination li:first-child a,
.pagination li:last-child span,
.pagination li:last-child a{
    background-color: transparent;  
    border: 1px solid transparent;
}
.pagination li.active span,
.pagination a:hover,
.pagination a.active{
    color: #FFFFFF;
    background-color: var(--baseColor) !important;
    border-color: var(--baseColor) !important;
}

.editor{
    line-height: 1.8;
}
.editor img{
    max-width: 100% !important;
    height: auto !important;
}
.boxMore{
    display: block;
    width: 160px;
    line-height: 48px;
    background-color: var(--baseColor);
    overflow: hidden;
    transition: all .3s;
}
.boxMore.auto{
    margin: 0 auto;
}
.boxMore.radius{
    border-radius: 5px;
}
.boxMore:hover{
    opacity: .9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.leftTit{
    line-height: 30px;
    padding: .2rem;
    background-color: var(--baseColor);
}
.leftTit i{
    display: none;
}


/************底部新增***********/
.footBg_logo{width:15%;max-width:180px;float:left;margin-top:20px;}
.footBg_cen{width: 50%; float: left; margin-top: 30px;margin-left:8%;height:150px;}
.footBg_cen_ul{margin: 0 auto 0 auto; display: block; width: 100%; height: 50px; color: #c8c8c8; font-size: 14px; font-weight: normal; border-bottom: 1px solid #c8c8c8;line-height:50px;}
.footBg_cen_ul li{width:16%;height:40px;float:left;}
.footBg_cen_ul li a{font-size:16px;}
.footBg_cen1{width: 100%; height: 70px; float: left; font-size: 12px; color: #c8c8c8;line-height:30px;margin-top:20px;}
.footBg_logo1{width: 15%; max-width: 150px; float: right; margin-top: 20px;margin-right:40px;}

/************底部新增***********/

@media (max-width:1600px) {
    .logo{
        height: 80px;
    }
    .logo img{
        height: 70px;
    }
    .navList > li > a{
        font-size: 16px;
        line-height: 80px;
    }
    .navRig{
        line-height: 80px;
    }
    .navRig li{
        font-size: 16px;
    }

    .hmTitEn{
        font-size: 7.4vw;
    }
    .hmBox{
        padding-top: 80px;
    }

}
@media (max-width:1400px) {

}
@media (min-width:1201px) {
    .navBox{
        display: block !important;
        margin-right:100px;
    }
}
@media (max-width:1200px) {
    .wrap {
        width: 100%;
        max-width: 970px;
    }
    .header{
        padding: 0;
    }
    .header .wrap{
        width: 100%;
    }
    .logo {
        float: left;
        height: 60px;
    }
    .logo a{
        height: 30px;
    }
    .logo img {
        height: 100%;
    }
    .navRig {
        float: right;
        line-height: 60px;
        margin: 0;
    }
    .navRig li {
        position: static;
        margin-left: 0;
        font-size: 14px;
    }
    .navRig li + li{
        margin-left: 15px;
    }
    .navRig li.navBtn {
        display: inline-block;
    }
    .navSearchBox{
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        padding: 10px;
        height: auto;
        margin-top: 0;
        border-radius: 0;
        transition: none;
    }
    .searchInput{
        background-color: rgba(255, 255, 255, 0.2);
    }
    .searchBtn{
        right: 10px;
        top: 10px;
    }
    .searchBtn i{
        font-size: 160% !important;
    }
    .navRig li.navSearch.m-open{
        padding: 0 10px;
        margin: 0 -10px;
        background-color: var(--baseColor);
    }
    .navRig li.navSearch.m-open > i{
        color: #FFFFFF !important;
    }
    .navRig li.navSearch.m-open > i::before{
        content: "\e659";
    }
    .navBox {
        position: fixed;
        left: 0;
        right: 0;
        top: 60px;
        bottom: 0;
        width: 100%;
        overflow: hidden;
        z-index: 2;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        background-color: #FFFFFF;
        display: none;
    }
    .mini .navBox{
        top: 60px;
    }
    .navList {
        text-align: left;
        height: 100%;
        overflow-y: auto;
        display: block;
        padding: 0 .3rem;
        margin: 0 auto;
    }

    .navList>li {
        display: block;
        margin: 0;
        padding: 0;
        text-align: left;
    }

    .navList>li>a {
        height: auto;
        line-height: 46px;
        padding: 0 !important;
        padding-right: 46px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

    .navList>li>a::before {
        display: none;
    }
    .navList>li.dropdown>a::after {
        display: block;
        width: 46px;
        content: "\f107";
        position: absolute;
        right: 0;
        top: 0;
        font-family: FontAwesome;
        text-align: center;
        transition: all .3s;
        font-size: 20px;
        font-weight: normal;
    }

    .navList>li.cur>a::after {
        transform: rotate(180deg);
    }
    .opened .navList{
        transform: scale(1);
    }
    .nav-dropdown{
        position: static;
        opacity: 1;
        visibility: visible;
        margin: 0;
        padding: 0;
        transition: none;
        display: none;
        box-shadow: none;
    }
    .nav-dropdown-left{
        display: none;
    }
    .nav-dropdown-right{
        height: auto;
    }
    .nav-dropdown-list{
        width: 100%;
        max-width: 100%;
        padding: 15px 0;
        border-right: none;
    }
    .nav-dropdown-list li a{
        padding-top: 5px;
        padding-bottom: 5px;
        border-radius: 0;
    }
    .nav-dropdown-list.one{
        width: 100%;
        border: none;
    }
    .nav-dropdown-list.one > li > a:hover,
    .nav-dropdown-list.one > li > a{
        background-position: right 10px top 12px;
    }
    .nav-dropdown-ul{
        position: static;
        width: 100% !important;
        max-width: 100%;
        padding: 10px;
    }
    .nav-dropdown-ul.four{
        font-size: 14px;
    }
    .nav-dropdown-ul li a{
        padding-left: 40px;
    }
    .nav-dropdown-ul li a span{
        display: none;
    }
    .nav-dropdown-list > li.m-open > a {
        color: var(--baseColor);
        background-color: #F5F5F7;
    }
    .nav-dropdown-ul.two > li.m-open > a {
        color: #FFFFFF;
        background-color: var(--baseColor);
    }
    .nav-dropdown-ul.two > li.m-open > a i {
        width: 2px;
        margin: 0;
    }
    .nav-dropdown-ul.three > li.m-open > a {
        color: var(--baseColor);
        background-color: rgba(246, 173, 27, .1);
    }
    .header.no-show{
        /* transform: none; */
    }

    .hmBox{
        padding: 0;
    }
    
    .footLogo img{
        height: 40px;
        max-height: .8rem;
    }
    .footCen{
        display: block;
    }
    .footWx{
        width: 100%;
        margin: .3rem auto;
    }
    .footNav{
        display: block;
    }
    .footNav li{
        margin: 0 !important;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footNav li:last-child{
        border-bottom: none;
    }
    .footNav li h3{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: .1rem 0;
        line-height: 30px;
    }
    .footNav li h3 i.show{
        display: block;
        width: 30px;
        line-height: 30px;
        color: #FFFFFF;
        cursor: pointer;
        text-align: center;
        transition: all .3s;
    }
    .footNav li h3.active i{
        transform: rotate(180deg);
    }
    .footCon{
        padding: 0 0 10px;
        display: none;
    }
    .footCon p{
        display: inline-block;
        vertical-align: middle;
    }
    .footNav li:nth-child(4) .footCon{
        display: none;
    }
    .footNav li:nth-child(4) .footCon p{
        width: auto;
        min-width: 32%;
    }
    .sortLink{
        min-width: 1.4rem;
        min-height: 0;
    }
    ul.sortList{
        padding: 0;
    }
    ul.sortList li a{
        min-height: 0;
        padding: .2rem;
    }
    .boxH2{
        margin-bottom: .2rem;
    }
    .boxLine{
        height: 6px;
        max-height: .08rem;
    }

    .page a,
    .page span{
        width: 32px;
        height: 32px;
        line-height: 30px;
    }

    .hmTit{ animation: none !important;}

    .leftTit{ 
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        line-height: 28px;
        padding: .1rem .2rem;
        cursor: pointer;
    }
    .leftTit i{
        transition: all .3s;
    }
    .leftTit.child i{ 
        display: block;
    }
    .leftTit.open i{ 
        transform: rotate(180deg);
    }

}

@media (max-width:991px) {
    .hmTitCn{
        margin: .2rem 0;
    }
    .hmTitEn{
        font-size: .5rem;
    }
    ul.sortList{
        margin: 0 -15px;
    }

.footBg_cen{margin-left:0px;}
.footBg_logo{width:100%;margin-top:20px;}
.footBg_cen{width: 100%; float: left; margin-top: 20px;height:320px;}
.footBg_cen_ul{margin: 0  0 ; display: block; width: 100%; color: #c8c8c8; font-size: 14px; font-weight: normal; line-height:40px;border-bottom:none}
.footBg_cen_ul li{width:100%;height:40px;float:left;border-bottom: 1px solid #c8c8c8;}
.footBg_cen1{width: 100%; height: 60px; float: left; font-size: 12px; color: #c8c8c8;line-height:20px;margin-top:20px;}
.footBg_logo1{width: 100%; max-width: 100px; margin-top: 20px;float:left;margin-left:10px;}
}
@media (max-width:767px) {
    .footBg_cen{margin-left:0px;}
.footBg_logo{width:100%;margin-top:20px;}
.footBg_cen{width: 100%; float: left; margin-top: 20px;height:320px;}
.footBg_cen_ul{margin: 0  0 ; display: block; width: 100%; color: #c8c8c8; font-size: 14px; font-weight: normal; line-height:40px;border-bottom:none}
.footBg_cen_ul li{width:100%;height:40px;float:left;border-bottom: 1px solid #c8c8c8;}
.footBg_cen1{width: 100%; height: 60px; float: left; font-size: 12px; color: #c8c8c8;line-height:20px;margin-top:20px;}
.footBg_logo1{width: 100%; max-width: 100px; margin-top: 20px;float:left;margin-left:10px;}
}

@media (max-width:640px) {
    .ftNav{
        flex-wrap: wrap;
    }
    .ftNav li{
        width: 100%;
    }
    .ftNav li h3{
        margin: 10px 0 0;
    }
    .ftTit{
        line-height: 1.2;
    }
    .ftCon{
        display: flex;
        flex-wrap: wrap;
        margin: 0 -5px;
    }
    .ftCon p{
        padding: 0 5px;
    }
    .copyright{
        font-size: 12px;
        padding: 10px 15px;
    }

    .boxMore{
        width: 140px;
        line-height: 40px;
        margin: 0 auto;
    }

.footBg_cen{margin-left:0px;}
.footBg_logo{width:100%;margin-top:20px;}
.footBg_cen{width: 100%; float: left; margin-top: 20px;height:320px;}
.footBg_cen_ul{margin: 0  0 ; display: block; width: 100%; color: #c8c8c8; font-size: 14px; font-weight: normal; line-height:40px;border-bottom:none}
.footBg_cen_ul li{width:100%;height:40px;float:left;border-bottom: 1px solid #c8c8c8;}
.footBg_cen1{width: 100%; height: 60px; float: left; font-size: 12px; color: #c8c8c8;line-height:20px;margin-top:20px;}
.footBg_logo1{width: 100%; max-width: 100px; margin-top: 20px;float:left;margin-left:10px;}

}
@media (max-width:460px) {
    .page{
        font-size: 0;
    }
    .page a,
    .page span{
        width: 26px;
        height: 26px;
        line-height: 24px;
        font-size: 12px;
        margin: 1px;
        border-radius: 2px;
    }
    .footBg_cen{margin-left:0px;}
.footBg_logo{width:100%;margin-top:20px;}
.footBg_cen{width: 100%; float: left; margin-top: 20px;height:320px;}
.footBg_cen_ul{margin: 0  0 ; display: block; width: 100%; color: #c8c8c8; font-size: 14px; font-weight: normal; line-height:40px;border-bottom:none}
.footBg_cen_ul li{width:100%;height:40px;float:left;border-bottom: 1px solid #c8c8c8;}
.footBg_cen1{width: 100%; height: 60px; float: left; font-size: 12px; color: #c8c8c8;line-height:20px;margin-top:20px;}
.footBg_logo1{width: 100%; max-width: 100px; margin-top: 20px;float:left;margin-left:10px;}
}