/* ========== Scheme 2.0 Page Styles ========== */

/* Banner Section */
/* .scheme-new-banner {
  
} */

.scheme-banner-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 0 40px; */
  text-align: center;
  padding: 180px 0 228px;
}

.scheme-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.scheme-banner-title {
  font-size: 56px;
  font-weight: 700;
  line-height: normal;
  color: #101C2F;
  margin-bottom: 24px;
}

.scheme-banner-desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 20px;
  color: #101C2F;
}

/* Banner 使用通用组件 main-btn */

/* Section1 - Tabs */
.scheme-new-section1 {
  margin-top: -180px;
  /* padding: 60px 0; */
  /* background: linear-gradient(180deg, rgba(238, 242, 250, 0.5) 0%, rgba(255, 255, 255, 1) 100%); */
}
.scheme-new-section1 .spacing-bottom-m {
  padding-top: 100px;
}
.scheme-tabs-content{
  margin-top: 100px;
}
.scheme-tabs-wrapper {
  max-width: 1280px;
  /* margin: 0 auto;
  padding: 0 40px; */
}

.scheme-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  background: #fff;
  padding: 8px;
  border-radius: 100px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.05),0px 20px 25px -5px rgba(28, 57, 142, 0.05),0px 8px 10px -6px rgba(28, 57, 142, 0.05);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.scheme-tab-btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  color: #3F4D62;
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.scheme-tab-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Tab 按钮选中状态 - 不同颜色 */
.scheme-tab-btn.active[data-color="purple"] {
  background: rgba(93, 74, 241, 0.2);
  color: #5D4AF1;
  /* box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3); */
}

.scheme-tab-btn.active[data-color="blue"] {
  background: rgba(37, 107, 246, 0.2);
  color: #256BF6;
  /* box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); */
}

.scheme-tab-btn.active[data-color="cyan"] {
  background: rgba(33, 192, 197, 0.2);
  color: #10979B;
  /* box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3); */
}

.scheme-tab-btn.active[data-color="orange"] {
  background: rgba(183, 219, 250, 0.6);
  color: #0A8CC8;
  /* box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3); */
}

/* Tab 内容面板 */
.scheme-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.scheme-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scheme-new-banner .banner-title, .scheme-new-banner .banner-desc{
  text-align: center !important;
  max-width: 100%;
}
.scheme-new-banner .banner-buttons {
  justify-content: center;
}
.scheme-new-banner .banner-layout{
  padding-bottom: 180px;

}
.scheme-section-title {
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  color: #101C2F;
  text-align: center;
  margin-bottom: 16px;
}
.scheme-new-section2 .section-title, .scheme-new-section2 .section-desc{
  text-align: left !important;
  color: #fff;
}
.scheme-section-desc {
  font-size: 24px;
  font-weight: normal;
  line-height: 40px;
  color: #101C2F;
  text-align: center;
  margin-bottom: 40px;
  /* max-width: 700px; */
  margin-left: auto;
  margin-right: auto;
}

/* 卡片网格 */
.scheme-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
button:focus-visible{
  outline: none;
}
.scheme-card {
  position: relative;
  background: linear-gradient(0deg, #EEF2FA, #EEF2FA), linear-gradient(0deg, #FFFFFF, #FFFFFF), #223140;
  border-radius: 24px;
  padding: 32px;
  min-height: 200px;
  /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04); */
  /* border: 1px solid #E8EBF0; */
  transition: all 0.3s ease;
  overflow: hidden;
}

.scheme-card-header {
  margin-bottom: 12px;
}

.scheme-card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  color: #101C2F;
  margin-bottom: 12px;
}
.scheme-card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #5A6577;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

}
.scheme-card-left {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  z-index: 1;
}
/* 卡片按钮使用通用组件 normal-btn，调整尺寸 */
.scheme-card-btn-size {
  padding: 8px 16px !important;
  box-shadow: none !important;
  width: fit-content;
  
}
.scheme-card-btn-size:hover .btn-arrow{
  transform: translate(3px, -3px);
}
.scheme-card-btn-size .normal-btn-text {
  font-size: 16px !important;
  line-height: 28px;
  font-weight: 500;
}

.scheme-card-btn-size .btn-arrow {
  transition: all 0.3s ease;
  background: url(/scheme/images/2.0/card-arrow.svg) no-repeat center center;
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
}

.scheme-card-btn-size:hover .btn-arrow  {
  background: url(/scheme/images/2.0/card-arrow-hover.svg) no-repeat center center;

}
.scheme-card-icon {
  position: absolute;
  right: 32px;
  bottom: 20px;
  width: 100px;
  height: 100px;
  /* opacity: 0.15; */
}

.scheme-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}






/* Section2 - 数据统计 */
.scheme-new-section2 {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
}

.scheme-stats-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 0 40px; */
}

.scheme-stats-content {
  text-align: left;
}

.scheme-stats-title {
  font-size: 48px;
  font-weight: 600;
  line-height: normal;
  color: #fff;
  margin-bottom: 20px;
}

.scheme-stats-desc {
  font-size: 24px;
  font-weight: normal;
  line-height: 40px;
  margin-bottom: 40px;
  color: #FFFFFF;
}
.logo-wall-img {
  width: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  height: 48px;
}
.scheme-stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.scheme-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.scheme-new-section3 .section-container{
  width: 100%;
}
.scheme-stat-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), linear-gradient(137deg, #4ADCCA -9%, #3E78F6 50%, #F43F5E 109%), radial-gradient(81% 143% at 88% 138%, #FF523F 0%, #F68ACB 50%, #8AC4FF 100%), #FFFFFF;
  /* border: 2px solid rgba(255, 255, 255, 0.3); */
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.scheme-stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #101C2F;
}

.scheme-stat-label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}
#section2 .section-container {
  padding: 0;
}

/* Section3 - Logo墙 */
.scheme-new-section3 {
  padding: 60px 0;
}

/* Logo Wall 样式修正 - 与 newdemo 保持一致 */
.scheme-new-section3 .logo-wall {
  width: 100%;
}

.scheme-new-section3 .logo-wall-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.scheme-new-section3 .logo-wall-track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition-property: transform;
  transition-timing-function: ease;
  transition-duration: 600ms;
}

.scheme-new-section3 .logo-wall-page {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
}

.scheme-new-section3 .logo-wall-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

/* Footer CTA */
.scheme-new-cta {
  margin-top: 0;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
  .scheme-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .scheme-new-banner {
    padding: 120px 0 60px;
  }

  .scheme-banner-wrapper {
    padding: 0 20px;
  }

  .scheme-banner-title {
    font-size: 32px;
  }

  .scheme-banner-desc {
    font-size: 16px;
  }

  .scheme-tabs-nav {
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    padding: 8px;
  }

  .scheme-tab-btn {
    width: 100%;
    text-align: center;
  }

  .scheme-cards-grid {
    grid-template-columns: 1fr;
  }

  .scheme-section-title {
    font-size: 28px;
  }

  .scheme-stats-grid {
    gap: 32px;
    justify-content: center;
  }

  .scheme-stat-circle {
    width: 80px;
    height: 80px;
  }

  .scheme-stat-number {
    font-size: 20px;
  }
}

