body {
  margin: 0;
  font-family: 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Arial', sans-serif;
  /* background: #0B1937; */
  color: #000;
}
* {
  padding: 0;
  margin: 0;
}
ul,ol{
  list-style: none;
}
a{
  text-decoration: none;
  color: #454e5d;
  cursor: pointer;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  overflow: hidden;
}
/* a:hover{
  opacity: .8;
} */
.center{
  text-align: center;
}
.align-right{
  text-align: right;
}
input:focus {
  outline: none;
}
.mt-number-animate {
  line-height: max(2vw, 22px);
  height: max(2vw, 22px);
  /*设置数字显示高度*/
  /* font-size: 36px; */
  /*设置数字大小*/
  overflow: hidden;
  display: inline-block;
  position: relative;
  top: 5px;
}

.mt-number-animate .mt-number-animate-dot {
  width: max(2vw, 10px);
  /*设置分割符宽度*/
  line-height: max(2vw, 22px);
  float: left;
  text-align: center;
}

.mt-number-animate .mt-number-animate-dom {
  width: max(1vw, 10px);
  /*设置单个数字宽度*/
  text-align: center;
  float: left;
  position: relative;
  top: 0;
}

.mt-number-animate .mt-number-animate-dom .mt-number-animate-span {
  width: 100%;
  float: left;
}
.header {
  padding: 0;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}
.header .bg{
  position: absolute;
  width: 100%;
  height: 0;
  background: #fff;
  transition: height 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: -1;
}
.header.active .bg {
  height: 100%;
}
.header .wrapper{
  /* height: 100px; */
  width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .wrapper .logo{
  display: inline-block;
  background: url(../images/logo.png) 0 0 no-repeat;
  background-size: 100%;
  width: 180px;
  height: 62px;
}
.header .wrapper .box{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  /* height: 100%; */
}

.header .wrapper .menu{
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-top: -6px;
  background: url(../images/menu.png) 0 0 no-repeat;
  background-size: 100%;
  cursor: pointer;
  display: none;
}
/* .header.active{
  background: #fff;
} */

.header.active .wrapper .logo{
  background: url(../images/logo2.png) 0 0 no-repeat;
  background-size: 100%;
}
.header.active .wrapper .menu{
  background: url(../images/menu2.png) 0 0 no-repeat;
  background-size: 100%;
}
.navbar {
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 100px;
}
.navbar .menu{
  display: none;
}
.navbar-menu-box{
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}
.navbar-menu {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.navbar-menu>li {
  height: 100%;
  font-size: 18px;
  white-space: nowrap;
  width: max(7vw, 130px);
  text-align: center;
}

.navbar-menu>li a{
  color: #fff;
  display: inline-block;
  cursor: pointer;
  line-height: 45px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  position: relative;
}
.navbar-menu>li.active>a,
.navbar-menu>li:hover>a {
  color: #007167;
}
.navbar-menu>li.active>a{
  border-bottom: 3px solid #007167;
}
.navbar-menu .more{
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../images/more.png) 0 0 no-repeat;
  background-size: 100%;
  vertical-align: sub;
  visibility: hidden;
  position: absolute;
  top: 14px;
}
.navbar-menu .sub-menu{
  width: 100%;
  position: absolute;
  left: 0;
  top: 100px;
  overflow: hidden;
  z-index: -1;
  display: none;
  box-shadow: 0px 10px 24px 0px rgba(0,0,0,0.10);
}
.navbar-menu .sub-menu.active{
  display: block;
}
.sub-menu-box{
  display: flex;
  /* align-items: flex-start; */
  border-top: 1px solid #e0e0e0; 
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05); 
  padding: 40px 10vw;
  opacity: 0;
}
.navbar-menu .sub-menu.active .sub-menu-box{
  animation: OpacitySync 0.8s ease-out forwards;
}
@keyframes OpacitySync {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* .navbar-menu .sub-menu:before{
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
} */
.navbar-menu .sub-menu .box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 25%;
  border-left: 2px solid #007167;
  gap: 20px;
}
.navbar-menu .sub-menu .sub-menu-box.technical{
  justify-content: center;
}
.navbar-menu .sub-menu .sub-menu-box.technical .box{
  width: 110px;
  margin-left: 25vw;
}
.navbar-menu .sub-menu .list{
  width: 100%;
}
.navbar-menu .sub-menu .list li{
  text-align: left;
  line-height: 22px;
  padding-left: 15px;
}
.navbar-menu .sub-menu .list li.name{
  color: #007167;
  font-size: 22px;
  font-weight: 500;
}
.navbar-menu .sub-menu .list li.name a{
  color: #007167;
}
.navbar-menu .sub-menu .list li.item{
  width: 70%;
  white-space: normal;
}
.navbar-menu .sub-menu .list li.item a{
  color: #151915;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5px;
}
.navbar-menu .sub-menu .list li.item a:hover{
  color: #007167;
}
.header.active .navbar-menu>li a{
  color: #151915;
}
.header.active .navbar-menu>li.active>a,
.header.active .navbar-menu>li:hover>a {
  color: #007167;
  border-bottom: none;
}
.header.active .more{
  visibility: visible;
}
.header.active li:hover .more,
.header.active li.active .more{
  background: url(../images/more-active.png) 0 0 no-repeat;
  background-size: 100%;
}
.header-container {
  width: 100%;
  height: 50vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.header-container .swiper-slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.header-container .swiper-slide .cont{
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
}
.header-container .swiper-slide .name{
  font-size: max(5.4vw, 30px);
  letter-spacing: 3px;
  margin-bottom: max(5vw, 20px);
}
.header-container .swiper-slide .desc{
  font-size: max(2.3vw, 20px);
  letter-spacing: 3px;
  opacity: .8;
  margin-top: 10px;
}
.home-container{
  position: relative;
}
.home-container .swiper-button-box{
  position: absolute;
  bottom: 14%;
  left: 33.1%;
  width: 10vw;
  height: 5vw;
  display: flex;
  z-index: 2;
}
.home-container .swiper-btn{
  width: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-container .swiper-btn:hover{
  background: #007167;
  opacity: 1;
}
.home-container .swiper-btn .arrow{
  display: inline-block;
  width: 1vw;
  height: 2vw;
  background: url(../images/arrow.png) 0 0 no-repeat;
  background-size: 100%;
}
.home-container .swiper-next .arrow {
  transform: rotate(180deg);
}
.home-container .small-swiper-box{
  width: 20vw;
  height: 12vw;
  position: absolute;
  bottom: 0;
  left: 18%;
  z-index: 1;
}
.home-container .small-swiper-box img{
  width: 100%;
  height: 100%;
}
.home-container .small-swiper-box  .swiper-container{
  height: 100%;
}
.main-card{
  padding: max(4vw, 30px) 0;
}
.main-card .title{
  font-size: max(2.4vw, 20px);
  font-weight: 500;
  margin-bottom: max(1.6vw, 10px);
  text-align: center;
  color: #151915;
}
.main-card .desc{
  font-size: max(1.1vw, 14px);
  text-align: center;
  color: #151915;
}
.black-card{
  background: #1B1F26;
}
.black-card .title,
.black-card .desc{
  color: #fff;
}
.gray-card{
  background: #F7F7F7;
}
.main-card .wrapper{
  margin: 3vw 15vw;
}
.main-card .wrapper .content{
  margin-bottom: max(2vw, 30px);
  color: #5F6464;
  font-size: max(1vw, 16px);
  line-height: max(1.6vw, 22px);
}
.main-card .wrapper .imp{
  color: #333;
  font-size: max(1.1vw, 18px);
  line-height: max(2vw, 26px);
}
/* 增加 solution-container 样式 */
.solution-container {
  width: 85%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px 0;
  position: relative;
}
.solution-container .swiper-wrapper {
  align-items: center;
}
.solution-container .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 0;
}
.solution-container .swiper-slide a{
  display: block;
  width: 100%;
}
.solution-container .swiper-slide img {
  width: 95%;
  height: 17vw;
  margin-bottom: 20px;
}
.solution-container .name {
  font-size: max(1.2vw, 16px);
  margin: 1vw 0;
  color: #fff;
}
.solution-container .info {
  font-size: max(.9vw, 14px);
  color: #fff;
  
  /* 文字溢出显示省略号 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.solution-container .line {
  width: 100%;
  border-bottom: 1px solid #76797D;
  /* opacity: .4; */
  margin-top: 3vw;
}
.solution-container .line .num{
  font-family: fantasy;
  color: #fff;
  font-size: max(3.5vw, 55px);
  opacity: .2;
  position: relative;
  top: max(1.6vw, 30px);
  position: relative;
  letter-spacing: 2px;
}
.solution-container .dot{
  display: inline-block;
  width:  max(.35vw, 5px);
  height:  max(.35vw, 5px);
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-left: -.3vw;
  bottom: max(1vw, 22px);
  opacity: .8;
}
.solution-container .swiper-slide-active .dot{
  display: inline-block;
  width:  max(.6vw, 8px);
  height:  max(.6vw, 8px);
  background: #02B4A5;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  margin-left: -.3vw;
  bottom: max(1vw, 19px);
}
.solution-container .swiper-slide-active .dot::before{
  content: '';
  width: 8.5vw;
  height: 1px;
  background: #02B4A5;
  position: absolute;
  left: -4vw;
  top: .3vw;
}
.solution-container .swiper-slide-active .dot::after{
  content: '';
  display: inline-block;
  width:  max(.4vw, 6px);
  height:  max(.4vw, 6px);
  background: #007167;
  border-radius: 50%;
  position: absolute;
  left: .1vw;
  top: .1vw;
}
.solution-container .solution-button-box{
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}
.solution-container .swiper-btn{
  width: max(2vw, 30px);
  height: max(2vw, 30px);
  background: #a4a5a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.solution-container .swiper-btn .arrow{
  display: inline-block;
  width: max(.5vw, 7px);
  height: max(1vw, 14px);
  background: url(../images/arrow.png) 0 0 no-repeat;
  background-size: 100%;
}
.solution-container .swiper-btn .right{
  transform: rotate(180deg);
}
.solution-container .swiper-btn:hover{
  background: #007167;
}
.solution-container .swiper-btn.swiper-button-disabled,
.solution-container .swiper-btn.swiper-button-disabled:hover {
  background: #a4a5a8;
  /* cursor: no-drop; */
}
.product-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin: 4vw 0;
}
.product-list li {
  width: calc(100% / 5);
  height: 30vw;
  transition: all .3s;
  overflow: hidden;
  position: relative;
}
.product-list li img{
  width: 40vw;
  height: 100%;
}
.product-list li:hover{
  width: calc((100% - 40vw) / 4);
}
.product-list li.hover:hover{
  width: 40vw;
}
.product-list li .box{
  position: absolute;
  bottom: 4vw;
  left: 0;
  width: calc(100% - max(3vw, 40px));
  color: #fff;
  padding: 0 max(1.5vw, 20px);
}
.product-list li .box .name{
  font-size: max(1.2vw, 16px);
}
.product-list li .box .info{
  width: 80%;
  font-size: max(1vw, 14px);
  margin: 2vw 0;
  display: none;
  line-height: max(1.8vw, 26px);
}
.product-list li .box .btn{
  font-size: max(1vw, 14px);
  color: #007167;
  display: none;
}
.product-list li.hover .name{
  color: #007167;
}
.product-list li.hover .info,
.product-list li.hover .btn{
  display: block;
}
.brand-list-scroll-wrapper{
  margin-top: max(3.5vw, 30px);
  padding: 1vw 0;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  width: 96%;
}
.brand-list {
  display: flex;
  align-items: center;
  gap:20px;
  margin-bottom: max(4vw, 30px);
}
.brand-list:last-child{
  margin-bottom: 2vw;
}
.brand-list li{
  flex: 0 0 auto;
  width: max(15vw, 100px);
  height: max(6vw, 40px);
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  background: #fff;
  overflow: hidden;
}
.brand-list li img{
  width: 100%;
  height: 100%;
  transition: all .3s;
  object-fit: contain;
}
.brand-list li:hover img{
  transform: scale(1.1);
}
.brand-list2{
  margin: 0 auto; 
  width: 90%;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-list2 li{
  width: calc(100% / 8 - 18px)
}
.favourite-villas-list-block{
  margin: max(3vw, 20px) 0;
}
.favourite-villas-list-block .des{
  font-size: max(.8vw, 14px);
  color: #616666;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.favourite-villas-list-block .line-box{
  background: #E9E9E9;
  position: relative;
  width: 100%;
  height: 4px;
  margin-top: 24px;
  margin-bottom: max(3.5vw, 20px) !important;
  overflow: visible;
}
.favourite-villas-list-block .line{
  background: #007167;
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
  transition: left 0.4s cubic-bezier(.4,0,.2,1);
  will-change: left, width;
  min-width: 32px;
}
.favourite-villas-list-block .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max(8.5vw, 120px);
  font-size: max(1.2vw, 16px);
  color: #fff;
  background: #007167;
  padding: max(.6vw, 10px) 0;
  padding-left: 1vw;
  border-radius: 40px;
}
.favourite-villas-list-block .arrow{
  display: inline-block;
  width: max(1.8vw, 24px);
  height: max(1.6vw, 22px);
  background: url(../images/arrow2.png) 0 0 no-repeat;
  background-size: 100%;
}
.favourite-villas-list-block .btn:hover{
  opacity: .9;
}
.favourite-pagination{
  position: relative;
}
.favourite-pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  margin-left: 5px;
}
.favourite-pagination .swiper-pagination-bullet-active{
  background: inherit;
  border: 1px solid #007167;
}
.aboutus-tabs{
  position: absolute;
  width: 100%;
}
.aboutus-tabs ul{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: max(.9vw, 14px);
  gap: 20px;
  background: #fbfbfb;
  font-weight: 500;
}
.aboutus-tabs li{
  height: max(3vw, 40px);
  line-height: max(3vw, 40px);
  margin: 0 max(1.6vw, 20px);
  cursor: pointer;
  color: #666;
  transition: all .3s;
  white-space: nowrap;
  font-size: max(1.1vw, 14px);
}
.aboutus-tabs li a{
  display: block;
}
.aboutus-tabs li.active,
.aboutus-tabs li:hover{
  color: #007167;
}
.aboutus-tabs li.active{
  border-bottom: 2px solid #007167;
}
.development-bg{
  background: url(../images/about-banner.jpg);
  background-size: cover;
  background-position: center;
  height: max(22vw, 260px);
}
.development-bg .title{
  padding-top: 10vw;
  color: #fff;
}
.progress-bar {
  width: 530px;
  margin: auto;
  padding-top: 70px;
  color: #fff;
}
.progress-bar .node {
  width: 24px;
  height: 24px;
  float: left;
  position: relative;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
.progress-bar .node .txt {
  position: absolute;
  font-size: 16px;
  top: -30px;
  width: 200px;
  text-align: center;
  left: 50%;
  margin-left: -100px;
}
.progress-bar .node .core {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
}
.progress-bar .node.active .core {
  background: #fff;
}
.progress-bar .line {
  float: left;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  width: 100px;
  margin-top: 11px;
}
.mod-con {
  margin: 0 auto;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.history-main {
  width: 4400px;
  position: absolute;
  overflow: hidden;
}
.history-main-box {
  width: 404px;
  float: left;
  margin-right: 25px;
}
.history-title {
  font-size: 24px;
  padding-top: 40px;
  line-height: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid #D8D9DC;
  margin-bottom: 18px;
  color: #2A2E2E;
}
.history-main-box .li {
  line-height: 25px;
  margin-bottom: 18px;
  font-size: 14px;
  overflow: hidden;
}
.history-main-box .li .left {
  float: left;
  width: 60px;
  padding-right: 10px;
  text-align: right;
}
.history-main-box .li .right {
  width: 320px;
  float: left;
  color: #5F6464;
}
.culture-box{
  background: #FBFBFB;
}
.culture-box .t-box {
  width: 100%;
  overflow: hidden;
  min-height: 610px;
}
.culture-box .t-box .pic {
  float: right;
  width: 55%;
  height: 100%;
  padding-left: 1%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.culture-box .t-box .pic img {
  width: 100%;
  height: 100%;
}
.culture-box .t-box .mess-box {
  width: 40%;
  float: left;
  margin-top: max(3vw, 40px);
  padding-left: 5%;
}
.culture-box .brand-item .label-box {
  width: auto;
  float: left;
}
.culture-box .mess-box .title{
  text-align: left;
  font-size: max(2vw, 16px);
}
.culture-box .t-box h3 {
  margin-bottom: 40px;
  font-size: 30px;
  color: #2a2e2e;
}
.culture-box .b-box {
  width: 100%;
  overflow: hidden;
  padding-top: 0px;
}
.culture-box .item-title {
  font-size: max(1.2vw, 16px);
  color: #0052D9;
  letter-spacing: 0;
  margin: max(.4vw, 5px) 0;
  font-weight: 400;
}
.culture-box .boxx {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.culture-box .boxx .x-item {
  /* float: left; */
  width: 33.3%;
  margin: max(.6vw, 10px) 0;
}
.culture-box .boxx .x-item h5 {
  font-size: max(1.1vw, 14px);
  line-height: max(1.8vw, 20px);
  color: #2A2E2E;
  letter-spacing: 0;
  font-family: 'TencentSansw7';
  margin-bottom: 6px;
  font-weight: 500;
  font-style: italic;
}
.culture-box .boxx .x-item .p {
  font-size: max(.8vw, 12px);
  color: #2A2E2E;
  letter-spacing: 0;
  line-height: max(1.8vw, 20px);
}
.honors-box{
  background: #FBFBFB;
  padding: 4vw 0;
  display: flex;
  flex-wrap: wrap;
}
.honors-box .info{
  width: 30%;
  padding-left: 5%;
}
.honors-box .info .title{
  text-align: left;
  font-size: max(2vw, 16px);
}
.honors-box .info .date{
  font-size: max(.8vw, 12px);
}
.honors-box .info .text{
  font-size: max(1.4vw, 14px);
  margin: max(.8vw, 10px) 0 max(2vw, 30px);
}
.honors-box .info .list{
  display: flex;
  flex-wrap: wrap;
}
.honors-box .info .list li{ 
  width: 33.3%;
  font-size: max(.8vw, 14px);
  margin-bottom: max(2vw, 30px);
}
.honors-box .info .list .name{
  margin-bottom: max(.4vw, 0px);
}
.honors-box .info .list .num{
  font-size: max(1.8vw, 22px);
  color: #007167;
  font-weight: 500;
  margin-right: 5px;
}
.honors-box .content{
  width: 65%;
}
.honors-box .content .tabs{
  display: flex;
  gap: max(3vw, 20px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: max(1vw, 14px);
}
.honors-box .content .tabs li.active,
.honors-box .content .tabs li:hover{
  color: #007167;
}
.honors-swiper-container {
  width: 100%;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  padding: max(2vw, 10px) 0;
  position: relative;
}
.honors-swiper-container .swiper-slide {
  padding: max(2vw, 10px) 0;
  height: max(20vw, 300px);
}
.honors-swiper-container .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.map-card{
  width: 100%;
  margin: 2vw auto;
  padding: 0 4vw;
  display: flex;
  flex-wrap: wrap;
  /* background: #FBFBFB; */
}
.map-card .map{
  width: 60%;
  height: max(47vw, 370px);
  position: relative;
}
.map-card .map img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-card .info{
  width: 40%;
  text-align: center;
  display: none;
}
.map-card .info.active{
  display: block;
}
.map-card .info .name{
  color: #007167;
  font-size: max(1.2vw, 16px);
  padding: 3vw 2vw;
}
.map-card .info .text{
  color: #333;
  font-size: max(1vw, 14px);
  margin: 0 2vw 2vw;
}
.map-card .info .code{
  margin: auto;
  width: max(12vw, 150px);
}
.map-card .address{
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  position: absolute;
  cursor: pointer;
  text-align: center;
}
.map-card .beijing{
  right: 24%;
  top: 29%;
}
.map-card .taiyuan{
  right: 33.5%;
  top: 35%;
}
.map-card .xian{
  right: 39%;
  top: 43%;
}
.map-card .quanzhou{
  right: 22%;
  bottom: 28%;
}
.map-card .xinjiang{
  left: 19%;
  top: 15%;
}
.map-card .chengdu{
  left: 42%;
  top: 52%;
}
.map-card .icon-market{
  display: inline-block;
  width: 35px;
  height: 38px;
  background: url(../images/marker.png) 0 0 no-repeat;
  background-size: 100%;
}
.contact-online-msg .section {
  width: 1100px;
  margin: 0 auto;
}
.contact-online-msg .head {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: max(2.5vw, 20px) 0;
}
.contact-online-msg .title {
  font-size: max(3.2vw, 30px);
  text-align: left;
  line-height: 1.2;
  color: #a9ebe5;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.57;
  margin: 0;
}
.contact-online-msg .name {
  font-size: max(1.4vw, 20px);
  line-height: 1.4;
  color: #007167;
  font-weight: 700;
}
.contact-online-msg .green-line {
  display: inline-block;
  width: 30px;
  height: 2.7px;
  background: #00AA84;
  margin-top: 4px;
  transition: all 0.5s ease 0.5s;
}
.online-message form {
  width: 100%;
}
.online-message ul {
  width: 100%;
  margin-top: max(1.8vw, 20px);
  display: flex;
  gap: max(2vw, 20px);
  flex-wrap: wrap;
}
.online-message li {
  width: calc(33.3% - 18px);
  border: 1px solid rgba(176, 192, 215, 1);
  padding: 10px 0;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.5s;
  background: white;
}
.online-message li i {
  left: 5px;
  width: 15px;
  top: 12px;
  color: #ff0000;
  position: absolute;
}
.online-message li img {
  width: 20px;
  margin-left: 20px;
  margin-right: 10px;
}
.online-message li input {
  flex: 1;
  width: 40px;
  font-size: max(.85vw, 14px);
  color: #0f4286;
  font-weight: 400;
  line-height: 1.4;
  margin-right: 3.8%;
}
.online-message .message {
  width: 100% !important;
  align-items: start !important;
  margin-right: 0;
  margin-bottom: 0;
}
.online-message .message textarea {
  flex: 1;
  width: 40px;
  font-size: max(.85vw, 14px);
  color: #0f4286;
  font-weight: 400;
  line-height: 1.4;
}
.online-message .message textarea, .online-message .message textarea:focus {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
.online-message .des {
  margin-top: 20px;
  font-size: max(.75vw, 12px);
  color: #999;
  font-weight: 400;
  line-height: max(1.6vw, 18px);
}
.online-message .submit-btn {
  width: 100%;
  height: max(2.6vw, 40px);
  background: #007167;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: max(.9vw, 14px);
  color: #fff;
  letter-spacing: 1.5px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.2s;
}
.online-message .submit-btn:hover {
  opacity: .8;
}
.business-list{
  width: 70%;
  margin: 4vw auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.business-list li{
  width: calc(33.3% - 20px);
  background-color: #fff;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, .05);
  height: 15vw;
  transition: all .3s linear;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3vw;
  position: relative;
}
.business-list li img{
  width: max(2vw, 100px);
}
.business-list li .name{
  position: absolute;
  bottom: 4vw;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: max(1.6vw, 16px);
  color: #007167;
  font-weight: 500;
}
.business-list li:hover{
  background:#007167;
}
.business-list li:hover .name{
  color:#fff;
}
.consultation-detail-card .breadcrumb {
  font-size: 14px;
  margin-bottom: 18px;
  color: #7b7b7b;
  letter-spacing: 0.5px;
}
.consultation-detail-card .breadcrumb a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
}
.consultation-detail-card .breadcrumb a:hover {
  text-decoration: underline;
  color: #2563eb;
}
.consultation-detail-card .detail-header {
  border-bottom: 1px solid #f3f3f4;
  margin-bottom: 18px;
  padding-bottom: 14px;
}
.consultation-detail-card .detail-header .title {
  font-size: max(1.8vw, 20px);
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
}
.consultation-detail-card .detail-header .meta {
  font-size: 15px;
  color: #9ca3af;
}
.consultation-detail-card .detail-header .iconfont {
  margin-right: 3px;
  color: #6b7280;
  vertical-align: middle;
}
.consultation-detail-card .detail-content {
  margin-top: 20px;
  line-height: 2;
  font-size: 17px;
}
.consultation-detail-card .detail-cover {
  width: 100%;
  max-height: 370px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 14px 0 rgba(107,114,128,0.08);
  border: 1px solid #f3f3f4;
}
.consultation-detail-card h2 {
  font-size: max(1vw, 18px);
  margin: 1.8em 0 0.9em 0;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 0.8px;
  border-left: 3px solid #2563eb;
  padding-left: 8px;
  background: #f7fafd;
}
.consultation-detail-card ul {
  margin: 0 0 1.2em 2em;
  padding: 0;
  list-style: disc;
}
.consultation-detail-card ol {
  margin: 0 0 1.2em 2em;
  padding: 0;
  list-style: decimal;
}
.consultation-detail-card li,
.consultation-detail-card p {
  margin: 0.2em 0;
  line-height: 1.8;
  font-size: max(.8vw, 14px);
}
.consultation-detail-card blockquote {
  background: #f2f6fa;
  margin: 2em 0;
  border-left: 4px solid #38bdf8;
  padding: 14px 18px;
  font-style: italic;
  color: #0e7490;
  font-size: 16.5px;
  border-radius: 3px;
}
.consultation-detail-card .tags {
  margin: 32px 0 14px 0;
}
.consultation-detail-card .tag {
  display: inline-block;
  background: #f3f3f4;
  color: #2563eb;
  padding: 4px 14px;
  margin-right: 12px;
  margin-bottom: 6px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(59,130,246,0.04);
  transition: background 0.2s, color 0.2s;
}
.consultation-detail-card .share {
  border-top: 1px solid #f3f3f3;
  margin-top: 34px;
  padding-top: 16px;
  font-size: 14px;
  color: #7b7b7b;
}
.consultation-detail-card .share a {
  display: inline-block;
  margin-right: 14px;
  padding: 3px 5px;
  color: #7b7b7b;
  text-decoration: none;
  font-size: 20px;
  vertical-align: middle;
  border-radius: 6px;
  transition: background 0.22s,color 0.22s;
}
.consultation-detail-card .share a:hover {
  background: #f1f5f9;
  color: #14b8a6;
}
.consultation-detail-card .back-list {
  margin-top: 36px;
  text-align: right;
}
.consultation-detail-card .btn {
  display: inline-block;
  background: linear-gradient(90deg,#007167 0,#4fcec2 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 8px max(1.6vw, 25px);
  font-size: max(.8vw, 14px);
  font-weight: 600;
  box-shadow: 0 2px 16px rgba(59,130,246,0.13);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  outline: none;
  text-decoration: none;
}
.consultation-detail-card .btn:hover {
  background: linear-gradient(90deg,#4fcec2 0,#007167 100%);
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(20,184,166,0.23), 0 1.5px 7px 0 rgba(59,130,246,0.17);
  transform: translateY(-3px) scale(1.045);
}
.technical-detail-card .detail-header {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.technical-detail-card .detail-content {
  padding: max(3vw, 20px) 0;
  font-size: max(.9vw, 14px);
  line-height: max(1.8vw, 26px);
  color: #2c3848;
}
.technical-detail-card .detail-cover {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 24px #eee;
  display: block;
  margin: 0 auto 24px auto;
}
.technical-detail-card h2 {
  color: #345eab;
  font-size: max(1.2vw, 20px);
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: bold;
}
.technical-detail-card ul, .technical-detail-card ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
.technical-detail-card ul li,
.technical-detail-card ol li {
  margin-bottom: 7px;
  font-size: max(.9vw, 14px);
}
.technical-detail-card blockquote {
  border-left: 4px solid #1b7fff;
  background: #f3f8ff;
  color: #426aa1;
  padding: 14px 20px;
  margin: 24px 0;
  font-size: max(.9vw, 14px);
  font-style: italic;
  border-radius: 4px;
  letter-spacing: .5px;
}
.technical-detail-card .tags {
  margin-top: 30px;
  text-align: right;
}
.technical-detail-card .tag {
  display: inline-block;
  background: #c7fffa;
  color: #007167;
  border-radius: 3px;
  padding: 4px 18px;
  font-size: max(.8vw, 14px);
  margin-left: 6px;
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: .5px;
}
.solution-page{
  margin-top: max(4vw, 20px);
  margin-bottom: max(2vw, 40px);
}
.solution-page .name{
  color: #333 ;
  font-size: max(1.2vw, 16px);
  border-left: 4px solid #007167;
  padding-left: 10px;
  margin-bottom: max(1.2vw, 20px);
}
.solution-page .list{
  display: flex;
  flex-wrap: wrap;
  gap: max(2vw, 20px);
  margin: 0;
}
.solution-page .list li{
  box-shadow: 0 4px 12px rgba(0,0,0,0.13);
  border-radius: 10px;
  border: 1px solid #eaeaea;
  width: calc(25% - max(2vw, 20px));
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.23s;
}
.solution-page .list li .text{
  font-size: max(.9vw, 14px);
  padding: max(1vw, 10px) max(1vw, 15px) max(.5vw, 5px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.solution-page .list li .desc{
  font-size: max(.75vw, 12px);
  color: #9b9b9b;
  text-align: left;
  padding: 0 max(1vw, 15px);
  margin-bottom: max(1vw, 15px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.5em;
  line-height: 1.3em;
  max-height: 2.5em;
}
.solution-page .list li:hover {
  box-shadow: 0 8px 24px rgba(0,113,103,0.18), 0 1.5px 6px rgba(0,0,0,0.09);
  border-color: #02B4A5;
  transform: translateY(-5px) scale(1.025);
  z-index: 1;
}
.solution-page .list li:hover .text{
  color: #007167;
}
.consultation-page .list img{
  width: 100%;
  height: max(12vw, 160px);
  object-fit: cover;
}
.footer{
  background: #0C0C0F;
  color: #fff;
  padding-top: max(5vw, 40px);
  position: relative;
}
.footer .bg{
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: .2;
}
.footer .content,
.footer .links {
  position: relative;
  z-index: 1;
}
.footer .content .row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1100px;
  margin: 0 auto 4vw;
  font-size: max(.8vw, 14px);
}
.footer .content .row:last-child{
  margin-bottom: max(1vw, 20px);
  gap: 2vw;
}
.footer .content .list li{
  line-height: max(2.2vw, 32px);
  font-size: max(.8vw, 14px);
}
.footer .content .list .name{
  font-size: max(1.1vw, 18px);
  margin-bottom: 2vw;
}
.footer .content .list a{
  color: #fff;
}
.footer .content .list a:hover{
  text-decoration: underline;
  color:#007167;
}
.footer .content .msg .name{
  font-size: max(1.1vw, 18px);
  margin-bottom: 2.4vw;    
  line-height: max(2.2vw, 32px);
}
.footer .code-wrapper .box{
  display: flex;
  width: 15vw;
  gap: 2vw;
}
.footer .code-wrapper .tip{
  padding: 2px 0 6px;
  font-size: max(.8vw, 14px);
  text-align: center;
}
.footer .contact-wrapper{
  width: 17vw;
  margin-top: 3vw;
}
.footer .contact-wrapper .list{
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw 2vw;
}
.footer .contact-wrapper .list li{
  width: calc(25% - 1.6vw);
  cursor: pointer;
  position: relative;
}
.footer .contact-wrapper .list .code{
  max-width: fit-content;
  width: 160%;
  position: absolute;
  left: -30%;
  top: -5vw;
  display: none;
}
.footer .contact-wrapper .list li:hover .code{
  display: block;
}
.footer .menu{
  width: 1100px;
  margin: auto;
}
.footer .menu ul{
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
.footer .menu li{
  border-right: 1px solid #fff;
  padding-right: 20px;
  line-height: 14px;
}
.footer .menu li:last-child{
  border-right: none;
  padding-right: 0;
}
.footer .menu a{
  color: #fff;
}
.footer .menu a:hover{
  text-decoration: underline;
  color:#007167;
}
.footer .copyright {
  text-align: center;
  padding: 5vw 0;
}

@media (max-width: 1600px){
  .solution-container .swiper-slide-active .dot{
    bottom: 20px;
  }
  .main-card .wrapper{
    margin: 3vw 8vw;
  }
}
@media (max-width: 1100px){
  .header .wrapper,
  .footer .content .row,
  .footer .menu{
    width: 90%;
  }
  .navbar-menu>li{
    width: 120px;
  }
  .navbar-menu .sub-menu{
    padding: 40px 2vw;
  }
  .solution-container{
    width: 80%;
  }
  .solution-container .swiper-slide img{
    height: 20vw;
  }
  .product-list li .box .info{
    width: 80%;
  }
  .footer .content .row,
  .footer .links .box{
    width: 80%;
  }
  .contact-online-msg .section{
    width: 90%;
  }
  .main-card .wrapper{
    margin: 3vw 5vw;
  }
  .map-card .icon-market{
    width: 30px;
    height: 32px;
  }
  .map-card .beijing{
    right: 22%;
    top: 28%;
  }
  .map-card .taiyuan{
    right: 31%;
    top: 35%;
  }
  .map-card .xian{
    right: 37%;
    top: 43%;
  }
  .map-card .quanzhou{
    right: 19%;
    bottom: 26%;
  }
  .map-card .xinjiang{
    left: 14%;
    top: 14%;
  }
  .map-card .chengdu{
    left: 38%;
    top: 50%;
  }
}
@media (max-width: 800px){
  .home-container{
    margin-top: 60px;
  }
  .header .wrapper{
    height: 60px;
    width: 100%;
    padding: 2vw 3vw;
    flex-wrap: nowrap;
    background: #fff;
  }
  .header .wrapper .logo{
    width: 100px;
    height: 34px;
  }
  .header .wrapper>.box{
    position: absolute;
    left: 0;
    top: 59px;
    gap:initial;
    height: calc(100vh - 76px);
    margin: 0;
    width: 100%;
    display: none;
    overflow: auto;
  }
  .header .wrapper .menu{
    display: block;
  }
  .navbar {
    height: auto;
    max-height: 100%;
    background: #fff;
    width: 100%;
    padding: 0;
    line-height: 20px;
    border-top: 1px solid #e0e0e0;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .navbar-menu{
    display: block;
  }
  .navbar-menu li{
    width: 100%;
    height: auto;
    line-height: 50px;
  }
  .navbar-menu li a{
    color: #000;
    font-size: 16px;
    width: 100%;
  }
  .navbar-menu li.active>a{
    border-bottom: 3px solid #007167;
  }
  .navbar-menu .sub-menu{
    position: relative;
    top: 0;
    margin: 0;
    padding: 20px 2vw;
    overflow: visible;
    z-index: 1;
  }
  .navbar-menu .sub-menu:before{
    border: none;
  }
  .sub-menu-box{
    opacity: 1;
    padding: 0;
    border: none;
    flex-wrap: wrap;
    box-shadow: none;
  }
  .navbar-menu .more{
    visibility: visible;
  }
  .navbar-menu .sub-menu .box{
    width: 100%;
    border-left: none;
  }
  .navbar-menu .sub-menu .box.technical{
    
  }
  .navbar-menu .sub-menu .list{
    margin-bottom: 20px;
  }
  .navbar-menu .sub-menu .list li.name{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .header.active .navbar-menu>li.active>a{
    border-bottom: 3px solid #007167;
  }
  .navbar-menu-box{
    display: block;
    margin: initial;
    background: #fff;
  }
  .header-container{
    height: 220px !important;
  }
  .header-container .header-pagination{
    bottom: 5px;
  }
  .header-container .header-pagination .swiper-pagination-bullet{
    margin: 0 8px;
  }
  .header-container .header-pagination .swiper-pagination-bullet-active::before{
    width: 18px;
    height: 18px;
    left: -6px;
    top: -6px;
  }
  .header-container .swiper-slide .name{
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .header-container .swiper-slide .desc{
    font-size: 14px;
    margin-top: 5px;
  }
  .solution-container {
    max-width: 100%;
    padding: 16px 0;
    border-radius: 0;
  }
  .solution-container .swiper-slide img{
    height: 40vw;
  }
  .solution-container .line .num{
    top: 32px;
  }
  .solution-container .swiper-slide-active .dot{
    width: 12px;
    height: 12px;
    bottom: 18px;
  }
  .solution-container .swiper-slide-active .dot::before{
    width: 90px;
    left: -40px;
    top: 5px;
  }
  .solution-container .swiper-slide-active .dot::after{
    width: 7px;
    height: 7px;
    left: 2px;
    top: 3px;
  }
  .solution-container .solution-button-box{
    bottom: 26px;
  }
  .product-list{
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .product-list li{
    width: 100%;
    height: 300px;
  }
  .product-list li img{
    width: 100%;
  }
  .product-list li .box .btn,
  .product-list li .box .info{
    display: block;
  }
  .aboutus-tabs{
    width: 100%;
    overflow-x: auto;
  }
  .aboutus-tabs ul{
    width: 800px;
    justify-content: flex-start;
    gap: 0;
  }
  .aboutus-tabs li{
    padding: 10px 0px;
    line-height: normal;
  }
  .main-card{
    margin: 0 15px;
  }
  .progress-bar{
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  /* .progress-bar .node .txt{
    width: 100px;
    margin-left: -50px;
  } */
  .progress-bar .line{
    width: 40px;
  }
  .mod-con{
    overflow-x: auto;
  }
  .history-main{
    width: 4300px;
  }
  .business-list{
    width: 95%;
  }
  .business-list li{
    width: 100%;
    height: 200px;
    padding: 30px 0;
  }
  .business-list li .name{
    font-size: 18px;
  }
  .culture-box .t-box .pic{
    width: 100%;
    min-height: auto;
  }
  .culture-box .t-box .mess-box{
    width: 100%;
  }
  .honors-box .info{
    width: 100%;
  }
  .honors-box .info .date,
  .honors-box .info .text{
    display: inline-block;
    font-size: 14px;
    margin: 0;
  }
  .honors-box .info .list{
    margin-top: 20px;
  }
  .honors-box .content{
    width: 100%;
  }
  .contact-card .info{
    flex-wrap: wrap;
    width: 100%;
  }
  .contact-card .info .item{
    width: 100%;
  }
  .contact-card .info .name{
    display: inline-block;
  }
  .contact-card .info .name:nth-child(2)::after{
    display: none;
  }
  .contact-card .info .code{
    text-align: center;
    margin: 20px auto;
  }
  .contact-card .form-item input, .contact-card .form-item textarea{
    width: 260px;
  }
  .brand-list2 li{
    width: calc(50% - 16px);
  }
  .consultation-detail-card .container{
    padding: 0;
  }
  .consultation-detail-card .detail-header .title{
    text-align: left;
  }
  .consultation-detail-card .tags {
    margin: 22px 0 9px 0;
  }
  .consultation-detail-card .back-list {
    margin-top: 26px;
  }
  .technical-detail-card {
    margin: 20px 2vw;
    padding: 8px 0 4px 0;
  }
  .technical-detail-card h1.title {
    font-size: 22px;
  }
  .technical-detail-card h2 {
    font-size: 17px;
  }
  .technical-detail-card .detail-cover {
    max-width: 98%;
  }
  .technical-detail-card .tags {
    text-align: left;
    margin-top: 16px;
  }
  .solution-list-card .container{
    padding: 0;
    width: 100%;
  }
  .solution-page .list li{
    width: 100%;
  }
  .map-card{
    padding: 0 0 20px 0;
    margin-bottom: 20px;
  }
  .map-card .map,
  .map-card .info{
    width: 100%;
  }
  .contact-card .info form{
    width: 100%;
  }
  .online-message li{
    width: 100%;
  }
  .contact-online-msg .section{
    width: 95%;
  }
  .footer .content .row,
  .footer .links .box{
    width: 90%;
  }
  .footer .content .row{
    flex-wrap: wrap;
  }
  .footer .content .msg{
    width: 100%;
    border: none;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
  }
  .footer .code-wrapper .box{
    width: 50%;
    gap: 20px;
  }
  .footer .contact-wrapper{
    width: 80%;
  }
  .footer .content .list .name,
  .footer .content .msg .name{
    font-size: 16px;
  }
  .footer .contact-wrapper .list{
    gap: 20px;
  }
  .footer .contact-wrapper .list li{
    width: calc(20% - 1.6vw);
  }
  .footer .contact-wrapper .list .code{
    top: -90px;
  }
  .footer .menu ul{
    gap: 5px;
    justify-content: center;
  }
  .footer .menu {
    width: 100%;
  }
  .footer .menu li {
    padding-right: 5px;
    line-height: 14px;
    font-size: 14px;
  }
  .footer .copyright{
    font-size: 12px;
    padding: 30px 0;
  }
  .gray-card{
    margin: 0;
  }
  .map-card .address{
    font-size: 12px;
  }
  .map-card .icon-market{
    width: 28px;
    height: 26px;
  }
  .map-card .beijing{
    right: 19%;
    top: 26%;
  }
  .map-card .taiyuan{
    right: 27%;
    top: 35%;
  }
  .map-card .xian{
    right: 35%;
    top: 43%;
  }
  .map-card .quanzhou{
    right: 11%;
    bottom: 26%;
  }
  .map-card .xinjiang{
    left: 8%;
    top: 13%;
  }
  .map-card .chengdu{
    left: 34%;
    top: 50%;
  }
}