*{
    outline:0 none !important; ;
}
html{font-size: 100px;}
html.act{overflow: hidden;width: 100%;height: 100vh;}
*,*:before,*:after {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
*{ margin:0; padding:0;outline: none;}
body {position: relative; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);margin:0 auto;overflow-x:hidden;position: relative;padding: 0 ; width: 100%;color: #1f1f1f;font-family:-apple-system, BlinkMacSystemFont, PingFang SC, Microsoft YaHei, Segoe UI, Hiragino Sans GB, Helvetica Neue, Arial, Helvetica, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol; font-size:0.14rem;  line-height:1;background: #fff;}
html.act{overflow: hidden;width: 100%;height: 100vh;}
ul,ul li,ol li,tr td,dl,dd{ list-style-type:none; margin:0; padding:0; }
.clearfix:after{content: " "; display: block; height:0; clear:both; visibility: hidden;}
.clearfix {*zoom:1;}
a{display: inline-block; text-decoration:none!important; cursor:pointer;color: #1f1f1f;}
textarea,select{ outline:none; color:#666; font-size:0.14rem; width:100%;}
textarea{
 resize:none;
}
img{border:none;max-width: 100%;display: block;}
img[src=""]{opacity: 0;}
i{font-style: normal;}

/* 滚动条样式 */
body::-webkit-scrollbar{ width:4px;height: 1px;}
body::-webkit-scrollbar-thumb{ background:rgba(255,255,255,0.4);}
body::-webkit-scrollbar-track{ background:#000;}
/*去掉 input 默认边框*/
input{padding: 0;border: 0;font-family: 微软雅黑;outline: none;}
input[type="submit"]{background-color: transparent;cursor: pointer;}
input[type="button"], input[type="submit"], input[type="reset"] {appearance:none;-moz-appearance:none;-webkit-appearance:none;}
select{appearance:none;-moz-appearance:none;-webkit-appearance:none;}
select::-ms-expand { display: none; }

/*弹窗 */

.zz_tanchuang {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  z-index: 999;
}

.zz_tanchuang .tbox {
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

/*弹窗内容 */

.zz_tanchuang .tbox .modal {
  background: white;
  padding: 30px;
  display: block;
  border-radius: 5px;
  position: relative;
  width: 80%;
  max-width: 1200px;
  max-height: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

.zz_tanchuang .tbox .modal .out {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #fff url(../img/out1.png) center no-repeat;
  background-size: 20px;
  color: #000;
  font-size: 30px;
  text-align: center;
  border-radius: 50%;
  top: 0;
  right: -50px;
  cursor: pointer;
  transition: all 0.5s;
}

.zz_tanchuang .tbox .modal .img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.zz_tanchuang .tbox .modal .img video {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  max-height: 67vh;
}

.zz_tanchuang .tbox .modal .img img {
  margin: 0 auto;
}

.zz_tanchuang .tbox .modal .out:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.zz_tanchuang .tbox .modal2 {
  padding: 20px;
}

.zz_tanchuang .tbox .modal .img {
  max-width: 1200px;
}

/*弹窗选中 */

.zz_tanchuang.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scaleY(0.01) scaleX(0);
  -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.zz_tanchuang.one .tbox .modal {
  transform: scale(0);
  animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(0);
  -webkit-animation: zoomIn 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1)
    forwards;
}

.zz_tanchuang.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(1);
  -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1)
    forwards;
}

.zz_tanchuang.one.out .tbox .modal {
  animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-animation: zoomOut 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.zz_tanchuang.one {
  transform: scale(1);
  -webkit-transform: scale(1);
}

/* 弹窗动画 */
@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@-webkit-keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@-webkit-keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }
  50% {
    transform: scaleY(0.005) scaleX(1);
  }
  100% {
    transform: scaleY(1) scaleX(1);
  }
}
 @font-face {
    font-family: 'gl';
	src: url("../font/Gilroy-Light.otf");
  }
  @font-face {
    font-family: 'gr';
	src: url("../font/gilroy-regular.otf");
  }
  @font-face {
    font-family: 'gs';
	src: url("../font/gilroy-semibold.otf");
  }
  @font-face {
    font-family: 'mb';
	src: url("../font/manrope-bold-2.otf");
  }
  @font-face {
    font-family: 'cm';
	src: url("../font/GOTHAMBOLD.TTF");
  }
  @font-face {
    font-family: 'din';
	src: url("../font/din.ttf");
  }
  @font-face {
    font-family: 'dinb';
	src: url("../font/dinb.ttf");
  }
  @font-face {
    font-family: 'nb';
	src: url("../font/nb.OTF");
  }
 @font-face {
   font-family: 'hb';
 	/* src: url("https://givegroup2020.oss-cn-shanghai.aliyuncs.com/luokeke/HarmonyOS_Sans_SC_Bold.ttf"); */
 	src: url("https://webpics.oss-cn-beijing.aliyuncs.com/font/HarmonyOS_Sans_SC_Bold.ttf");
 }
 @font-face {
   font-family: 'hbl';
 	src: url("https://webpics.oss-cn-beijing.aliyuncs.com/font/HarmonyOS_Sans_SC_Black.ttf");
 }
 @font-face {
   font-family: 'hl';
 	src: url("https://webpics.oss-cn-beijing.aliyuncs.com/font/HarmonyOS_Sans_SC_Light.ttf");
 }
 @font-face {
   font-family: 'hm';
 	src: url("https://webpics.oss-cn-beijing.aliyuncs.com/font/HarmonyOS_Sans_SC_Medium.ttf");
 }
 @font-face {
   font-family: 'hr';
 	src: url("https://webpics.oss-cn-beijing.aliyuncs.com/font/HarmonyOS_Sans_SC_Regular.ttf");
 }


.f_12 {
    font-size: 0.12rem;
}
.f_14 {
    font-size: 0.14rem;
}

.f_15 {
    font-size: 0.15rem;
}

.f_16 {
    font-size: 0.16rem;
}

.f_18 {
    font-size: 0.18rem;
}

.f_20 {
    font-size: 0.20rem;
}

.f_22 {
    font-size: 0.22rem;
}

.f_24 {
    font-size: 0.24rem;
}

.f_25 {
    font-size: 0.25rem;
}

.f_26 {
    font-size: 0.26rem;
}

.f_28 {
    font-size: 0.28rem;
}

.f_30 {
    font-size: 0.30rem;
}

.f_32 {
    font-size: 0.32rem;
}

.f_34 {
    font-size: 0.34rem;
}

.f_36 {
    font-size: 0.36rem;
}

.f_38 {
    font-size: 0.38rem;
}

.f_40 {
    font-size: 0.40rem;
}

.f_42 {
    font-size: 0.42rem;
}

.f_44 {
    font-size: 0.44rem;
}
.f_45 {
    font-size: 0.45rem;
}
.f_46 {
    font-size: 0.46rem;
}
.f_48 {
    font-size: 0.48rem;
}

.f_50 {
    font-size: 0.50rem;
}

.f_54 {
    font-size: 0.54rem;
}

.f_60 {
    font-size: 0.60rem;
}

.f_62 {
    font-size: 0.62rem;
}

.f_66 {
    font-size: 0.66rem;
}

.f_68 {
    font-size: 0.68rem;
}

.f_80 {
    font-size: 0.80rem;
}

.f_96 {
    font-size: 0.96rem;
}

.f_100 {
    font-size: 1rem;
}

.f_106 {
    font-size: 1.06rem;
}

.f_187 {
    font-size: 1.87rem;
}
.em2{
    text-indent: 2em;
}
/* 头部 */
.header{position: fixed;width: 100vw;top: 0;left: 0;z-index: 999;transition: all 0.5s;padding: 0 1.4rem;display: flex;justify-content: space-between;background-color: #fff;box-shadow: 0 0 0.4rem rgba(0,14,141,0.05);}
.header .logo{width: 3.22rem;display: flex;align-items: center;}
.header .right{display: flex;align-items: center;}
.header .nav{display: flex;}
.header .nav li{margin-right: 0.72rem;}
.header .nav li>a{padding: 0.38rem 0;font-family: hr;line-height: 0.24rem;color: #707070;transition: all 0.5s;position: relative;}
.header .nav li>a:after{content: "";position: absolute;bottom: -1px;left: 0;width: 0%;height: 4px;border-radius: 2px;background-color: #CF171B;transition: all 0.5s;}
.header .nav li.on>a,.header .nav li:hover>a{color:#CF171B;}
.header .nav li.on>a:after{width: 100%;}
.header .right .ser{width: 0.18rem;}
.header .right .solid{width: 1px;height: 0.15rem;background-color: rgba(0,0,0,0.44);margin: 0 0.2rem;}
.header .right .lag{position: relative;width: 0.18rem;}

.m_header{display: none;}
.mh_nav{display: none;}

.footer{background: url(../img/footer_bj.png);background-size: 100% 100%;background-color:#F7F7F7; padding-top: 0.94rem;}
.footer .f_top{padding: 0 1.4rem;margin-bottom: 0.58rem;}
.footer .f_top .f_logo{width: 3.22rem;}
.footer .f_center{display: flex;justify-content: space-between;padding: 0 1.4rem 0.78rem 1.4rem;border-bottom: 1px solid rgba(51,51,51,0.2);}
.footer .f_center .left{display: flex;width: 8.8rem;justify-content: space-between;}
.footer .f_center .left ul li a{font-family: hl;line-height: 0.26rem;transition: all 0.5s;}
.footer .f_center .left ul .li1 a{font-family: hr;color: #333333;line-height: 0.24rem;margin-bottom: 0.16rem;}
.footer .f_center .left ul li a:hover{color: #CF171B;}
.footer .f_center .right .tel{font-family: hb;color: #333333;line-height: 0.4rem;margin-bottom: 0.36rem;}
.footer .f_center .right .back{display: flex;justify-content: right;}
.footer .f_center .right .back img{width: 0.56rem;cursor: pointer;margin-bottom: 0.52rem;}
.footer .f_center .right .link{width: 2.37rem;line-height: 0.44rem;border-radius: 0.22rem;background-color: rgba(51,51,51,0.11);padding: 0 0.23rem;position: relative;}
.footer .f_center .right .link .h{background: url(../img/f_xl.png)no-repeat right center;background-size: 0.08rem auto;font-family: hr;color: #333333;}
.footer .f_center .right .link ul{position: absolute;top: 100%;background-color: rgba(51,51,51,0.11);width:calc(100% - 0.46rem);left: 0.23rem;padding: 0 0.12rem;display: none;}
.footer .f_bottom{display: flex;justify-content: space-between;padding: 0.38rem 1.4rem 0.6rem 1.4rem;color: #333333;}
.footer .f_bottom a{color: #333333;}
.footer .f_bottom span{margin: 0 0.12rem;}
.footer .f_bottom .p{margin-left: 0.58rem;}




.index_con{position: relative;overflow: hidden;height: 100vh;width: 100%;}
.index_con>.swiper-wrapper>.swiper-slide{height: 100vh;position: relative;}
.index_con>.swiper-wrapper>.fp-auto-height{height: auto;position: relative;}
.index_con>.swiper-pagination{left: 0;font-family: hm;font-size: 0.16rem;width: 0.58rem;}
.index_con>.swiper-pagination .swiper-pagination-bullet{display: block;width: 0.58rem;height: 0.2rem;text-align: right; background-color: transparent;opacity: 1;color: #999999;position: relative;line-height: 0.22rem;margin:0.4rem 0;}
.index_con>.swiper-pagination .swiper-pagination-bullet-active{background-color: transparent;color: #CF171B;}
.index_con>.swiper-pagination .swiper-pagination-bullet-active:after{content: "";position: absolute;bottom: -2px;left: 0.38rem;width: 0.2rem;height: 1px;background-color: #CF171B;}
.index_con>.swiper-pagination .swiper-pagination-bullet-active::before{content: "";position: absolute;left: 0;top: 50%;width: 0.29rem;height: 1px;background-color: #E50112;}

.index_con>.swiper-wrapper>.fp-auto-height .footer{display: block!important;}



.pc_banner{width: 100%;height: 100vh;position: relative;overflow: hidden;}
.pc_banner .swiper-slide{position: relative;height: 100%;overflow:hidden;}
.pc_banner .slide-inner{position: absolute;width: 100%;height: 100%;left: 0;top: 0;background-size: cover;background-position: center;display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;justify-content: center;}
.pc_banner .slide-inner .txt{position: absolute;left: 0;top: 48.14vh;width: 100%;text-align: center;color: #ffffff;}
.pc_banner .slide-inner .txt .h div:nth-child(1){
    position: relative;
    margin-right: 1.04vw;
}
.pc_banner .slide-inner .txt .h div:nth-child(1)::after{
    content: "";
    position: absolute;
    top: -0.31vw;
    right: -1.04vw;
    display: block;
  width: 1.53vw;
  height: 1.46vw;
  background-image: url(../img/lqadd2.svg);
  background-size: 100% 100%;
  transition: all 0.5s;
}
.pc_banner .slide-inner .txt .h{font-family: hb;line-height: 0.88rem;margin-bottom: 0.05rem;display:flex;justify-content:center;font-size:0.78rem;}
.pc_banner .slide-inner .txt .h span{vertical-align: top;position: relative;top: -0.20rem;font-size: 0.32rem;}
.pc_banner .video_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.2rem;
  font-size: 0.28rem;
  color: #fff;
  cursor: pointer;
}
.pc_banner .video_box img {
  width: 0.7rem;
  margin-right: 0.12rem;
}
.pc_banner .slide-inner .txt .p{font-family: gr;line-height: 0.24rem;}
.pc_banner .b_tab{position: absolute;bottom: 0.6rem;left: 0;width: 100%;display: flex; justify-content: center;color: #ffffff;z-index: 2;}
.pc_banner .b_tab .item{margin: 0 0.95rem;opacity: 0.6!important;transition: all 0.5s;cursor: pointer;}
.pc_banner .b_tab .item.on{opacity: 1!important;}
.pc_banner .b_tab .item .num{font-family: cm;font-weight: bold;}
.pc_banner .b_tab .item .solid{width: 2rem;height: 1px;background-color: #ffffff;margin: 0.17rem 0 0.2rem 0;}
.pc_banner .b_tab .item .p{font-family: hm;line-height: 20px;}
.pc_banner .swiper-pagination{bottom: 10.83vh;}
.pc_banner .swiper-pagination .swiper-pagination-bullet{width: 0.25rem;height: 0.05rem;border-radius: 0.03rem;opacity: 0.2;background-color: #ffffff;margin: 0 0.08rem;}
.pc_banner .swiper-pagination .swiper-pagination-bullet-active{opacity: 1;}
.pc_banner #water{position: absolute;top: 5vw;right: -11vw;width: 23vw;height: 100%;z-index: 10;opacity: 0.8;pointer-events: none;transform: scale(-1,-1) rotate(13deg);}

.m_banner{display: none;}

/* 首页样式 */
.i_part1{position: relative;}
.i_part1 .txt{width: 9.24rem;margin-top: 51.85vh;transform: translateY(-50%);padding-left: 1.4rem;position: relative;z-index: 2;}
.i_part1 .txt .h1{font-family: hb;line-height: 0.52rem;color: #333333;margin-bottom: 0.26rem;}
.i_part1 .txt .h2{font-family: hb;line-height: 0.38rem;color: #333333;margin-bottom: 0.3rem;}
.i_part1 .txt .p{font-family: hr;line-height: 0.32rem;color: #666666;margin-bottom: 0.78rem;height: 0.96rem;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;width: 7rem; }
.i_part1 .txt .btn{display: block;width: 1.63rem;line-height: 0.36rem;text-align: center;color: #fff;font-family: hm;background: url(../img/btn_bj.png);background-size: 100% 100%;}
.i_part1 .txt .btn span{padding-right: 0.34rem;background: url(../img/btn.png)no-repeat right center;background-size: 0.25rem auto;}
.i_part1 .bottom{position: absolute;bottom: 9.26vh;left: 0;width: 100%;padding: 0 2.3rem; display: flex;justify-content: space-between;}
.i_part1 .bottom .box{text-align: center;}
.i_part1 .bottom .box .top{display: flex;align-items: flex-end;justify-content: center;}
.i_part1 .bottom .box .top .num{line-height: 0.56rem;position: relative;font-family: Arial; font-weight: bold;color:#CF171B;padding-right: 0.15rem;}
.i_part1 .bottom .box .top .num span{position: absolute;top: 0;right: 0;font-weight: bold;color: #CF171B;font-size: 0.24rem;line-height: 1;}
.i_part1 .bottom .box .top .dw{font-family: hr;color: #CF171B;line-height: 0.24rem;}
.i_part1 .bottom .box .p{font-family: hr;color: #333333;line-height: 0.24rem;}
.i_part1 .map{position: absolute;bottom: 0;left: 0;width: 100%;}
.i_part1 .m_map{display: none;}

@keyframes offset1 {
    0% {
    stroke-dashoffset: 1500;
    }
    100%{
    stroke-dashoffset: 0;  
    }
}


.i_part1 .map svg{position: absolute;z-index: 2;}
.i_part1.swiper-slide-active .map svg #svg1,.i_part1.swiper-slide-active .map svg #svg2,.i_part1.swiper-slide-active .map svg #svg3,.i_part1.swiper-slide-active .map svg #svg4,.i_part1.swiper-slide-active .map svg #svg5,.i_part1.swiper-slide-active .map svg #svg6,.i_part1.swiper-slide-active .map svg #svg7,.i_part1.swiper-slide-active .map svg #svg8,.i_part1.swiper-slide-active .map svg #svg9{stroke-dasharray: 1500;stroke-dashoffset: 1500;animation: offset1 1.5s linear infinite;}
.i_part1 .map .svg1{bottom: 81%;right: -19vw;width: 31.25vw;transform: translate(-50%,50%);}
.i_part1 .map .svg2{bottom: 60%;right: 11vw;width: 7.448vw;transform: translate(-50%,50%);}
.i_part1 .map .svg3{bottom: 59%;right: 17vw;width: 3.411vw;transform: translate(-50%,50%);}
.i_part1 .map .svg4{bottom: 54%;right: 15.8vw;width: 3.7125vw;transform: translate(-50%,50%);}
.i_part1 .map .svg5{bottom: 48%;right: 23.9vw;width: 0.5vw;transform: translate(-50%,50%);}
.i_part1 .map .svg6{bottom:52%;right: 22.4vw;width: 5.99vw;transform: translate(-50%,50%);}
.i_part1 .map .svg7{bottom: 44%;right: -3.5vw;width: 51.46vw;transform: translate(-50%,50%);}
.i_part1 .map .svg8{bottom: 76%;right: 6vw;width: 45.4375vw;transform: translate(-50%,50%);}
.i_part1 .map .svg9{bottom: 74%;right: 12vw;width: 26.38vw;transform: translate(-50%,50%);}

.i_part2{position: relative;height: 100vh;padding-top: 1rem;background: url(../img/ip2_bj.png)no-repeat left bottom;background-size: 13rem calc(100vh - 1rem);}
.i_part2 .tit{position: absolute;top:2.9rem;left: 1.5rem;font-family: hb;color: #333333;line-height: 0.52rem;z-index: 10;}
.i_part2 .txts{position: absolute;top: 1rem;left: 0;width: 42.88vw;height: calc(100% - 1rem);padding-top: 41.6vh;overflow: hidden;}
.i_part2 .txts .swiper-slide{padding-left: 1.5rem;opacity: 0;transition: all 0.5s;}
.i_part2 .txts .swiper-slide-active{opacity: 1;}
.i_part2 .txts .swiper-slide .h{font-family: hb;color: #333;line-height: 0.42rem;margin-bottom: 0.75rem;}
.i_part2 .txts .swiper-slide .p{font-family: hr;color: #666666;line-height: 0.24rem;margin-bottom: 1rem;line-height:1.75;}
.i_part2 .txts .swiper-slide .btn{display: block;width: 1.63rem;line-height: 0.36rem;text-align: center;color: #fff;font-family: hm;background: url(../img/btn_bj.png);background-size: 100% 100%;}
.i_part2 .txts .swiper-slide .btn span{padding-right: 0.34rem;background: url(../img/btn.png)no-repeat right center;background-size: 0.25rem auto;}

/* .i_part2 .right{position: relative;} */
.i_part2 .pic_box{position: absolute;top: 1rem;right: 0;width: 8rem;height: calc(100% - 1rem);}
.i_part2 .pic_box .pic{position: absolute;top: 0;right: 0;width: 100%;height: 100%;background: no-repeat center;background-size: cover;opacity: 0;transition: all 0.5s;}
.i_part2 .pic_box .pic.on{opacity: 1;}
.i_part2 .icons{position: absolute;top:1rem;right: 6rem;width: 22.4vw;height:calc(100% - 1rem);background: url(../img/ip2_yueya.png)no-repeat left center;background-size: 9.63rem 16.56rem;z-index: 5;overflow: hidden;padding-left: 0.8rem;}
.i_part2 .icons .swiper-slide{display: flex;justify-content: center;align-items: center; width: 1.06rem;text-align: center; height:calc(20vh - 0.2rem);transform: translateX(1.2rem);transition: all 0.8s;}

.i_part2 .icons .swiper-slide-visible{transform: translateX(0.8rem);}
.i_part2 .icons .swiper-slide-prev,.i_part2 .icons .swiper-slide-next{transform: translateX(0.3rem);}
.i_part2 .icons .swiper-slide-active{transform: translateX(0rem);}
.i_part2 .icons .swiper-slide .icon{width: 0.84rem;height: 0.84rem;display: flex;justify-content: center;align-items: center;border: 1px solid rgba(145, 145, 145, 0.27);border-radius: 50%;margin: 0 auto;margin-bottom: 0.09rem;position: relative;z-index: 2;}
.i_part2 .icons .swiper-slide .icon img{width: 0.35rem;}
.i_part2 .icons .swiper-slide .icon .img1{display: none;}
.i_part2 .icons .swiper-slide .p{font-family: hm;color: #333333;}
.i_part2 .icons .swiper-slide-active .p{color: #CF171B;}
.i_part2 .icons .swiper-slide-active .icon{border-color: #CF171B;background-color: #CF171B;margin-bottom: 0.22rem;}
.i_part2 .icons .swiper-slide-active .icon:after{content: "";position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);width: 1.06rem;height: 1.06rem;background-color: rgba(207, 23, 27, 00.23);border-radius: 50%;z-index: -1;}
.i_part2 .icons .swiper-slide-active .icon .img1{display: block;}
.i_part2 .icons .swiper-slide-active .icon .img2{display: none;}
.i_part2 .icons .prev,.i_part2 .icons .next{position: absolute;left: 0;top: 50%;width: 0.5rem;height: 0.5rem;background-size: 100% 100%;z-index: 2;box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.09);border-radius: 50%;cursor: pointer;}
.i_part2 .icons .prev{transform: translateY(-70%);background-image: url(../img/ip2_prev.png);}
.i_part2 .icons .prev:hover{background-image: url(../img/ip2_prev1.png);}
.i_part2 .icons .next{transform: translateY(70%);background-image: url(../img/ip2_next.png);}
.i_part2 .icons .next:hover{background-image: url(../img/ip2_next1.png);}

.i_part3{background: url(https://webpics.oss-cn-beijing.aliyuncs.com/font/ip3_bj.png)no-repeat center;background-size: cover;position: relative;}
.i_part3 .txt{position: absolute;top: 45%;transform: translateY(-50%);left: 0;width: 100%;color: #fff;text-align: center;}
.i_part3 .txt .h{font-family: hb;line-height: 0.78rem;margin-bottom: 0.4rem;font-size: 0.58rem;}
.i_part3 .txt .p{font-family: hr;line-height: 0.52rem;}
.i_part3 .svg{overflow: hidden; position: absolute;bottom:0.18rem;left: 0;width:0;transition: all 0.8s 1s ease-in-out;}
.i_part3 .svg svg{width: 105vw;}
.i_part3.show .svg{width: 100%;}

.i_part4{background-color: #F7F7F7;padding: 14.8vh 1.6rem;}
.i_part4 .con{background-color: #fff;width: 100%;}
.i_part4 .con .top{padding: 0.34rem 0.53rem 0.27rem 0.53rem;display: flex;justify-content: space-between;align-items: center;border-bottom: 1px solid rgba(1,49,180,0.1);}
.i_part4 .con .top .tit{font-family: hb;color: #000000;line-height: 0.52rem;}
.i_part4 .con .top .tab{display: flex;}
.i_part4 .con .top .tab a{display: block;width: 1.3rem;line-height: 0.38rem;border: 0.01rem solid #F2F2F2;border-radius: 0.2rem;text-align: center;font-family: hr;color: #808080;margin-left: 0.2rem;transition: all 0.5s;}
.i_part4 .con .top .tab .on a{border-color: transparent;color: #fff;background-color: #CF171B;}
.i_part4 .con .center{display: flex;width: 100%; justify-content: space-between;padding: 0.35rem 0.47rem 0.43rem 0.54rem;flex-flow:row-reverse;}
.i_part4 .con .center .txt{width: 7.6rem;}
.i_part4 .con .center .txt .day{font-family: hb;color: #999999;line-height: 0.24rem;margin-bottom: 0.28rem;}
.i_part4 .con .center .txt .h{font-family: hb;color: #000000;line-height: 0.42rem;height:0.84rem;margin-bottom: 0.2rem;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.i_part4 .con .center .txt .p{font-family: hr;color: #4D4D4D;line-height: 0.3rem;height: 0.6rem;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;margin-bottom: 0.52rem;}
.i_part4 .con .center .txt .btn{display: block;width: 1.63rem;line-height: 0.36rem;text-align: center;color: #fff;font-family: hm;background: url(../img/btn_bj.png);background-size: 100% 100%;}
.i_part4 .con .center .txt .btn span{padding-right: 0.34rem;background: url(../img/btn.png)no-repeat right center;background-size: 0.25rem auto;}
.i_part4 .con .center .pics{width: 5.9rem;overflow: hidden;}
.i_part4 .con .center .pics .pic{width: 100%;height: 3.5rem;background: no-repeat center;background-size: cover;transition: all 0.5s;}
.i_part4 .con .center .pics .pic:hover{transform: scale(1.05);}
.i_part4 .con .bottom{display: flex;border-top: 1px solid rgba(1,49,180,0.1);}
.i_part4 .con .bottom .box{display: block;width: calc(100% / 3);padding: 0.46rem 0.27rem 0.54rem 0.54rem;border-right: 1px solid rgba(1,49,180,0.1);transition: all 0.5s;}
.i_part4 .con .bottom .box:hover{background: url(../img/ip4_bj.png)no-repeat center;background-size: cover;background-color: #CF171B;}
.i_part4 .con .bottom .box .h{font-family: hm;line-height: 0.38rem;height: 0.76rem;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;margin-bottom: 0.2rem;color: #000000;transition: all 0.5s;}
.i_part4 .con .bottom .box .day{font-family: hb;color: #999999;line-height: 0.22rem;transition: all 0.5s;}
.i_part4 .con .bottom .box:hover .h,.i_part4 .con .bottom .box:hover .day{color: #fff;}

/* 首页样式 end */



/* 内页公共 */
.ny_banner{height: 8.4rem;background: no-repeat center;background-size: cover;position: relative;margin-top: 1rem;}
.ny_banner .txt{position: absolute;top: 3.27rem;left: 0;width: 100%;text-align: center;color: #fff;font-family: hb;}
.ny_banner .ny_tab{position: absolute;bottom: 0;left: 0;width: 100%;display: flex;padding: 0 1.2rem;background: rgba(51,51,51,0.82);}
.ny_banner .ny_tab .home{width: 0.8rem;height: 0.8rem;display: flex;justify-content: center;align-items: center;background-color: #DB0032;}
.ny_banner .ny_tab .home img{width: 0.3rem;}
.ny_banner .ny_tab ul{display: flex;width: calc(100% - 0.8rem);}
.ny_banner .ny_tab ul li{width: calc(100% / 3);text-align: center;border-right: 1px solid #707070;}
.ny_banner .ny_tab ul li.act a{
    color: #DB0032;
}
.ny_banner .ny_tab ul li a{line-height: 0.8rem;color: #fff;font-family: hl;}

/* 案例 */
.case_tab{display: flex;justify-content: space-between;padding: 1.1rem 1.4rem 0 1.4rem;}
.case_tab .box{display: block;text-align: center;}
.case_tab .box .icon{display: flex;justify-content: center;align-items: center;border-radius: 50%;border: 1px solid #CF171B;position: relative;transition: all 0.5s;width: 1rem;height: 1rem;margin: 0 auto;margin-bottom: 0.3rem;z-index: 2;}
.case_tab .box .icon::before{content: "";position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);background-color: rgba(207,23,27,0.23);border-radius: 50%;z-index: -1;width: 0;height: 0;transition: all 0.5s;}
.case_tab .box.on .icon::before{width: 1.3rem;height: 1.3rem;}
.case_tab .box:hover .icon::before{width: 1.3rem;height: 1.3rem;}
.case_tab .box .icon img{height: 0.39rem;}
.case_tab .box .icon .img2{display: none;}
.case_tab .box.on .icon{background-color: #CF171B;}
.case_tab .box.on .icon .img2{display: block;}
.case_tab .box.on .icon .img1{display: none;}
.case_tab .box:hover .icon{background-color: #CF171B;}
.case_tab .box:hover .icon .img2{display: block;}
.case_tab .box:hover .icon .img1{display: none;}
.case_tab .box .p{font-family: hr;color: #707070;line-height: 0.24rem;transition: all 0.5s;}
.case_tab .box.on .p{color: #CF171B;}
.case_tab .box:hover .p{color: #CF171B;}

.case1{padding: 1.1rem 1.4rem 1.2rem 1.4rem;}
.case1 .tit{text-align: center;line-height: 0.52rem;font-family: hb;color: #333333;margin-bottom: 0.86rem;}
.case1 .con{display: flex;align-items: center;}
.case1 .con .pics{width: 8.9rem;overflow: hidden;}
.case1 .con .pics .pic{width: 100%;height: 5.9rem;background: no-repeat center;background-size: cover;transition: all 0.5s cubic-bezier(0.3, 0, 0.24, 1);}
.case1 .con .pics .pic:hover{transform: scale(1.05);}
.case1 .con .txt{width: 7.5rem;background-color: #F8F8F8;padding: 0.67rem 0.76rem 1.14rem 0.68rem;}
.case1 .con .txt .h{font-family: hr;line-height: 0.42rem;color: #333333;margin-bottom: 0.7rem;background: url(../img/case_solid.png)no-repeat left bottom;background-size: 0.9rem auto;}
.case1 .con .txt .p{font-family: hr;line-height: 0.32rem;color: #707070;height: 2.56rem;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 8;-webkit-box-orient: vertical;}

.case2{padding: 0 1.4rem 1.2rem 1.4rem;}
.case2 .tit{text-align: center;line-height: 0.52rem;font-family: hb;color: #333333;margin-bottom: 0.86rem;}
.case2 .con{display: flex;align-items: center;flex-flow:row-reverse;}
.case2 .con .pics{width: 7.5rem;overflow: hidden;display:none;}
.case2 .con .pics .pic{width: 100%;height: 6rem;background: no-repeat center;background-size: 100% 100%;transition: all 0.5s cubic-bezier(0.3, 0, 0.24, 1);}
.case2 .con .pics .pic:hover{transform: scale(1.05);}
.case2 .con .txt{width: 100%;background-color: #F8F8F8;padding: 0.67rem 0.76rem 1.14rem 0.68rem;}
/*.case2 .con .txt{width: 8.9rem;background-color: #F8F8F8;padding: 0.67rem 0.76rem 1.14rem 0.68rem;}*/
.case2 .con .txt .h{font-family: hr;line-height: 0.42rem;color: #333333;margin-bottom: 0.7rem;background: url(../img/case_solid.png)no-repeat left bottom;background-size: 0.9rem auto;}
.case2 .con .txt .p{font-family: hr;line-height: 0.32rem;color: #707070;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 8;-webkit-box-orient: vertical;}

.case3{padding: 0 1.4rem 0.8rem 1.4rem;}
.case3 .tit{text-align: center;line-height: 0.52rem;color: #333333;font-family: hb;margin-bottom: 0.22rem;}
.case3 .more{display: block; text-align: center;line-height: 0.2rem;color: #CF171B;font-family: hr;margin-bottom: 0.42rem;}
.case3 .boxs{display: flex;justify-content: space-between;flex-wrap: wrap;align-items: flex-start;}
.case3 .boxs::after{content: "";width: 32%;height: 0;}
.case3 .boxs .box{display: block;width: 32%;background-color: #F5F5F5;}
.case3 .boxs .box .pics{width: 100%;overflow: hidden;}
.case3 .boxs .box .pics .pic{width: 100%;height: 3.5rem;background: no-repeat center;background-size: cover;transition: all 0.5s;}
.case3 .boxs .box .pics:hover .pic{transform: scale(1.05);}
.case3 .boxs .box .txt{margin: 0.3rem 0.2rem 0.45rem 0.2rem;font-family: hm;line-height: 0.42rem;color: #333333;height: 0.84rem;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.footer.case{background-color: #fff;}

/* 技术 */
.tec1{padding: 1.1rem 1.2rem 1.2rem 1.2rem;}
.tec1 .tit{text-align: center;font-family: hb;color:#333333;line-height: 0.48rem;margin-bottom: 0.86rem;}
.tec1 .con{display: flex;align-items: center;}
.tec1 .con .pics{width: 8.87rem;overflow: hidden;}
.tec1 .con .pics .pic{width: 100%;height: 5.92rem;background: no-repeat center;background-size: cover;transition: all 0.5s;}
.tec1 .con .pics .pic:hover{transform: scale(1.05);}
.tec1 .con .txt{width: 7.72rem;background-color: #F8F8F8;padding: 1.25rem 0.37rem 1.25rem 0.68rem;}
.tec1 .con .txt .p{font-family: hr;color: #666666;line-height: 0.32rem;height: 2.88rem;overflow: auto;padding-right: 0.65rem;}
.tec1 .con .txt .p::-webkit-scrollbar{ width:3px;height: 1px;}
.tec1 .con .txt .p::-webkit-scrollbar-thumb{ background:#CF171B;}
.tec1 .con .txt .p::-webkit-scrollbar-track{ background:#E5E5E5;}

.tec2{padding: 0 1.2rem 2.8rem 1.2rem;background: url(../img/tec2_bj.png)no-repeat center bottom;background-size: 100% auto;}
.tec2 .tit{text-align: center;font-family: hb;color: #333333;line-height: 0.48rem;margin-bottom: 0.6rem;}
.tec2 .con{width: 100%;position: relative;overflow: hidden;margin-bottom: 1.3rem;}
.tec2 .con .swiper-slide{width: 30vw;height: 19vw;background: no-repeat center;background-size: cover;opacity: 0.7;}
.tec2 .con .swiper-slide-active{opacity: 1;}
.tec2 .p{text-align: center;line-height: 0.32rem;font-family: hr;color: #666666;}

.tec3{padding: 0.53rem 1.2rem 0.8rem 1.2rem;background: url(../img/tec3_bj.png)no-repeat center bottom;background-size: 100% auto;}
.tec3 .tit{text-align: center;font-family: hb;color: #333333;line-height: 0.48rem;margin-bottom: 0.36rem;}
.tec3 .p{text-align: center;font-family: hr;line-height: 0.38rem;color: #666666;margin-bottom: 1.36rem;}
.tec3 .con{width: 100%;position: relative;overflow: hidden;padding-bottom: 1.46rem;}
.tec3 .con .swiper-slide{overflow: hidden;border-radius: 50%;}
.tec3 .con .swiper-slide .pic{width: 100%;padding-bottom: 100%;background: no-repeat center;background-size: cover;transition: all 0.5s;}
.tec3 .con .swiper-slide .pic:hover{transform: scale(1.05);}
.tec3 .con .prev,.tec3 .con .next{position: absolute;bottom: 0;width: 0.5rem;height: 0.5rem;background-size:100% 100%;cursor: pointer;z-index: 3;}
.tec3 .con .prev{left: 50%;background-image: url(../img/tec_prev.png);transform: translateX(-110%);}
.tec3 .con .next{right: 50%;background-image: url(../img/tec_next.png);transform: translateX(110%);}
.tec3 .con .prev:hover{background-image: url(../img/tec_prev1.png);}
.tec3 .con .next:hover{background-image: url(../img/tec_next1.png);}

.tec4{padding: 1.1rem 1.44rem 0.7rem 1.25rem;}
.tec4 .tit{text-align: center;font-family: hb;color: #333;line-height: 0.48rem;margin-bottom: 0.58rem;}
.tec4 .con{display: flex;justify-content: space-between;align-items: center;}
.tec4 .con .map{width: 42.396vw;position: relative;}
.tec4 .con .m_map{display: none;}

@keyframes offset {
    0% {
    stroke-dashoffset: 350;
    }
    100%{
    stroke-dashoffset: 0;  
    }
}

.tec4 .con .map #svgs1{position: absolute;top: 60%;right: 21.5%;width: 1.98vw;transform: translateY(-50%);}
.tec4 .con .map #svgs2{position: absolute;top: 62%;right: 21.8%;width: 2.28vw;transform: translateY(-50%);}
.tec4 .con .map #svgs3{position: absolute;top: 74%;right: 21.8%;width: 5.5vw;transform: translateY(-50%);}
.tec4 .con .map #svgs4{position: absolute;top: 67%;right: 21.8%;width: 1.126vw;transform: translateY(-50%);}

.tec4 .con .map #svgs1 #svg1{stroke-dasharray: 350;stroke-dashoffset: 350;animation: offset 1.5s linear infinite;}
.tec4 .con .map #svgs2 #svg2{stroke-dasharray: 350;stroke-dashoffset: 350;animation: offset 1.5s linear infinite;}
.tec4 .con .map #svgs3 #svg3{stroke-dasharray: 350;stroke-dashoffset: 350;animation: offset 1.5s linear infinite;}
.tec4 .con .map #svgs4 #svg4{stroke-dasharray: 350;stroke-dashoffset: 350;animation: offset 1.5s linear infinite;}


.tec4 .con .right{width: 7.1rem;}
.tec4 .con .right .top{display: flex;justify-content: space-between;margin-bottom: 0.775rem;}
.tec4 .con .right .top .box{width: 3.2rem;border-bottom: 1px solid #D4D4D4;display: flex;justify-content: space-between;padding-bottom: 0.3rem;
    position: relative;
}
.tec4 .con .right .top .box span{
    position: absolute;
    right: 0;
    top: 0;
    font-family: hm;
    color: #DB0032;font-size: 0.28rem;
}
.tec4 .con .right .top .box .h{position: relative;font-family: hm;color: #DB0032;line-height: 0.82rem;position: relative;width:1rem;}
.tec4 .con .right .top .box .h span{font-size: 0.26rem;position: absolute;top: 0;right: 0;line-height: 1;}
.tec4 .con .right .top .box .icon{margin-top: 0.1rem;width: 0.62rem;}
.tec4 .con .right .top .box .num .p{font-family: hr;color: #333333;line-height: 0.2rem;}
.tec4 .con .right .bottom{font-family: hr;line-height: 0.32rem;color: #666666;}

/* 企业理念 */
.idea1{padding: 1.37rem 1.4rem 0.9rem 1.4rem;background: url(../img/id1_bj.png)no-repeat right bottom;background-size: 7.94rem auto;}
.idea1 .con{display: flex;justify-content: space-between;align-items: flex-start;}
.idea1 .con .left{width: 7.94rem;overflow: hidden;}
.idea1 .con .left .pic{width: 100%;height: 4.6rem;background: no-repeat center;background-size: cover;transition: all 0.5s;}
.idea1 .con .left .pic:hover{transform: scale(1.05);}
.idea1 .con .right{width: 7.2rem;padding-top: 0.92rem;position:relative;}
.idea1 .con .right::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    background-color:  #CF171B;
    width: 0;
    transition: all 1.5s;
}
.idea1 .con .right.act::after{
    width: 100%;
}

.idea1 .con .right .h{font-family: hb;color: #333333;line-height: 0.52rem;margin-bottom: 0.8rem;}
.idea1 .con .right .p{font-family: hr;line-height: 0.32rem;color: #666666;}
.idea1 .con .right .p span{font-family: hb;color: #CF171B;font-size: 0.24rem;}

.idea2{padding: 0.17rem 1.4rem 2.16rem 1.4rem;}
.idea2 .tit{text-align: center;font-family: hb;color: #333333;line-height: 0.52rem;margin-bottom: 0.52rem;}
.idea2 .p{font-family: hr;line-height: 0.30rem;color: #333333;text-align: center;}
.idea2 .p span{font-size: 0.24rem;font-family: hb;color: #CF171B;}
.idea2 .con{position: relative;overflow: hidden;margin-top: 0.66rem;padding-bottom: 1.28rem;}
.idea2 .con .swiper-slide{width: 8.85rem;height: 5.2rem;background: no-repeat center;background-size: cover;opacity: 0.6;transition: all 0.5s;}
.idea2 .con .swiper-slide-active{opacity: 1;}
.idea2 .con .prev,.idea2 .con .next{position: absolute;bottom: 0;width: 0.89rem;height: 0.48rem;background-size: 100% 100%;cursor: pointer;z-index: 30;}
.idea2 .con .prev{left: 50%;background-image: url(../img/id2_prev.png);transform: translateX(-150%);}
.idea2 .con .next{right: 50%;background-image: url(../img/id2_next.png);transform: translateX(150%);}
.idea2 .con .prev:hover{background-image: url(../img/id2_prev1.png);}
.idea2 .con .next:hover{background-image: url(../img/id2_next1.png);}
.idea2 .con .swiper-pagination{line-height: 0.48rem;bottom: 0;font-size: 0.16rem;color: #777777;}
.idea2 .con .swiper-pagination .swiper-pagination-current{font-size: 0.3rem;font-family: hb;color: #333;}

.idea3{position: relative;height: 7.4rem;z-index: 2;margin-bottom: 1.95rem;}
.idea3 .right{position: absolute;bottom: 0;right: 0;z-index: -1;width: 10.64rem;height: 6.5rem;background: no-repeat center;background-size: cover;}
.idea3 .left{width: 9.6rem;position: relative;z-index: 2;background-color: #CF171B;color: #ffffff;padding: 1.03rem 2.52rem 0.6rem 2.64rem;}
.idea3 .left .tit{position: relative;padding-top: 0.5rem;font-family: hb;line-height: 0.52rem;margin-bottom: 0.7rem;background: url(../img/id_solid.png)no-repeat left top;background-size: 0.9rem auto;}
.idea3 .left .p{font-family: hr;line-height: 0.3rem;}
.idea4{position: relative;color: #ffffff;height: 5.5rem;}
.idea4 .pic{position: absolute;top: 0;left: 0;width: 100%;height: 8.4rem;background: no-repeat center;background-size: cover;}
.idea4 .txt{position: absolute;top: 50%;left: 0;transform: translateY(-50%);font-family: hm;line-height: 0.64rem;text-align: center;width: 100%;}

.footer.idea{position: relative;background-color: transparent;}

/* 关于我们 */
.ab1{padding: 0.7rem 1.4rem 1.52rem 1.4rem;background: url(../img/ab1_bj.png)no-repeat center bottom;background-size: 100% auto;}
.ab1 .con{width: 100%;display: flex;justify-content: space-between;align-items: center;}
.ab1 .con .txt{width: 8.3rem;}
.ab1 .con .txt .h{font-family: hb;color: #333333;line-height: 0.52rem;margin-bottom: 0.54rem;}
.ab1 .con .txt .p{font-family: hr;line-height: 0.32rem;color: #666666;margin-bottom: 0.82rem;}
.ab1 .con .txt .btn{display: block;width: 1.63rem;line-height: 0.36rem;text-align: center;color: #fff;font-family: hm;background: url(../img/btn_bj.png);background-size: 100% 100%;}
.ab1 .con .txt .btn span{padding-right: 0.34rem;background: url(../img/btn.png)no-repeat right center;background-size: 0.25rem auto;}
.ab1 .con .pics{width: 6.58rem;overflow: hidden;}
.ab1 .con .pics .pic{width: 100%;height: 7.75rem;background: no-repeat center;background-size: cover;transition: all 0.5s;}
.ab1 .con .pics .pic:hover{transform: scale(1.05);}

.ab2{position:relative; height: 100vh;background: no-repeat center;background-size: cover;color: #fff;display: flex;justify-content: center;align-items: center;}
.ab2 .txt{width: 100%;text-align: center;}
.ab2 .txt .h{font-family: hb;line-height: 0.64rem;margin-bottom: 0.3rem;}
.ab2 .txt .p{font-family: hr;line-height: 0.4rem;}

.ab2 .border {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1rem solid #fff;
  transition: all 1s;
  z-index: 9;
}
.ab2 .border.act {
  border: 0 solid #fff;
}
.ab3{padding: 1.77rem 1.4rem 0.7rem 1.4rem;background: url(../img/ab3_bj.png)no-repeat center bottom;background-size: 100% auto;}
.ab3 .tit{font-family: hb;color: #333333;line-height: 0.52rem;text-align: center;margin-bottom: 0.5rem;}
.ab3 .con{position: relative;overflow: hidden;padding-bottom: 1.35rem;padding-top: 0.4rem;}
.ab3 .con .swiper-slide{text-align: center;padding: 0 0.6rem;}
.ab3 .con .swiper-slide .year{width: 2.28rem;height: 2.28rem;border-radius: 50%;line-height: 2.28rem;text-align: center;font-family: hb;color: #000000;transition: all 0.5s;background-color: #E1E1E1;margin: 2px auto; margin-bottom: 0.72rem;position: relative;cursor: pointer;}
.ab3 .con .swiper-slide .year::before{content: "";position: absolute;top: 50%;left: 50%;width: 2.92rem;height: 2.92rem;background: url(../img/ab_huan.png);background-size: 100% 100%;transform: translate(-50%,-50%);transition: all 0.5s;}
.ab3 .con .swiper-slide:hover .year::before{transform:translate(-50%,-50%) rotate(120deg);background-image: url(../img/ab_huan1.png);}
.ab3 .con .swiper-slide:hover .year{color: #ffffff;background-color: #CF171B;}
.ab3 .con .swiper-slide .sj{margin: 0 auto;display: table;margin-bottom: 0.42rem;}
.ab3 .con .swiper-slide .sj .img1{display: none;}
.ab3 .con .swiper-slide:hover .sj .img1{display: block;}
.ab3 .con .swiper-slide:hover .sj .img2{display: none;}
.ab3 .con .swiper-slide .p{font-family: hr;line-height: 0.32rem;color: #666666;height: 1.28rem;margin-bottom: 0.36rem;}
.ab3 .con .prev,.ab3 .con .next{position: absolute;bottom: 0;width: 0.5rem;height: 0.5rem;background-size:100% 100%;cursor: pointer;z-index: 3;}
.ab3 .con .prev{left: 50%;background-image: url(../img/tec_prev.png);transform: translateX(-110%);}
.ab3 .con .next{right: 50%;background-image: url(../img/tec_next.png);transform: translateX(110%);}
.ab3 .con .prev:hover{background-image: url(../img/tec_prev1.png);}
.ab3 .con .next:hover{background-image: url(../img/tec_next1.png);}

.ab3 .con .solid1{position: absolute;bottom: 1.35rem;left: 25%;width: 1px;height: 2.64rem;background-color: #707070;z-index: 3;opacity: 0.3;}
.ab3 .con .solid2{position: absolute;bottom: 1.35rem;left: 50%;width: 1px;height: 2.64rem;background-color: #707070;z-index: 3;opacity: 0.3;}
.ab3 .con .solid3{position: absolute;bottom: 1.35rem;left: 75%;width: 1px;height: 2.64rem;background-color: #707070;z-index: 3;opacity: 0.3;}

.ab4{padding: 1.82rem 1.4rem 0.92rem 1.4rem;background: url(../img/ab4_bj.png)no-repeat center;background-size: cover;}
.ab4 .tit{text-align: center;font-family: hb;color: #ffffff;line-height: 0.52rem;margin-bottom: 0.97rem;}
.ab4 .con{width: 100%;position: relative;overflow: hidden;padding-bottom: 1.75rem;padding-top: 0.2rem;}
.ab4 .con .swiper-slide{width: 26.56vw;}
.ab4 .con .swiper-slide .pics{width: 100%;overflow: hidden;margin-bottom: 0.8rem;}
.ab4 .con .swiper-slide .pics .pic{width: 100%;height: 18vw;background: no-repeat center;background-size: cover;}
.ab4 .con .swiper-slide .txt{font-family: hr;line-height: 0.24rem;color: #FFFFFF;transition: all 0.5s;opacity: 0;text-align: center;}
.ab4 .con .swiper-slide-active .txt{opacity: 1;}
.ab4 .con .prev,.ab4 .con .next{position: absolute;cursor: pointer;z-index: 2;bottom: 0;width: 0.5rem;height: 0.5rem;background-size: 100% 100%;}
.ab4 .con .prev{left: 50%;transform: translateX(-130%);background-image: url(../img/tec_prev.png);}
.ab4 .con .next{right: 50%;transform: translateX(130%);background-image: url(../img/tec_next.png);}
.ab4 .con .prev:hover{background-image: url(../img/tec_prev1.png);}
.ab4 .con .next:hover{background-image: url(../img/tec_next1.png);}

.footer.ab{background-color: transparent;z-index: 2;position: relative;}

.ab5{padding: 1.62rem 1.4rem 0.8rem 1.4rem;position: relative;}
.ab5 .tit{font-family: hb;color: #333;line-height: 0.52rem;text-align: center;margin-bottom: 1.08rem;}
.ab5:after{content:"";position: absolute;top: 0;left: 0;width: 100%;height: 14.4rem;background: url(../img/ab5_bj.png)no-repeat center top;background-size: 100% auto;}
.ab5 .con{position: relative;width: 100%;z-index: 2;margin-bottom: 1.5rem;}
.ab5 .con .txt{width: 55vw;background-color: #fff;box-shadow: 0 0.03rem 0.4rem rgba(141,0,0,0.05);position: relative;overflow: hidden;}
.ab5 .con .txt .swiper-slide{padding: 1.96rem 2.57rem 1.9rem 0.78rem;}
.ab5 .con .txt .swiper-slide .h{font-family: hb;color: #333333;line-height: 0.42rem;margin-bottom: 0.3rem;}
.ab5 .con .txt .swiper-slide .p{font-family: hr;line-height: 0.32rem;color: #666666;}
.ab5 .con .txt .swiper-slide .p span{color: #CF171B;font-family: hb;}
.ab5 .con .pics{position: absolute;top: 50%;transform: translateY(-50%);right:0;width: 38.54vw;height: 4rem;overflow: hidden;background-color: #fff;z-index: 2;}
.ab5 .con .pics .swiper-slide{height: 100%;overflow: hidden;}
.ab5 .con .pics .swiper-slide .pic{width: 100%;height: 100%;background: no-repeat center;background-size: cover;transition: all 0.5s;}
.ab5 .con .prev,.ab5 .con .next{position: absolute;cursor: pointer;z-index: 3;bottom: -1.5rem;width: 0.5rem;height: 0.5rem;background-size: 100% 100%;}
.ab5 .con .prev{left: 50%;transform: translateX(-130%);background-image: url(../img/tec_prev.png);}
.ab5 .con .next{right: 50%;transform: translateX(130%);background-image: url(../img/tec_next.png);}
.ab5 .con .prev:hover{background-image: url(../img/tec_prev1.png);}
.ab5 .con .next:hover{background-image: url(../img/tec_next1.png);}

/* 新闻列表 */
.nl_con{padding: 1.58rem 1.4rem 0.8rem 1.4rem;background: #F5F5F5;}
.nl_con .nl1{display: flex;justify-content: space-between;flex-flow:row-reverse; align-items: center; padding: 0.42rem 0.56rem 0.47rem 0.74rem;background: url(../img/nl_bj.png)no-repeat left bottom;background-size: 10.53rem 4.47rem;background-color: #fff;margin-bottom: 0.9rem; position: relative;}
.nl_con .nl1 .txt{width: 36.8vw;position: relative;overflow: hidden;}
.nl_con .nl1 .txt .day{font-family: hb;color: #999999;line-height: 0.24rem;margin-bottom: 0.28rem;}
.nl_con .nl1 .txt .h{font-family: hm;color: #CF171B;line-height: 0.46rem;margin-bottom: 0.34rem;height: 0.46rem;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}
.nl_con .nl1 .txt .p{font-family: hr;color: #999999;line-height: 0.32rem;height: 0.96rem;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;margin-bottom: 0.2rem;}
.nl_con .nl1 .txt .btn{display: block;width: 1.63rem;line-height: 0.36rem;text-align: center;color: #fff;font-family: hm;background: url(../img/btn_bj.png);background-size: 100% 100%;}
.nl_con .nl1 .txt .btn span{padding-right: 0.34rem;background: url(../img/btn.png)no-repeat right center;background-size: 0.25rem auto;}
.nl_con .nl1 .pics{position: relative;overflow: hidden;width: 33.38vw;}
.nl_con .nl1 .pics .swiper-slide{width: 100%;height: 3.94rem;overflow: hidden;}
.nl_con .nl1 .pics .swiper-slide .pic{width: 100%;height: 100%;background: no-repeat center;background-size: cover;transition: all 0.5s;}
.nl_con .nl1 .pics .swiper-slide .pic:hover{transform: scale(1.05);}
.nl_con .swiper-pagination{bottom: -0.4rem;left: 50%;transform: translateX(-50%);}
.nl_con .swiper-pagination-bullet{width: 0.11rem;height: 0.11rem;opacity: 1;background-color: #B9B9B9;margin: 0 0.08rem;transition: all 0.5s;}
.nl_con .swiper-pagination-bullet-active{background-color: #CF171B;}

.nl_con .nl2 .top{display: flex;justify-content: center;}
.nl_con .nl2 .top .xl{width: 2.5rem;margin-right: 0.4rem;line-height: 0.6rem;height: 0.6rem; background-color: #ffffff;position: relative;}
.nl_con .nl2 .top .cx{width: 4.27rem;line-height: 0.6rem;background-color: #fff;margin-right: 0.48rem;background: url(../img/input_ser.png);background-size: 100% 100%;padding-left: 0.7rem;}
.nl_con .nl2 .top button{width: 1.78rem;text-align: center;line-height: 0.6rem;color: #fff;background-color: #CF171B;border: none;cursor: pointer;}
.nl_con .nl2 .boxs{width: 100%;display: flex;justify-content: space-between;flex-wrap: wrap;}
.nl_con .nl2 .boxs:after{content: "";width: 26vw;height: 0;}
.nl_con .nl2 .boxs .box{display: block;width: 26vw;padding-top: 0.41rem;border-top: 1px solid #D5D5D5;margin-top: 0.4rem;}
.nl_con .nl2 .boxs .box:hover .box1{background-color: #fff;box-shadow:0 3px 0.4rem rgba(141, 0, 0, 0.05);}
.nl_con .nl2 .boxs .box1{width: 100%; padding: 0.39rem 0.3rem 0.65rem 0.3rem;transition: all 0.5s;}
.nl_con .nl2 .boxs .box1 .pics{width: 100%;overflow: hidden;height: 2.88rem;position: relative;margin-bottom: 0.33rem;}
.nl_con .nl2 .boxs .box1 .pics img{width: 100%;height: 100%; transition: all 0.5s;}
.nl_con .nl2 .boxs .box:hover .box1 .pics img{transform: scale(1.05);}
.nl_con .nl2 .boxs .box1 .txt .h{font-family: hm;line-height: 0.38rem;color: #333333;height: 0.76rem;margin-bottom: 0.8rem;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.nl_con .nl2 .boxs .box1 .txt .p{display: flex;justify-content: space-between;align-items: center;}
.nl_con .nl2 .boxs .box1 .txt .p .day{font-family: hr;color: #999999;line-height: 0.24rem;}
.nl_con .nl2 .boxs .box1 .txt .p .more{font-family: hr;color: #999999;line-height: 0.22rem;transition: all 0.5s;}
.nl_con .nl2 .boxs .box:hover .box1 .txt .p .more{color: #CF171B;}

.el-input__suffix{display: none!important;}
.el-input--suffix .el-input__inner{background: url(../img/input_xl.png);background-size: 100% 100%;line-height: 0.6rem!important;}

.nd_con{margin-top: 1rem;padding: 0.43rem 3.5rem 0.8rem 3.5rem;}
.nd_con .nd_tab{margin-bottom: 0.9rem;}
.nd_con .nd_tab a{font-family: hr;color: #999999;line-height: 0.2rem;transition: all 0.5s;}
.nd_con .nd_tab a:hover{color: #CF171B;}
.nd_con .nd_tab a:nth-child(1){color: #333333;}
.nd_con .top{text-align: center;padding-bottom: 0.47rem;border-bottom: 1px solid #D5D5D5;margin-bottom: 0.5rem;}
.nd_con .top .h{font-family: hb;color: #000000;line-height: 0.52rem;margin-bottom: 0.4rem;}
.nd_con .top .time{font-family: hr;color: #999999;line-height: 0.26rem;}
.nd_con .center{max-width: 964px;margin: 0 auto;padding-bottom: 0.5rem;line-height:1.5;}
.nd_con .center .p{font-family: hr;color: #000000;line-height: 0.32rem;}
.nd_con .center img{max-width: 100%;margin: 0 auto;margin-bottom: 0.4rem;}
.nd_con .bottom{display: flex;justify-content: space-between;padding: 0.5rem 0 0 0;border-top: 1px solid #D5D5D5;}
.nd_con .bottom .left{width:calc(100% - 180px);}
.nd_con .bottom .left li{font-family: hr;line-height: 0.22rem;margin-bottom: 0.18rem;color: #999999;}
.nd_con .bottom .left li:last-child{margin-bottom: 0;}
.nd_con .bottom .left li a{color: #333333;transition: all 0.5s;}
.nd_con .bottom .left li a:hover{color: #CF171B;}
.nd_con .bottom .right{display: flex;align-items: center;}
.nd_con .bottom .right a{width: 0.32rem;margin-left: 0.12rem;display: block;position: relative;}
.nd_con .bottom .right a .img2{display: none;}
.nd_con .bottom .right a:hover .img1{display: none;}
.nd_con .bottom .right a:hover .img2{display: block;}

.nd_con .bottom .right a a{position: absolute;top: 0;left: 0;width: 100%;height: 100%;margin-left: 0;}
.social-share .icon-wechat,.social-share .icon-qq,.social-share .icon-weibo{border: transparent;}
.social-share .icon-wechat:hover,.social-share .icon-qq:hover,.social-share .icon-weibo:hover{background-color: transparent;}
.social-share .icon-wechat:before,.social-share .icon-qq:before,.social-share .icon-weibo:before{color: transparent;}



@media screen and (min-width:1900px) and (max-width:1930px) {
    html{font-size: 100px!important;}
}
@media screen and (min-width:1650px) and (max-width:1680px) {
    html{font-size: 87.5px!important;}
}
@media screen and (min-width:1400px) and (max-width:1440px) {
    html{font-size: 75px!important;}
}
@media screen and (min-width:1320px) and (max-width:1360px) {
    html{font-size: 70.8px!important;}
}
@media screen and (min-width:1230px) and (max-width:1280px) {
    html{font-size: 66.6px!important;}
}

@media screen and (min-width:2400px) and (max-width:2560px) {
	html{font-size: 130px!important;}
}

@media screen and (max-width: 1680px) {
	/*html{font-size: 86px!important;}*/
}
@media screen and (max-width: 1560px) {
	/*html{font-size: 82px!important;}*/
	.nd_con .top .h{font-size: 24px;line-height: 32px;}
	.ab5 .right{width: 18.77vw;}
	.ab5 .right .swiper-slide-active div{font-size: 16px;}
	.idea1 .con .right{
	    width: 6.2rem;
	}
}
@media screen and (max-width: 1440px) {
	/*html{font-size: 73px!important;}*/
	.mod1 .pics{padding: 2rem 0;}
	.i_part3 .boxs .box .txt .p1{line-height: 24px;}
	.i_part3 .boxs .box .txt .p2{line-height: 24px;}
	.footer .top .w1676 .t_right ul{margin-left: 0.8rem;}
	
}
@media screen and (max-width: 1366px) {
	/*html{font-size: 71px!important;}*/
	.f_20{font-size: 14px;}
}
@media screen and (max-width: 1280px) {
	/*html{font-size: 66px!important;}*/
}
@media screen and (max-width: 1150px) {
	.idea1 .con .right{
	    width: 5.2rem;
	}
	.idea1 .con .left{
	    width: 7.5rem;
	}
}
@media screen and (max-width: 1024px) {
	html{font-size: 60px!important;}
	
	.header{display: none;}
	.m_header{position: fixed;top: 0;left: 0;width: 100%;background-color: #ffffff;box-shadow: 0 0 10px rgba(0,0,0,0.1);padding:10px 15px;z-index: 98;}
	.m_header .mh_top{display: flex;justify-content: space-between;align-items: center;}
	.m_header .mh_top>div{align-items: center;}
	.m_header .mh_top>div .h_btn{width: 1.95rem;line-height: 0.58rem;text-align: center;border: 1px solid #000000;font-size: 0.24rem;margin-right: 0.44rem;}
	.m_header .logo img{width: 140px;}
	.m_header .btn{display: block;}
	.m_header .btn{margin-right: 0;cursor: pointer;height: 37px;padding-top: 16px;}
	.m_header .btn.hide{opacity: 0;}
	.m_header .btn span{display: block;width: 22px;height: 1px;background-color: #333;border-radius: 1px;transition: all 0.3s;}
	.m_header .btn span:nth-child(1){transform: translate(0,-8px);}
	.m_header .btn span:nth-child(2){transform: translate(12px,0);width: 12px;}
	.m_header .btn span:nth-child(3){transform: translate(0px,8px);}
	.m_header .btn:hover span:nth-child(1){transform: translate(0,-8px);}
	.m_header .btn:hover span:nth-child(2){transform: translate(0,0);width: 22px;}
	.m_header .btn:hover span:nth-child(3){transform: translate(0,8px);}
	.m_header{display: block;}
	
	.mh_nav{display: block;}
	.mh_nav{position: fixed;top: 0;left: 10%;width: 90%;transform: translateX(120%);z-index: 999;background-color: #fff;height: 100vh;overflow: auto;padding: 50px 25px;transition: all 0.5s;box-shadow: 0 10px 10px rgba(0,0,0,0.1);}
	.mh_nav.show{transform: translateX(0);}
	.mh_nav .close{position: absolute;top: 20px;right: 20px;width: 20px;height: 20px;}
	.mh_nav .nav>li{border-bottom: 1px solid rgba(0,0,0,0.1);position: relative;padding-right: 60px;}
	.mh_nav .nav>li>a{line-height: 60px;font-size: 16px;display: block;}
	/*background: url(../img/hl_jt.png)no-repeat center;.mh_nav .nav>li:after*/
	.mh_nav .nav>li:after{content: "";position: absolute;right: 0;top:24px;transition: all 0.5s; width: 12px;height: 12px;}
	.mh_nav .nav>li.on:after{transform: rotate(90deg);}
	.mh_nav .nav>li:first-child:after{display: none;}
	.mh_nav .nav>li .nav1{padding: 15px;line-height: 36px;display: none;font-size: 14px;}
	
	.index_con{height: auto;}
	.index_con>.swiper-wrapper{display: block;}
	.index_con>.swiper-wrapper>.swiper-slide{height: auto;}
	.pc_banner{height: 81vh!important;}
	.pc_banner #water{width: 28vw;transform: scale(-1,-1) rotate(6deg);}
	.pc_banner .slide-inner .txt{top: 34.85vh;padding:0 20%;}
	.pc_banner .slide-inner .txt .h{font-size: 25px;line-height: 34px;}
	
	.i_part1{height: auto;padding: 42px 25px;}
	.i_part1 .txt{margin-top: 0;transform: translateY(0);width:100%;padding-left:0;}
	.i_part1 .txt .h1{font-size: 25px;line-height: 34px;margin-bottom: 6px;}
	.i_part1 .txt .h2{font-size: 16px;line-height: 18px;margin-bottom: 9px;}
	.i_part1 .txt .p{width: 100%;font-size:12px;line-height: 16px;height:48px;margin-bottom:20px;}
	.i_part1 .txt .btn{width: 106px;line-height: 24px;font-size:11px;}
	.i_part1 .map{position: relative;top:0;left:0;display:none;}
	.i_part1 .m_map{display: block;margin-top:16px;margin-bottom:26px;}
	.i_part1 .bottom{position: static;padding:0;}
	.i_part1 .bottom .box{padding: 0 0.1rem;}
	.i_part1 .bottom .box .p{font-size: 11px;line-height: 15px;}
	
	.i_part2{padding: 60px 25px;}
	.i_part2 .tit{position: static;margin-bottom:20px;font-size:25px;line-height:34px;}
	.i_part2 .txts .swiper-slide .h{font-size: 16px;line-height: 22px;margin-bottom: 15px;}
	.i_part2 .txts .swiper-slide .p{font-size: 11px;line-height: 16px;margin-bottom:29px;}
	.i_part2 .txts .swiper-slide .btn{width: 106px;line-height: 24px;font-size:11px;}
	.i_part2 .txts{position: static;padding-top: 0;width:100%;}
	.i_part2 .icons{position: relative;top: 0;left: 0;right: auto;padding-left:0;padding-bottom:28px;width:100%;background:transparent;}
	.i_part2 .icons .swiper-slide-prev, .i_part2 .icons .swiper-slide-next{transform: translateX(0);}
	.i_part2 .icons .swiper-slide{transform: translateX(0);}
	.i_part2 .pic_box{display: none;}
	.i_part2 .icons .prev, .i_part2 .icons .next{top: auto;bottom: 0;}
	.i_part2 .icons .prev{transform: translateX(-150%) rotate(-90deg);left:50%;}
	.i_part2 .icons .next{transform: translateX(150%) rotate(-90deg);left:auto;right:50%;}
	.i_part2 .txts .swiper-slide{padding-left: 0;}
	
	.i_part3{padding: 85px 0 40px 0;}
	.i_part3 .txt{position: static;transform:translateY(0);}
	.i_part3 .txt .h{font-size: 20px;line-height: 26px;margin-bottom: 10px;padding:0 25px;}
	.i_part3 .txt .p{font-size: 11px;line-height: 16px;padding: 0 25px;margin-bottom:13.5px;}
	.i_part3 .svg{width: 100%;position:static;}

	.i_part4{padding: 18px 25px 48px 25px;}
	.i_part4 .con .top{display: block;padding:13px 14px 15px 14px;}
	.i_part4 .con .top .tit{font-size: 25px;line-height: 34px;margin-bottom: 15px;}
	.i_part4 .con .top .tab a{margin-left: 0;margin-right: 7px;width: 93px;line-height: 28px;border-radius: 14px;}
	.i_part4 .con .center{display: block;padding:15px 15px 24px 15px;}
	.i_part4 .con .center .pics{width: 100%;margin-bottom:11px;}
	.i_part4 .con .center .pics .pic{height: 46.67vw;}
	.i_part4 .con .center .txt{width: 100%;}
	.i_part4 .con .center .txt .day{font-size: 11px;line-height: 16px;margin-bottom: 10px;}
	.i_part4 .con .center .txt .h{font-size: 16px;line-height: 22px;margin-bottom: 10px;}
	.i_part4 .con .center .txt .p{font-size: 11px;line-height: 16px;margin-bottom: 11px;}
	.i_part4 .con .center .txt .btn{width: 106px;line-height: 24px;font-size:11px;}
	.i_part4 .con .bottom{display: block;}
	.i_part4 .con .bottom .box{width: 100%;border-right:none;border-bottom:1px solid rgba(1,49,180,0.1);padding:15px;}
	.i_part4 .con .bottom .box:last-child{border-bottom:none;}
	.i_part4 .con .bottom .box .h{font-size: 15px;line-height: 20px;margin-bottom: 8px;max-height:40px;height:auto;}
	.i_part4 .con .bottom .box .day{font-size: 11px;line-height: 16px;}
	
	.footer .f_top,.footer .f_center{display: none;}
	.footer .f_bottom{padding: 15px;display:block;text-align:center;line-height:2;}
	.footer .f_bottom .p{margin-left: 0;}
	
	.ny_banner{height: 5rem;}
	.ny_banner .txt{top: 2.1rem;font-size:30px;line-height:1.5;}
	.ny_banner .ny_tab{display: none;}
	.ab1{padding: 40px 0 0 0;}
	.ab1 .con{display: block;}
	.ab1 .con .txt{width: 100%;margin-bottom:20px;padding:0 25px;}
	.ab1 .con .pics{width: 100%;}
	.ab1 .con .txt .h{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.ab1 .con .txt .p{font-size: 11px;line-height: 16px;margin-bottom:16px;}
	.ab1 .con .txt .btn{width: 106px;line-height: 24px;font-size:11px;}
	.ab1 .con .pics .pic{height: 6.75rem;}
	.ab2 .border{display: none;}
	.ab2 .txt .h{font-size: 20px;line-height: 28px;text-align: center;margin-bottom: 20px;}
	.ab2 .txt .p{font-size: 14px;line-height: 20px;}
	.ab2{padding: 85px 25px;height:auto;}
	.ab3{padding: 40px 25px;background: url(../img/ab3_bj.png)no-repeat center;
    background-size: cover;}
	.ab3 .con .solid1,.ab3 .con .solid2,.ab3 .con .solid3{display: none;}
	.ab3 .tit{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.ab3 .con .swiper-slide .p{font-size: 14px;line-height: 20px;height: 80px;}
	.ab3 .con{padding-bottom: 0.6rem;}
	.ab4{padding: 85px 25px;}
	.ab4 .tit{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.ab4 .con{padding-bottom: 0.8rem;}
	.ab4 .con .swiper-slide{width: 35vw;}
	.ab4 .con .swiper-slide .pics .pic{height: 24vw;}
	.ab4 .con .swiper-slide .pics{margin-bottom: 0.4rem;}
	.ab4 .con .swiper-slide .txt{font-size: 11px;line-height: 16px;}
	
	.ab5{padding: 40px 25px;}
	.ab5:after{display:none;}
	.ab5 .con .txt{width: 100%;}
	.ab5 .con .txt .swiper-slide{padding: 20px 15px;}
	.ab5 .con .pics{position: static;width:100%;transform:translateY(0);}
	.ab5 .tit{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.ab5 .con .txt .swiper-slide .p{font-size: 11px;line-height: 16px;}
	
	.case_tab{padding: 40px 25px 20px 25px;flex-wrap:wrap;justify-content: center;}
	.case_tab .box{margin-bottom:0.25rem;}
	.case_tab .box .icon{width: 1rem;height: 1rem;margin:0 0.15rem;margin-bottom:0.2rem;}
	.case_tab .box.on .p{font-size: 11px;line-height: 16px;}
	.case1{padding: 20px 25px 40px 25px;}
	.case1 .tit{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.case1 .con{display: block;}
	.case1 .con .pics{width: 100%;}
	.case1 .con .pics .pic{height: 3.9rem;}
	.case1 .con .txt{width: 100%;padding:20px 15px;}
	.case1 .con .txt .h{margin-bottom: 20px;}
	.case1 .con .txt .p{font-size: 11px;line-height: 16px;height:auto;}
	.case2{padding: 0 25px 40px 25px;}
	.case2 .tit{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.case2 .con{display: block;}
	.case2 .con .pics{width: 100%;}
	.case2 .con .pics .pic{height: 3.9rem;}
	.case2 .con .txt{width: 100%;padding:20px 15px;}
	.case2 .con .txt .h{margin-bottom: 20px;}
	.case2 .con .txt .p{font-size: 11px;line-height: 16px;height:auto;}
	.case3{padding: 0 25px 40px 25px;}
	.case3 .boxs .box{width: 100%;margin-bottom: 15px;}
	.case3 .boxs .box .txt{font-size: 16px;line-height: 22px;height: 22px;text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;}
	.case3 .more{display: none;}
	
	.tec1{padding: 40px 25px;}
	.tec1 .tit{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.tec1 .con{display: block;}
	.tec1 .con .pics{width: 100%;}
	.tec1 .con .pics .pic{height: 3.5rem;}
	.tec1 .con .txt{width: 100%;padding:50px 15px 40px 30px;}
	.tec1 .con .txt .p{padding-right: 15px;font-size:11px;line-height:16px;height:128px;}
	.tec2{padding: 0 0 40px 0;}
	.tec2 .con .swiper-slide{width: 60vw;height:39vw;}
	.tec2 .con{margin-bottom: 38px;}
	.tec2 .p{padding: 0 25px;font-size: 11px;line-height: 16px;}
	
	.tec3{padding: 40px 0;}
	.tec3 .tit{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.tec3 .p{width: calc(100% - 50px);margin: 0 auto;font-size:11px;line-height:16px;margin-bottom:38px;}
	
	.tec4{padding: 40px 25px;}
	.tec4 .tit{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.tec4 .con{display: block;}
	.tec4 .con .map{width: 100%;}
	.tec4 .con .m_map{display: none;}
	.tec4 .con .right{width: 100%;}
	.tec4 .con .right .top{margin-top: 40px;margin-bottom: 25px;}
	.tec4 .con .right .top .box{width: 47%;}
	.tec4 .con .right .bottom{font-size: 11px;line-height: 16px;}
	
	.nl_con{padding: 40px 25px;}
	.nl_con .nl1{display: block;padding:0;}
	.nl_con .nl1 .txt{width: 100%;}
	.nl_con .nl1 .pics{width: 100%;}
	.nl_con .nl1 .txt .swiper-slide{padding: 20px 15px;}
	.nl_con .nl1 .txt .day{font-size: 11px;line-height: 16px;margin-bottom: 8px;}
	.nl_con .nl1 .txt .h{font-size: 16px;line-height: 24px;margin-bottom:12px;}
	.nl_con .nl1 .txt .p{font-size: 11px;line-height: 16px;margin-bottom: 15px;height:48px;}
	.nl_con .nl1 .txt .btn{width: 106px;line-height: 24px;font-size:11px;}
	.nl_con .nl2 .top{flex-wrap: wrap;justify-content:space-between;}
	.nl_con .nl2 .top .xl{width: 100%;margin:0;margin-bottom:12px;}
	.el-input--suffix .el-input__inner{background-size:auto 100%;background-position:right center;background-repeat:no-repeat;}
	.nl_con .nl2 .top .cx{width: 100%;margin:0;margin-bottom:12px;}
	.nl_con .nl2 .top button{width: 100%;}
	.nl_con .nl2 .boxs .box{width: 100%;}
	.nl_con .nl2 .boxs .box1{padding-bottom: 20px;}
	.nl_con .nl2 .boxs .box1 .txt .h{font-size: 16px;line-height: 24px;margin-bottom: 15px;height: 24px;}
	
	.nd_con{padding: 40px 25px;}
	.nd_con .top{padding-bottom: 20px;margin-bottom: 30px;}
	.nd_con .nd_tab{font-size: 11px;line-height: 16px;margin-bottom: 30px;}
	.nd_con .top .h{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.nd_con .bottom{display: block;}
	.nd_con .bottom .left{width: 100%;margin-bottom:10px;font-size:12px;line-height:18px;}
	.nd_con .bottom .right span{font-size: 11px;}
	
	.idea1{padding: 40px 20px;}
	.idea1 .con{display: block;}
	.idea1 .con .left{width: 100%;}
	.idea1 .con .right{width: 100%;padding-top:25px;}
	.idea1 .con .right .h{font-size: 25px;line-height: 34px;margin-bottom: 20px;text-align:center}
	.idea1 .con .right.act::after{display:none;}
	.idea1 .con .right .p{font-size: 11px;line-height: 16px;text-align:center;}
	
	.idea2{padding: 40px 25px;}
	.idea2 .tit{font-size: 25px;line-height: 34px;margin-bottom: 20px;}
	.idea2 .con{margin-top: 20px;}
	
	.idea3{height: auto;margin-bottom:0;}
	.idea3 .left{width: 100%;padding: 30px 15px;}
	.idea3 .right{position: static;width:100%;height:66vw;display:none;}
	.idea4 .txt{font-size: 16px;line-height: 28px;padding:0 25px;}
}

@media screen and (max-width: 668px) {
	
}

