* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: none;
  resize: none
}

body {
  font-family: 'Microsoft yahei';
  font-size: 14px;
  color: #333;
  overflow-x: hidden
}

ul,
li {
  list-style: none
}

img {
  display: block
}

a {
  text-decoration: none;
  display: block;
  color: #333
}

input,
textarea {
  font-family: 'Microsoft yahei';
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  font-family: 'Microsoft yahei';
  font-size: 14px;
  color: #999
}

.width {
  max-width: 1400px;
  margin: 0 auto;
  width: calc(100% - 100px)
}


/*transition*/
.tran200 {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.tran300 {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.tran400 {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.tran500 {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.tran1000 {
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  transition: all 1s linear;
}

.tran5000 {
  -webkit-transition: all 5s linear;
  -moz-transition: all 5s linear;
  -ms-transition: all 5s linear;
  transition: all 5s linear;
}

.scaleimg:hover img,
.scaleimg:hover .pic em {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.rotateY:hover {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.translateX:hover {
  -webkit-transform: translateX(-6px);
  -moz-transform: translateX(6px);
  -ms-transform: translateX(-6px);
  transform: translateX(-6px);
}


.b {
  font-weight: bold
}

b {
  font-weight: bold;
  color: #000
}

.click {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.h800 { width:100%; height:8rem; clear:both;}

.img-bg {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center
}

.bg {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: .8s
}

.img-div {
  display: flex;
  justify-content: center;
  align-items: center
}

.img-div img {
  max-width: 100%;
  max-height: 100%
}

.lazyload {
  opacity: 0;
  transition: transform .8s, opacity .8s ease-in-out
}

.lazyload.loaded {
  opacity: 1
}

.dot {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.dot2,
.dot3,
.dot4,
.dot5 {
  display: -webkit-box;
  display: box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-box-orient: vertical
}

.dot2 {
  -webkit-line-clamp: 2
}

.dot3 {
  -webkit-line-clamp: 3
}

.dot4 {
  -webkit-line-clamp: 4
}

.dot5 {
  -webkit-line-clamp: 5
}

.flexBetween {
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexStart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexCenter {
  display: -webkit-flex;
  /* Safari */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flexEnd {
  display: -webkit-flex;
  /* Safari */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ellipsis {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.ellipsis2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-align: justify;
  text-justify: distribute-all-lines;
}

.ellipsis3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-align: justify;
  text-justify: distribute-all-lines;
}

.ellipsis4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-align: justify;
  text-justify: distribute-all-lines;
}

.ellipsis5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-align: justify;
  text-justify: distribute-all-lines;
}

.ellipsis6 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-align: justify;
  text-justify: distribute-all-lines;
}


.scroll {
  overflow: hidden
}

body::-webkit-scrollbar {
  width: 5px
}

body::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.11);
  background: #999
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  background: #eee
}

.myscroll::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

.myscroll::-webkit-scrollbar-thumb {
  border-radius: 30px;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.11);
  background: #fff
}

.myscroll::-webkit-scrollbar-track {
  border-radius: 30px;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, .5)
}

.mCSB_inside>.mCSB_container {
  margin-right: 15px
}

.mCS-myscroll.mCSB_scrollTools {
  top: 0;
  width: 2px
}

.mCS-myscroll.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 2px;
  background: #0363a4
}

.mCS-myscroll.mCSB_scrollTools .mCSB_draggerRail {
  background: #ccc
}

.layui-layer-hmg {
  border-radius: 50px !important
}

.layui-layer-btn .layui-layer-btn0 {
  background: #0363a4;
  color: #333;
  border-color: #0363a4
}

.layui-layer-btn {
  padding: 0 15px 20px
}

.layui-layer-btn .layui-layer-btn0 {
  border-color: #0363a4 !important;
  background-color: #0363a4 !important
}

.bg_tm {
  position: relative;
}

.bg_tm:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(1, 22, 39, 0.5);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.my-select {
  height: 48px;
  background: #fff;
  position: relative;
  border-radius: 5px;
}

.my-select:after {
  content: "";
  display: block;
  width: 12px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 20px;
  transition: .3s;
  background: url(../images/arrow.svg) no-repeat center center/12px
}

.my-select p {
  padding: 0 40px 0 25px;
  line-height: 48px;
  cursor: pointer;
  border: 1px #e5e5e5 solid;
  border-radius: 5px;
}

.my-select ul {
  display: none;
  width: max-content;
  min-width: 100%;
  overflow: auto;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  max-height: 400px;
  z-index: 990;
  box-shadow: 0 0 20px rgba(0, 119, 73, .3);
  border-radius: 5px;
  background: #fff;
}

.my-select ul li {
  padding: 0 15px;
  line-height: 45px;
  cursor: pointer;
}

.my-select ul li.unselected {
  font-weight: bold
}

.my-select ul li.selected {
  background: #0363a4;
  color: #fff
}

.my-select.on:after {
  transform: rotate(180deg)
}

.my-select .mCSB_inside>.mCSB_container {
  margin-right: 0
}



.video-popup {
  display: none;
  position: fixed;
  z-index: 1001;
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.video-popup .con {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center
}

.video-popup video {
  max-width: 100%;
  max-height: 100%;
}

.video-popup .close {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url(../images/close-w.svg) no-repeat center center/40px;
  right: -30px;
  top: -30px;
  cursor: pointer;
  z-index: 1002;
}


.readMore {
  display: block;
  width: 145px;
  height: 43px;
  margin: 40px auto 0;
  text-align: center;
  line-height: 43px;
  font-size: 16px;
  color: #fff;
  position: relative;
  background: #0363a4;
  border-radius: 50px;
}

.readMore span {
  position: relative;
  z-index: 2;
}

.readMore:hover {
  background: #df7923;
  color: #fff;
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}


.index_equipment .box {
  padding: 0 1rem;
}

.index_equipment .box .list .item {
  width: 32.2%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  overflow: hidden;
  position: relative;
  border-radius: 30px 0 30px 0;
}

.index_equipment .box .list .item a {
  display: block;
  border-radius: 30px 0 30px 0;
}

.index_equipment .box .list .item .img img {
  min-width: 100%;
  max-height: 34.6875rem;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  border-radius: 30px 0 30px 0;
}

.index_equipment .box .list .item .icon {
  position: absolute;
  left: 2.35rem;
  bottom: 2.5rem;
}

.index_equipment .box .list .item .icon img {
  max-height: 60px;
  max-width: 60px;
}

.index_equipment .box .list .item .position {
  position: absolute;
  left: 2.5rem;
  top: 13.375rem;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}

.index_equipment .box .list .item .position .content0 {
  font-size: 14px;
  font-family: "gilroy_regular";
  color: #fff;
}

.index_equipment .box .list .item .position .content1 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 6px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.index_equipment .box .list .item .position .content2 {
  width: 35.5rem;
  margin-top: 3.75rem;
  opacity: 0;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.index_equipment .box .list .item .position .content2 .content3 {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
}

.index_equipment .box .list .item .position .content2 .content4 {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
}

.index_equipment .box .list .item .position .content2 .content4 p {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
}

.index_equipment .box .list .item .position .content2 .content4 p span {
  margin: 0 5px;
}

.index_equipment .box .list .act {
  width: 24%;
}

.index_equipment .box .list .active {
  width: 48%;
}

.index_equipment .box .list .active .position {
  top: 8.125rem;
}

.index_equipment .box .list .active .position .content1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.index_equipment .box .list .active .position .content2 {
  opacity: 1;
  margin-top: 30px;
}


.xian {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  bottom: -15%;
}

.xian .canvas {
  width: 100%;
}

.aniuge-form {
  z-index: 9;
}

.aniuge-form .form-group {
  width: 100%;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  font-size: 18px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #0363a4;
}

.btn {
  padding: 0.8rem 2.4rem;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

/* BEM规范自定义样式 */
.aniuge-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.aniuge-form__textarea-wrap {
  grid-column: 1 / -1;
  width: 100%;
}

.aniuge-form__textarea {
  min-height: 180px;
  resize: vertical;
  width: 100%;
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-size: 18px;
  transition: border-color 0.3s;
}

.aniuge-form__textarea:focus {
  outline: none;
  border-color: #0363a4;
}

.aniuge-form__submit {
  grid-column: 1 / -1;
  justify-self: center;
  background-color: #0363a4;
  color: #fff;
  margin-top: 25px;
  transition: all .5s ease;
}

.aniuge-form__submit:hover {
  background-color: #df7923;
  transform: translateY(-10px);
}

/* 响应式适配（移动端单列） */
@media (max-width: 768px) {
  .aniuge-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


@media (max-width:1400px) {
  .xian .canvas {
    -webkit-transform: translateY(-0.5rem);
    -ms-transform: translateY(-0.5rem);
    transform: translateY(-0.5rem);
  }
}

@media (max-width:1279px) {
  .width {
    width: calc(100% - 40px)
  }

  .page a,
  .page .a_cur {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
  }

  .my-select {
    height: 38px
  }

  .my-select:after {
    right: 15px
  }

  .my-select p {
    line-height: 38px;
    font-size: 14px;
    padding: 0 40px 0 15px
  }

  .my-select ul {
    max-height: 350px;
    max-width: 100%;
  }

  .my-select ul li {
    line-height: 35px
  }

  .video-popup .con {
    width: 90%;
  }

  .video-popup .close {
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-size: 30px
  }

  .xian {
    display: none;
  }
}

@media (any-hover:hover) {
  .img-bg .bg:hover {
    transform: scale(1.1)
  }

  .page a:hover {
    background: #0363a4;
    color: #fff
  }
}

@media (max-width:1080px) {
  .index_equipment .box .list .item {
    width: 100%;
    margin-bottom: 25px;
  }

  .index_equipment .box {
    padding: 0;
  }

  .index_equipment .box .list .item a .position {
    left: 5vw;
    width: 90%;
    top: 82px;
  }

  .index_equipment .box .list .item a .position .content2 {
    max-width: 100%;
    opacity: 1;
    margin-top: 1rem;
  }

  .index_equipment .box .list .item a .img img {
    max-height: 460px;
  }

  .index_equipment .box .list .item .position .content1 {
    font-size: 1.4rem;
  }

  .index_equipment .box .list .item .position .content2 .content3 {
    font-size: 15px;
  }

  .aniuge-form__submit {
    margin-top: 0;
  }

  .index_equipment .box .list .item .icon {
    left: 1.35rem;
  }

}

.scroll-container {
  width: 100%;
  height: 320px;
  padding: 0px 20px 15px 0;
  font-size: 16px;
  line-height: 32px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 30px;
}

/* 自定义滚动条样式（Chrome/Safari/Edge等webkit内核浏览器） */
.scroll-container::-webkit-scrollbar {
  width: 4px;
  /* 滚动条宽度 */
}

/* 滚动条轨道 */
.scroll-container::-webkit-scrollbar-track {
  background: #c1c1c1;
  border-radius: 4px;
}

/* 滚动条滑块 */
.scroll-container::-webkit-scrollbar-thumb {
  background: #004c97;
  border-radius: 4px;
}

/* 滑块hover效果 */
.scroll-container::-webkit-scrollbar-thumb:hover {
  background: #004c97;
}


.index_title {
  text-align: center;
}

.index_title  p {font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #555;
    margin: 10px 0 50px;}

.title-en {


  font-size: 48px;
  font-weight: 700;
  font-family: "gilroy-extrabold";
  color: #0363a4;
}

.title-cn {
  font-size: 32px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 10px 0;
}

.title-desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.5;
}

.title-desc2 {
  font-size: 18px;
  color: #666666;
  line-height: 1.8;
  width: 90%;
  margin: 0 auto;
}


.e_button-5 {
  display: flex;
  position: relative;
  overflow: hidden;
  text-align: left;
  box-sizing: border-box;
  width: 160px;
  padding: 0;
  background_radio: 1;
  border_radio: 1;
  font_radio: 2;
  radius_radio: 1;
  margin-top: 40px;
  height: 48px;
  align-items: center;
  justify-content: space-around;
  margin-left: auto;
  box-shadow: 0 0 0px #003d66;
  font-size: 15px;
  margin-right: auto;
  padding-left: 20px;
  border-radius: 80px;
  background-color: #0363a4;
  border: 1px solid #0363a4;
  display-radio: flex;
  color: #fff
}

.e_button-5 div {
  width: 43px;
  height: 40px;
  line-height: 20px;
  z-index: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -10px
}

.e_button-5 div .iconfont {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.e_button-5 span {
  display: block;
  position: relative;
  z-index: 3;
  outline: 0;
  margin: 0px;
  overflow: hidden;
  left: 0;
  transition: all .6s ease
}

.e_button-5:hover span {
  left: 5px;
  color: var(--c);
  z-index: 3
}

.e_button-5 div::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  border-radius: 80px;
  width: 100%;
  height: 100%;
  z-index: -2;
  transition: transform 0.5s 0s, width 0.1s 0s
}

.e_button-5:hover div::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  border-radius: 80px;
  width: 1300%;
  height: 100%;
  z-index: -1;
  transition: transform 0.5s, width 0.7s;
  transform: scale(1.45)
}

.e_button-5 div i>svg {
  width: 26px;
  height: 26px;
  fill: var(--c)
}

.e_button-5:hover {
  color: var(--c)
}

.e_button-5:hover div i>svg {
  width: 26px;
  height: 26px;
  fill: var(--c)
}



.hzhb_nr ul {
  margin-top: 3rem;
  overflow: hidden;
  margin-left: -27px;
}

.hzhb_nr li {
  float: left;
  width: 16.66%;
  padding: 0 0 27px 27px;
}

.hzhb_nr li a {
  display: block;
  overflow: hidden;
  border: 1px solid #d5dadd;
  background: #fff;
  padding: 1.5rem;
}

.hzhb_nr img {
  width: 100%;
}

.img2 {
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-ou
}

.img2:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}

@media screen and (max-width:768px) {

  .e_button-5 {
    width: 135px;
    padding-left: 12px;
    height: 40px;
    background_radio: 1;
    border_radio: 1;
    font_radio: 1;
    radius_radio: 1;
    display-radio: 1;
    margin-top: 20px;
    margin-left: auto;
    margin-bottom: 30px;
    margin-right: auto
  }

  .e_button-5 div {
    width: 2.6rem;
    height: 2.6rem
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.ywfw_box {
  padding: 5rem 0 0;
}

.houseList {
  margin-left: -40px;
}

.houseList li {
  margin: 0px 0 40px 40px;
  width: calc((100% / 3) - 40px);
  transition: all .4s ease;
  user-select: none;
  cursor: pointer;
  background: #f7f8fb;
}

.houseList-img  { background:#f1f2f6;}
.houseList-img img {
  width: 100%;
  height:18rem;
}

.houseList-con {
  padding: 25px 25px;
 

}


.houseList-con .btn {
  width: 46px;
  height: 46px;
  color: #abaeba;
  border-radius: 0;
  border: 1px solid #abaeba;
  overflow: hidden;
  transform: rotate(180deg);
}

.houseList-con .btn i {
  width: 100%;
  height: 100%;
  transition: all .6s ease;
}

.houseList-con .btn i:nth-child(2) {
  position: absolute;
  left: 100%;
  top: 0;
}

.houseList-sbname { width: 100%; line-height: 32px; font-size: 18px; color: #333; font-weight: 600; padding: 15px 5px;  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: center; }
.houseList li:hover .houseList-sbname { color: #fff; }
.houseList li:hover {
  background: #0363a4;
}

.houseList li:hover .houseList-con .title,
.houseList li:hover .houseList-con .text,
.houseList li:hover .houseList-con .btn {
  color: #fff;
}

.houseList li:hover .houseList-con .btn {
  border-color: #fff;
}

.houseList li:hover .houseList-con .btn i {
  transform: translateX(-100%);
}

.houseSwp .indsj-pages .swiper-pagination span:nth-child(1) {
  font-size: 36px;
}



.Anlitp-img {
  max-height: 520px;
  object-fit: fill;

}

.Anlitp-img img {
  width: 100%;
  height: 100%;
}

.Anlitp-svp .swiper-button-prev {
  width: 35px;
  height: 35px;
  background: #fff url(../images/arrow1.svg) no-repeat center center / 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%) rotate(180deg);

  box-shadow: 0 0 10px rgba(3, 99, 164, .3);
}

.Anlitp-svp .swiper-button-next {
  width: 35px;
  height: 35px;
  background: #fff url(../images/arrow1.svg) no-repeat center center / 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: .3s;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(0deg);
  box-shadow: 0 0 10px rgba(3, 99, 164, .3);
}




.product-section {
  /* background: url('../images/product_bg.jpg') no-repeat center center / cover; */
  min-height: 60vh;
  margin-top: 80px;
  /* 保证区块占满视口高度 */
  display: flex;
  align-items: center;
  /* 垂直居中内容 */
  padding: 40px 0px 40px;
}

/* 容器 - 控制最大宽度与水平居中 */
.product-section .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* 左右区块间距 */
  flex-wrap: wrap;
  /* 小屏幕自动换行 */
}

/* 左侧产品图片容器 */
.product-image {
  flex: 1;
  min-width: 300px;
  /* 防止图片过小 */
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右侧产品内容容器 */
.product-content {
  flex: 1;
  min-width: 300px;
  color: #333;
}

.product-content h2 {
  font-size: 28px;
  color: #0363a4;
  /* 匹配设计图蓝色标题 */
  margin-bottom: 20px;
  font-weight: 600;
}

/* 参数列表 - 网格布局实现两列对齐 */
.product-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 20px;
 
  line-height: 1.6;
}

.product-specs dt {
  color: #666;
  /* 灰色标签文字 */
  font-weight: 400;
}

.product-specs dd {
  color: #333;
  font-weight: 500;
}

/* 按钮组 - 弹性布局排列按钮 */
.product-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 35px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* 平滑过渡效果 */
}

.btn-primary {
  background-color: #0363a4;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0363a4;
  /* 深色hover反馈 */
}

.btn-outline {
  background-color: transparent;
  color: #0363a4;
  border: 1px solid #0363a4;
}

.btn-outline:hover {
  background-color: #f0f4ff;
  /* 浅色hover反馈 */
}



.cont_ywfw {
  width: 100%;
  background: url(../images/chanpingjieshao.jpg) no-repeat center top / cover;
}

.aniuge-navbar {
  display: flex;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  /* 响应式换行 */
}

.aniuge-navbar__item {
  flex: 1;
  min-width: 120px;
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 16px 0;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #eee;
  border-bottom: none;
  margin-right: -1px;
  /* 消除边框重叠 */
}

.aniuge-navbar__item--active {
  background-color: #0363a4;
  /* 匹配截图深蓝色 */
  color: #fff;
  position: relative;
}

.aniuge-navbar__item--active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #e79b5a;
  /* 底部红色指示条 */
}

/* 内容区域样式 */
.aniuge-content {
  margin-top: 40px;
}

.aniuge-content__title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  position: relative;
  padding-left: 20px;
  margin-top: 30px;
}

.aniuge-content__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background-color: #0363a4;
  /* 标题左侧蓝色竖线 */
}

.aniuge-content__desc {
  margin-top: 14px;
  line-height: 1.6;
  color: #666;
  font-size: 16px;
}

.aniuge-content__content, .aniuge-content__content p, .aniuge-content__content {
  line-height: 2;
  color: #666;
  font-size: 16px;
}

/* 响应式适配：移动端纵向堆叠导航 */
.index-fangan {
  background-image: url(../images/fangan_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  height: 400px
}

.index-fangan .index-fangan-title {
  font-size: 42px;
  color: #fff;
  font-weight: 700
}

.index-fangan .index-fangan-title-2 {
  font-size: 22px;color: #fff; opacity: 0.8; margin-top: 15px;
  font-weight: 400;
  margin-bottom: 38px
}

.index-fangan .index-fangan-btn {
  background: #fff;
  width: 180px;
  height: 58px;
  border: 1px solid #0363a4;
  border-radius: 4px;
  font-size: 20px;
  transition: all .3s;
  color: #0363a4
}

.index-fangan .index-fangan-btn:hover {
  background: #0363a4;
  color: #fff
}

.index-fangan-full {
  background-size: 100% auto !important;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.index-fangan-full .index-fangan-full-content {
  max-width: 1400px;
    margin: 0 auto;
  
}

.mb-40 {
  margin-bottom: 40px;
}
.mr-10 {
  margin-right: 10px;
}
.TXTovehid  {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.contnews_box { border:5px solid #f7f7f7; padding:2% 3%;box-sizing: border-box;     margin: 80px auto 80px;}

.passage .psgTit{padding-bottom: 24px;border-bottom: 1px solid #d1d1d1;margin-bottom: 22px;text-align: center;}
.passage .psgTit h5{font-size: 24px;color: #1a1a1a;line-height: 26px;font-weight: normal;margin-bottom: 10px; font-family: 'jost';}
.passage .psgTit h5.subTit{font-size: 20px;}
.passage .psgTit .info{font-size: 14px;line-height: 22px;color: #808080;}
.passage .psgTit .info span{margin: 0 15px; padding-left:20px;}
.passage .psgTit .info span.news_k{ background:url(../images/news_k.jpg) no-repeat left 2px;}
.passage .psgTit .info span.news_r{ background:url(../images/news_r.png) no-repeat left 3px;}


.passage .psgCont{font-size: 17px;line-height: 28px;color: #333333;padding-bottom: 60px;border-bottom: 1px solid #d1d1d1;margin-bottom: 42px;min-height: 300px;}
.passage .psgCont p{font-size: 17px;line-height: 28px;color: #333333;margin-bottom: 20px;}
.passage .psgCont *{max-width: 100% !important;}
.passage .psgCont img{height: auto !important; width:auto; display: block; margin:0px auto;}
.passage .psgBtm{position: relative;}
.passage .psgBtm ul li{font-size: 16px;line-height: 34px;color: #3a502a;}
.passage .psgBtm ul li a{color: #333333; display: inline;}
.passage .psgBtm ul li a:hover{color: #f89840;text-decoration: underline;}


.lx-product { display: flex; align-items: center; gap: 8px; padding:15px 0; border-bottom: 1px dotted #ccc; border-top: 1px dotted #ccc; margin: 2rem 0 1rem;}
.lx-product i { color: #333; font-size: 18px; }
.contact-label { color: #0363a4; font-size:16px; font-weight: bold; }
.phone-number { color: #e79b5a; font-size: 32px; font-weight: bold;  font-family: 'Times New Roman', Times, serif; }


.case-page-box { margin-top: 50px;}
.lab-construction { width: 100%; min-height: 500px; background: #f5f5f5; display: flex; margin-top: 50px; } 
.lab-construction .left-img { width: 50%; overflow: hidden;  } 
.lab-construction .left-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; transform-origin: center center;  }
.lab-construction .left-img:hover img { transform: scale(1.1);  } 

.lab-construction .right-content { width: 50%; padding: 60px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; } 
.decor-number { position: absolute; top: 0px; left: 70px; font-size: 140px; font-weight: bold; color: #dadada; opacity: 0.6; z-index: 0; } 
.section-title { font-size: 28px; color: #222; font-weight: 600;  position: relative; z-index: 1; } 
.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 40px; position: relative; z-index: 1; } 
.service-item { color: #666; font-size: 14px; line-height: 1.6; }
.detail-btn { display: inline-block; width: fit-content; padding: 10px 24px; border: 1px solid #0363a4; color: #0363a4; text-decoration: none; font-size: 14px; transition: all 0.3s ease; position: relative; z-index: 1; } 
.detail-btn:hover { background: #0363a4; color: #fff; }
.services-desc { font-size: 16px; color: #444; line-height: 1.8; position: relative; z-index: 1;margin-bottom: 30px; margin-top:15px;}



.sczz_box { width: 100%; position: relative; background: url(../images/chanpingjieshao.jpg) no-repeat;background-size: cover; padding: 2rem 0;}
.sczz-page-box {margin: 40px auto; position: relative; }
.sczz-page-box .top-slogan { font-size: 14px; color: #999; margin-bottom: 10px; font-weight: 400; }
.sczz-page-box .main-title { font-size:38px; color: #333; margin-bottom:8px; line-height: 1.3; }
.sczz-page-box .main-title .brand { color: #df7923;font-weight: 800;}
.sczz-page-box .main-title .separator {  margin: 0 8px;  color: #333;}
.divider { border: none; height: 2px; background-color: #0363a4; width: 50px; margin:6px 0; }

.sub-title { font-size: 20px; color: #333; font-weight: 600; margin-bottom: 15px; }
.desc-text { font-size: 15px; color: #666; line-height: 1.8; text-align: justify; }



.title_name {font-size: 28px; color: #0363a4; flex: 1; padding: 10px 0px 10px 20px; position: relative; background: #e6e6e6; font-weight: 700; border-left: 3px solid #0363a4; margin-top: 30px;}

.title_name span {font-size: 16px; color: #0363a4; float: right;line-height: 40px; margin-right: 20px;}
.title_name span a { color: #0363a4; }
.contact-page-box { margin-top: 2rem;}

.contact-page-box .section1 {
  padding-bottom:6rem; background: url(../images/img34.jpg) no-repeat center bottom;
}

.contact-page-box .section1 ul {
  display: flex;
  justify-content: space-between;
  padding-top: 1.24rem;
  margin: 0 -1.24rem;
}

.contact-page-box .section1 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding:2rem 1.8rem;
  background-color: #F6F8FB;
  margin: 0 1.24rem;
}

.contact-page-box .section1 ul li img {
  width: 6.2rem;
  margin-bottom: 0.62rem;
}

.contact-page-box .section1 ul li h4 {
  font-size: 1.116rem;
  font-family: "SourceHanSans-Bold";
  color: #000;
  margin-bottom: 0.744rem;
}

.contact-page-box .section1 ul li p {
  font-size: 0.992rem;
  color: #666666;
  text-align: center;
  line-height: 1.488rem;
}

.contact-page-box .section1 ul li p a {
  color: #666666;
}

.contact-page-box .section1 ul li p a.active {
  color: #0051A2;
  font-size: 1.488rem;
  font-weight: bold;
}


.contact-page-box .commomOrder {
  margin-top:0;
}

.commomOrder {
  padding: 5.5rem 0;
  height: auto;
  overflow: hidden;
  background: url(../images/11bg.jpg) no-repeat center/cover;
}

.commomOrder .title-box {
  margin-bottom:4.34rem;
  text-align: center;
}
.commomOrder .title-box h3 { font-size: 32px; font-weight: 500;}
.commomOrder .box {
  width: 44.64rem;
  float: left;
  padding: 3.1rem 3.72rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0.62rem 1.24rem rgba(8, 68, 140, 0.2);
}

.commomOrder .box h4 {
  font-size: 1.488rem;
  color: #1A1311;
}

.commomOrder .box h4 b {
  font-family: "SourceHanSans-Bold";
}

.commomOrder .box form {
  height: auto;
  overflow: hidden;
}

.commomOrder .box form .row {
  margin-top: 1.86rem;
}

.commomOrder .box form .row h5 {
  font-size: 0.992rem;
  margin-bottom: 0.93rem;
}

.commomOrder .box form .row h5 i {
  color: #FF0000;
}

.commomOrder .box form .row input {
  width: 100%;
  height: 3.72rem;
  font-size: 0.992rem;
  padding: 0 1.24rem;
  border-radius: 0.496rem;
  border: 1px solid #ddd;
}

.commomOrder .box form .row textarea {
  width: 100%;
  height: 11.16rem;
  font-size: 0.992rem;
  padding: 1.24rem;
  border-radius:10px;
  border: 1px solid #ddd;
}

.commomOrder .box form .btn {
  width: 100%;
  height: 3.72rem;
  background: #0363a4;
  font-size: 1.24rem;
  color: #fff;
  font-family: "SourceHanSans-Medium";
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius:5px;
  margin-top:1.86rem;
  cursor: pointer;
}




.map_box { height: 480px;border: 1px solid #e6e6e6; margin-top:2.5rem; box-sizing: border-box;}



@media screen and (max-width:1440px) {
  .scroll-container {
    font-size: 15px;
    line-height: 28px;
    height: 280px;
  }

  .hzhb_nr li {
    padding: 0 0 0px 0px;
  }

 

  .houseList-con {
    padding: 30px;
  }

  .houseList-con .btn {
    width: 50px;
    height: 50px;
  }

  .houseList {
    margin-left: -30px;
  }

  .houseList li {
    margin: 30px 0 0 30px;
    width: calc((100% / 3) - 30px);
  }

.houseList-img img {
  height:18rem;
}

}

 @media (max-width: 992px) {
   .lab-construction {
     flex-direction: column;
   }

   .left-img,
   .right-content {
     width: 100%;
   }

   .left-img {
     height: 300px;
   }

   .right-content {
     padding: 40px 50px;
   }

   .decor-number {
     font-size: 100px;
     top: 10px;
     left: 30px;
   }
   
   .houseList-img img {
  height:12rem;
}
   
 }

@media (max-width:768px) {

  .scroll-container {
    height: auto;
    padding: 0;
    text-align: justify;
  }

  .title-en {
    font-size: 22px;
  }

  .title-cn {
    font-size: 24px;
  }

  .title-desc {
    font-size: 13px;
    width: 80%;
    margin: 0 auto;
  }

  .hzhb_nr ul {
    margin-top: 2rem;
    margin-left: 0px;
  }

  .hzhb_nr li a {
    padding: 15px 5px;
  }

  .hzhb_nr li {
    width: 25%;
  }

  .houseList {
    margin-left: 0;
  }

  .houseList li {
    width: 100%;
    margin: 15px 0 0;
  }


  .houseList-con {
    padding: 25px 15px;
  }

  .houseList-con .btn {
    width: 44px;
    height: 44px;
    margin-top: 30px;
  }

  .houseList-con .btn i {
    font-size: 14px;
  }

  .product-specs {
    grid-template-columns: 1fr;
    /* 参数列表单列显示 */
    text-align: left;
    /* 保持参数左对齐 */
  }

  .product-buttons {
    justify-content: center;
    /* 按钮组居中 */
  }

.contnews_box { border:none; padding:2% 1%;box-sizing: border-box; margin: 20px auto;}
  .passage .psgCont{font-size: 15px;line-height: 30px;padding-bottom: 20px;margin-bottom: 10px;}
.passage .psgTit .info{font-size: 14px;}
.passage .psgTit h5{font-size: 22px;line-height: 24px;margin-bottom: 5px;}
.passage .psgTit{padding-bottom: 15px;margin-bottom: 15px;}

  .aniuge-navbar {
    flex-direction: column;
  }

  .aniuge-navbar__item {
    border-bottom: 1px solid #eee;
  }

  .aniuge-navbar__item--active::after {
    display: none;
    /* 移动端隐藏底部红色条 */
  }

    .lx-product {
      font-size: 14px;
    }
  
    .lx-product i {
      font-size: 16px;
    }
  
    .phone-number {
      font-size: 14px;
    }

    .index-fangan { background: url(../images/rk-2.jpg) no-repeat center top;}

    .index-fangan .index-fangan-title { font-size:28px;}
    .index-fangan .index-fangan-btn {width:50%;height: 46px; margin-bottom: 15px;}
    .index-fangan-full .index-fangan-full-content {width: calc(100% - 20px);}
    .product-section { margin-top: 50px; padding: 20px 0px 20px; }
     .product-section .width { gap: 20px;}
        .aniuge-content__title { font-size: 22px;}

                .services-list {
                  grid-template-columns: 1fr;
                  /* 列表变为单列 */
                }
        
                .right-content {
                  padding: 30px 20px;
                }
        
                .decor-number {
                  font-size: 80px;
                }
        
                .section-title {
                  font-size: 24px;
                }

  .lab-construction .left-img { width: 100%;}
  .lab-construction .right-content { width: 100%; padding: 20px 20px;}
    .lab-construction { margin-top: 20px;}
   .ywfw_box { padding: 2rem 0; }
.case-page-box {  margin-top: 20px;}
.title_name { font-size: 22px;}
.houseList-sbname { font-size: 16px; }
.sczz-page-box .main-title {  font-size: 24px;}
.sub-title { font-size: 16px;}

.contact-page-box .section1 ul {flex-direction: column; gap: 20px;}
.commomOrder .title-box h3 { font-size: 22px;}
.commomOrder { padding:2.5rem 0;}
.commomOrder .box {
  width:100%;
  padding:20px 15px;
  border-radius: 20px;}
 .commomOrder .box h4 { font-size: 17px;}
 .commomOrder .title-box { margin-bottom: 2rem;}

}


.stats-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #0363a4;
  color: #ffffff;
  padding: 2rem 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* 单个统计项 */
.stat-item {
  text-align: center;
  margin: 1rem;
  flex: 1;
  min-width: 180px;
}

/* 数字样式 */
.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  position: relative;
  line-height: 1.2;
}

.stat-number::after {
  content: "+";
  font-size: 2.5rem;
  position: absolute;
  top: 0.5rem;
  margin-left: 0.25rem;
}

/* 中文说明 */
.stat-cn {
  font-size: 1rem;
  margin: 0.5rem 0;
}

/* 英文说明 */
.stat-en {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* 响应式适配 */
@media (max-width: 768px) {
  .stats-container { flex-direction: column; } 
  .stat-number { font-size: 2.8rem; } 
  .title-desc2 { font-size: 16px; width: 100%;}
.h800 { height:8px;}

.houseList-img img {  height:15rem;}


  
}