/* ====移动端导航==== */
/* 按钮 */
.mobmenu {display: none; margin-left: .4rem;}
.mobmenu dl {transform: rotateY(180deg);width: 30px; margin-right: 10px; cursor: pointer;}
.mobmenu dl dd {width: 0;height: 2px;background: #333;}
.mobmenu dl dd:first-child {animation: sjnav 2.4s linear infinite;}
.mobmenu dl dd:nth-child(2) {margin: 6px 0;	width: 20px;}
.mobmenu dl dd:last-child {animation: sjnav 2.4s linear infinite;animation-delay: 0.4s;}
/* 导航头 */
.mobmenu h4 {color: #333;}
.mobmask {position: fixed;left: 0;top: 0;z-index: 99;width: 100%;height: 100vh;background: rgba(7,16,26,0.8);transition: all 0.5s;visibility: hidden;opacity: 0;transition-delay: 0.2s;}
.mobmask.active{opacity: 1;visibility: visible;}
.mobnavBox {padding-bottom: 20px; width: 60%;height: 100vh;position: fixed;z-index: 100;top: 0;left: -50%;overflow-y: auto;opacity: 0;transition: all 0.3s; background: #fff; visibility: hidden;}
.mobnavBox.active{transition-delay: 0.3s;opacity: 1;left: 0; visibility: visible;} 
.mobCon {padding: 0 20px; }
.mobnavBox .top {padding: 10px 20px;height: 60px; position: sticky;top: 0;z-index: 9999;background: #fff;box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.03);}
.mobnavBox .top .logo { max-width: 150px; height: 100%; display: flex; align-items: center;}
.mobnavBox .top .logo img {max-width: 100%; max-height: 100%;}
.mobnavBox .top .mobnavclose {width: 30px;height: 30px;position: relative; cursor: pointer;}
.mobnavBox .top .mobnavclose:before,
.mobnavBox .top .mobnavclose:after{content: "";position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);background: #333;border-radius: 1px;}
.mobnavBox .top .mobnavclose:before{width: 20px;height: 2px;transform: translate(-50%,-50%) rotate(45deg);}
.mobnavBox .top .mobnavclose:after{width: 2px;height: 20px;transform: translate(-50%,-50%) rotate(225deg);}
/* 导航搜索 */
/* version1.0 */
.mobsearch {margin-top: 30px;}
.mobsearch form {display: flex; align-items: center; justify-content: space-between;}
.mobsearch form input {width: calc(100% - 52px);line-height: 40px;border: 1px solid #eee;border-radius: 2px;padding: 0 12px;font-size: var(--font14); color: #333;}
.mobsearch form button {width: 42px;height: 42px;background: #004299;color: #333;border-radius: 2px;font-size: 14px; border: 0; cursor: pointer;}
.mobsearch form button img {filter: brightness(100); -webkit-filter:brightness(100);}
/* version2.0 */
.mobnavBox .form { background-color: #f5f5f5;display: flex;align-items: center;margin-bottom: 0.34rem; margin-top: 0.5rem;}
.mobnavBox  .form .f_sub,.mobnavBox .form .tx {height: 1rem;}
.mobnavBox .form .int {display: flex;align-items: center;width: calc(100% - 2.5rem);padding: 0 0.45rem;}
@media (max-width: 767px) {.mobnavBox  .form .int {width: calc(100% - 1.5rem);}}
.mobnavBox  .form .int i {width: 0.38rem;display: block;overflow: hidden;}
.mobnavBox .form .int i svg {float: left;width: 100%;}
.mobnavBox .form .int .tx {width: calc(100% - 0.38rem);padding: 0.2rem; font-size: var(--font24);}
@media (max-width: 767px) {.mobnavBox  .form .int .tx {padding: 0.2rem 0.3rem;}}
.mobnavBox  .form .f_sub {display: flex;align-items: center; justify-content: center;width: 2.5rem;color: #fff; background-color: #004896; cursor: pointer; font-size: var(--font24);}
@media (max-width: 767px) {.mobnavBox  .form .f_sub {width: 1.5rem;font-size: 0.28rem;}}

/* 导航内容 */
.mobnavBox .bottom {padding: 6px 0;}
.mobnavBox .bottom .nav li {margin: .4rem 0;}
.mobnavBox .bottom .nav li h3 {display: flex;align-items: center;justify-content: space-between; }
.mobnavBox .bottom .nav li h3 a {display: block;text-align: center;color: #333;padding-left: 4px;font-size: var(--font24);}
.mobnavBox .bottom .nav li h3 i {display: flex; align-items: center; justify-content: center; width: 16px;height: 16px;color: #333;text-align: center;font-size: 12px; transition: .4s; cursor: pointer;}
.mobnavBox .bottom .nav li h3 i svg {max-width: 100%;}
.mobnavBox .bottom .nav li .m-subnav {border-bottom: 1px solid #dbdbdb;padding-bottom: 5px;display: none;}
.mobnavBox .bottom .nav li .m-subnav a {display: block;margin: 10px 0;padding-left: 20px;position: relative; font-size: var(--font20); color: #333;}
.mobnavBox .bottom .nav li .m-subnav a:before{content: "";width: 8px;height: 8px;border: 1px solid #CCCCCC;border-radius: 50%;position: absolute;left: 4px;top: 5px;transition: all 0.4s;}
.mobnavBox .bottom .nav li .m-subnav a:after{content: "";width: 4px;height: 4px;background: #CCCCCC; border-radius: 50%; position: absolute; left: 7px;top: 8px;transition: all 0.4s;}
.mobnavBox .bottom .nav li.on h3 a {color: #004299;}
.mobnavBox .bottom .nav li.on h3 i {transform: rotate(90deg);color: #004299;}
.mobnavBox .bottom .nav li.on h3 i:before,
.mobnavBox .bottom .nav li.on h3 i:after {background: #fff;}
.mobnavBox .bottom .nav li h3 a:hover,
.mobnavBox .bottom .nav li .m-subnav a:hover , .mobnavBox .bottom .nav li .m-subnav a.on {color: #004299;}
.mobnavBox .bottom .nav li .m-subnav a:hover:before , .mobnavBox .bottom .nav li .m-subnav a.on:before {border-color: #004299;}
.mobnavBox .bottom .nav li .m-subnav a:hover:after , .mobnavBox .bottom .nav li .m-subnav a.on:after {background: #004299;}

/* 导航联系方式 */
/* version1.0 */
.moblan a {display: flex;align-items: center;justify-content: center;height: 0.9rem;}
.sitebtn {display: block;border-radius:4px;	background-image: linear-gradient(135deg, #004299 10%, #fff 60%, #004299 100%);overflow: hidden;background-size: 200% auto;color: #fff;text-align: center;}
/* .sitebtn:hover {background-position: right center;} */
.mobinfo {padding-top: 20px; border-top: 1px solid #eee;}
.mobinfo h2 {color: #004299; font-weight: 700; margin-bottom: .3rem;}
.mobinfo dl dd {display: flex;margin-top: .15rem; align-items: center;}
.mobinfo dl dd {}
.mobinfo dl dd .icBox {max-width: 15px;max-height: 15px;display: flex;align-items: center;justify-content: center;margin-right: 5px;}
.mobinfo dl dd .icBox img {max-width: 100%;}
.mobinfo dl dd p {width: calc(100% - 14px);color: #333; }
.mobinfo dl dd p a {color: #333;}
.mobinfo dl dd p a:hover {color: #004299;}
@keyframes sjnav{0% {width: 0;}25% {width: 15px;}50% {width: 30px;}75% {width: 15px;}100% {width: 0;}}
/* version2.0 */
.mobnavBox .fz_bt {margin-top: .2rem; display: flex;align-items: center;justify-content: center;border-radius: 3px;background-color: #fff;color: #004299;transition: all 0.3s linear;font-size: 0.26rem;height: 0.9rem;border: 1px solid #eee; width: 100%;}
.mobnavBox .fz_bt i{display: flex;width: 0.3rem;height: 0.3rem;margin-right: 0.2rem;overflow: hidden;}
.mobnavBox .fz_bt i svg{width: 100%; height: 100%;}
.mobnavBox .fz_bt i svg path{fill: #004299;}
.mobnavBox .fz_bt span{color: #004299;}
.mobnavBox .fz_bt:hover{background: #004299; border-color: #004299;}
.mobnavBox .fz_bt:hover i svg path{fill: #fff;}
.mobnavBox .fz_bt:hover span{color: #fff;}


@media screen and (min-width: 200px) and (max-width: 1900px) {
 
}

/* ======================================================1800px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1800px) {

}

/* ======================================================1700px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1700px) {
 
}

/* ======================================================1580px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1580px) {
    /* 头部 */
    nav {width: 68%;} 

}

/* ======================================================1500px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1500px) {
    /* 首页 */
    .infiveSwiper {max-width: 90%;}
 
}
/* ======================================================1450px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1450px) {

}

/* ======================================================1400px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1400px) {



}

/* ======================================================1350px========================================================= */

@media screen and (min-width: 200px) and (max-width: 1350px) {
}

/* ======================================================1300px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1300px) {
    /* 头部 */
    /* nav {width: 68%;}  */
    
    /* 首页 */
    .indexBanner {height: auto;}
    .bannerSwiper .con h3 {font-size: .6rem;}
    .bannerSwiper .con .en {font-size: .5rem;}
    .indexThre .box {align-items: flex-end;}
    .indexThre .box .re {margin-top: 0;}

    /* 底部 */
    .foterBox {padding-top: 3rem;}
    .foterBox .box {flex-wrap: wrap;}
    .foternav {width: 48%;}
    .fotercon {width: 100%;margin-top: .5rem;}
    .searcargo form .inBox {width: 3.8rem;}

    /* 关于我们 */
    .aboutOne li {width: 20%;}
    .aboutOne li .num {font-size: .7rem;}
}


/* ======================================================1200px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1200px) {
    /* 头部 */
    nav {display: none;}
    .mobmenu {display: flex;}

    /* 首页 */
    .indexThre .box .imgBox img {min-height: 6rem;    object-fit: cover;}
    .indexThre ul {justify-content: space-between;}
    .indexThre ul li {width: 48%; margin-right: 0; min-width: auto; padding: .15rem; height: auto;}
    .indexFour li .icBox img {max-width: .5rem;}
    .indexFour li .num {font-size: .5rem;}
    .indexFour li:nth-child(4) {top: 87%;}
    .indexFour li span {width: 2.5rem; white-space: wrap;}
    .infiveSwiper .swjt {right: .3rem;}

    /* 内页banner */
    .ny-banner .con {top: 50%;}
    .ny-banner .banTle h2 {font-size: .6rem;}

    /* 关于我们 */
    .aboutTwo .box {align-items: normal;}
    .aboutTwo .le .imgBox {height: 100%;}
    .aboutTwo .le .imgBox img {height: 100%; object-fit: cover;}
    .aboutTwo .re .text {overflow-y: auto; max-height: 3rem; padding-right: .2rem;}
    .aboutTwo .re .text {scrollbar-width:thin;scrollbar-color:#009B4C #DDDDDD; overflow-y: auto;}
    .aboutTwo .re .text::-webkit-scrollbar {width: 3px;}
    .aboutTwo .re .text::-webkit-scrollbar-thumb {background: #009B4C; border-radius: 5px;}
    .aboutTwo .re .text::-webkit-scrollbar-track {background: #E5E5E5;}
    .aboutTwo .re h4 {font-size: .45rem;}
    .aboutThre ul {flex-wrap: wrap;}
    .aboutThre ul li {width: 48%;}

    
}

/* ======================================================1100px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1100px) {


}

/* ======================================================1028px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1028px) {

    /* 首页 */
    .indexOne .box .imgBox img {min-height: 6rem; object-fit: cover;}
    .indexOne .box .text {width: 100%;}

    .ny-banner .banTle {margin-top: .3rem;}
    .ny-banner .banTle h2 {font-size: .5rem;}
    .ny-banner .banTle span {    font-size: var(--font20);}

    .indexThre .imgbj {background: #313C80;}
    .indexThre .box {flex-wrap: wrap;}
    .indexThre .box .le {width: 100%;}
    .indexThre .box .imgBox img {min-height: auto;}
    .indexThre .box .re {width: 100%; margin-top: .5rem;}

    /* 关于我们 */
    .aboutOne ul {padding: 0;}
    .aboutOne li {width: 23%;}
    .aboutOne li .num {font-size: .6rem;}

    /* 售后支持 */
    .salesOne .le {margin-top: 0;}
    .salesTwo ul {grid-template-columns: repeat(2,1fr);}

    /* 新闻资讯 */
    .newsMain .container {max-width: 75%;}
    .newslist ul {grid-template-columns: repeat(2,1fr);}
    /* 详情 */
    .newsxq-box {flex-wrap: wrap;}
    .news-left {width: 100%;}
    .newsxq-box .news-right {position: relative; top: 0; margin-top: .5rem;}
    .newsxq-box .news-right {width: 60%;}

    /* 联系我们 */
    .contactOne .box {flex-wrap: wrap; padding-top: .1rem;}
    .contactOne .item {width: 50%; margin-top: .5rem;}
    .contactOne .item:nth-child(2)::after {display: none;}

    /* 底部 */
    .foternav {    width: 100%;    margin-left: 0;}
}

/* ======================================================手机端========================================================= */
@media screen and (min-width: 200px) and (max-width: 767px) {
    /* 头部 */
    .header .links {display: none;}
    .mobnavBox {width: 100%;}
    /* 右侧固定 */
    .slideflex {display: none;}
    .more2 img {max-width: .4rem;}

    /* 首页 */
    @keyframes playbtnscale3 { 0% { transform: translate(-50%, -50%) scale(1); opacity: .9 }100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0;}}
    .bannerSwiper .swiper-slide .bgimg {opacity: 0;}
    .bannerSwiper .swiper-slide .public-img > img {min-height: 6.5rem;}
    .bannerSwiper .boxcon {top: 60%;}
    .queryBox {display: none;}
    .paginationBox {width: 1.5rem; height: 1.5rem; bottom: .3rem;right: 2%;}
    .paginationBox .swiper-num {font-size: var(--font14);}
    .bannerSwiper .con h3 {font-size: .5rem;}
    .bannerSwiper .con .en {font-size: .4rem;}
    .indexOne .box {flex-wrap: wrap;}
    .indexOne .box .le {width: 100%;}
    .indexOne .box .re {width: 100%; order: -1; margin-bottom: .8rem;}
    .indexOne .box .imgBox img {min-height: auto;}
    .indexTwo {padding: 1rem 0;}
    .indexTwo .tleBox .indexTle {width: 100%; margin-bottom: .5rem;}
    #proapp-num {width: 96%;}
    #proapp-num .swiper-scrollbar-drag {height: 3px;}
    #proapp-num .swiper-scrollbar-drag:before, #proapp-num .swiper-scrollbar-drag:after {width: 10px;height: 10px;}
    #proapp-num .swiper-scrollbar-drag:after {width: 20px; height: 20px; right: -9px;}
    .indexFour {padding-top: 1rem;}
    .indexFour li .licon {display: none;}
    .indexFour li .con {display: none;}
    .indexFour li:nth-child(3) {left: 55%;top: 67%;}
    .indexFour li:nth-child(4) {top: 78%;}
    .indexFour .dlList {display: block;}
    .indexFour .box {margin-top: 1rem;}
    .indexFive {padding-bottom: 2rem;}
    .infiveSwiper {max-width: 100%;}
    .infiveSwiper .swjt {display: none;}
    .infiveSwiper .swiper-pagination {display: block;}

    /* 底部 */
    .foterBox {padding-top: 1rem;    margin-top: 1.6rem;}
    .foterBox .bjBox {background: #313C80;}
    .foterlogo {text-align: center;}
    .foterUs {width: 100%;}
    .foterlinks {margin: .5rem 0;}
    .foterlinks ul {justify-content: flex-start;}
    .demand form {width: 100%;}
    .foternav {width: 100%; display: none;}
    .foterdl {flex-wrap: wrap;}
    .foterdl .item {width: 100%; margin-top: .5rem;}
    .foterdl .item:nth-child(2) {order: -1;}
    .searcargo form .inBox {width: 100%;}
    .fotercon {margin-top: 0;}

 /* ===============================================================================内页=========================================================== */
    .ny-banner .imgBox img {min-height: 5rem; object-fit: unset;}
    .ny-banner .con {margin: 0;}
    .ny-banner .con .mbx {display: none;}

    /* 解决方案 */
    #proapp-num2 {width: 96%;}
    #proapp-num2 .swiper-scrollbar-drag {height: 3px;}
    #proapp-num2 .swiper-scrollbar-drag:before, #proapp-num2 .swiper-scrollbar-drag:after {width: 10px;height: 10px;}
    #proapp-num2 .swiper-scrollbar-drag:after {width: 20px; height: 20px; right: -9px;}
    .soulTwo ul {flex-wrap: wrap;}
    .soulTwo li {width: 100%;}
    .soulTwo li h6 {font-size: var(--font26);}

    /* 关于我们 */
    .aboutOne {padding-top: .2rem;}
    .aboutOne ul {flex-wrap: wrap;}
    .aboutOne li {width: 48%; margin-top: .4rem;}
    .aboutTwo .box {flex-wrap: wrap;}
    .aboutTwo .le {width: 100%;}
    .aboutTwo .re {width: 100%;margin-top: .5rem;}
    .aboutThre ul li {width: 100%;}
    .aboutThre li img {max-width: 1rem;}
    .queryOne .box {padding: .4rem;}
    .queryform label {width: 100%;}
    .queryform input {min-height: 50px; width: 100%;}
    .queryOne .tle span {font-size: var(--font16);}

    /* 服务区域 */
    .seareaOne .box {flex-wrap: wrap;}
    .seareaOne .le {width: 100%; padding-right: 0;}
    .seareaOne .re {width: 100%;margin-top: .5rem;}

    /* 售后支持 */
    .salesOne .box {flex-wrap: wrap;}
    .salesOne .le {width: 100%;}
    .salesOne .re {width: 100%; margin-top: .6rem;}
    .salesTwo ul {grid-template-columns: repeat(1,1fr);}

    /* 新闻详情 */
    .newsxq-box .news-right {width: 100%;}

    /* 货物跟踪 */
    .cargoBox .box .tle h3 {font-size: .5rem;}
    .cargoBox .box {padding: .5rem .3rem;}

    /* 联系我们 */
    .contactOne .item {width: 100%;}
    .contactOne .item::after {display: none;}
    .contactTwo form label {width: 100%;}
    .contactTwo form label:nth-child(6) {width: calc(100% - 130px);}
    .contactTwo .container {max-width: 90%;}
}



@media screen and (min-width: 200px) and (max-width: 640px) {
    .indexThre ul li {width: 100%; justify-content: flex-start;}

    .newslist ul {grid-template-columns: repeat(1,1fr);}
}

@media screen and (min-width: 200px) and (max-width: 500px) {
}

@media screen and (min-width: 200px) and (max-width: 450px) {
}

@media screen and (min-width: 200px) and (max-width: 300px) {


}
