*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: var(--fon16);
    /*font-family: Microsoft YaHei;*/
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    /*color: #333333;*/
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* For some Androids */
}

:root{
    --fon10: calc(.1rem + .02rem);
    --fon12: calc(.12rem + .02rem);
    --fon13: calc(.13rem + .02rem);
    --fon14: calc(.14rem + .02rem);
    --fon15: calc(.15rem + .02rem);
    --fon16: calc(.16rem + .02rem);
    --fon17: calc(.17rem + .02rem);
    --fon18: calc(.18rem + .02rem);
    --fon19: calc(.19rem + .02rem);
    --fon20: calc(.20rem + .02rem);
    --fon21: calc(.21rem + .02rem);
    --fon22: calc(.22rem + .02rem);
    --fon23: calc(.23rem + .02rem);
    --fon24: calc(.24rem + .02rem);
    --fon25: calc(.25rem + .02rem);
    --fon26: calc(.26rem + .02rem);
    --fon27: calc(.27rem + .02rem);
    --fon28: calc(.28rem + .02rem);
    --fon30: calc(.3rem + .02rem);
    --fon37: calc(.37rem + .02rem);
    --fon40: calc(.4rem + .02rem);
    --fon45: calc(.45rem + .02rem);
    --fon48: calc(.48rem + .02rem);
    --fon55: calc(.55rem + .02rem);
    --fon90: calc(.9rem + .02rem);
}

html{
    font-size: 100px;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: #000;
}
ul{
    list-style: none;
}
input{
    outline: 0;
    background:#fff;
}
img{
    object-fit: cover;
    cursor:pointer;
    display: block;
}

strong *,
strong,
b {
	font-weight: bold;
}

/*单词自动换行*/
/* 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: 0.81rem;
  width: 1.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #504D4D;
  font-size: var(--fon18);
  border-right: 0.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: 0.18rem;
  height: 0.2rem;
  margin-right: 0.05rem;
}
.common_bread_homer img{
  width: 100%;
  height: 100%;
}

.common_bread{
  display: flex;
  align-items: center;
}
.common_bread_homer{
  width: 0.18rem;
  height: 0.2rem;
}
.common_bread_after{
  display: flex;
  align-items: center;
  color: #504D4D;
  font-size: var(--fon14);
}

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


/* hover-图片放大1.1 */
.scale-box {
  display: block;
  width: 100%;
  height: 100%;
  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，不需要可以删除 */
/* 公共banner */
.common_banner {
  position: relative;
  width: 100%;
  height: 5.5rem;
  height: 3rem;
  margin-top: 0.9rem;
}
.common_banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.common_banner .txts {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.common_banner .txts .t1 {
  font-size: var(--fon55);
  font-size: var(--fon45);
  font-weight: bold;
  color: #FFFFFF;
}
.common_banner .txts .t2 {
  margin-top: 0.36rem;
  font-size: var(--fon23);
  font-size: var(--fon20);
  color: #FFFFFF;
}
.common_banner .txts .play {
  position: relative;
  width: 0.7rem;
  height: 0.7rem;
  margin: 0.4rem auto 0;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
.common_banner .txts .play::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: 0.15rem solid #333333;
  border-right: 0;
  border-top: 0.075rem solid transparent;
  border-bottom: 0.075rem solid transparent;
  border-radius: 0.02rem;
}


/* 公共面包屑 */
.common_bread {
  width: 100%;
}
.common_bread .center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18rem;
  margin: 0 auto;
  padding: 0.75rem 0;
}
.common_bread .navs {
  display: flex;
  align-items: center;
}
.common_bread .navs a {
  position: relative;
  display: block;
  margin: 0 0.4rem;
  font-size: var(--fon18);
  color: #777777;
}
.common_bread .navs a:hover {
  font-weight: 500;
  color: #222222;
}
.common_bread .navs .active {
  font-weight: 500;
  color: #222222;
}
.common_bread .active::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 0.08rem);
  width: 100%;
  height: 0.04rem;
  background: #009B74;
  transform: skewX(-30deg);
}

/* 公共面包屑2 */
.common_bread2 {
  width: 100%;
}
.common_bread2 .center {
  display: flex;
  align-items: center;
  width: 16rem;
  margin: 0 auto;
  padding: 0.48rem 0;
}
.common_bread2 .icon {
  height: 0.18rem;
  margin-right: 0.1rem;
  object-fit: contain;
}
.common_bread2 .navs {
  display: flex;
  align-items: center;
  font-size: var(--fon16);
  color: #555555;
}
.common_bread2 .navs a {
  display: block;
  margin: 0 0.05rem;
  font-size: var(--fon16);
  color: #999999;
}
.common_bread2 .navs span {
  display: block;
  margin-left: 0.05rem;
  font-size: var(--fon16);
  color: #555555;
}


/* 公共居中box */
.common_page {
  width: 100%;
}
.common_page .center {
  position: relative;
  width: 16rem;
  margin: 0 auto;
}
.common_page .nonono{
    width: 100% !important;
}
.hhbg{
    padding: 0.85rem 0;
        background: #F9F9F9;
}
.mode-page1,.duct-list,.mode-page2{
     width: 16rem;
  margin: 0 auto;
}
/* 公共标题 */
.common-title {
  position: relative;
  width: fit-content;
  margin-right: 0.3rem;
  font-size: var(--fon40);
  font-family: Source Han Sans CN, Source Han Sans CN;
  font-weight: bold;
  color: #222222;
  white-space: nowrap;
}
.common-title::after {
  content: "";
  display: block;
  /*position: absolute;*/
  /*left: 0;*/
  /*top: calc(100% + 0.1rem);*/
  width: 0.6rem;
  height: 0.07rem;
  margin-top: 0.1rem;
  background: #009B74;
  transform: skewX(-30deg);
}


/* 公共分页 */
.page_box {
  width: fit-content;
  margin: 0 auto;
  margin-top: 0.72rem;
  margin-bottom: 0.72rem;
  display: flex;
  align-items: center;
}
.page_box .pages {
  display: flex;
  align-items: center;
}
.page_box .pages .item {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 0.075rem;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  border: 0.01rem solid #999999;
  background-color: #fff;
  text-align: center;
  font-size: var(--fon18);
  font-family: Arial, Arial;
  color: #999999;
  line-height: 0.4rem;
  cursor: pointer;
}
.page_box .pages .item:hover {
  background: #333333;
  color: white;
}
.page_box .pages .active {
  background: #333333;
  color: white;
}
.page_box .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 0.075rem;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  border: 0.01rem solid #999999;
}
.page_box .btn img {
  width: 0.1rem;
  height: 0.15rem;
  object-fit: contain;
}
.page_box .btn:hover {
  background: #333333;
}

.page_box .btn:hover img{
    filter: invert(1);
}
.page_box .to-box {
  display: flex;
  align-items: center;
  margin-left: 0.3rem;
}
.page_box .to-box .tip {
  font-size: var(--fon14);
  color: #999999;
}
.page_box .to-box input {
  width: 0.75rem;
  height: 0.4rem;
  margin: 0 0.1rem;
  padding: 0 0.1rem;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  border: 0.01rem solid #999999;
}
.page_box input[type=number]::-webkit-inner-spin-button,
.page_box input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.page_box .to-box .confirm {
  display: block;
  width: 0.75rem;
  height: 0.4rem;
  background: #009B74;
  border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
  text-align: center;
  line-height: 0.4rem;
  font-size: var(--fon14);
  color: #FFFFFF;
}



/* 轮播的左右按钮 */
.swiper-btn-left {
  width: 0.6rem;
  height: 0.6rem;
  background: white;
  border: 0.02rem solid rgb(165,165,165);
  border-radius: 50%;
}
.swiper-btn-left::after {
  font-size: var(--fon20);
  color: rgba(165,165,165,1);
}
.swiper-btn-left:hover {
  background: #009B74;
}
.swiper-btn-left:hover::after {
  color: white;
}
.swiper-btn-right {
  width: 0.6rem;
  height: 0.6rem;
  background: white;
  border: 0.02rem solid rgb(165,165,165);
  border-radius: 50%;
}
.swiper-btn-right::after {
  font-size: var(--fon20);
  color: rgba(165,165,165,1);
}
.swiper-btn-right:hover {
  background: #009B74;
}
.swiper-btn-right:hover::after {
  color: white;
}

.common-name{
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: bold;
    font-size: var(--fon30);
    color: #009B74;
    margin-bottom: .47rem;
}

.common-job{
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: bold;
    font-size: var(--fon20);
    color: #666666;
    margin-bottom: .5rem;
}


@media only screen and (max-width: 1024px) {
    .common_banner{
        height: 5rem;
        
    }
    .common_banner .txts{
        width: 95%;
    }
    .common_banner .txts .t2,
    .common_bread .navs a{
        font-size: var(--fon24);
        margin-bottom: 0.4rem;
    }
    
    .common_bread .navs{
        flex-wrap: wrap;
        justify-content: center;
    }
    .common_bread .center{
        padding: 0.4rem 0 0;
    }
    .common_page .center{
        width: 100%;
        padding: 0 0.4rem;
        box-sizing: border-box;
        
    }
    .mode-page1, .duct-list, .mode-page2{
        width: 100%;
    }
}
