@charset "utf-8";
/*  */
.index-heading-title h4 {
  font-size: 20px;
  color: #01004d;
}
.index-heading-title p {
  font-size: 48px;
  color: #01004d;
}

.index-heading-more {
  margin-top: 40px;
}

.index-heading.flex {
  justify-content: space-between;
  align-items: center;
}
.index-heading.flex .index-heading-more {
  margin-top: 0;
}

@media (max-width: 1366px) {
  .index-heading-title h4 {
    font-size: 16px;
  }
  .index-heading-title p {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .index-heading-title h4 {
    font-size: 14px;
  }
  .index-heading-title p {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .index-heading-title p {
    font-size: 18px;
  }
}

/*  */
.index-main {
  background-color: #f5f5f5;
}

/*  */

.index-banner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background-color:  rgba(2, 6, 76,1);
  overflow: hidden;
}


.index-banner:before{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: '';
    width: 100%;
    height: 20vh;
    background: linear-gradient(to top, rgba(2, 6, 76,1), rgba(2, 6, 76,0));
}


.index-banner-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.index-banner-content h1 {

  font-size: 48px;
  text-align: center;
  color: #fff;
  /*font-weight: bold;*/
}

.index-banner-content h3 {
  font-size:24px;
  text-align: center;
  color: #fff;

}

.index-banner-content p {
        margin-top: 20px;
  font-size:18px;
  text-align: center;
  color: #fff;

}

.index-banner-more {
  margin-top: 50px;
  display: flex;
  gap: 15px;
}

.index-banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) translateZ(0);
  display: block;
  min-width: 100%;
  min-height: 100vh;
  will-change: transform;
  backface-visibility: hidden;
}

@media (max-width: 1200px) {
  .index-banner-content h1 {
    font-size: 48px;
  }

  .index-banner-content h1 span {
    display: block;
  }
}

@media (max-width: 768px) {
  .index-banner-content h1 {
    font-size: 24px;
  }
  
  .index-banner-content p {
     
  font-size:16px;
 

}

.index-banner-content h3 {
  font-size:18px;


}
}

/*  */

/*----------------------------------------------------------------------------------*/


.gallery-viewport:before{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    content: '';
    width: 100%;
    height: 20vh;
    background: linear-gradient(to bottom, rgba(2, 6, 76,1), rgba(2, 6, 76,0));
}



.gallery-banner-video{
      position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  transform: translate(-50%, -50%);
  display: block;
  min-width: 100%;
  min-height: 100vh;
      height: 100%;
    /* 替换 min-width/min-height 为 width/height + object-fit */
  height: calc(var(--vh, 1vh) * 100); /* 降级方案 */
  object-fit: cover; /* 核心：裁剪填充 */
  display: block;
  will-change: transform;
  backface-visibility: hidden;
}

      /* ====== 视口 ====== */
      .gallery-viewport {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        z-index: 1;
        background-color: #00084C;
      }

      /* ====== 世界容器 ====== */
      .gallery-world {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        will-change: transform;
      }

      /* ====== 卡片 ====== */
      @keyframes cardPop {
        0% {
          transform: scale(0);
          opacity: 0;
        }
        55% {
          transform: scale(1.12);
          opacity: 1;
        }
        75% {
          transform: scale(0.94);
        }
        90% {
          transform: scale(1.03);
        }
        100% {
          transform: scale(1);
          opacity: 1;
        }
      }
      .card {
        position: absolute;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        aspect-ratio: 1;
        transition:  all.3s ;
      }
 
      .card:hover {
        z-index: 100 !important;
        transform: scale(1.2);
      }
      .card a {
        display: block;
        width: 100%;
        height: 100%;
      }
      .card img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* ====== 15 张图固定布局 ====== */
      .card:nth-child(1) {
        width: 16vw;
        left: 2%;
        top: 10%;
      }
      .card:nth-child(2) {
        width: 15vw;
        left: 20%;
        top: 22%;
      }
      .card:nth-child(3) {
        width: 18vw;
        left: 40%;
        top: 14%;
      }
      .card:nth-child(4) {
        width: 14vw;
        left: 62%;
        top: 8%;
      }
      .card:nth-child(5) {
        width: 16vw;
        left: 82%;
        top: 20%;
      }
      .card:nth-child(6) {
        width: 15vw;
        left: 6%;
        top: 38%;
      }
      .card:nth-child(7) {
        width: 18vw;
        left: 28%;
        top: 48%;
      }
      .card:nth-child(8) {
        width: 14vw;
        left: 54%;
        top: 32%;
      }
      .card:nth-child(9) {
        width: 16vw;
        left: 66%;
        top: 52%;
      }
      .card:nth-child(10) {
        width: 15vw;
        left: 84%;
        top: 38%;
      }
      .card:nth-child(11) {
        width: 17vw;
        left: 4%;
        top: 68%;
      }
      .card:nth-child(12) {
        width: 14vw;
        left: 26%;
        top: 80%;
      }
      .card:nth-child(13) {
        width: 18vw;
        left: 40%;
        top: 66%;
      }
      .card:nth-child(14) {
        width: 16vw;
        left: 60%;
        top: 76%;
      }
      .card:nth-child(15) {
        width: 16vw;
        left: 80%;
        top: 72%;
      }

      @media (max-width: 768px) {
        .card:nth-child(1) {
          width: 37.5vw;
          left: 5%;
          top: 12%;
        }
        .card:nth-child(2) {
          width: 32.5vw;
          left: 20%;
          top: 25%;
        }
        .card:nth-child(3) {
          width: 35vw;
          left: 40%;
          top: 17.5%;
        }
        .card:nth-child(4) {
          width: 32.5vw;
          left: 65%;
          top: 13.5%;
        }
        .card:nth-child(5) {
          width: 37.5vw;
          left: 85%;
          top: 22.5%;
        }
        .card:nth-child(6) {
          width: 32.5vw;
          left: 7.5%;
          top: 40%;
        }
        .card:nth-child(7) {
          width: 35vw;
          left: 25%;
          top: 50%;
        }
        .card:nth-child(8) {
          width: 32.5vw;
          left: 55%;
          top: 35%;
        }
        .card:nth-child(9) {
          width: 40vw;
          left: 65%;
          top: 55.5%;
        }
        .card:nth-child(10) {
          width: 35vw;
          left: 80%;
          top: 40%;
        }
        .card:nth-child(11) {
          width: 37.5vw;
          left: 6%;
          top: 75%;
        }
        .card:nth-child(12) {
          width: 32.5vw;
          left: 27.5%;
          top: 85%;
        }
        .card:nth-child(13) {
          width: 35vw;
          left: 38.5%;
          top: 67.5%;
        }
        .card:nth-child(14) {
          width: 37.5vw;
          left: 57.5%;
          top: 80%;
        }
        .card:nth-child(15) {
          width: 37.5vw;
          left: 82.5%;
          top: 75.5%;
        }
      }

 

      /* ====== 移动端：两列网格，关闭世界平移 ====== */
      @media (max-width: 768px) {
        .gallery-viewport {
          position: relative;
     
          width: 100%;
          height: auto;
        }
        .gallery-world {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 12px;
          padding: 12px;
          width: 100% !important;
          height: auto !important;
          position: static;
          transform: none !important;
        }
        .card {
          position: static;
          width: 100% !important;
          left: auto !important;
          top: auto !important;
          aspect-ratio: 1;
        }
        .card:nth-child(n) {
          width: 100% !important;
          left: auto !important;
          top: auto !important;
        }
   
      }





/*----------------------------------------------------------------------------------*/

.index-shengtai .cp-title {
  max-width: clamp(400px, 45vw, 680px);
  color: #fff;
}

.index-shengtai .cp-title h4 {
  font-size: clamp(12px, 1vw, 16px);
}

.index-shengtai .cp-title p {
  margin-top: clamp(12px, 1.2vw, 20px);
  font-size: clamp(16px, 1.5vw, 24px);
  text-align: justify;
}
/*  */
.index-shengtai-list {
  margin-top: clamp(40px, 5vw, 80px);
  position: relative;
  z-index: 1;
}




/* .index-shengtai-list::before,
.index-shengtai-list::after {
  position: absolute;
  content: "";
  background-color: red;
  z-index: -1;
} */

.index-shengtai-list::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}
.index-shengtai-list::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.index-shengtai-list::after .index-shengtai-list ul li {
  position: absolute;
  z-index: 1;
}
.index-shengtai-list .cp-item {
  display: block;
  width: 100%;
  max-width: clamp(280px, 25vw, 420px);
}

.index-shengtai-list .cp-pic {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.index-shengtai-list .cp-pic img,
.index-shengtai-list .cp-pic canvas {
  transition: transform 0.3s ease-in-out;
}

.index-shengtai-list .cp-pic img {
  width: 100%;
  display: block;
}

.index-shengtai-list .cp-item h3 {
  font-size: clamp(14px, 1.4vw, 24px);
  color: #fff;
  margin-top: clamp(12px, 1.2vw, 20px);
}

.index-shengtai-list ul li:nth-child(1),
.index-shengtai-list ul li:nth-child(6) {
  width: clamp(200px, 20vw, 360px);
}

.index-shengtai-list .cp-item:hover .cp-pic img,
.index-shengtai-list .cp-item:hover .cp-pic canvas {
  transform: scale(1.06);
}

/* ===== 769~1024px：平板两列 ===== */
@media (max-width: 1024px) {
  .index-shengtai-list {
    height: auto !important;
  }
  .index-shengtai-list ul {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }
  .index-shengtai-list ul li {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: calc(50% - 15px) !important;
    margin: 0 0 40px !important;
  }

  .index-shengtai-list .cp-item {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .index-shengtai {
    min-height: auto !important;
  }
  .index-shengtai-list ul li,
  .index-shengtai-list ul li:nth-child(1),
  .index-shengtai-list ul li:nth-child(6) {
    width: 100%;
  }
}

/* ===== ≤768px：移动端垂直堆叠 ===== */
@media (max-width: 768px) {
  .index-shengtai-list {
    height: auto !important;
  }
  .index-shengtai-list ul {
    display: block !important;
  }
  .index-shengtai-list ul li {
    width: 100% !important;
    margin: 0 auto 40px !important;
  }
  .index-shengtai-list .cp-item {
    display: block;
    width: 100%;
    max-width: 100% !important;
  }
}

/*  */
.index-aigc-wrap {
  position: relative;
  z-index: 1;
  border-radius: 40px;
  overflow: hidden;
}

.index-aigc-poster {
  overflow: hidden;
}

.index-aigc-poster img {
  display: block;
  width: 100%;
}

.index-aigc-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #edf4f5;
  mask-image: radial-gradient(circle at 50% 50%, transparent 30%, black 30%);
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    transparent 30%,
    black 30%
  );
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 500% 500%;
  -webkit-mask-size: 500% 500%;
  transition:
    mask-size 0.8s ease,
    -webkit-mask-size 0.8s ease;
  pointer-events: none;
}

.index-aigc-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 40px;
  flex-direction: column;
  justify-content: space-between;
}

.index-aigc-content .cp-top {
  justify-content: space-between;
  align-items: flex-start;
}

.index-aigc-content .cp-bottom {
  justify-content: center;
}

.index-aigc-content .cp-title {
  max-width: 420px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(10px);
}

.index-aigc-content .cp-title h3 {
  font-size: 32px;
  color: #01004d;
}

.index-aigc-content .cp-title p {
  margin-top: 20px;
  color: #4d4d4d;
}

.index-aigc-date {
  display: flex;
  align-items: center;
  font-size: 20px;
  transition: all 0.6s ease;
  color: #fff;
}

.index-aigc-date span {
  display: inline-block;
  margin: 0 5px;
  background-color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  text-align: center;
  color: #01004d;
}

.index-aigc-content .cp-bottom {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.index-aigc-wrap:hover .index-aigc-mask {
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

@media (min-width: 960px) {
  .index-aigc-wrap:hover .index-aigc-mask {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }

  .index-aigc-wrap:hover .index-aigc-content .cp-title {
    opacity: 1;
    transform: translateY(0);
  }

  .index-aigc-wrap:hover .index-aigc-date {
    color: #01004d;
  }
  .index-aigc-wrap:hover .cp-bottom {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1366px) {
  .index-aigc-wrap {
    border-radius: 30px;
  }

  .index-aigc-content {
    padding: 30px;
  }

  .index-aigc-content .cp-title {
    max-width: 320px;
  }

  .index-aigc-content .cp-title h3 {
    font-size: 24px;
  }

  .index-aigc-content .cp-title p {
    margin-top: 10px;
    font-size: 14px;
  }

  .index-aigc-date {
    font-size: 16px;
  }

  .index-aigc-date span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
  }
}

@media (max-width: 960px) {
  .index-aigc-content {
    position: static;
    padding: 15px 0;
  }
  .index-aigc-mask {
    display: none;
  }

  .index-aigc-wrap {
    border-radius: 10px;
  }

  .index-aigc-poster {
    border-radius: 10px;
  }

  .index-aigc-content .cp-title {
    max-width: 100%;
    opacity: 1;
    transform: translateY(0);
  }

  .index-aigc-date {
    margin-top: 20px;
    font-size: 16px;
    color: #000;
  }

  .index-aigc-content .cp-bottom {
    margin-top: 20px;
    justify-content: flex-start;
    opacity: 1;
    transform: translateY(0);
  }
}

/*  */
.index-active-wrap .cp-left {
  padding: 0 100px;
  flex-direction: column;
  justify-content: space-between;
}

.index-active-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.index-active-swiper .swiper {
  width: 100%;
}

.index-active-swiper .swiper-slide {
  width: auto;
}

.index-active-item {
  position: relative;
  z-index: 1;
  display: block;
  padding-bottom: 128%;
  background-color: #94dfe4;
  border-radius: 20px;
  overflow: hidden;
}

.index-active-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  flex-direction: column;
  padding: 30px;
}

.index-active-content .cp-category {
  display: inline-block;
  margin-bottom: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
}

.index-active-content .cp-title {
  font-size: 24px;
}
.index-active-content .cp-tags {
  margin-top: 20px;
}

.index-active-content .cp-tags span {
  display: inline-block;
  margin-right: 15px;
  font-size: 16px;
  color: #4d4d4d;
}

.index-active-content .cp-desc {
  font-size: 18px;
  color: #4d4d4d;
}

.index-active-ctrl {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 50px;
}
.index-active-ctrl .swiper-button-prev {
  left: 0;
}
.index-active-ctrl .swiper-button-next {
  right: 0;
}

@media (max-width: 1920px) {
  .index-active-content .cp-title h3 {
    font-size: 18px;
  }
  .index-active-content .cp-tags {
    margin-top: 5px;
  }

  .index-active-content .cp-tags span {
    margin-right: 10px;
    font-size: 14px;
  }

  .index-active-content .cp-desc {
    font-size: 16px;
  }
}

@media (max-width: 1440px) {
  .index-active-wrap .cp-left {
    padding: 0 50px;
  }
}

@media (max-width: 1366px) {
  /* 活动 */
  .index-active-wrap {
    display: block;
  }
  .index-active-wrap .cp-left {
    padding: 0 15px;
    flex-direction: inherit;
    justify-content: space-between;
  }

  .index-active-swiper {
    margin-top: 20px;
    padding-left: 15px;
  }

  .index-active-item {
    border-radius: 18px;
  }
  .index-active-content {
    padding: 25px;
  }
  .index-active-content .cp-title {
    font-size: 20px;
  }
  .index-active-content .cp-desc {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  .index-active-content {
    padding: 20px;
  }
  .index-active-content .cp-title {
    font-size: 18px;
  }
  .index-active-content .cp-tags span {
    font-size: 12px;
    margin-right: 8px;
  }
  .index-active-content .cp-desc {
    font-size: 13px;
  }
  .index-active-ctrl {
    width: 90px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .index-active-swiper {
    padding: 0 15px;
  }
  .index-active-content {
    padding: 15px;
  }
  .index-active-content .cp-title {
    font-size: 16px;
  }
  .index-active-content .cp-category {
    margin-bottom: 10px;
    font-size: 10px;
    padding: 3px 10px;
  }
  .index-active-content .cp-tags {
    margin-top: 10px;
  }
  .index-active-content .cp-tags span {
    font-size: 12px;
  }
  .index-active-content .cp-desc {
    font-size: 12px;
  }
}

/*  */

.index-leader-ctrl {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 4;
  width: 110px;
  height: 50px;
}

.index-leader-ctrl .swiper-button-prev {
  left: 0;
}

.index-leader-ctrl .swiper-button-next {
  right: 0;
}

.index-leader-item {
  background-color: #051734;
  border-radius: 40px;
  overflow: hidden;
}

.index-leader-item .cp-poster {
  width: 50%;
}

.index-leader-item .cp-poster img {
  display: block;
  width: 100%;
}

.index-leader-item .cp-content {
  position: relative;
  z-index: 1;
  padding: 60px;
  width: 50%;
  background-color: #051734;
}

.index-leader-item .cp-info {
  color: #fff;
}

.index-leader-item .cp-info h3 {
  font-size: 24px;
}

.index-leader-item .cp-info p {
  margin-top: 5px;
  font-size: 14px;
}

.index-leader-item .cp-say {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 100px;
}

.index-leader-item .cp-say p {
  font-size: 24px;
  color: #fff;
}
.index-leader-item .cp-say img {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 1;
  max-width: 60px;
}

.index-leader-view {
  position: absolute;
  bottom: 60px;
  left: 60px;
}

/*  */
.index-news-list {
  margin-top: 50px;
}

.index-news-list ul {
  margin-left: -12px;
  margin-right: -12px;
}

.index-news-list ul li {
  width: 33.33%;
  padding: 12px;
}

.index-news-item {
  display: block;
}

.index-news-pic {
  border-radius: 20px;
  overflow: hidden;
}

.index-news-pic img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.index-news-item:hover .index-news-pic img {
  transform: scale(1.05);
}

.index-news-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
}

.index-news-item h3 {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.5;
  height: 72px;
  color: #221815;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index-news-date {
  margin-top: 30px;
  font-size: 16px;
  color: #999;
}

/*  */
.index-logo {
  background-color: #f7f7f7;
}

.index-logo-list {
  overflow: hidden;
  max-width: 1920px;
  margin: 50px auto 0;
}

.index-logo-list ul {
  margin-left: -1px;
}

.index-logo-list ul li {
  width: 12.5%;
  padding-left: 1px;
  margin-bottom: 1px;
}

.index-logo-list .cp-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.index-logo-list .cp-item::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: -1;
  width: 100%;
  height: 20%;
  /*background: linear-gradient(to right, #4947de, #66c5cc);*/
  background-color: #f5f5f5;
  opacity: 0;
  transition: all 0.3s ease;
}

.index-logo-list .cp-item:hover::before {
  height: 100%;
  opacity: 1;
}

.index-logo-list .cp-item:hover img {
 filter: grayscale(0);
}

.index-logo-list .cp-item img {
  display: block;
  max-width: 100%;
  max-height: 100px;
filter: grayscale(100%);
}

.index-logo-list .cp-item p {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  font-size: 12px;
  padding-bottom: 15px;
  color: #4d4d4d;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.index-logo-list .cp-item:hover p {
  bottom: 0;
  opacity: 1;
}

/* index-join */
.index-join {
  padding-top: 160px;
  padding-bottom: 260px;
  background: url(../images/join-bg.png) no-repeat center / cover;
  text-align: center;
  color: #fff;
  transform: translateY(50px);
}

.index-join-inner {
  text-align: center;
}

.index-join-inner h4 {
  font-size: 20px;
}

.index-join-inner h2 {
  font-size: 48px;
}

.index-join-inner p {
  font-size: 24px;
  max-width: 720px;
  margin: 20px auto 40px;
}

/* ================================================================
   响应式断点（仅用 px）
   ================================================================ */

/* ---- 1366px ---- */
@media (max-width: 1200px) {
  /* 领航者 */
  .index-leader-item .cp-content {
    padding: 30px;
  }

  .index-leader-item .cp-info h3 {
    font-size: 20px;
  }

  .index-leader-item .cp-say {
    margin-top: 20px;
    padding-top: 20px;
    padding-right: 70px;
  }

  .index-leader-item .cp-say p {
    font-size: 16px;
  }

  .index-leader-item .cp-say img {
    top: 20px;
    width: 40px;
  }

  .index-leader-ctrl {
    bottom: 30px;
    right: 30px;
    width: 90px;
    height: 40px;
  }
  .index-leader-view {
    bottom: 30px;
    left: 30px;
  }

  /* 资讯 */
  .index-news-item h3 {
    font-size: 20px;
    height: 60px;
  }

  .index-news-date {
    margin-top: 20px;
    font-size: 14px;
  }

  /* 生态伙伴 */
  .index-logo-list .cp-item {
    height: 120px;
    padding: 15px;
    border-radius: 16px;
  }

  .index-logo-list ul li {
    width: 16.66%;
  }

  /* 加入我们 */
  .index-join {
    padding-top: 120px;
    padding-bottom: 180px;
  }
  .index-join-inner h2 {
    font-size: 40px;
  }
  .index-join-inner p {
    font-size: 20px;
    max-width: 560px;
  }
}

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  /* 领航者 */
  .index-leader-item {
    flex-direction: column;
    border-radius: 0;
  }

  .index-leader-item .cp-poster {
    width: 100%;
  }

  .index-leader-item .cp-content {
    width: 100%;
    padding: 30px;
  }

  .index-leader-item .cp-info h3 {
    font-size: 20px;
  }

  .index-leader-item .cp-say {
    margin-top: 30px;
    padding-top: 20px;
    padding-right: 60px;
  }

  .index-leader-item .cp-say p {
    font-size: 18px;
  }

  .index-leader-ctrl {
    width: 90px;
    height: 40px;
  }

  .index-leader-view {
    position: static;
    margin-top: 30px;
  }

  /* 资讯 */
  .index-news-list {
    margin-top: 30px;
  }

  .index-news-list ul li {
    width: 50%;
  }

  .index-news-item h3 {
    font-size: 18px;
    height: 54px;
  }

  .index-news-tag {
    margin-top: 15px;
  }

  /* 生态伙伴 */
  .index-logo-list ul li {
    width: 20%;
  }

  .index-logo-list .cp-item {
    height: 110px;
    border-radius: 14px;
  }

  /* 加入我们 */
  .index-join {
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .index-join-inner h2 {
    font-size: 32px;
  }
  .index-join-inner p {
    font-size: 18px;
    max-width: 480px;
    margin: 15px auto 30px;
  }
  .index-join-inner h4 {
    font-size: 16px;
  }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  /* 领航者 */
  .index-leader-item {
    border-radius: 14px;
  }
  .index-leader-item .cp-content {
    padding: 20px;
  }
  .index-leader-item .cp-info h3 {
    font-size: 18px;
  }
  .index-leader-item .cp-info p {
    font-size: 12px;
  }
  .index-leader-item .cp-say {
    margin-top: 20px;
    padding-top: 15px;
    padding-right: 0;
  }
  .index-leader-item .cp-say p {
    font-size: 16px;
  }
  .index-leader-item .cp-say img {
    display: none;
  }

  /* 资讯 */
  .index-news-list {
    margin-top: 20px;
  }
  .index-news-list ul {
    margin-left: -8px;
    margin-right: -8px;
  }
  .index-news-list ul li {
    width: 100%;
    padding: 8px;
  }
  .index-news-item h3 {
    font-size: 16px;
    height: 48px;
  }
  .index-news-pic {
    border-radius: 14px;
  }
  .index-news-tag {
    margin-top: 12px;
    font-size: 10px;
  }
  .index-news-date {
    margin-top: 15px;
    font-size: 12px;
  }

  /* 生态伙伴 */
  .index-logo-list {
    margin: 30px auto 0;
  }
  .index-logo-list ul li {
    width: 25%;
  }
  .index-logo-list .cp-item {
    height: 90px;
    padding: 12px;
    border-radius: 12px;
  }
  .index-logo-list .cp-item img {
    max-height: 60px;
  }

  /* 加入我们 */
  .index-join {
    padding-top: 60px;
    padding-bottom: 80px;
    transform: translateY(30px);
  }
  .index-join-inner h4 {
    font-size: 14px;
  }
  .index-join-inner h2 {
    font-size: 26px;
  }
  .index-join-inner p {
    font-size: 16px;
    max-width: 100%;
    padding: 0 20px;
  }
}
