*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: .16rem;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* For some Androids */
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
}
html{
    font-size: 100px;
    overflow-x: hidden;
    /*background: #F5F5F5;*/
}

a{
    text-decoration: none;
    color: #000;
}
ul{
    list-style: none;
}
input{
    outline: 0;
    background:#fff;
}
img{
    object-fit: cover;
    cursor:pointer;
    display: block;
}
/*单词自动换行*/
/* word-break:break-all;
word-wrap:break-word; */
/*文字描边*/
 /* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
  /* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */

.swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*多行溢出*/
.line1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
}
.line3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
}
.line4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 4;
}
.line5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 5;
}
/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}
.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}
.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}
@keyframes ani_ripple {
    0% {
      background: rgba(0, 0, 0, 0.25);
      transform: translateX(-50%) translateY(-50%) scale(0);
    }
  
    to {
      background: transparent;
      transform: translateX(-50%) translateY(-50%) scale(1);
    }
  }
.common_banner img{
  width: 100%;
}
.common_position{
  background-color: #F8F8F8;
}
.common_center{
  display: flex;
  justify-content: space-between;
  width: 14rem;
  margin: 0 auto;
  align-items: center;
}
.common_a_tit{
  height: .81rem;
  width: 1.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #504D4D;
  font-size: .18rem;
  border-right: .01rem solid #787676;
  transition: all .25s;
}

.common_a_tit:hover{
  background: #053F94;
  color: #fff;
}
.common_abox{
  display: flex;
  align-items: center;
}
.common_bread_homer{
  width: .18rem;
  height: .2rem;
  margin-right: .05rem;
}
.common_bread_homer img{
  width: 100%;
  height: 100%;
}

.common_bread{
  display: flex;
  align-items: center;
}
.common_bread_homer{
  width: .18rem;
  height: .2rem;
}
.common_bread_after{
  display: flex;
  align-items: center;
  color: #504D4D;
  font-size: .14rem;
}

.common_bread_after::after{
  content: '>';
  display: block;
  margin: 0 .05rem;
}


/* hover-图片放大1.1 */
.scale-box {
  overflow: hidden;
}
.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
  cursor: pointer;
  object-fit: cover;
}
.scale-box:hover .scale-img {
  transform: scale(1.1);
}


/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1)
}







/* 路老铁 项目css，不需要可以删除 */
.common_banner {
  position: relative;
  width: 100%;
  height: 7.84rem;
  background: #E5E5E5;
}
.common_banner .banner-swiper {
  width: 100%;
  height: 100%;
}
.common_banner .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.common_banner .banner-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.common_banner .banner-swiper .new-add-txt {
  position: absolute;
  left: 50%;
  top: 2.5rem;
  font-size: 0.8rem;
  color: white;
  font-weight: bold;
  max-width: 14.6rem;
  text-align: center;
  transform: translateX(-50%);
}
/* active */
.common_banner .swiper-slide-active img {
  animation: scaleImg 4s linear forwards;
}
@keyframes scaleImg {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* 前进按钮 */
.common_banner .swiper-button-prev {
  top: 50%;
  display: block;
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  border-radius: 50%;
  border: 0.01rem dotted white;
  transform: translateY(-50%);
}
.common_banner .swiper-button-prev::after {
  position: absolute;
  top: 50%;
  left: 0.6rem;
  font-size: 0.3rem;
  color: white;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.common_banner .swiper-button-prev::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.6rem;
  width: 1.2rem;
  height: 0.02rem;
  background: white;
  transform: translateY(-50%);
  transition: all 0.5s;
}
/* hover */
.common_banner .swiper-button-prev:hover {
  border: 0.03rem dotted white;
}
.common_banner .swiper-button-prev:hover::after {
  left: 0.2rem;
}
.common_banner .swiper-button-prev:hover::before {
  left: 0.2rem;
  width: 0.6rem;
}
/* 后退按钮 */
.common_banner .swiper-button-next {
  top: 50%;
  display: block;
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  border-radius: 50%;
  border: 0.01rem dotted white;
  transform: translateY(-50%);
}
.common_banner .swiper-button-next::after {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  font-size: 0.3rem;
  color: white;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.common_banner .swiper-button-next::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.6rem;
  width: 1.2rem;
  height: 0.02rem;
  background: white;
  transform: translateY(-50%);
  transition: all 0.5s;
}
/* hover */
.common_banner .swiper-button-next:hover {
  border: 0.03rem dotted white;
}
.common_banner .swiper-button-next:hover::after {
  right: 0.2rem;
}
.common_banner .swiper-button-next:hover::before {
  right: 0.2rem;
  width: 0.6rem;
}


/* 公共面包屑 */
.common_crumb {
  position: absolute;
  left: 0;
  top: 7.425rem;
  width: 100%;
  z-index: 33;
}
.common_crumb .common_crumb_center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 14.6rem;
  height: .85rem;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0rem 0.03rem 0.07rem 0.01rem rgba(0,0,0,0.09);
  border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
}
/* 左侧面包屑 */
.common_crumb .crumb_box {
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
}
.common_crumb .crumb_box a {
  display: block;
  margin: 0 0.08rem;
  padding: 0.1rem 0.36rem 0.14rem;
  background: #FFFFFF;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  border: 0.01rem solid #E4E3E2;
  font-size: 0.16rem;
  color: #333333;
  line-height: 1;
  transition: all 0.3s;
}
.common_crumb .crumb_box a:hover {
  background: #D0121C;
  color: white;
}
.common_crumb .crumb_box .active {
  background: #D0121C;
  color: white;
}


/* 公共居中盒子 */
.common_page_box {
  width: 100%;
}
.common_page_box .common_page_center {
  position: relative;
  width: 14.6rem;
  margin: 0 auto;
  padding: 1.2rem 0 1.5rem;
}


/* 公共分页 */
.page_box {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.52rem;
  display: flex;
  align-items: center;
}
.page_box .pages {
  display: flex;
  align-items: center;
}
.page_box .pages .item {
  display: block;
  width: .3rem;
  height: .3rem;
  margin-right: .1rem;
  text-align: center;
  line-height: .3rem;
  font-size: 0.12rem;
  color: #6D6D6D;
  background: #F2F2F2;
  transition: all 0.3s;
}
.page_box .pages .item:hover {
  background: #B20000;
  color: white;
}
.page_box .pages .active {
  background: #B20000;
  color: white;
}

.page_box .btn {
  display: block;
  width: 0.82rem;
  height: 0.3rem;
  margin-right: 0.1rem;
  background: #C8C8C8;
  text-align: center;
  line-height: 0.3rem;
  font-size: 0.12rem;
  color: #FFFFFF;
  transition: all 0.3s;
}
.page_box .btn:hover {
  background: #B20000;
}




/* 左侧公共导航 */
.common-left {
  width: 2rem;
  height: 100%;
  min-height: 2.76rem;
  margin-right: 0.4rem;
  padding: 0 0 0.36rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0,0,0,0.16);
}
.common-left .title {
  width: 100%;
  height: 0.56rem;
  padding: 0 0.23rem;
  background: #0059AB;
  font-size: 0.2rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  color: #FFFFFF;
  line-height: 0.56rem;
}
.common-left .navs {
  width: 100%;
}
.common-left .navs .nav {
  position: relative;
  display: block;
  width: 100%;
  height: 0.45rem;
  padding-left: 0.26rem;
  border-bottom: 0.01rem solid #E8E8E8;
  font-size: 0.14rem;
  font-family: Microsoft YaHei, Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  line-height: 0.45rem;
  cursor: pointer;
}
.common-left .navs .nav:hover {
  color: #0059AB;
}
.common-left .navs .active {
  color: #0059AB;
}
.common-left .navs .active::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.27rem;
  background: #0059AB;
}
/* 右侧内容区域 */
.common-right {
  flex: 1;
  min-height: 8.56rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.15rem 0.01rem rgba(0,0,0,0.16);
}



@media screen and (max-width:1024px){
    .side{
        display: none;
    }
    .common_banner{
        width: 100%;
        height: 3rem;
        margin-top: 50px;
    }
    .common_banner .swiper-button-prev{
        display: none;
    }
    .common_banner .swiper-button-next{
        display: none;
    }
    .common_banner .banner-swiper .new-add-txt{
        top: 50%;
        font-size: 14px;
    }
    .common_crumb{
        top: 30%;
    }
    .common_crumb .common_crumb_center{
        width: 94%;
        flex-wrap: wrap;
    }
    .common_crumb .crumb_box{
        flex: 0 0 100%;
        overflow: auto;
    }
    .common_crumb .crumb_box a{
        white-space: nowrap;
        font-size: 14px;
    }
    .company1{
        background-size: 100% 100%;
    }
    .center{
        width: 94%;
        margin: 0 auto;
    }
    .company_t .cn{
        font-size: 16px;
    }
    .company_t .en{
        font-size: 14px;
    }
    .company_t::after{
        width: 20px;
    }
    .company1 .texts p{
        font-size: 12px;
        line-height: 25px;
    }
    .company1 .data{
        flex: 0 0 100%;
        overflow: auto;
    }
    .company1 .data .item{
        white-space: nowrap;
        margin-right: 10px;
    }
    .company1 .data .num{
        font-size: 12px;
    }
    .company1 .data .num span{
        font-size: 20px;
    }
    .company1 .data .tip{
        font-size: 12px;
    }
    .company2 .red-right{
        display: none;
    }
    .company2 .ideas{
            flex-wrap: wrap;
    }
    .company2 .ideas .item{
        width: 45%;
        height: auto;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .company2 .ideas .item:first-child{
        margin-right: 25px;
    }
    .company2 .ideas .item:nth-child(3n){
        margin-right: 25px;
    }
    .company2 .center{
        padding: 0;
    }
    .company2 .ideas .cn{
        font-size: 14px;
        top: 15%;
    }
    .company2 .ideas .en{
        font-size: 12px;
        top: 30%;
        left: 15%;
    }
    .company2 .ideas .t2{
        font-size: 12px;
        width: auto;
        top: 50%;
    }
    .company3{
        flex-wrap: wrap;
    }
    .company3 .texts .cn{
        font-size: 16px;
    }
    .company3 .texts .en{
        font-size: 14px;
    }
    .company3 .texts .slogan{
        font-size: 12px;
    }
    .company3 .pic-r{
        height: 6rem;
    }
    .info-1{
        flex-wrap: wrap;
    }
    .company4 .info-big{
        width: 100%;
    }
    .company4 .info-small{
        width: 100%;
    }
    .company4 .info-big .big-swiper .name{
        font-size: 14px;
    }
    .company4 .info-big .big-swiper .plant{
        font-size: 14px;
    }
    .company4 .info-big .big-swiper .txt{
        font-size: 12px;
    }
    .company4 .info-big .big-swiper .white-line{
        width: 20px;
    }
    .company4 .info-small .list1 .name{
        font-size: 14px;
    }
    .company4 .info-small .list1 .plant{
        font-size: 12px;
    }
    .company4 .info-small .list1 .t2{
        width: 100%;
        height: auto;
        
    }
    .company4 .info-small .list1 .t2 p{
        font-size: 12px;
    }
    .company5 .dev-swiper .box1 .year{
        font-size: 18px;
    }
    .company5 .dev-swiper .box1 .txt{
        width: 100%;
        font-size: 14px;
    }
    .company5 .dev-swiper .box1 .txt p{
        font-size: 12px;
    }
    .company5 .dev-swiper .box2 .year{
        font-size: 120px;
    }
    .company5 .dev-swiper .box2 .one-words{
        font-size: 18px;
    }
    .company6 .swiper-slide{
        height: auto;
    }
    .company6 .swiper-button-prev{
        left: 35%;
    }
    .company6 .swiper-button-next{
        right: 35%;
    }
    .common_page_box .common_page_center{
        width: 100%;
        height: auto;
    }
    .product1{
        width: 94%;
        margin: 0 auto;
    }
    .pro-title .t1{
        font-size: 16px;
    }
    .pro-title .t2{
        font-size: 14px;
    }
    .product1 .box{
        flex-wrap: wrap;
    }
    .product1 .big{
        width: 100%;
        height: auto;
    }
    .product1 .list{
        width: 100%;
        flex-wrap: wrap;
        /*flex: 0 0 100%;*/
        /*overflow: auto;*/
        margin-top: 10px;
    }
    .product1 .list .li{
       
        width: 48%;
        height: auto;
        margin-right: 10px;
        /*margin-right: 40px;*/
        box-shadow: 1px 1px 3px #000;
    }
    .product2 .list .li{
       
        width: 48%;
        height: auto;
        margin-right: 10px;
        /*margin-right: 40px;*/
        box-shadow: 1px 1px 3px #000;
    }
    .pro-li .pic{
        height: auto;
    }
    .product1 .list .li:nth-child(2n){
        margin-right: 0;
    }
    .product1 .list .li:nth-child(3n){
        margin-top: 10px;
    }
    .product1 .list .li:nth-child(4n){
        margin-right: 0;
        margin-top: 10px;
    }
    /*.product1 .list .li:first-child{*/
    /*    margin-left: 20px;*/
    /*}*/
    /*.product1 .list .li:last-child{*/
    /*    margin-right: 20px;*/
    /*}*/
    .product1 .big .cn{
        font-size: 14px;
    }
    .product1 .big .en{
        font-size: 12px;
    }
    .pro-li .text .name{
        font-size: 14px;
    }
    .pro-li .text .more{
        font-size: 12px;
    }
    .product2{
        width: 94%;
        margin: 0 auto;
        margin-top: 30px;
    }
    .pro-title .t1{
        font-size: 16px;
    }
    .pro-title .t2{
        font-size: 14px;
    }
    .product2 .box{
        flex-wrap: wrap;
    }
    .product2 .big{
        width: 100%;
        height: auto;
    }
    .product2 .list{
        width: 100%;
        flex-wrap: nowrap;
        flex: 0 0 100%;
        overflow: auto;
        margin-top: 10px;
    }
    .product2 .list .li{
        white-space: nowrap;
        width: 45%;
    }
    .product2 .big .cn{
        font-size: 14px;
    }
    .product2 .big .en{
        font-size: 12px;
    }
    .pro-li .text .name{
        font-size: 14px;
    }
    .pro-li .text .more{
        font-size: 12px;
    }
    .case-box{
        width: 94%;
        margin: 0 auto;
        flex-wrap: wrap;
    }
    .case-box .title .cn{
        font-size: 16px;
    }
    .case-box .title .en{
        font-size: 14px;
    }
    .case-box .title::after{
        width: 20px;
    }
    .case-box .box2 .case-swiper{
        height: auto;
    }
    .case-list .name{
        font-size: 12px;
    }
    .case-list .li:nth-child(2n){
        margin-right: 0;
    }
    .case-list .li:nth-child(4n){
        margin-right: 0;
    }
    .case-list{
        width: 94%;
        margin: 0 auto;
        margin-top: 20px;
    }
    .case-list .li{
        width: 100%;
        /*margin-right: 10px;*/
        margin-top: 10px !important;
        margin-right: 0;
    }
    .case-box .box2{
        width: 100%;
    }
    .new1{
        width: 94%;
        margin: 0 auto;
            flex-wrap: wrap;
    }
    .new1 .text-list .name{
        font-size: 16px;
    }
    .new1 .text-list .date{
        font-size: 14px;
    }
    .new1 .text-list .red-line{
        width: 20px;
    }
    .new1 .text-list .desc{
        font-size: 12px;
    }
    .new1 .text-list .more{
        font-size: 14px;
    }
    .new2{
        width: 94%;
        margin: 0 auto;
    }
    .new2 .li{
                width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    .new2 .li .date{
        font-size: 12px;
    }
    .new2 .li .name{
        font-size: 14px;
    }
    .new2 .li:nth-child(3n){
        margin-top: 10px;
    }
}
