.business-section .business-items {
  width: 90vw;
  max-width: 1260px;
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 99;
}
.business-section .business-items .slide-item {
  height: 500px;
  width: clamp(180px, 21vw, 340px);
  position: relative;
  cursor: pointer;
}
.business-section .business-items .slide-item .background {
  height: 470px;
  width: clamp(165px, 20vw, 280px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease-in-out;
  z-index: -1;
  border-radius: 10px;
}
.business-section .business-items .slide-item .background img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.business-section .business-items .slide-item .info {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translateX(-50%) scale(1);
  transition: all 0.3s ease-in-out;
  color: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.business-section .business-items .slide-item .info h3 {
  font-size: 32px;
  color: #FFF;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: 0;
  white-space: nowrap;
}
.business-section .business-items .slide-item .info h5 {
  font-size: 12px;
  color: #FFF;
  text-align: center;
  min-height: 30px;
  margin-top: 10px;
  white-space: nowrap;
  font-weight: lighter;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: 0;
}
.business-section .business-items .slide-item .info ul {
  margin-top: 20px;
  position: relative;
  padding-top: 20px;
  list-style: none;
  font-size: 14px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.business-section .business-items .slide-item .info ul li {
  text-align: center;
}
.business-section .business-items .slide-item .info ul::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 22px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFF;
  transition: all 0.3s ease-in-out;
}
.business-section .business-items .slide-item:hover .background {
  transform: translate(-50%, -50%) scale(1.07);
}
.business-section .business-items .slide-item:hover .info h3 {
  transform: scale(1.1);
  color: #FFF;
}
.business-section .business-items .slide-item:hover .info h5 {
  transform: scale(1.1);
}
.business-section .business-items .slide-item:hover .info h3 {
  top: -10px;
}
.business-section .business-items .slide-item:hover .info h5 {
  top: -5px;
}
@media screen and (max-width: 760px) {
  .business-section .business-items {
    max-width: 90vw;
    flex-wrap: wrap;
    gap: 3px;
  }
  .business-section .business-items .slide-item {
    height: 250px;
    width: 41vw;
  }
  .business-section .business-items .slide-item .background {
    height: 234px;
    width: 39vw;
  }
  .business-section .business-items .slide-item .info {
    top: 38%;
  }
  .business-section .business-items .slide-item .info h3 {
    font-size: 24px;
    white-space: nowrap;
  }
  .business-section .business-items .slide-item .info h5 {
    font-size: 12px;
    min-height: 30px;
    margin-top: 10px;
  }
}
.business-section .slick-arrow {
  display: none !important;
}
.kv-prev,
.kv-next {
  padding: 2px 3px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}
.kv-prev:hover,
.kv-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.kv-1 .kv-slicks-title .know-more {
  margin-top: 80px;
  cursor: pointer;
  font-size: 22px !important;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .kv-1 .kv-slicks-title .know-more {
    font-size: 16px !important;
    margin-top: 40px;
  }
}
.kv-2 {
  width: 100%;
}
.kv-2 .kv-slicks-title {
  align-items: center !important;
  text-align: center;
}
.kv-2 .kv-slicks-title h2 {
  font-size: 60px !important;
}
@media screen and (max-width: 960px) {
    .kv-1 .kv-slicks-title div{
        text-align: left !important;
    }
    .kv-1 .kv-slicks-title h2 {
    font-size: 26px !important;
  }
  .kv-2 .kv-slicks-title h2 {
    font-size: 26px !important;
  }
  
}
.kv-2 .kv-slicks-title .know-more-btn {
  margin-top: 60px;
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 16px !important;
  font-weight:normal!important;
  display: flex;
  background-color: #fff;
  color: #333 !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  opacity: 1 !important;
  position: relative;
  overflow: hidden;
}
.kv-2 .kv-slicks-title .know-more-btn::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #333;
  opacity: 0.3;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  animation: btn-animation 3s ease infinite;
}
@keyframes btn-animation {
  0% {
    opacity: 0.3;
    width: 0;
    height: 0;
  }
  50% {
    opacity: 0.1;
    width: 200px;
    height: 200px;
  }
  100% {
    opacity: 0;
    width: 400px;
    height: 400px;
  }
}
.hover-news {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hover-news::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
  transition: all 0.1s ease-in-out;
}
.hover-news .date,
.hover-news span,
.hover-news div {
  transition: all 0.3s ease-in-out;
}
.hover-news > div {
  position: relative;
  z-index: 5;
}
.hover-news:hover .date,
.hover-news:hover span,
.hover-news:hover div {
  color: white !important;
}
.hover-news:hover::after {
  opacity: 1;
}
.page-background {
  position: absolute;
  z-index: -1;
  top: 620px;
  width: 100vw;
  height: auto;
}
.kv .container {
  position: relative;
}
.kv .container .bottom-shine {
  position: absolute;
  bottom: 7px;
  left: 17%;
  width: 400px;
}
@media screen and (max-width: 960px) {
  .kv .container .bottom-shine {
    left: -11%;
    width: 300px;
    bottom: 3px;
  }
}
.cert-slides .swiper-wrapper {
  transition-timing-function: linear;
}
.cert-slides .swiper-wrapper .swiper-slide {
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
  gap: 5px;
}
.carousel-track.paused {
  animation-play-state: paused;
}
.carousel-slide {
  flex: 0 0 auto;
  width: 300px;
  height: 200px;
  overflow: hidden;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.founder-container .list-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.founder-container .list-info .list-item {
  width: 49.5%;
  border-bottom: 1px dotted #DDD;
  font-size: 16px;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.founder-container .list-info .list-item .item-title {
  color: #999;
  padding: 0 10px;
  width: 22%;
}
.founder-container .list-info .list-item .item-content {
  color: #666;
}


@media screen and (max-width: 960px) {
  .founder-container .list-info{
    flex-direction: column;
    
  }
  .founder-container .list-info .list-item{
    width: 100%;
    padding: 8px 0;
  }
}
.founder-container .info-menu {
  display: flex;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  padding: 14px 0;
  margin: 50px 0;
  width: 400px;
}
.founder-container .info-menu .left {
  padding: 30px 14px 0 50px;
  font-size: 22px;
  font-weight: normal;
  color: #a9a9a9;
  border-right: 1px solid #EEE;
}
.founder-container .info-menu .right {
  padding: 14px 40px;
}
.founder-container .info-menu .right ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.founder-container .info-menu .right ul li a {
  font-size: 18px;
  color: #076ce0;
}


@media screen and (max-width: 960px) {
  .founder-container .info-menu{

    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    width: 100vw;
    position: relative;
    left: -10vw;
    margin: 50px 0 10px 0;
    background-color: #f2f2f2;
  }
  .founder-container .info-menu .right{
    padding: 10px 30px;
    overflow-x: scroll;
    /* 隐藏滚动条 */
    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */


  }
  .founder-container .info-menu .right ul{
    flex-direction: row;
  }

  .founder-container .info-menu .right ul li a{
    font-size: 14px;
    white-space: nowrap;
    background-color: #fff;
    padding: 5px 10px;
  }
}
.founder-container .main-content-section {
  overflow: hidden;
}
.founder-container .main-content-section .content {
  overflow: hidden;
}
.founder-container .main-content-section .content h3 {
  font-size: 24px;
  font-weight: normal;
  color: #076ce0;
  position: relative;
  margin: 20px 0;
  background-color: white;
  padding-right: 20px;
  width: fit-content;
  z-index: 3;
}
.founder-container .main-content-section .content h3::before {
  width: 100%;
  height: 100%;
  background-color: white;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}
.founder-container .main-content-section .content h3::after {
  position: absolute;
  left: 0;
  height: 1px;
  content: "";
  top: 50%;
  width: 100vw;
  background-color: #DDD;
  z-index: -2;
}

.founder-container .main-content-section .content h3 i{font-style: normal;width:4px;display:block;background-color:#076ce0;margin:8px 10px 0 0;float: left;line-height: 20px;}
.founder-container .main-content-section p {
  font-size: 16px;
  line-height: 2;
  text-indent: 32px;
  text-align: justify;
}
.founder-container .main-content-section b {
  margin-bottom: 10px;color: #c77000; font-weight: normal;
}
.founder-container .main-content-section .row-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 20px 0;
}
.founder-container .main-content-section .row-content .left {
  width: 56%;
}
.founder-container .main-content-section .row-content .swiper-images {
  width: 36%;
}
.founder-container .main-content-section .chenhao {
  line-height: 3;
  text-indent: 0;
  padding-left: 18px;
}
.founder-container .main-content-section .swiper-images img {
  object-fit: cover;
}
.founder-container .link {
  margin-top: 50px;text-align: center;
}
.founder-container .link img{
  width: 100px;
}

.founder-container .cert-slides {
  margin-top: 80px;
}
.founder-container .cert-slides .slide-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.founder-container .cert-slides .slide-item img {
  transition: all 0.3s ease-in-out;
}
.founder-container .cert-slides .carousel-slide {
  height: 250px;
}
.founder-container .cert-slides .carousel-slide img {
  height: 100%;
  object-fit: cover;
}
