@charset "UTF-8";
.banner-wrapper {
  width: 100%;
  position: relative;
  z-index: 0;
}
@media (min-width: 769px) {
.banner-wrapper {
    height: 100vh;
    position: fixed;
}
}
@media (max-width: 768px) {
.banner-wrapper {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y !important;
}
.banner-carousel {
    height: 100%;
    touch-action: pan-y !important;
    overflow: visible !important;
}
.carousel__viewport {
    touch-action: pan-y !important;
    overflow: visible !important;
}
.carousel__track {
    touch-action: pan-y !important;
}
.carousel__slide {
    height: 100%;
    touch-action: auto !important;
    pointer-events: none !important;
}
img {
    height: 100% !important;
    min-height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center top;
    display: block;
    aspect-ratio: unset;
}
}
.banner-carousel {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
.banner-carousel {
    height: 100%;
}
}
.carousel__pagination {
  pointer-events: auto;
  opacity: var(--pgn-opacity, 1);
  transition: opacity 0.15s ease-out;
}
:root {
  background-color: #242424;
}
.carousel {
  --vc-pgn-background-color: rgba(255, 255, 255, 0.7);
  --vc-pgn-active-color: rgba(255, 255, 255, 1);
  --vc-nav-background: rgba(255, 255, 255, 0.7);
  --vc-nav-border-radius: 100%;
}
img {
  /* border-radius: 8px; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 禁用图片交互 */
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}
.banner-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  color: white;
  width: 80%;
  max-width: 1200px;
  z-index: 2;
  will-change: transform, opacity;
  backface-visibility: hidden;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition:
    opacity 0.15s ease-out,
    transform 0.15s ease-out;
}
.banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.banner-subtitle {
  padding-top: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.9;
}

/* 响应式调整 */
@media (max-width: 1024px) {
.banner-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.banner-subtitle {
    font-size: 1.3rem;
}
}
@media (max-width: 768px) {
.banner-text {
    width: 90%;
    top: 48%;
}
.banner-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}
.banner-subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
}
}
@media (max-width: 480px) {
.banner-text {
    top: 45%;
    width: 95%;
}
.banner-title {
    padding: 0 10px;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}
.banner-subtitle {
    padding: 15px 10px;
    font-size: 1.5rem;
    line-height: 1.4;
}
}

/* 文字淡入动画 */
.text-fade-enter-active {
  transition: opacity 0.6s ease 0.2s;
  /* 延迟0.2秒开始，持续0.6秒 */
}
.text-fade-leave-active {
  transition: opacity 0.5s ease;
}
.text-fade-enter-from {
  opacity: 0;
}
.text-fade-enter-to {
  opacity: 1;
}
.text-fade-leave-from {
  opacity: 1;
}
.text-fade-leave-to {
  opacity: 0;
}

/* ===== 容器 ===== */
.recommend-container[data-v-633d01ec] {
  z-index: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 20px 60px;
  box-sizing: border-box;
  background: #F5F5F7;
}

/* ===== 标题区域 ===== */
.recommend-header[data-v-633d01ec] {
  text-align: center;
  margin-bottom: 48px;
}
.recommend-title[data-v-633d01ec] {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1f2a3a;
  margin: 0 0 8px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.header-visible .recommend-title[data-v-633d01ec] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.recommend-subtitle[data-v-633d01ec] {
  font-size: 1.25rem;
  color: #000;
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.header-visible .recommend-subtitle[data-v-633d01ec] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

/* ===== 卡片网格 ===== */
.recommend-grid[data-v-633d01ec] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* ===== 卡片通用 ===== */
.recommend-card[data-v-633d01ec] {
  height: 50vh;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 55px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.recommend-card[data-v-633d01ec]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* 卡片背景图 - 懒加载图片铺满卡片 */
.recommend-card[data-v-633d01ec] {
  position: relative;
  overflow: hidden;
}
.recommend-card-bg[data-v-633d01ec] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.card-content[data-v-633d01ec] {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 24px;
}
.card-text[data-v-633d01ec] {
  text-align: center;
}
.card-title[data-v-633d01ec] {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin: 0 0 12px;
  line-height: 1.4;
}
.card-desc[data-v-633d01ec] {
  font-size: 1rem;
  color: #000;
  margin: 0 0 16px;
  line-height: 1.6;
}
.card-link[data-v-633d01ec] {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: gap 0.2s;
}
.card-link[data-v-633d01ec]:hover {
  gap: 8px;
}
.link-arrow[data-v-633d01ec] {
  transition: transform 0.2s;
}
.card-smart-power .card-title[data-v-633d01ec] {
  color: #ffffff;
}
.card-smart-power .card-desc[data-v-633d01ec] {
  color: #cbd5e0;
}
.card-smart-power .card-link[data-v-633d01ec] {
  color: #63b3ed;
}

/* ===== 移动端适配 ===== */
@media (max-width: 768px) {
.recommend-container[data-v-633d01ec] {
    padding: 40px 0 60px;
}
.recommend-header[data-v-633d01ec] {
    margin-bottom: 32px;
}
.recommend-grid[data-v-633d01ec] {
    grid-template-columns: 1fr;
    gap: 10px;
}
.recommend-card[data-v-633d01ec] {
    min-height: 260px;
    padding: 32px 24px;
}
.card-content[data-v-633d01ec] {
    flex-direction: column;
    text-align: center;
}
}
@media (max-width: 480px) {
.recommend-container[data-v-633d01ec] {
    padding: 32px 0 10px;
}
.recommend-card[data-v-633d01ec] {
    padding: 28px 16px;
    min-height: 500px;
}
}

/* ===== 容器 ===== */
.solution-container[data-v-125127c4] {
  z-index: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(
    135deg,
    rgba(36, 38, 40, 0.9),
    rgba(36, 38, 40, 0.9),
    rgba(29, 52, 97, 0.9)
  );
  position: relative;
}

/* ===== 标题区域 - 从下到上淡入 ===== */
.solution-header[data-v-125127c4] {
  text-align: center;
  padding: 50px 20px 30px;
  /* background: #f8fafc; */
  position: relative;
  z-index: 1;
}
.solution-title[data-v-125127c4] {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.solution-subtitle[data-v-125127c4] {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 28px;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* 淡入可见状态 - 依次出现 */
.header-visible .solution-title[data-v-125127c4] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.header-visible .solution-subtitle[data-v-125127c4] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* ===== Tab 区域 ===== */
.solution-tabs[data-v-125127c4] {
  color: #fff;
  padding: 100px 20px 50px;
  position: relative;
}

/* 装饰光效 */
.solution-tabs[data-v-125127c4]::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.15),
    transparent 70%
  );
  pointer-events: none;
}
.solution-tabs[data-v-125127c4]::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent 70%);
  pointer-events: none;
}
.solution-tabs-inner[data-v-125127c4] {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== 移动端：单 tag + 单进度条（默认隐藏） ===== */
.mobile-tag-bar[data-v-125127c4] {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.mobile-tag-text[data-v-125127c4] {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.mobile-progress-bar[data-v-125127c4] {
  width: 100%;
  max-width: 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}
.mobile-progress-fill[data-v-125127c4] {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #fff, #fff);
  border-radius: 2px;
  animation: progressLoad-125127c4 2s linear forwards;
}

/* 标签行 - 每个 tag 占一列，下方跟进度段 */
.tags-row[data-v-125127c4] {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 120px;
}
.tag-wrapper[data-v-125127c4] {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  min-width: 90px;
}
.tag-item[data-v-125127c4] {
  color: #fff;
  transition: color 0.3s ease;
  font-size: 1.25rem;
  user-select: none;
  white-space: nowrap;
}
.tag-item[data-v-125127c4]:hover {
  color: rgba(255, 255, 255, 0.75);
}
.tag-item.active[data-v-125127c4] {
  color: #60a5fa;
}

/* ===== 分段进度条 ===== */
.progress-segment[data-v-125127c4] {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 32px;
}
.progress-segment.active[data-v-125127c4] {
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.progress-fill[data-v-125127c4] {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #fff, #fff);
  border-radius: 2px;
  animation: progressLoad-125127c4 2s linear forwards;
}
@keyframes progressLoad-125127c4 {
from {
    width: 0%;
}
to {
    width: 100%;
}
}

/* ===== 当前标签详情 - 切换时从下到上依次淡入 ===== */
.tab-content[data-v-125127c4] {
  min-height: 260px;
}
.tab-detail[data-v-125127c4] {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.tab-title[data-v-125127c4],
.tab-desc[data-v-125127c4],
.tab-link[data-v-125127c4] {
  opacity: 0;
  transform: translateY(24px);
  animation: tabFadeIn-125127c4 1s ease forwards;
}
.tab-desc[data-v-125127c4] {
  animation-delay: 0.15s;
}
.tab-link[data-v-125127c4] {
  animation-delay: 0.3s;
}
@keyframes tabFadeIn-125127c4 {
to {
    opacity: 1;
    transform: translateY(0);
}
}
.tab-title[data-v-125127c4] {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.tab-desc[data-v-125127c4] {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 1);
  line-height: 1.8;
  margin: 0 0 30px;
}
.tab-link[data-v-125127c4] {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab-link[data-v-125127c4]:hover {
  background: rgba(0, 78, 162, 0.8);
  border-color: transparent;
  color: #fff;
}

/* ===== 1366px分辨率适配 ===== */
@media (max-width: 1366px) {
.solution-tabs-inner[data-v-125127c4] {
    max-width: 1200px;
    padding: 0 20px;
}
.tags-row[data-v-125127c4] {
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.tag-wrapper[data-v-125127c4] {
    min-width: 70px;
}
.tag-item[data-v-125127c4] {
    font-size: 1.1rem;
}
}

/* ===== 响应式适配 ===== */
@media (max-width: 768px) {
.solution-header[data-v-125127c4] {
    padding: 50px 16px 70px;
}
.solution-tabs[data-v-125127c4] {
    padding: 50px 16px 70px;
}
.solution-title[data-v-125127c4] {
    font-size: 1.8rem;
}
.solution-subtitle[data-v-125127c4] {
    font-size: 1.25rem;
}
.tags-row[data-v-125127c4] {
    display: none;
}
.mobile-tag-bar[data-v-125127c4] {
    display: flex;
}
.mobile-tag-text[data-v-125127c4] {
    font-size: 0.85rem;
}
.tab-title[data-v-125127c4] {
    font-size: 1.5rem;
}
.tab-desc[data-v-125127c4] {
    font-size: 0.95rem;
}
.tab-link[data-v-125127c4] {
    padding: 10px 24px;
    font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.solution-header[data-v-125127c4] {
    padding: 20px 12px 15px;
}
.solution-tabs[data-v-125127c4] {
    padding: 40px 12px 60px;
}
.solution-title[data-v-125127c4] {
    font-size: 2.25rem;
}
.mobile-tag-text[data-v-125127c4] {
    font-size: 1.5rem;
}
.tab-title[data-v-125127c4] {
    font-size: 1.6rem;
}
.tab-desc[data-v-125127c4] {
    font-size: 1.25rem;
}
}

.dynamic-container[data-v-d9bc27cd] {
  position: relative;
  z-index: 0;
  min-height: 85vh;
  background: #F5F5F7;
  color: #000;
  padding: 50px;
}
@media (max-width: 1024px) {
.dynamic-container[data-v-d9bc27cd] {
    padding: 8px;
}
.content-wrapper[data-v-d9bc27cd] {
    gap: 10px;
    flex-direction: column;
}
.left-section[data-v-d9bc27cd],
  .right-section[data-v-d9bc27cd] {
    flex: 1 1 100%;
    min-width: 0;
}
.large-card[data-v-d9bc27cd] {
    height: auto;
}
}
@media (max-width: 768px) {
.dynamic-container[data-v-d9bc27cd] {
    font-size: 13px;
    padding: 2px;
}
.page-header h1[data-v-d9bc27cd] {
    font-size: 1.3rem;
}
.large-card[data-v-d9bc27cd] {
    /* border-radius: 8px; */
    /* 允许垂直滚动和水平滑动 */
    touch-action: pan-y;
}
.card-title[data-v-d9bc27cd] {
    font-size: 1.1rem;
}
.card-image[data-v-d9bc27cd] {
    height: 180px;
}
}
@media (max-width: 480px) {
.dynamic-container[data-v-d9bc27cd] {
    font-size: 11px;
    padding: 0 20px 0 20px !important;
}
.page-header h1[data-v-d9bc27cd] {
    font-size: 1rem;
}
.card-title[data-v-d9bc27cd] {
    font-size: 0.9rem;
}
.card-image[data-v-d9bc27cd] {
    height: 100px;
}
}

/* 页面标题样式 */
.page-header[data-v-d9bc27cd] {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-header h1[data-v-d9bc27cd] {
  flex: 0 0 auto;
  /* 不伸缩，高度由内容决定 */
  text-align: center;
  font-size: 2.25rem;
  /* 响应式字体 */
  font-weight: 700;
  color: #000;
  padding: 0 1rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.page-header.header-visible h1[data-v-d9bc27cd] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
.subtitle[data-v-d9bc27cd] {
  flex: 0 0 auto;
  text-align: center;
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 1);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.page-header.header-visible .subtitle[data-v-d9bc27cd] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

/* 内容区域布局 */
.content-wrapper[data-v-d9bc27cd] {
  display: flex;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
}

/* 左侧区域样式 */
.left-section[data-v-d9bc27cd] {
  flex: 0 0 55%;
  transition: all 0.4s ease;
  max-width: 100%;
  position: relative;
  /* background: linear-gradient(180deg, rgb(146, 151, 155), rgb(55, 58, 63)); */
  background: #fff;
}

/* 大卡片触摸/滑动样式 */
.large-card[data-v-d9bc27cd] {
  cursor: grab;
}
.large-card[data-v-d9bc27cd]:active {
  cursor: grabbing;
}

/* 大卡片样式 */
.large-card[data-v-d9bc27cd] {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
}
.large-card.animate[data-v-d9bc27cd] {
  animation: cardExpand-d9bc27cd 0.4s ease-out;
}
@keyframes cardExpand-d9bc27cd {
0% {
    transform: scale(1);
    opacity: 0.8;
}
100% {
    transform: scale(1);
    opacity: 1;
}
}
.card-image[data-v-d9bc27cd] {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.card-image img[data-v-d9bc27cd] {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.5s ease;
}
.large-card:hover .card-image img[data-v-d9bc27cd] {
  transform: scale(1.05);
}
.image-overlay[data-v-d9bc27cd] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.5)
  );
  display: flex;
  align-items: flex-start;
  padding: 20px;
}
.tag[data-v-d9bc27cd] {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}
.card-content[data-v-d9bc27cd] {
  flex: 1 0 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: calc(25px * 1.2);
  background: transparent;
}
.card-date[data-v-d9bc27cd] {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.card-title[data-v-d9bc27cd] {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #000;
}
.card-body[data-v-d9bc27cd] {
  flex: 1 0 0;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-desc[data-v-d9bc27cd] {
  color: #000;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1.25rem;
}
.card-actions[data-v-d9bc27cd] {
  flex-shrink: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}
.card-footer[data-v-d9bc27cd] {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.1rem;
}
.source[data-v-d9bc27cd] {
  color: rgba(0, 0, 0, 0.6);
  margin-right: 12px;
}
.domain[data-v-d9bc27cd] {
  margin-right: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.comments[data-v-d9bc27cd] {
  margin-left: auto;
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.6);
}
.comments[data-v-d9bc27cd]::before {
  content: "💬";
  margin-right: 4px;
}
.detail-btn[data-v-d9bc27cd] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ff6b35, #ff8e53);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 7px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
}
.detail-btn[data-v-d9bc27cd]:hover {
  background: linear-gradient(90deg, #ff8e53, #ff6b35);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* 右侧区域样式 */
.right-section[data-v-d9bc27cd] {
  padding: 10px;
  flex: 0 0 45%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.cards-header[data-v-d9bc27cd] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.cards-header h3[data-v-d9bc27cd] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}
.more-btn[data-v-d9bc27cd] {
  background: transparent;
  padding: 8px 25px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 1);
  color: rgba(0, 0, 0, 1);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.more-btn[data-v-d9bc27cd]:hover {
  background-color: rgba(0, 78, 162, 0.8);
  color: #fff;
  border-color: transparent;
}

/* 小卡片列表样式 */
.cards-list[data-v-d9bc27cd] {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.small-card[data-v-d9bc27cd] {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  height: 156px !important;
  max-height: 156px !important;
  min-height: 0;
  min-width: 0;
  max-width: 100%;
  width: 100% !important;
  box-sizing: border-box;
  flex-shrink: 0;
  flex-grow: 0;
}
.small-card[data-v-d9bc27cd] > * {
  min-height: 0;
  min-width: 0;
  overflow: hidden;
}
.small-card.hovered[data-v-d9bc27cd] {
  transform: translateX(-4px);
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.small-card[data-v-d9bc27cd]:hover {
  /* background: rgba(255, 255, 255, 0.08); */
  border-color: rgba(255, 255, 255, 0.1);
}
.small-card-image[data-v-d9bc27cd] {
  flex: 0 0 120px;
  max-width: 120px;
  min-width: 0;
  overflow: hidden;
}
.small-card-image img[data-v-d9bc27cd] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.small-card:hover .small-card-image img[data-v-d9bc27cd] {
  transform: scale(1.1);
}
.small-card-content[data-v-d9bc27cd] {
  flex: 0 1 auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.small-card-date[data-v-d9bc27cd] {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.small-card-title[data-v-d9bc27cd] {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.small-card-desc[data-v-d9bc27cd] {
  color: rgba(0, 0, 0, 1);
  font-size: 0.9rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 响应式设计 */
@media (max-width: 1440px) {
.content-wrapper[data-v-d9bc27cd] {
    max-width: 1200px;
}
}
@media (max-width: 1024px) {
.content-wrapper[data-v-d9bc27cd] {
    flex-direction: column;
    gap: 20px;
}
.left-section[data-v-d9bc27cd],
  .right-section[data-v-d9bc27cd] {
    flex: 1;
    width: 100%;
}
.left-section[data-v-d9bc27cd] {
    flex: 0 0 auto;
}
.right-section[data-v-d9bc27cd] {
    flex: 0 0 auto;
}
.small-card[data-v-d9bc27cd] {
    height: 156px;
}
}
@media (max-width: 768px) {
.dynamic-container[data-v-d9bc27cd] {
    padding: 14px;
}
.page-header h1[data-v-d9bc27cd] {
    font-size: 1.75rem;
}
.card-image[data-v-d9bc27cd] {
    height: 220px;
}
.card-title[data-v-d9bc27cd] {
    font-size: 1.55rem;
}

  /* 隐藏右侧卡片列表区域 */
.right-section[data-v-d9bc27cd] {
    display: none;
}

  /* 左侧区域占满宽度 */
.left-section[data-v-d9bc27cd] {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: 520px !important;
    overflow: hidden;
}
.small-card[data-v-d9bc27cd] {
    flex-direction: column;
    height: 180px !important;
    max-height: 180px !important;
}
.small-card-image[data-v-d9bc27cd] {
    flex: 0 0 120px !important;
    max-height: 110px;
    overflow: hidden;
}
}
@media (max-width: 480px) {
.dynamic-container[data-v-d9bc27cd] {
    font-size: 12px;
    padding: 4px;
    padding-bottom: 40px !important;
}
.page-header[data-v-d9bc27cd] {
    margin-top: 20px;
}
.page-header h1[data-v-d9bc27cd] {
    font-size: 2.25rem;
    font-weight: 700;
}
.card-title[data-v-d9bc27cd] {
    font-size: 1.25rem;
}
.card-image[data-v-d9bc27cd] {
    height: 150px;
}
.detail-btn[data-v-d9bc27cd] {
    font-size: 0.95rem;
    padding: 9px 18px;
}
}

.case-container[data-v-2713ec5e] {
  z-index: 0;
  width: 100%;
  min-height: 600px;
  background: linear-gradient(135deg, rgba(36, 38, 40, 0.9), rgba(36, 38, 40, 0.9), rgba(29, 52, 97, 0.9));
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.case-header[data-v-2713ec5e] {
  text-align: center;
  margin-bottom: 150px;
}
.case-header h1[data-v-2713ec5e] {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  font-family: SourceHanSansCN-Medium, SourceHanSansCN;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.case-header .subtitle[data-v-2713ec5e] {
  font-size: 1.25rem;
  color: rgb(255, 255, 255);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.case-header.header-visible h1[data-v-2713ec5e] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
.case-header.header-visible .subtitle[data-v-2713ec5e] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.case-content[data-v-2713ec5e] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  /* 增加间距防止按钮与卡片重叠 */
  width: 100%;
  max-width: 1500px;
}
.nav-btn[data-v-2713ec5e] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #aaa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  /* 确保 z-index 生效 */
  z-index: 100;
  /* 提高 z-index 确保按钮在最上层 */
}
.nav-btn svg[data-v-2713ec5e] {
  width: 24px;
  height: 24px;
}
.nav-btn[data-v-2713ec5e]:hover {
  background: rgba(0, 78, 162, 0.8);
  border-color: transparent;
  color: #fff;
}
.cases-wrapper[data-v-2713ec5e] {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
  perspective: 1000px;
  height: 500px;
  /* 固定容器高度防止跳动 */
  min-height: 500px;
}
.case-card[data-v-2713ec5e] {
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  flex: 0 0 30%;
  max-width: 400px;
  min-width: 0;
  height: 100%;
  /* 填充父容器高度 */
  display: flex;
  flex-direction: column;
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.case-card .case-image[data-v-2713ec5e] {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}
.case-card .case-image img[data-v-2713ec5e] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-card .case-info[data-v-2713ec5e] {
  padding: 20px;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.case-card .case-title[data-v-2713ec5e] {
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}
.case-card .case-desc[data-v-2713ec5e] {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
}
.case-card .detail-btn[data-v-2713ec5e] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  width: fit-content;
  margin-top: 10px;
  opacity: 0;
}
.case-card .detail-btn .arrow[data-v-2713ec5e] {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.case-card .detail-btn[data-v-2713ec5e]:hover {
  background-color: rgba(0, 78, 162, 0.8);
  color: #fff;
  border-color: transparent;
}
.case-card .detail-btn:hover .arrow[data-v-2713ec5e] {
  transform: translateX(4px);
}
.case-card.active[data-v-2713ec5e] {
  transform: translateX(0) scale(1.3);
  /* 保持在中心位置并略微放大 */
  opacity: 1;
  z-index: 5;
  /* 提高层级确保覆盖小卡片 */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  /* 增加阴影增强悬浮感 */
}
.case-card.active .case-image[data-v-2713ec5e] {
  height: 200px;
  /* 保持与基础状态相同的高度 */
}
.case-card.active .case-info[data-v-2713ec5e] {
  padding: 40px;
}
.case-card.active .case-title[data-v-2713ec5e] {
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 0;
}
.case-card.active .case-desc[data-v-2713ec5e] {
  font-size: 1rem;
  max-height: 300px;
  opacity: 1;
  letter-spacing: 1px;
}
.case-card.active .detail-btn[data-v-2713ec5e] {
  opacity: 1;
}
.case-card.left[data-v-2713ec5e] {
  transform: translateX(15%);
  opacity: 0.6;
  z-index: 1;
  height: 70%;
  align-self: center;
}
.case-card.left .case-image[data-v-2713ec5e] {
  height: 120px;
}
.case-card.left .case-title[data-v-2713ec5e] {
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 0;
  padding: 15px;
  overflow: hidden;
}
.case-card.left .case-desc[data-v-2713ec5e] {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  margin: 15px 12px 0;
  padding: 0;
  max-height: none;
  opacity: 1;
}
.case-card.left .detail-btn[data-v-2713ec5e] {
  display: none;
}
.case-card.right[data-v-2713ec5e] {
  transform: translateX(-15%);
  opacity: 0.6;
  z-index: 1;
  height: 70%;
  align-self: center;
}
.case-card.right .case-image[data-v-2713ec5e] {
  height: 120px;
}
.case-card.right .case-title[data-v-2713ec5e] {
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 0;
  padding: 15px;
  overflow: hidden;
}
.case-card.right .case-desc[data-v-2713ec5e] {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  margin: 15px 12px 0;
  padding: 0;
  max-height: none;
  opacity: 1;
}
.case-card.right .detail-btn[data-v-2713ec5e] {
  display: none;
}
.case-card[data-v-2713ec5e]:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.case-footer[data-v-2713ec5e] {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
}
.more-case-btn[data-v-2713ec5e] {
  display: inline-block;
  padding: clamp(0.5rem, 1.5vh, 0.75rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}
.more-case-btn[data-v-2713ec5e]:hover {
  background-color: rgba(0, 78, 162, 0.8);
  color: #fff;
  border-color: transparent;
}
@media (max-width: 1200px) {
.case-content[data-v-2713ec5e] {
    max-width: 100%;
}
.case-card[data-v-2713ec5e] {
    flex: 0 0 28%;
    max-width: 350px;
}
.case-card.active[data-v-2713ec5e] {
    transform: translateX(0) scale(1.3);
    z-index: 5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.case-card.left[data-v-2713ec5e] {
    transform: scale(0.9) translateX(30%);
    height: 70%;
    align-self: center;
}
.case-card.right[data-v-2713ec5e] {
    transform: scale(0.9) translateX(-30%);
    height: 70%;
    align-self: center;
}
}
@media (max-width: 1024px) {
.cases-wrapper[data-v-2713ec5e] {
    gap: 15px;
}
.case-card[data-v-2713ec5e] {
    flex: 0 0 25%;
    max-width: 300px;
}
.case-card.active[data-v-2713ec5e] {
    transform: translateX(0) scale(1.3);
    z-index: 5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.case-card.active .case-image[data-v-2713ec5e] {
    height: 200px;
    /* 保持固定高度 */
}
.case-card.left[data-v-2713ec5e] {
    transform: scale(0.85) translateX(30%);
    height: 70%;
    align-self: center;
}
.case-card.left .case-image[data-v-2713ec5e] {
    height: 100px;
}
.case-card.left .case-title[data-v-2713ec5e] {
    font-size: 12px;
    padding: 8px 10px;
}
.case-card.right[data-v-2713ec5e] {
    transform: scale(0.85) translateX(-30%);
    height: 70%;
    align-self: center;
}
.case-card.right .case-image[data-v-2713ec5e] {
    height: 100px;
}
.case-card.right .case-title[data-v-2713ec5e] {
    font-size: 12px;
    padding: 8px 10px;
}
.nav-btn[data-v-2713ec5e] {
    width: 40px;
    height: 40px;
}
.nav-btn svg[data-v-2713ec5e] {
    width: 20px;
    height: 20px;
}
}
@media (max-width: 768px) {
.case-header[data-v-2713ec5e] {
    margin-top: 30px;
    margin-bottom: 30px;
}
.case-header h1[data-v-2713ec5e] {
    font-size: 2.25rem;
    font-weight: 700;
}
.case-header .subtitle[data-v-2713ec5e] {
    font-size: 1.25rem;
}
.case-content[data-v-2713ec5e] {
    padding: 0 15px;
    gap: 10px;
}
.cases-wrapper[data-v-2713ec5e] {
    gap: 10px;
    justify-content: center;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 10px;
    height: auto;
    min-height: 450px;
    touch-action: pan-y;
}
.nav-btn[data-v-2713ec5e] {
    display: none;
}
.case-card[data-v-2713ec5e] {
    flex: 0 0 95%;
    max-width: 95%;
    height: 480px;
    transform: none !important;
    opacity: 1 !important;
}
.case-card.active[data-v-2713ec5e] {
    flex: 0 0 95%;
    max-width: 95%;
}
.case-card.active .case-image[data-v-2713ec5e] {
    height: 200px;
    /* 保持固定高度 */
}
.case-card.active .case-info[data-v-2713ec5e] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.case-card.active .case-title[data-v-2713ec5e] {
    font-size: 18px;
    padding: 0;
}
.case-card.active .case-desc[data-v-2713ec5e] {
    max-height: 150px;
}
.case-card.active .detail-btn[data-v-2713ec5e] {
    opacity: 1;
    margin-top: 15px;
}
.case-card.left[data-v-2713ec5e], .case-card.right[data-v-2713ec5e] {
    display: none;
}
.case-footer[data-v-2713ec5e] {
    margin-top: 20px;
    margin-bottom: 30px;
}
}
@media (max-width: 480px) {
.case-container[data-v-2713ec5e] {
    padding: 0 0px 0 0px !important;
}
}
/* 2. 让组件高度基于视口，实现全屏自适应（可根据需要改为 height: 100% 并确保父容器有高度） */
.client-wall[data-v-bb50bd15] {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(70vh, 85vh, 950px);
  /* 使用视口高度，全屏展示 */
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 2vh, 1.5rem) 0;
  background: #f8fafc;

  overflow: hidden;
  /* 防止内容溢出 */
}
@media (max-width: 1024px) {
.client-wall[data-v-bb50bd15] {
    padding: 0.5rem 0;
    height: 60vh;
}
.row-container[data-v-bb50bd15] {
    width: 98%;
    max-width: 900px;
}
}
@media (max-width: 768px) {
.client-wall[data-v-bb50bd15] {
    padding: 0.5rem 0;
    height: 80vh;
}
.row-container[data-v-bb50bd15] {
    width: 100%;
    max-width: none;
    height: auto;
    mask: linear-gradient(
      90deg,
      transparent 0%,
      #000 3%,
      #000 97%,
      transparent 100%
    );
    -webkit-mask: linear-gradient(
      90deg,
      transparent 0%,
      #000 3%,
      #000 97%,
      transparent 100%
    );
}
.scroll-track[data-v-bb50bd15] {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(8px, 2vw, 12px);
    align-items: stretch;
}
.client-card[data-v-bb50bd15] {
    flex: 0 0 auto;
    width: auto;
    max-width: 48%;
    height: auto;
}
}
.wall-header[data-v-bb50bd15] {
  width: 100%;
  height: 15%;
  flex: 0 0 auto;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #000;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  margin-bottom: clamp(0.5rem, 2vh, 1rem);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.wall-header.header-visible[data-v-bb50bd15] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}
.wall-body[data-v-bb50bd15] {
  width: 100%;
  height: 50%;
  flex: 1 1 auto;
  /* 占据剩余空间，让三行平均分配高度 */
  display: flex;
  flex-direction: column;
  gap: clamp(1vh, 3vh, 2vh);
  /* 行间距使用视口高度相对单位 */
  min-height: 0;
  /* flex 子项溢出控制 */
  width: 100%;
  align-items: center;
  justify-content: center;
}
.row-container[data-v-bb50bd15] {
  width: clamp(85%, 90%, 90%);
  height: 30%;
  /* 在超大屏上可调整，默认使用 90% 宽度 */
  /* max-width: 1600px; */
  /* 限制最大宽度，避免过宽 */
  /* flex: 1 1 0; */
  /* 三行等分剩余高度 */
  min-height: 0;
  /* 允许内容压缩 */
  overflow: hidden;
  mask: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  background: transparent;
}

/* 滚动轨道：宽度由内容撑开，但作为块级元素默认 100% 父容器宽度，子项基于此计算 */
.scroll-track[data-v-bb50bd15] {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(1vw, 2.5vw, 3vw);
  /* 间隙使用视口宽度相对单位，保持比例 */
  width: fit-content;
  /* 关键：宽度由内容决定，实现横向滚动 */
  animation-name: scrollLeft-bb50bd15;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
  height: 100%;
  /* 撑满父容器高度 */
  align-items: center;
}
@keyframes scrollLeft-bb50bd15 {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-50%);
    /* 移动一半总宽度（因为复制了一份） */
}
}

/* 卡片宽度：使用固定百分比相对于 .scroll-track（即父容器宽度），实现自适应 */
.client-card[data-v-bb50bd15] {
  flex: 0 0 14%;
  /* 每个卡片占父容器宽度的 14%，确保一行显示 7 个左右（加上gap） */
  height: 65%;
  /* 高度相对父容器，留出上下边距 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.1);
}
.client-img[data-v-bb50bd15] {
  width: 90%;
  height: 80%;
  object-fit: contain;
  /* 保证图片完整显示，不变形 */
  display: block;
  pointer-events: none;
}
.client-card[data-v-bb50bd15]:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
  /* 保证放大后不被遮挡 */
}
.wall-footer[data-v-bb50bd15] {
  width: 100%;
  height: 15%;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(0.5rem, 2vh, 1rem);
}
.more-case-btn[data-v-bb50bd15] {
  display: inline-block;
  padding: clamp(0.5rem, 1.5vh, 0.75rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  color: #333;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  /* 防止按钮文字换行 */
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  cursor: pointer;
}
.more-case-btn[data-v-bb50bd15]:hover {
  background-color: rgba(0, 78, 162, 0.8);
  color: #fff;
  border-color: transparent;
}

/* 小屏适配：调整遮罩范围和卡片大小 */
@media (max-width: 768px) {
.wall-header[data-v-bb50bd15] {
    font-size: 1.5rem;
}
.row-container[data-v-bb50bd15] {
    height: auto;
    width: 100%;
    mask: linear-gradient(
      90deg,
      transparent 0%,
      #000 3%,
      #000 97%,
      transparent 100%
    );
    -webkit-mask: linear-gradient(
      90deg,
      transparent 0%,
      #000 3%,
      #000 97%,
      transparent 100%
    );
}
.client-card[data-v-bb50bd15] {
    flex: 0 0 auto;
    width: auto;
    max-width: 48%;
    height: auto;
}
.scroll-track[data-v-bb50bd15] {
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(8px, 2vw, 12px);
    align-items: stretch;
}
}

/* 超大屏幕可适当增加卡片宽度，避免太空 */
@media (min-width: 1920px) {
.client-card[data-v-bb50bd15] {
    flex: 0 0 12%;
    /* 宽屏上显示更多卡片，宽度略小 */
}
.row-container[data-v-bb50bd15] {
    width: 85%;
}
}

/* 主容器样式与响应式优化 */
.index-main[data-v-85c2bea1] {
  max-width: 100vw;
  width: 100vw;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 桌面端确保滚动正常 */
@media (min-width: 769px) {
.index-main[data-v-85c2bea1] {
    overflow: visible;
}
}
@media (max-width: 768px) {
.index-main[data-v-85c2bea1] {
    overflow: visible;
}
}

/* ===== 浮动按钮 ===== */

/* 置顶按钮 */
.back-to-top[data-v-85c2bea1] {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
}
.back-to-top.visible[data-v-85c2bea1] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 通用圆形按钮 */
.float-btn[data-v-85c2bea1],
.back-to-top[data-v-85c2bea1] {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 78, 162, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  outline: none;
}
.float-btn[data-v-85c2bea1]:hover,
.back-to-top[data-v-85c2bea1]:hover {
  background: rgba(0, 78, 162, 1);
  box-shadow: 0 6px 20px rgba(0, 78, 162, 0.4);
}
.back-to-top[data-v-85c2bea1]:hover {
  transform: translateY(-3px);
}
.float-btn svg[data-v-85c2bea1],
.back-to-top svg[data-v-85c2bea1] {
  width: 22px;
  height: 22px;
}

/* 获取方案按钮 - 固定位置常显 */
.consult-btn-wrapper[data-v-85c2bea1] {
  position: fixed;
  bottom: 108px;
  right: 40px;
  z-index: 1000;
}
.consult-btn[data-v-85c2bea1] {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consult-btn[data-v-85c2bea1]:hover {
  transform: translateY(-3px);
}
.btn-tooltip[data-v-85c2bea1] {
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btn-tooltip[data-v-85c2bea1]::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}
.consult-btn-wrapper:hover .btn-tooltip[data-v-85c2bea1] {
  opacity: 1;
  visibility: visible;
}
.tooltip-title[data-v-85c2bea1] {
  font-size: 1rem;
  font-weight: 600;
  color: #0052cc;
}
.tooltip-sub[data-v-85c2bea1] {
  font-size: 0.8rem;
  color: #888;
  margin-top: 4px;
}
@media (max-width: 768px) {
.consult-btn-wrapper[data-v-85c2bea1] {
    bottom: 84px;
    right: 24px;
}
.back-to-top[data-v-85c2bea1] {
    bottom: 24px;
    right: 24px;
}
.float-btn[data-v-85c2bea1],
  .back-to-top[data-v-85c2bea1] {
    width: 42px;
    height: 42px;
}
.float-btn svg[data-v-85c2bea1],
  .back-to-top svg[data-v-85c2bea1] {
    width: 18px;
    height: 18px;
}
.btn-tooltip[data-v-85c2bea1] {
    display: none;
}
}
