body {
  overflow-x: hidden;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.company-slogan {
  position: absolute;
  white-space: nowrap;
  left:50%;
  transform: translateX(-50%);
  font-family: "Source Han Sans SC";
  letter-spacing: 30px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.solution-list {
  /* display: flex; */
  background-color: #00a2ea;
  align-items: center;
  /* justify-content: center; */
  height: 120px;
  color: #ffffff;
}
.left-active {
  background: linear-gradient(to right, #acce22 0%,#acce22 50%,#00a2ea 51%,#00a2ea 100%)
}

.right-active {
  background: linear-gradient(to right, #00a2ea 0%,#00a2ea 50%,#acce22 51%,#acce22 100%)
}
.solution-list-item {
  flex: 1;
  text-align: center;
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 18px;
  background-color: #00a2ea;
  /* transition: width 0.5s ease-in-out; */
  width: 24%;
}


.solution-list-item:hover {
  width: 27%;
  font-weight: bold;
  cursor: pointer;
  justify-content: center !important;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  background-color: #acce22;
}
.activeColor {
  width: 25%;
  background-color: #acce22;
  justify-content: center !important;
}
.solution-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
  
}
.solution-content-left {
  flex: 1;
  position: relative;
}
.content-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  /* top: 80px; */
  left: 0;
}
.content-left-slogan .solution-and-product {
    font-weight: 550;
}
.solution-content-right {
  flex: 2;
  position: relative;
}
.solution-slogan {
  padding: 0 44px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  border-bottom-right-radius: 100px;
  background-color: #f5f5f5;
  color: #333333;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.solution-slogan-title {
  font-size: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-family: "Source Han Sans SC";
}
.solution-icon {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}
.solution-img {
  width: 100%;
}
.slogan-info {
  font-family: "Source Han Sans CN";
}
.solution-slogan-inactive {
  background-color: #f5f5f5;
  color: #333333 !important;
}
.solution-slogan-active {
  background-color: #0061ae !important;
  color: #ffffff !important;
  /* animation: show 0.5s 1;
  animation-fill-mode: forwards;
  -webkit-animation: show 0.5s 1; */
}
@keyframes show {
  10% {
    background: radial-gradient(Circle, #0061ae 40%, #0061ae 40%, #f5f5f5 40%);
  }

  20% {
    background: radial-gradient(Circle, #0061ae 60%, #0061ae 60%, #f5f5f5 60%);
  }

  40% {
    background: radial-gradient(Circle, #0061ae 80%, #0061ae 80%, #f5f5f5 80%);
  }

  60% {
    background: radial-gradient(Circle, #0061ae 90%, #0061ae 90%, #f5f5f5 90%);
  }

  80% {
    background: radial-gradient(Circle, #0061ae 95%, #0061ae 95%, #f5f5f5 95%);
  }

  100% {
    background: radial-gradient(
      Circle,
      #0061ae 100%,
      #0061ae 100%,
      #f5f5f5 100%
    );
  }
}

.product-inner-box {
  position: absolute;
  /* width: 1440px; */
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.product-inner-box>.to-left,
.product-inner-box>.to-right {
  color: #ffffff;
  text-align: center;
  line-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  cursor: pointer;
  z-index: 9;
}
.product-inner-box>.to-left:hover{
  opacity: .9;
}
.product-inner-box>.to-right:hover{
  opacity: .9;
}
.product-nav {
  padding: 20px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.product-list {
  width:fit-content;
  display: flex;
  align-items: center;
  background-color: transparent;
  white-space: nowrap;
  position: absolute;
}
.product-list .list-item {
  /* width: 300px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-left: 30px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 97, 174, 0.25);
  position: relative;
}
.product-url{
  width:100%;
}
.product-img-box {
  overflow: hidden;
  text-align: center;
  width: 100%;
  /* padding:40px 0; */
}
.product-img {
  width: 100%;
  transition: 0.8s;
  transform: scale(1.0);
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  -ms-transform: scale(1.0);
  -o-transform: scale(1.0);
}
.product-img:hover {
  transition: 0.8s;
  transform: scale(1.1);
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}

.product-border {
  border:4px solid #005BAC;
}
.product-disease {
  width: 100%;
  color: #ffffff;
  background: linear-gradient(90deg, #005BAC 0%, #00A1E9 100%);
  text-align: left;
  text-overflow: ellipsis;
  padding: 8px 10px;
  border-radius: 0px 0px 40px 0px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top:0px;
  left: 0px;
  z-index: 8;
}
.product-name {
  width: 100%;
  /* height: 80px; */
  line-height: 30px;
  text-align: center;
  background: #f5faff;
  font-family: "Source Han Sans CN";
  margin-bottom:0;
  padding:10px 0;
}
.product-title {
  color: #3e3a39;
  text-align: center;
  font-family: "Source Han Sans CN";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
.main_about_us {
  position: relative;
}
.main_about_us .company-info {
  position: absolute;
  left: 10%;
  top: 10%;
  width: 70%;
}
.know-more {
  padding: 1rem 1.5rem;
  border: 1px solid #005bac;
  cursor: pointer;
  color: #005bac;
}
.know-more:hover{
  background-color: #f5f5f5;
  text-decoration: none;
}
.about-us-title {
  font-weight: 550;
  font-family: "Source Han Sans SC Bold";
}
.about-us-intro {
  color: #3e3a39;
  font-family: "Source Han Sans CN";
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
}
.intro-list {
  display: flex;
  flex-wrap: wrap;
}
.intro-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
.num-plus{
  position: absolute;
  right: -30%;
  top: 0;
  display: inline-block;
  font-style: normal;
  font-family: "Alibaba PuHuiTi";
}
.intro-item-num{
  width:120px;
  font-family: "Alibaba PuHuiTi"
}
.intro-item-num,.num-plus {
  color: #005bac;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.intro-item-name {
  text-align: left;
}
.intro-item-unit {
  position: absolute;
  top: 0;
  color: #005bac;
}
.news-box {
  height: 500px;
  width: 100%;
  display: block;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.new-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  margin-bottom: 60px;
}
.news-title {
  line-height: 90px;
  height: 90px;
  font-weight: 500;
  font-family: "Source Han Sans SC Bold";
  position:relative;
}
.news-sub-title{
  position: absolute;
  color: #3E3A39;
  font-family: "Source Han Sans CN";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
  bottom: -78%;
  left: 0;
}
.more-news {
  padding: 1rem 1.5rem;
  border: 1px solid #005bac;
  cursor: pointer;
  color: #005bac;
  background-color: #ffffff;
}
.more-news:hover{
  background-color: #f5f5f5;
  text-decoration: none;
}
.new-bg-img {
  position: absolute;
}
.news-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.news-publicity {
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 97, 174, 0.1);
  height: 292px;
  margin-right: 30px;
}
.news-publicity a {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.publicity-image-box{
  height: 180px;
  width: 320px;
  overflow: hidden;
}
.publicity-image{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.8s;
  transform: scale(1.0);
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  -ms-transform: scale(1.0);
  -o-transform: scale(1.0);
}
.publicity-image:hover {
  transition: 0.8s;
  transform: scale(1.1);
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
}
.news-publicity-title {
  flex-grow: 1;
  color: #3e3a39;
  font-family: "Source Han Sans SC Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  width: 320px;
  padding: 40px;
  display: -webkit-box;
 -webkit-box-orient: vertical;
 overflow: hidden;
 -webkit-line-clamp: 2;
}
.publicity-title{
  width: 100%;
  color: #3e3a39;
  display: -webkit-box;
 -webkit-box-orient: vertical;
 overflow: hidden;
 -webkit-line-clamp: 2;
}
.publicity-date{
  color: #3e3a39;
}
.news-list {
  height: 100%;
}
.news-list-item {
  color: #3e3a39;
  font-family: "Source Han Sans SC";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  position: relative;
  margin-bottom: 20px;
  height: 80px;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-list-item:after {
  content: "";
  width: 98%;
  height: 1px;
  background-color: #005bac;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.article-title{
  display: -webkit-box;
 -webkit-box-orient: vertical;
 overflow: hidden;
 -webkit-line-clamp: 2;
}
/* 媒体查询适配 */
@media screen and (max-width: 1200px) {
  .company-slogan{
    top:-400px;
    font-size: 60px;
  }
  /* .content-left-content {
    left: 110px;
  } */
  .content-left-slogan {
    margin-bottom: 70px;
  }
  .content-left-slogan .solution-and-product {
    font-size: 40px;
  }
  .content-left-slogan .product-slogan {
    font-size: 18px;
  }
  .main_about_us .know-more {
    position: absolute;
    left: 0%;
    bottom: -15%;
  }
  .about-us-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .news-title {
    font-size: 40px;
  }
  .about-us-intro {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .intro-list {
    width: 60%;
  }
  .intro-item {
    margin: 0px 75px 50px 0;
  }
  .intro-item-num,.num-plus {
    font-size: 40px;
    margin-bottom: 14px;
  }
  .num-plus-province{
    right:-10%
  }
  .num-plus-right-1{
    right:16%
  }
  .num-plus-right-2{
    right:12%
  }
  .intro-item-name {
    font-size: 16px;
  }
  .intro-item-unit {
    right: -50px;
  }
  .province-unit{
    right: -30px;
  }
  .market-unit{
    right: 0px;
  }
  .team-unit{
    right: -10px;
  }
  .list-item {
    width: 210px;
  }
  .product-img {
    width:210px !important;
    height: 210px;
  }
  .product-nav {
    width: 990px;
    height: 300px;
  }
  .solution-img {
    height: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .company-slogan{
    top:-400px;
    font-size: 60px;
  }
  /* .content-left-content {
    left: 100px;
  } */
  .content-left-slogan {
    margin-bottom: 70px;
  }
  .content-left-slogan .solution-and-product {
    font-size: 40px;
  }
  .content-left-slogan .product-slogan {
    font-size: 16px;
  }
  .main_about_us .know-more {
    position: absolute;
    left: 0%;
    bottom: -15%;;
  }
  .about-us-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .news-title {
    font-size: 40px;
  }
  .about-us-intro {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .intro-list {
    width: 60%;
  }
  .intro-item {
    margin: 0px 75px 50px 0;
  }
  .intro-item-num,.num-plus {
    font-size: 40px;
    margin-bottom: 14px;
  }
  .num-plus-province{
    right:-10%
  }
  .num-plus-right-1{
    right:16%
  }
  .num-plus-right-2{
    right:6%
  }
  .intro-item-name {
    font-size: 16px;
  }
  .intro-item-unit {
    right: -50px;
  }
  .province-unit{
    right: -30px;
  }
  .market-unit{
    right: 0px;
  }
  .team-unit{
    right: -10px;
  }
  .list-item {
    width: 210px;
  }
  .product-img {
    width:140px !important;
    height: 140px;
  }
  .product-nav {
    width: 990px;
    height: 300px;
  }
  .solution-img {
    height: 700px;
  }
}
@media screen and (min-width: 1440px) {
  .company-slogan{
    top:-400px;
    font-size: 70px;
  }
  /* .content-left-content {
    left: 120px;
  } */
  .content-left-slogan {
    margin-bottom: 70px;
  }
  .content-left-slogan .solution-and-product {
    font-size: 40px;
  }
  .content-left-slogan .product-slogan {
    font-size: 18px;
  }
  .main_about_us .know-more {
    position: absolute;
    left: 0%;
    bottom: -16%;;
  }
  .about-us-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .news-title {
    font-size: 40px;
  }
  .about-us-intro {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .intro-list {
    width: 54%;
  }
  .intro-item {
    margin: 0px 60px 60px 0;
  }
  .intro-item-num,.num-plus {
    font-size: 40px;
    margin-bottom: 14px;
  }
  .num-plus-province{
    right:-10%
  }
  .num-plus-right-1{
    right:16%
  }
  .num-plus-right-2{
    right:6%
  }
  .intro-item-name {
    font-size: 16px;
  }
  .intro-item-unit {
    right: -50px;
  }
  .province-unit{
    right: -30px;
  }
  .market-unit{
    right: 0px;
  }
  .team-unit{
    right: -10px;
  }
  .list-item {
    width: 260px;
  }
  .product-img {
    width:200px !important;
    height: 200px;
  }
  .product-nav {
    width: 1190px;
    height: 360px;
  }
  .solution-img {
    height: 800px;
  }
}
@media screen and (min-width: 1680px) {
  .company-slogan{
    top:-500px;
    font-size: 80px;
  }
  /* .content-left-content {
    left: 120px;
  } */
  .content-left-slogan {
    margin-bottom: 70px;
  }
  .content-left-slogan .solution-and-product {
    font-size: 50px;
  }
  .content-left-slogan .product-slogan {
    font-size: 20px;
  }
  .main_about_us .know-more {
    position: absolute;
    left: 0%;
    bottom: -16%;;
  }
  .about-us-title {
    font-size: 50px;
    margin-bottom: 60px;
  }
  .news-title {
    font-size: 50px;
  }
  .about-us-intro {
    font-size: 20px;
    margin-bottom: 60px;
  }
  .intro-list {
    width: 54%;
  }
  .intro-item {
    margin: 0px 90px 60px 0;
  }
  .intro-item-num,.num-plus {
    font-size: 46px;
    margin-bottom: 14px;
  }
  .num-plus-province{
    right:-10%
  }
  .num-plus-right-1{
    right:16%
  }
  .num-plus-right-2{
    right:6%
  }
  .intro-item-name {
    font-size: 16px;
  }
  .intro-item-unit {
    right: -50px;
  }
  .province-unit{
    right: -30px;
  }
  .market-unit{
    right: 0px;
  }
  .team-unit{
    right: -10px;
  }
  .list-item {
    width: 280px;
  }

  .product-img {
    width:240px !important;
    height: 240px;
  }
  .product-nav {
    width: 1230px;
    height: 400px;
  }
  .solution-img {
    height: 900px;
  }
}
@media screen and (min-width: 1920px) {
  .company-slogan{
    top:-600px;
    font-size: 100px;
  }
  /* .content-left-content {
    left: 200px;
  } */
  .content-left-slogan {
    margin-bottom: 70px;
  }
  .content-left-slogan .solution-and-product {
    font-size: 50px;
  }
  .content-left-slogan .product-slogan {
    font-size: 20px;
  }
  .main_about_us .know-more {
    position: absolute;
    left: 0%;
    bottom: -10%;;
  }
  .about-us-title {
    font-size: 50px;
    margin-bottom: 60px;
  }
  .news-title {
    font-size: 50px;
  }
  .about-us-intro {
    font-size: 20px;
    margin-bottom: 80px;
  }
  .intro-list {
    width: 54%;
  }
  .intro-item {
    margin: 0px 120px 80px 0;
  }
  .intro-item-num,.num-plus {
    font-size: 50px;
    margin-bottom: 14px;
  }
  .num-plus-province{
    right:0%
  }
  .num-plus-right-1{
    right:20%
  }
  .num-plus-right-2{
    right:20%
  }
  .intro-item-name {
    font-size: 20px;
  }
  .intro-item-unit {
    right: -54px;
  }
  .province-unit{
    right: -30px;
  }
  .market-unit{
    right: 0px;
  }
  .team-unit{
    right: -10px;
  }
  .list-item {
    width: 300px;
  }
  .product-img {
    width: 280px !important;
    height: 280px;
  }
  .product-nav {
    width: 1230px;
    height: 460px;
  }
  .solution-img {
    height: 960px;
  }
}

.carousel-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.carousel-slide img, .carousel-slide video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}