.main-wrap{
	background: url(../images/banner.webp);
    padding-bottom:0px;
}
.abt-industry-section {
  box-sizing: border-box;
  position: relative;
  max-height: 450px;
  margin-bottom: 265px;
  margin-top:35px;
}

.abt-title {
  font-size: 2.2rem;
  font-weight: 700;
  color:white;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.abt-subtitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 36px;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

.abt-industry-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.abts-video-section {
    position: relative;
    width: 40%;
    height: 380px;
    overflow: hidden;
    z-index:2;
    margin-right:-25px;
    border-radius:25px;
    opacity: 0;
    transform: translateX(-50px);
    animation: abts-slideInFromLeft 1s ease-out 0.6s forwards;
}

.abts-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.abts-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

.abts-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-align: center;
    position: relative;
}

.abts-video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/><rect x="10" y="10" width="80" height="80" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>') repeat;
    opacity: 0.3;
}

.abts-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 10;
    opacity: 0;
    animation: abts-playButtonFadeIn 0.1s ease-out 0.2s forwards;
}

.abts-play-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.abts-play-button.abts-hidden {
    opacity: 0;
    pointer-events: none;
}

.abts-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.abts-video-wrapper:hover .abts-video-controls {
    opacity: 1;
}

.abts-video-controls.abts-show {
    opacity: 1;
}

.abts-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    margin-bottom: 10px;
    cursor: pointer;
}

.abts-progress {
    height: 100%;
    background: #4a90c2;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.abts-controls-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.abts-control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.abts-control-btn:hover {
    background: rgba(255,255,255,0.2);
}

.abts-time-display {
    color: white;
    font-size: 12px;
    margin-left: auto;
}

.abts-play-icon {
    width: 0;
    height: 0;
    border-left: 15px solid #000;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}


.abt-info-card {
    background: #1b1e27;
    border-radius: 60px 25px 25px;
    padding: 40px 90px;
    box-shadow: var(--abt-shadow);
    max-width: 650px;
    margin-left: -48px;
    z-index: 1;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: abt-slideInFromRight 1s ease-out 0.8s forwards;
}
.abt-info-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}
.abt-info-desc {
    font-size: 16px;
    color: #eaeaea;
    line-height: 1.5;
    word-break: break-word;
    margin-bottom:10px;
    letter-spacing:.7px;
}

/* Responsive */
@media (max-width: 900px) {
    .abt-industry-content {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .abt-info-card {
        margin-left: 0;
        margin-top: -14px;
        border-radius: 18px;
        width: 100%;
        max-width: 520px;
        transform: translateY(30px);
        animation: abt-slideInFromBottom 1s ease-out 0.8s forwards;
    }
    .abts-video-section {
        transform: translateY(-30px);
        animation: abt-slideInFromTop 1s ease-out 0.6s forwards;
    }
}

@media (max-width: 600px) {
.abt-title { font-size: 1.35rem; }
.abt-subtitle { font-size: 1rem; }
.abt-info-card {
padding: 20px 12px 16px 12px;
}
.abts-video-section {
aspect-ratio: 16/9;
width: 100vw;
min-width: 0;
max-width: 100vw;
}
.abts-play-button { width: 46px; height: 46px; }
.abt-play-icon { width: 24px; height: 24px; }
.abts-video-controls { padding: 8px 6px 2px 6px; }
}

.abt-animate-in {
opacity: 0;
transform: translateY(28px);
animation: abt-fadeinup 0.8s cubic-bezier(.37,.79,.39,1.09) 0.15s forwards;
}
.abt-title.abt-animate-in {
animation-delay: 0.1s;
}
.abt-subtitle.abt-animate-in {
animation-delay: 0.28s;
}
.abt-industry-content.abt-animate-in {
animation-delay: 0.48s;
}

/* Enhanced Animation Keyframes */
@keyframes abt-fadeinup {
to {
opacity: 1;
transform: none;
}
}

@keyframes abts-slideInFromLeft {
to {
opacity: 1;
transform: translateX(0);
}
}

@keyframes abt-slideInFromRight {
to {
opacity: 1;
transform: translateX(0);
}
}

@keyframes abt-slideInFromTop {
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes abt-slideInFromBottom {
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes abts-playButtonFadeIn {
to {
opacity: 1;
}
}

.abt-hidden { display: none !important; }













.showcase-section {
    position: relative;
    z-index: 4;
    width: 100%;
    height: auto;
    background-image: url('../images/mater1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


.showcase-inner {
    position: relative;
    z-index: 8;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 0px;
}

.showcase-slider {
    width: 100%;
    margin-bottom: 2rem;
    padding: 2rem 0;
}


.showcase-slider .swiper-slide {
    margin-bottom: -80px;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     background: transparent; /* 或与图片主色一致 */
}

.showcase-slider .swiper-slide.swiper-slide-active {
    pointer-events: auto;
    z-index: 10;
    filter: drop-shadow(0 12px 36px rgba(44,95,45,0.22));
}

.equipment-card {
    display: grid;
    grid-template-columns: 5fr 7fr;
    min-height: 450px;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    position: relative;
    transition: all 0.4s ease;
    animation: cardEntrance 0.8s ease-out;
    background: transparent;
}

.swiper-slide-active .equipment-card {
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.card-image {
    position: relative;
    border-radius: 1rem 0 0 1rem;
    overflow: hidden;
    background: transparent; /* 或与图片主色一致 */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
     background: transparent;
    transition: transform 0.6s ease;
}

.swiper-slide-active .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #fff;
}

.card-content h3 {
    font-size: 2.2rem;
    color: #000000;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0.7;
    transition: all 0.6s ease;
}

.swiper-slide-active .card-content h3 {
    transform: translateY(0);
    opacity: 1;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    height: 250px;
    overflow: auto;
    transform: translateY(30px);
    opacity: 0.6;
    transition: all 0.8s ease 0.2s;
}

.swiper-slide-active .card-content p {
    transform: translateY(0);
    opacity: 1;
}


.showcase-nav {
    display: flex;
    margin-top: 1rem;
    padding: 0 1rem;
    position:relative;
    justify-content: flex-end;
}

.slide-counter {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position:absolute;
    left:45%;

}

.slide-counter .current {
    font-size: 1.2rem;
    color: #b89e79;
    font-weight: bold;
}

.slide-counter .total {
    font-size: 1.2rem;
    color: #fff;
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
}

.nav-button {
    width: 45px;
    height: 45px;
    border: none;
    background: #fff;
    border-radius: 8px;
    color: #001c3e;
    line-height: 1;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-button:hover {
    background: #afb2c3;
    border-color: rgba(175, 178, 195, 0.8);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}


@media (max-width: 768px) {
    .equipment-card {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 200px;
    }

    .showcase-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .showcase-section {
        background-attachment: scroll;
    }

    .showcase-section::before {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.75) 100%
        );
    }

   
}

















    .production-capacity-section {
      width: 90%;
      display: flex;
      margin:50px auto;
      justify-content: flex-start;
      align-items: center;
      background: #fff;
      margin-left:8%;
    }

    .production-capacity-content {
      display: flex;
      align-items: flex-start;
      margin-left: 40px;
    }

    .capacity-title-group {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-right: -200px;
      margin-top:120px;
      z-index: 5;
      width: 30%;
    }

    .capacity-title {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 14px;
      line-height: 1.5;
      position: relative;
      display: inline-block;
      color:#000;
    }

    .capacity-title::after {
      content: '\25B6'; 
      display: inline-block;
      color: #192643;
      font-size: 1.5rem;
      position: absolute;
      left: 115%;
      top: 50%;
      transform: translateY(-50%) translateX(12px);
    }

    .capacity-images {
      position: relative;
    }

    .capacity-collage {
      width: 100%;
      height: 100%;
      border-radius: 24px;
      object-fit: cover;
      opacity: 0;
      transform: translateY(50px) scale(0.98);
      transition:
        opacity 0.7s cubic-bezier(.38,.7,.32,1.06),
        transform 0.7s cubic-bezier(.38,.7,.32,1.06);
    }

    .capacity-collage.in-view {
      opacity: 1;
      transform: translateY(0) scale(1);
    }








.ctc-process-bg {
  width: 100vw;
  background: url('../images/proce.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 115px 0;
}

.ctc-process-section {
  background: #fff;
  border-radius: 12px;
  max-width: 1480px;
  width: 90vw;
  margin: 0 auto;
  padding: 50px 32px 50px 32px;
  box-shadow: 0 6px 28px 0 rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(50px) scale(0.98);
  transition: 
    opacity 0.8s cubic-bezier(.38,.7,.32,1.06),
    transform 0.8s cubic-bezier(.38,.7,.32,1.06);
}

.ctc-process-section.ctc-process-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Title and description fly-in */
.ctc-process-title,
.ctc-process-desc {
  opacity: 0;
  transform: translateX(-50px);
  transition: 
    opacity 0.7s cubic-bezier(.38,.7,.32,1.06),
    transform 0.7s cubic-bezier(.38,.7,.32,1.06);
}
.ctc-process-title.ctc-process-inview,
.ctc-process-desc.ctc-process-inview {
  opacity: 1;
  transform: translateX(0);
}

.ctc-process-header {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.ctc-process-title-group {
  flex: 1;
  min-width: 360px;
  display: flex;
  flex-direction: row;
  gap:150px;
}

.ctc-process-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.ctc-process-desc {
  flex: 1;
  color: #555;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.ctc-process-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 26px 0 18px 0;
}

.ctc-process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 8px;
  margin-top: 20px;
}

.ctc-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 120px;
  flex: 1 1 120px;
  margin: 0 2px;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.7s cubic-bezier(.38,.7,.32,1.06),
    transform 0.7s cubic-bezier(.38,.7,.32,1.06),
    box-shadow 0.3s cubic-bezier(.38,.7,.32,1.06);
  background: transparent;
  border-radius: 8px;
}

.ctc-process-step.ctc-process-inview {
  opacity: 1;
  transform: translateY(0);
}

.ctc-process-step:hover {
  transform: translateY(-5px) scale(1.01);
  z-index: 1;
}
.ctc-process-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 12px;
  display: block;
}

.ctc-process-step-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #232323;
  text-align: center;
  line-height: 1.25;
}

.ctc-process-arrow-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin: 0 2px;
  user-select: none;
  opacity: 0;
  transform: translateY(50px);
  transition: 
    opacity 0.7s cubic-bezier(.38,.7,.32,1.06),
    transform 0.7s cubic-bezier(.38,.7,.32,1.06);
}
.ctc-process-arrow-group.ctc-process-inview {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 900px) {
  .ctc-process-section {
    max-width: 98vw;
    padding: 24px 10px 18px 10px;
  }
  .ctc-process-header {
    flex-direction: column;
    gap: 18px;
  }
  .ctc-process-title {
    font-size: 1.3rem;
  }
  .ctc-process-desc {
    font-size: 0.98rem;
  }
  .ctc-process-steps {
    flex-wrap: wrap;
    gap: 6px 0;
  }
  .ctc-process-step {
    min-width: 90px;
    flex-basis: 90px;
  }
}

@media (max-width: 650px) {
  .ctc-process-section {
    padding: 10px 2vw 10px 2vw;
  }
  .ctc-process-title {
    font-size: 1.1rem;
  }
  .ctc-process-step-title {
    font-size: 0.96rem;
  }
  .ctc-process-icon {
    width: 32px;
    height: 32px;
  }
  .ctc-process-arrow {
    width: 13px;
    height: 13px;
  }
  .ctc-process-arrow-group { width: 16px; }
}



.global-map-section {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.global-map {
    opacity: 0;
    z-index: 1;
    width: 100%;
    transform-origin: top center;
    max-width: 1200px;
    margin: 4% auto 0;
    position: relative
}

.global-map img {
    max-width: 100%;
    width: 100%
}

.global-map-dot {
    width: 2.16%;
    height: 0;
    padding-bottom: 2.16%;
    position: absolute;
    transform: translate(-50%,-50%)
}

.global-map-dot img {
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2
}

.global-map-dot .circle {
    z-index: 1;
    border-radius: 100%;
    width: 100%;
    height: 100%;
    background: rgba(47,91,169,.8);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0
}

.global-map-dot.one {
    left: 77.34%;
    top: 45.8%
}

.global-map-dot.two {
    left: 78.88%;
    top: 39.6%
}

.global-map-dot.three {
    left: 81.32%;
    top: 47.32%
}

.global-map-dot.four {
    left: 78.92%;
    top: 50.45%
}

.global-map-dot.five {
    left: 82.1%;
    top: 36.6%
}

.global-map-dot.six {
    left: 70.85%;
    top: 38%
}

.global-map-dot.seven {
    left: 66.84%;
    top: 48.9%
}

.global-map-dot.eight {
    left: 50%;
    top: 33.32%
}

.global-map-dot.nine {
    left: 32.3%;
    top: 77%
}

.global-map-dot.ten {
    left: 22.8%;
    top: 44.16%
}

.global-map-dot.eleven {
    left: 17.88%;
    top: 53.75%
}

.global-map-dot.twelve {
    left: 26.71%;
    top: 62.95%
}

.global-map-dot.thirteen {
    left: 60.45%;
    top: 52.1%
}

.global-map-dot.fourteen {
    left: 49.21%;
    top: 59.95%
}

.global-map-dot.fifteen {
    left: 57.21%;
    top: 63.1%
}

.global-map-dot.sixteen {
    left: 76.48%;
    top: 66.15%
}

.global-map-dot.seventeen {
    left: 54.84%;
    top: 78.7%
}



.section-data-view {
    z-index: 2;
    width: 100%;
/*    position: absolute;
    bottom: -25%;
    left: 0;*/
    transform: translate(0,100%);
    margin-bottom:30px;
}

.data-view-warp {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.data-view-item {
    width: 25%;
    line-height: 1;
    margin-bottom: 40px;
    text-align:center;
}

.data-view-item:nth-child(4n+4) {
    width: 16%
}

.full-screen-shade,.full-screen-text,.page-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.data-view-item .txt1 {
    font-size: 50px;
    color: #000000
}

.data-view-item .txt1 .num{
    font-weight:800;
}

.data-view-item .txt2 {
    font-size: 18px;
    color: #000000;
    margin-top: 10px
}

.data-view-item .smaller {
    font-size: 60%
}





     .testimonial-section {
            display: flex;
            flex-wrap: wrap;
            max-width: 1480px;
            margin: 20px auto 50px;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            box-sizing: border-box;
            position: relative;
            /* 初始状态：不可见 */
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        /* 当元素进入视口时的动画状态 */
        .testimonial-section.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-title {
            flex: 1 1 260px;
            min-width: 220px;
            max-width: 360px;
            padding-right: 40px;
            /* 标题动画初始状态 */
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
        }

        .testimonial-section.animate-in .testimonial-title {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-title .topic {
            font-size: 2rem;
            font-weight: 700;
            color: #212532;
            line-height: 1.2;
            margin-bottom: 10px;
            /* 子元素动画 */
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
        }

        .testimonial-section.animate-in .testimonial-title .topic {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-title .subtitle {
            font-size: 2rem;
            font-weight: 400;
            color: #B1B1B6;
            margin-bottom: 0;
            /* 子元素动画 */
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
        }

        .testimonial-section.animate-in .testimonial-title .subtitle {
            opacity: 1;
            transform: translateY(0);
        }

        .testimonial-swiper {
            flex: 2 1 350px;
            min-width: 300px;
            max-width: 950px;
            position: relative;
            border-radius: 12px;
            opacity: 0;
            transform: translateX(30px) scale(0.95);
            transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
        }

        .testimonial-section.animate-in .testimonial-swiper {
            opacity: 1;
            transform: translateX(0) scale(1);
        }

        .customer-swiper {
            width: 100%;
            overflow: hidden;
            border-radius: 12px;
        }

        .testimonial-content {
            padding: 24px 0 0 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .testimonial-quote {
            font-size: 4.5rem;
            color: #000;
            font-weight: bold;
            font-family: serif;
            line-height: 1;
            margin-bottom: 10px;
            margin-left: 8px;
        }

        .testimonial-text {
            font-size: 1.2rem;
            color: #000;
            margin-bottom: 15px;
            margin-left: 52px;
            line-height: 1.5;
            max-width: 95%;
            min-height: 90px;
        }

        .testimonial-user {
            display: flex;
            align-items: center;
            margin-left: 52px;
            margin-bottom: 8px;
        }

        .testimonial-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 12px;
            border: 2px solid #fff;
            box-shadow: 0 2px 8px rgba(60,60,60,0.07);
        }

        .testimonial-name {
            color: #1A253A;
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* 隐藏默认的 Swiper 导航按钮 */
        .customer-swiper .swiper-button-next,
        .customer-swiper .swiper-button-prev {
            display: none;
        }

        .customer-swiper .swiper-button-next:after,
        .customer-swiper .swiper-button-prev:after {
            display: none;
        }

        /* 自定义控制按钮容器 */
        .testimonial-controls {
            display: flex;
            align-items: center;
            position: absolute;
            right: 20px;
            bottom: 5px;
            justify-content: center;
            gap: 25px;
            z-index: 10;
            border-radius: 8px;
            padding: 4px 8px;
            /* 控制按钮动画 */
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out 0.8s, transform 0.6s ease-out 0.8s;
        }

        .testimonial-section.animate-in .testimonial-controls {
            opacity: 1;
            transform: translateY(0);
        }

        /* 自定义按钮样式 */
        .custom-prev,
        .custom-next {
            width: 32px;
            height: 32px;
            border: 2px solid #000000;
            border-radius: 6px;
            background: #fff;
            color: #1A253A;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, transform 0.2s;
            padding: 0;
            font-weight: bold;
            line-height: 1;
        }

        .custom-next {
            background: #001c3e;
            color: #fff;
            border: none;
        }

        .custom-prev:hover {
            background: #f0f0f0;
            transform: scale(1.05);
        }

        .custom-next:hover {
            background: #003366;
            transform: scale(1.05);
        }

        .custom-pagination {
            min-width: 48px;
            font-size: 1.1rem;
            color: #283347;
            font-weight: 400;
            margin: 0 2px;
            user-select: none;
            text-align: center;
        }

        /* 滑动项目的入场动画 */
        .swiper-slide {
            opacity: 0;
            animation: slideIn 0.6s ease-out forwards;
        }

        .swiper-slide-active {
            animation-delay: 0.4s;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* 响应式设计 */
        @media (max-width: 900px) {
            .testimonial-section {
                flex-direction: column;
                padding: 30px 6vw;
            }
            .testimonial-title {
                padding-right: 0;
                margin-bottom: 18px;
                text-align: center;
                transform: translateY(-20px);
            }
            .testimonial-section.animate-in .testimonial-title {
                transform: translateY(0);
            }
            .testimonial-swiper {
                max-width: 100%;
                transform: translateY(30px) scale(0.95);
            }
            .testimonial-section.animate-in .testimonial-swiper {
                transform: translateY(0) scale(1);
            }
        }

        @media (max-width: 600px) {
            .testimonial-title .topic,
            .testimonial-title .subtitle {
                font-size: 1.4rem;
            }
            .testimonial-text, .testimonial-user {
                margin-left: 0;
            }
            .testimonial-content {
                padding: 16px 0 0 0;
            }
            .testimonial-section {
                padding: 18px 2vw;
            }
            .testimonial-controls {
                right: 8px;
                bottom: 8px;
            }
        }

        /* 预加载动画 */
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }



.solutions {
/*  background: url(../images/case_banner.webp) no-repeat center top;*/
    background-size: cover;
    padding-bottom: 30px;
    position: relative;
    height: 100%;
}

.solutions>img {
    display: block;
    width: 100%
}

.solutions>img.video-mark {
    position: absolute;
    left: 0;
    top: 0
}

.solutions>video {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1
}

.solutions .mask {
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2
}

.solutions .solutionBan {
    width: 100%;
    min-width: 960px;
    z-index: 10;
    overflow: hidden
}

.solutions .solutionBan .solutionRoll {
    position: relative;
    overflow: hidden
}

.solutions .solutionBan .solutionRoll .tempWrap {
    margin: 0 auto
}

.solutions .solutionBan .solutionRoll .solutionRollUl {
    overflow: hidden;
    zoom: 1
}

.solutions .solutionBan .solutionRoll .solutionRollUl li {
    float: left;
    width: 16.666%;
    position: relative;
    overflow: hidden;
    text-align: center;
    overflow: hidden
}

.solutions .solutionBan .solutionRoll .solutionRollUl li span {
    clear: both;
    display: block;
    padding: 19px
}

.solutions .solutionBan .solutionRoll .solutionRollUl li span img {
    width: 100%;
    border-radius: 12px
}

.solutions .solutionBan .solutionRoll.solutionRollOne {
    padding-top: 30px
}

.solutions .solutionBan .solutionRoll.solutionRollTwo .solutionRollUl li {
    width: 20%
}

.solutions .case-font {
    margin-top: 170px;
    position: relative
}

.solutions .case-font>span {
    height: 50px;
    line-height: 38px;
    font-size: 24px;
    color: #fff;
    font-family: "yahei";
    display: block;
    position: relative
}

.solutions .case-font>span:before {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #888888;
    position: absolute;
    left: 0;
    bottom: 0
}

.solutions .case-font h2 {
    float: left;
    font-size: 64px;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
    background-image: -webkit-linear-gradient(-25deg, #8a929a 15%, #fff 50%, #8a929a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: hue6sinfinitelinear
}

.solutions .case-font p {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 42.10526%;
    font-size: 16px;
    line-height: 30px;
    font-family: "yahei";
    color: #999999;
    font-weight: bold
}

.solutions:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
/*  background: url(../images/case_banner_zz.webp) no-repeat left bottom;*/
    background-size: 100%;
    pointer-events: none
}



@-webkit-keyframes move {
    0%,100% {
        margin-left: 8px
    }

    50% {
        margin-left: 12px
    }
}

@keyframes move {
    0%,100% {
        margin-left: 8px
    }

    50% {
        margin-left: 12px
    }
}

@media (max-width: 3800px) {
    .solutions {
        padding-bottom:35px
    }

    .solutions .solutionBan .solutionRoll .solutionRollUl li span {
        padding: 18px
    }

    .solutions .solutionBan .solutionRoll .solutionRollUl li span img {
        border-radius: 10px
    }
}

@media (max-width: 3000px) {
    .solutions {
        padding-bottom: 35px
    }

    .solutions .solutionBan .solutionRoll .solutionRollUl li span {
        padding: 13px
    }
}

@media (max-width: 2400px) {
    .solutions {
        padding-bottom: 35px
    }

    .solutions .solutionBan .solutionRoll .solutionRollUl li span {
        padding: 10px
    }

    .solutions .solutionBan .solutionRoll .solutionRollUl li span img {
        border-radius: 8px
    }
}

@media (max-width: 1920px) {
    .solutions {
        padding-bottom: 20px;
        height: auto;
    }

    .solutions .solutionBan .solutionRoll .solutionRollUl li {
        width: 14.2857%
    }

    .solutions .solutionBan .solutionRoll.solutionRollOne {
        padding-top: 30px
    }

    .solutions .solutionBan .solutionRoll.solutionRollTwo .solutionRollUl li {
        width: 20%
    }

    .solutions .case-font h2 {
        font-size: 43px
    }
}

@media (max-width: 1900px) {
    .mddate {
        display: none
    }

    .solutions .solutionBan .solutionRoll .solutionRollUl li span {
        padding: 8px
    }

    .solutions .solutionBan .solutionRoll .solutionRollUl li span img {
        border-radius: 7px
    }

    .solutions .solutionBan .solutionRoll.solutionRollOne {
        padding-top: 30px
    }
}


 .cer-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 40px 20px
        }

        .cer-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 32px;
            color: #333
        }

        .cer-title span {
            color: #0e4794
        }

        .cer-shelf-container {
            position: relative;
            margin-bottom: 80px;
            margin-top: 35px;
            /* 添加动画相关样式 */
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        /* 当元素进入视口时显示 */
        .cer-shelf-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .cer-shelf {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            padding-bottom: 20px;
            position: relative;
            z-index: 2
        }

        .cer-certificate {
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform .3s ease,box-shadow .3s ease
        }

        .cer-certificate:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.2)
        }

        .cer-certificate img {
            object-fit: cover;
            width: 100%;
            height: auto;
        }

        .cer-shelf-base {
            position: absolute;
            bottom: -55px;
            left: 0;
            width: 100%;
            height: 120px;
            background-image: url('../images/shujia.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 5px;
            z-index: 1
        }

        .cer-shelf:nth-child(2) .cer-certificate {
            border-color: #1a4b94;
            background-color: #f9f5e3
        }

        .cer-red-cert {
            background-color: #fff5f5
        }

        .cer-gold-cert {
            background-color: #f9f5e3
        }

        .cpy-section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 32px;
            color: #333
        }

        @media(max-width: 1200px) {
            .cer-certificate {
                width:200px;
                height: auto
            }
        }

        @media(max-width: 992px) {
            .cer-certificate {
                width:180px;
                height: auto
            }

            .cer-title {
                font-size: 32px
            }
        }

        @media(max-width: 768px) {
            .cer-shelf {
                gap:15px
            }

            .cer-certificate {
                width: 150px;
                height: auto;
                border-width: 4px
            }

            .cer-title {
                font-size: 28px;
                margin-bottom: 30px
            }

            .cer-shelf-container {
                margin-bottom: 60px
            }

            .cer-shelf-container:nth-of-type(2) .cer-certificate:last-child {
                display: none;
            }

            .cer-shelf-container:nth-of-type(4) .cer-certificate:last-child {
                display: none;
            }

            .cpy-pad {
                padding: 0 15px
            }
        }

        @media(max-width: 576px) {
            .cer-certificate {
                width:130px;
                height: auto;
                border-width: 3px
            }

            .cer-shelf {
                gap: 10px
            }

            .cer-title {
                font-size: 24px
            }

            .cer-shelf-base {
                height: 20px;
                bottom: -15px
            }
        }

        @media(max-width: 480px) {
            .cer-certificate {
                width:130px;
                height: auto
            }

            .cer-shelf-container {
                margin-bottom: 40px
            }
        }
        
        
        
  
        .cmn-feature-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .cmn-feature-title h2 {
            font-size: 24px;
            font-weight: bold;
            margin: 30px auto;
            text-align: center;
        }

        .cmn-feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            justify-content: center;
            align-items: start;
        }

        .cmn-feature-item {
            display: flex;
            align-items: center;
            padding: 20px;
            border-radius: 10px;
            text-align: left;
        }

        .cmn-feature-icon {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            display: flex;
            align-items: center;
        }

        .cmn-feature-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cmn-feature-content h3 {
            font-size: 18px;
            margin: 0 0 10px;
        }

        .cmn-feature-content p {
            font-size: 14px;
            color: #666;
            margin: 0;
            line-height: 21px;
        }

        .cmn-adv-container {
            margin: 0 auto;
            padding: 50px 20px;
        }

        .cnm-adv-header {
            text-align: center;
            max-width: 1420px;
            margin: 30px auto;
        }

        .cnm-adv-title {
            font-size: 32px;
            color: #333;
            margin-bottom: 20px;
        }

        .cnm-adv-intro {
            font-size: 16px;
            line-height: 28px;
            margin-bottom: 30px;
            text-align: center;
            color: #333;
        }

        .cnm-adv-intro a {
            color: #002870;
            text-decoration: none;
        }

        .cnm-adv-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            margin-top: 20px;
            margin-left: auto;
            margin-right: auto;
        }

        .cnm-adv-card {
            border-radius: 5px;
            overflow: hidden;
            display: flex;
            cursor: pointer;
        }

        .cnm-adv-card-image {
            width: 50%;
            overflow: hidden;
        }

        .cnm-adv-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cnm-adv-card-content {
            width: 50%;
            padding: 25px 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: auto;
            box-sizing: border-box;
        }

        .cnm-adv-card-content:hover .cnm-adv-card-title {
            color: #002870;
        }

        .cnm-adv-card-title {
            font-size: 24px;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
        }

        .cnm-adv-card-text {
            font-size: 16px;
            line-height: 28px;
            color: #555;
        }

        /* 滚动动画效果 */
        .cnm-animate-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .cnm-animate-element.cnm-in-viewport {
            opacity: 1;
            transform: translateY(0);
        }

        /* 为不同的卡片添加延迟效果 */
        .cnm-adv-card:nth-child(1) {
            transition-delay: 0s;
        }

        .cnm-adv-card:nth-child(2) {
            transition-delay: 0.1s;
        }

        .cnm-adv-card:nth-child(3) {
            transition-delay: 0.2s;
        }

        .cnm-adv-card:nth-child(4) {
            transition-delay: 0.3s;
        }

        @media (min-width: 768px) and (max-width: 1200px) {
            .cnm-adv-grid {
                grid-template-columns: 1fr;
            }

            .cnm-adv-card {
                flex-direction: row;
            }

            .cnm-adv-card-image {
                width: 100%;
            }

            .cnm-adv-card-image img {
                height: auto;
            }

            .cnm-adv-card-content {
                width: calc(100% - 40px);
            }

            .cnm-adv-card:nth-child(2) {
                flex-direction: row-reverse;
            }

            .cnm-adv-card:nth-child(3) {
                flex-direction: row-reverse;
            }
        }

        @media (max-width: 768px) {
            .cmn-feature-grid {
                grid-template-columns: 1fr;
            }

            .cnm-adv-grid {
                grid-template-columns: 1fr;
            }

            .cnm-adv-card {
                flex-direction: column;
            }

            .cnm-adv-card-image {
                width: 100%;
                height: auto;
            }

            .cnm-adv-card-content {
                width: 100%;
                padding:15px 0px;
            }

            .cnm-adv-card:nth-child(2),
            .cnm-adv-card:nth-child(3) {
                flex-direction: column;
            }
        }

     
        