/* ====移动端导航==== */
/* 按钮 */
.mobmenu {display: none;}
.mobmenu dl {transform: rotateY(180deg);margin-right: 10px;width: 30px; cursor: pointer;}
.mobmenu dl dd {width: 0;height: 2px;background: #fff;}
.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: #fff;}
.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: 70px; 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);}
/* 导航搜索 */
.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: #46b248;color: #333;border-radius: 2px;font-size: 14px; border: 0; cursor: pointer;}
.mobsearch form button img {filter: brightness(100); -webkit-filter:brightness(100);}
/* 导航内容 */
.mobnavBox .bottom {padding: 6px 0;}
.mobnavBox .bottom .nav li {margin: 12px 0;}
.mobnavBox .bottom .nav li h3 {display: flex;align-items: center;justify-content: space-between; font-size: var(--font18);}
.mobnavBox .bottom .nav li h3 a {display: block;text-align: center;color: #333;padding-left: 4px;}
.mobnavBox .bottom .nav li h3 i {display: block;width: 20px;height: 20px;color: #333;text-align: center;font-size: 12px; transition: .4s; cursor: pointer;}
.mobnavBox .bottom .nav li h3 i img {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(--font16); 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: 8px;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: 11px;transition: all 0.4s;}
.mobnavBox .bottom .nav li.on h3 a{color: #46b248;}
.mobnavBox .bottom .nav li.on h3 i {transform: rotate(90deg);color: #46b248;}
.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{color: #46b248;}
.mobnavBox .bottom .nav li .m-subnav a:hover:before{border-color: #46b248;}
.mobnavBox .bottom .nav li .m-subnav a:hover:after{background: #46b248;}
/* 导航联系方式 */
.moblan a {display: flex;align-items: center;justify-content: center;line-height: 44px;}
.sitebtn {display: block;border-radius:4px;	background-image: linear-gradient(135deg, #46b248 0%, #08fc0096 50%, #46b248 100%);overflow: hidden;background-size: 200% auto;color: #fff;text-align: center;}
.sitebtn:hover {background-position: right center;}
.mobinfo {margin-top: 20px;}
.mobinfo h2 { color: #333; font-weight: 700;}
.mobinfo dl dd {display: flex;margin-top: 5px; align-items: center;}
.mobinfo dl dd i {width: 15px;height: 15px;display: flex;align-items: center;justify-content: center;margin-top: 5px;}
.mobinfo dl dd i img {max-width: 100%;}
.mobinfo dl dd p {width: calc(100% - 14px);padding-left: 10px;color: #333; }
.mobinfo dl dd p a {color: #333; }
.mobinfo dl dd p a:hover{color: #46b248;}
@keyframes sjnav{0% {width: 0;}25% {width: 15px;}50% {width: 30px;}75% {width: 15px;}100% {width: 0;}}

.header.fh .mobmenu dl dd {background: #333;}
.header.fh .mobmenu h4 {color: #333;}


@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) {
  /* banner */
  .indexSwiper .con .re img {max-width: 16%;}

  /* 联系我们 */
  .contactThree .box .re {width: 320px;}
}

/* ======================================================1500px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1500px) {
 
}
/* ======================================================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) {
/* 走进联业 */
.aboutTwo dl dd {flex-wrap: wrap;}
.aboutTwo dl .ddle {width: 100%;justify-content: space-between;}
.aboutTwo dd span {width: 100%;display: block; text-align: center; margin-top: .2rem;}

}

/* ======================================================1250px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1280px) {

}

/* ======================================================1200px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1200px) {
 /* 头部 */
 nav {width: 65%;}

 /* 首页 */
 .indexOne ul li h4 {font-size: var(--font25);}
 .indexOne ul li h5 {font-size: var(--font25);}

}

/* ======================================================1100px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1100px) {
  

}

/* ======================================================1028px========================================================= */
@media screen and (min-width: 200px) and (max-width: 1028px) {
  /* 头部 */
  nav {display: none;}
  .mobmenu {display: flex;}
  .heSearch {display: none;}

  /* 首页 */
  .indexThree ul { grid-template-columns: repeat(4,auto);}
  .indexThree ul li:nth-child(n+6) {transform: none;}
  .indexThree ul li:nth-child(10) { grid-column-start:initial;}
  .indexThree ul li:nth-child(n+5) {transform: translateX(54%) translateY(-44%);}
  .indexThree ul li:nth-child(8) { grid-column-start:1;}
  .indexThree ul li:nth-child(n+8) {transform: translateX(0%) translateY(-88%);}
  .indexThree ul li:last-child { transform: translateX(55%) translateY(-134%);grid-column-start: 2;}
  .strength-list ul {flex-wrap: wrap; justify-content: space-around;}
  .strength-list ul li {text-align: center; max-width: 28%;}

  /* 走进联业 */
  .aboutFour .box .le {width: 60%;}
  .aboutFive .text {width: 80%;}
  .aboutFive .fz_nav .abtbox2_nav .swiper-slide .item {font-size: 1rem;}

  /* 新闻列表 */
  .newslist .lelist li .leImg {width: 50%;}

  /* 常见问题 */
  .questionsCase ul {grid-template-columns: repeat(3,1fr);}

}

/* ======================================================960px========================================================= */
@media screen and (min-width: 200px) and (max-width: 960px) {
  /* 首页 */
  .indexTwo .box {flex-wrap: wrap;}
  .indexTwo .box .re {width: 100%;}

  /* 走进联业 */
  .aboutTwo .box {flex-wrap: wrap;}
  .aboutTwo .box .le {width: 100%; margin-top: 0;}
  .aboutTwo .box .re {width: 100%; order: -1;}
  .aboutTwo dl dd .counter {font-size: .5rem;}

  /* 服务范围 */
  .servicesList li {padding: .5rem;}

  /* 产品专区 */
  .productBox .le {width: 26%;}
  .productBox .re {width: 65%;}
  .productBox .container::after {left: 29%;}
  .productBox .re ul {    grid-template-columns: repeat(2,1fr);}

  /* 新闻详情 */
  .newsxq-box {flex-wrap: wrap;}
  .news-left {width: 100%;}
  .newsxq-box .news-right {width: 100%; margin-top: .5rem; position: relative; top: 0;}
  .newsDate .relist .reImg {max-width: 3rem;}
}

/* ======================================================手机端========================================================= */
@media screen and (min-width: 200px) and (max-width: 767px) {
  .container {width: 90%;}
  /* 头部 */
  .mobnavBox {width: 100%;}

  /* 首页 */
  .indexSwiper .con {justify-content: center; text-align: center;}
  .indexSwiper .con strong {font-size: .5rem;}
  .indexSwiper .con .le img {margin: auto; margin-top: .3rem;}
  .bannerSwiper .imgBox img {height: 8rem;}
  .indexSwiper .con .re {display: none;}
  .indexSwiper .swjt.swiper-button-prev {left: 5%;}
  .indexSwiper .swjt {right: 5%;}
  .indexOne .tleBox .tle {width: 100%; margin-bottom: .3rem;}
  .indexOne .tleBox .bjzt {font-size: 1.25rem; left: 0;}
  .indexOne ul {flex-wrap: wrap; justify-content: space-between; margin: 0;}
  .indexOne ul li {width: 100%; flex: none; margin: 0;    margin-top: .3rem; height: 5rem;}
  .indexOne ul li.on {flex: none;}
  .indexOne ul li .con {justify-content: center; padding: .2rem;}
  .indexOne ul li h4 {opacity: 0; visibility: hidden;}
  .indexOne ul li h5 {transform: translateY(0); opacity: 1;}
  .indexOne ul li p {transform: translateY(0); opacity: 1; font-size: var(--font13);}
  .indexOne ul li .more { transform: translateY(0);opacity: 1;}

  .indexTwo .re dl {flex-wrap: wrap;}
  .indexTwo .re dl dd {width: 50%; margin-bottom: .2rem;}
  .indexTwo .le strong {font-size: 1rem;}
  .indexTwo .re dd .counter {font-size: .52rem;}
  
  .indexThree {padding-bottom: .8rem;}
  .indexThree ul {grid-template-columns: repeat(3,1fr);    gap: .2rem;  }
  .indexThree ul li {width: 100%;height: 3rem;margin: 0;}
  .indexThree ul li:nth-child(n+5) {transform: none;}
  .indexThree ul li:nth-child(8) {  grid-column-start: auto;}
  .indexThree .more { transform: none; margin-top: 1rem;}
  .indexThree ul li .liBox .icBox {max-width: .6rem;    height: .8rem;}
  .indexThree ul li .liBox .icBox img {max-height: 100%;}
  .indexThree ul li .liBox span {font-size: .25rem;}
  .indexThree ul li {height: auto; padding: .6rem 0; background: rgba(255, 255, 255,.5);  -webkit-clip-path: none;clip-path:none;}
  .indexThree ul li:last-child {  grid-column-start: initial;}

  .indexFour .tle {width: 100%;flex-wrap: wrap;}
  .indexFour .tle .le {width: 100%;margin-bottom: .3rem;}
  .strength-list ul li { max-width: 46%;}
  .strength-list ul li svg {width: 96%; height: 96%;}

  /* 底部 */
  .foterTop {justify-content: center;}
  .foterTop .topre {width: 100%;order: -1; text-align: center; }
  .foterTop .tople {text-align: center;width: 100%; margin-top: .3rem;}
  .foternav {flex-wrap: wrap;}
  .foternav dl .ddbox {display: none;}
  .foternav dl {width: 100%;}
  .foternav dl dt {margin-bottom: 0;position: relative;cursor: pointer;}
  .foternav dl dt::after {content: ""; background: url(../fonts/jt1.svg) no-repeat right;display: block; width: 15px;height: 15px;background-size: 100%;  position: absolute; right: 0;right: 5%; top: 0; transform-origin: center; transition: .35s;}
  .foternav dl dt.on::after {transform: rotate(90deg);}
  .foternav dl {margin-bottom: 15px;border-bottom: 1px solid #eee;padding-bottom: 15px;}
  .foternav dl:last-child dt::after {display: none;}
  .foternav dl:last-child {margin-bottom: 0; border: 0;}
  .foternav .navUs {margin-left: 0; width: 100%; text-align: center;}
  .copyRight {flex-wrap: wrap;}
  .copyRight .c-code-btn {width:100%; text-align: center; margin-top: 0rem;}
  
 /* ===============================================================================内页=========================================================== */
  /* 走进联业 */
  .aboutOne .con strong {font-size: .425rem;}
  .nypagenav ul {justify-content: space-between;flex-wrap: wrap; width: 100%;}
  .nypagenav ul li {width: 33%;margin-bottom: .3rem; margin-right: 0;}
  
  .aboutOne .bjBox {opacity: .2;}

  .aboutTwo .box .le {padding: .8rem .25rem;}
  .aboutTwo .box .le dl {display: flex;flex-wrap: wrap;justify-content: space-between;}
  .aboutTwo dl dd {flex-wrap: wrap;width: 48%;}
  .aboutTwo dl .ddle {    justify-content: center;}
  .aboutTwo dl dd .counter {font-size: .35rem;}
  .aboutTwo dd .disc {font-size: .2rem;}
  .aboutTwo dl dd:last-child { border-bottom: 1px solid #DDDDDD; padding: .3rem 0;}

  .aboutThree ul {flex-wrap: wrap;}
  .aboutThree ul li {width: calc(100%/2);}
  
  .aboutFive .more a span {font-size: var(--font14);}
  .aboutFive .more a svg {max-width: 13%;}

  .hon_con_box .swiper-container {width: 52%;}
  .hon_nav_box {width: 100%; max-width: 100%;}
  .hon_nav_box .swiper-button-prev {transform: translate(-40%, -50%) rotate(180deg);}
  .hon_nav_box .swiper-button-next {transform: translate(40%, -50%);}

  .historyList {padding: .3rem 0; padding-bottom: 1rem;}
  .historyList ul {background: url(../images/history-bj.png) repeat-y right;}
  .hislist li {width: 100%;text-align: left; float: none; padding-top: .5rem;}
  .hislist li i {left: 99.4%;}
  .hislist li h3 {margin-bottom: .3rem;}
  .hislist li .time .timeCon::after {    width: 65%; left: 63%;}
  .hislist li .time {align-items: flex-start;}
  .hislist li dd {padding-left: .25rem;}
  .hislist li dd::after {left: 0;}
  .hislist li:nth-child(even) {    float: none;}
  .hislist li:nth-child(even) .box {width: 100%;}
  .hislist li:nth-child(even) .box .boxCon {width: 100%;}
  .hislist li:nth-child(2n) i {left: 99.4%;}
  .hislist li:nth-child(2n) .time .timeCon::after {    width: 65%; left: 63%;}
  .hislist li:nth-child(2n) dd {padding-right: .1rem;}

  /* 服务范围 */
  .ny-banner .con h3 {font-size: .52rem;}
  .ny-banner .imgBox img {height: 4rem; object-fit: cover;}
  .servicesList li {position: relative; top: 0; transform: scale(1);}
  .servicesList li a {flex-wrap: wrap; }
  .servicesList li .le {width: 100%;}
  .servicesList li .re {width: 100%; margin-top: .3rem;}
  .servicesList li .con {line-height: 1.8; display: -webkit-box;overflow: hidden;-webkit-line-clamp: 3;-webkit-box-orient: vertical;}

  /* 产品专区 */
  .contactOne .nypagenav .box {justify-content: flex-start; margin-top: .3rem;}
  .contactOne .nypagenav .box .mbx {transform: none;}
  .productBox .box {flex-wrap: wrap;}
  .productBox .le {width: 100%; position: relative; top: 0;}
  .productBox .container::after {display: none;}
  .productBox .le ul {display: flex; flex-wrap: wrap;}
  .productBox .le ul li {width: 50%;}
  .productBox .re {width: 100%;padding-top: 0;}
  
  /* 产品详情 */
  .proxq-box {flex-wrap: wrap;}
  .proxq-pic {width: 100%;}
  .proxq-info {width: 100%;margin-top: .3rem;}
  .proxq-info strong {font-size: var(--font30);}
  .proDateInfo .box {flex-wrap: wrap;}
  .proDateInfo .box .le {width: 100%;}
  .proDateInfo .box .re {width: 100%; position: relative; top: 0; margin-top: .3rem;}
  
  /* 实力范围 */
  .strengthOne .text {width: 100%;}
  #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;}
  /* 生产基地 */
  .baselist ul {grid-template-columns: repeat(2,1fr); gap: .2rem;}

  /* 新闻列表 */
  .newsnav {flex-wrap: wrap;} 
  .newsnav ul {margin-top: .3rem;}
  .newsnav ul li {justify-content: center;}
  .newslist {flex-wrap: wrap;}
  .newslist .le {width: 100%;}
  .newslist .re {width: 100%; position: relative; top: 0;margin-top: .5rem;}
  .newslist .lelist li a {flex-wrap: wrap;}
  .newslist .lelist li .leImg {width: 100%;    border-radius: .15rem .15rem 0 0;}
  .newslist .lelist li .leCon {padding:.5rem .25rem; width: 100%;}

  /* 常见问题 */
  .questionsCase ul {grid-template-columns: repeat(2,1fr);}
  .questionslist li a {padding: .3rem;}
  .questionslist li .tle h4 {font-size: var(--font20);}

  /* 联系我们 */
  .contactTwo {padding: 1rem 0;}
  .contactTwo .box {flex-wrap: wrap;}
  .contactTwo .box .le {width: 100%;}
  .contactTwo .box .re {width: 100%; text-align: center; margin-top: .3rem;}
  .contactThree {padding-bottom: 1rem;}
  .contactThree .box {flex-wrap: wrap;}
  .contactThree .box .le {width: 100%;}
  .contactThree .box .re {width: 100%; margin-top: .5rem;}
  .contact-mess dd {width: 100%; margin-bottom: .25rem;}
  .contact-mess dd:last-child {margin-top: 0;}
  .contactFour .aboutTle {padding: .7rem 0;}



}

@media screen and (min-width: 200px) and (max-width: 640px) {
  /* 走进联业 */
  .aboutThree ul {min-height: auto;}
  .aboutThree ul li {width:100%;height: 6rem;}
  .aboutFour .box {flex-wrap: wrap;}
  .aboutFour .box .le {width: 100%;}
  .aboutFour .box .re {width: 100%;margin-top: .5rem;}
  .aboutFour .box .le .icBox img {max-width: .5rem;}
  .aboutFive .text {line-height: 1.8; width: 90%;}

  /* 常见问题 */
  .questionsCase ul {grid-template-columns: repeat(1,1fr);}

  /* 生产基地 */
  .baselist ul {grid-template-columns: repeat(1,1fr); gap: .2rem;}
}

@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) {

}
