html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #FFFFFF;
}
.container-custom {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1536px) {
  .container-custom { max-width: 1400px; }
}
/* 导航栏优化：更现代的半透明毛玻璃效果，保持白色风格 */
.nav-fixed {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 30px -12px rgba(0, 0, 0, 0.12), 0 4px 12px -6px rgba(0, 0, 0, 0.05);
}
/* 导航链接样式 + 蓝色选中态 */
.nav-link {
  transition: all 0.2s;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  color: #4b5563;
}
.nav-link:hover {
  color: #007bff;
}
.nav-link-active {
  color: #007bff !important;
  border-bottom-color: #007bff !important;
}
/* 主色 #007bff 统一 */
.btn-primary {
  background-color: #007bff;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -6px rgba(0, 123, 255, 0.3);
}
.btn-outline-primary {
  border: 1.5px solid #007bff;
  color: #007bff;
  background: transparent;
  transition: all 0.2s;
}
.btn-outline-primary:hover {
  background-color: #007bff10;
  border-color: #007bff;
  transform: translateY(-1px);
}
.text-primary {
  color: #007bff;
}
.border-primary {
  border-color: #007bff;
}
.bg-primary-light {
  background-color: #e8f0fe;
}
/* 时间轴圆点升级 */
.timeline-dot {
  background-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
}
/* 帮助中心FAQ卡片优化 */
.faq-card {
  transition: all 0.2s;
}
/* 图标尺寸调整 (更大更现代) */
.icon-lg {
  font-size: 2.4rem;
}
.icon-md {
  font-size: 1.8rem;
}
.contact-icon {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .container-custom { padding-left: 1rem; padding-right: 1rem; }
  .icon-lg { font-size: 2rem; }
}
.logo {
  max-width: 140px;
  display: flex;
  max-height: 52px;
  overflow: hidden;
  transition: transform 0.2s;
}
.logo:hover {
  transform: scale(1.02);
}
/* 滚动偏移补偿 */
.scroll-offset {
  scroll-margin-top: 90px;
}
section {
  scroll-margin-top: 90px;
}

/* 价格卡片区域增强样式，保留原有布局并优化视觉 */
.col1-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 50px;
}
.col1-content .item {
  width: 280px;
  background: #fff;
  border-radius: 32px;
  transition: all 0.35s cubic-bezier(0.2, 0, 0, 1);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.08);
  overflow: hidden;
}
.col1-content .item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 40px -16px rgba(0, 0, 0, 0.2);
  border-color: rgba(0,123,255,0.2);
}
.col1-content .item.item-0 .item-title,
.col1-content .item.item-0 .item-desc { color: #1e2f4e; }
.col1-content .item.item-0 .item-pay-btn { background: #eef3fc; color: #007bff; border: 1px solid #cce4ff; }
.col1-content .item.item-0 .item-pay-btn:hover { background: #007bff; color: #fff; }
.col1-content .item.item-1 .item-title,
.col1-content .item.item-1 .item-desc { color: #fff; }
.col1-content .item.item-1 .item-pay-btn { background: linear-gradient(135deg, #1D5FF5 0%, #30B6FB 100%); color: #fff; border: none; }
.col1-content .item.item-2 .item-title,
.col1-content .item.item-2 .item-desc { color: #4C2D0D; }
.col1-content .item.item-2 .item-pay-btn { background: linear-gradient(135deg, #FFB25B 0%, #FFE1A8 100%); color: #4C2D0D; border: none; }
.col1-content .item.item-2 .item-tips { background: linear-gradient(90deg, #FFF3E7 0%, #FFFFFF 100%); color: #b45f1b; }
.col1-content .item.item-3 .item-title,
.col1-content .item.item-3 .item-desc { color: #f0f0f0; }
.col1-content .item.item-3 .item-pay-btn { background: linear-gradient(135deg, #2c2c24 0%, #5e5a4a 100%); color: #fff; border: none; }
.col1-content .item .item-title-box {
  padding: 20px 0 5px 24px;
  margin-bottom: 20px;
}
.col1-content .item .item-title {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.col1-content .item .item-price {
  display: block;
  width: calc(100% - 32px);
  margin: 16px auto 24px;
  max-height: 60px;
  object-fit: contain;
}
.col1-content .item .item-pay-btn {
  display: block;
  width: calc(100% - 48px);
  margin: 0 auto 28px;
  border-radius: 60px;
  text-align: center;
  line-height: 46px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.col1-content .item .item-tips {
  width: 272px;
  height: 25px;
  padding-left: 12px;
  margin: 0 auto 20px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #E0F0FF 0%, #FFFFFF 100%);
  border-radius: 4px;
  color: #1E57C2;
  line-height: 25px;
  font-size: 12px;
  font-weight: 500;
}
.col1-content .item .item-functions {
  padding: 0 24px 18px 24px;
}
.col1-content .item .item-functions-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}
.col1-content .item .item-functions-title img {
  width: 14px;
  height: 14px;
}
.col1-content .item .item-functions-list {
  padding-left: 26px;
  font-size: 13px;
  color: #5a6874;
  line-height: 1.45;
}
/* 底部链接交互 */
footer a, footer li {
  transition: color 0.2s, transform 0.1s;
  cursor: pointer;
}
footer li:hover {
  color: #007bff;
  transform: translateX(2px);
}
/* 按钮涟漪效果 */
button:active {
  transform: scale(0.97);
}
/* 卡片图片占位优化 */
.case-img {
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #9ca3af;
}

/* 模态框动画及遮罩样式 */
.modal-mask {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}
.modal-container {
  max-width: 480px !important;
  width: 90%;
  background: #ffffff !important;
  border-radius: 32px;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
  animation: modalFadeIn 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  overflow: hidden;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(-12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem 0.5rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.modal-close {
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
  color: #9ca3af;
}
.modal-close:hover {
  color: #007bff;
  transform: scale(1.1);
}
.form-field {
  margin-bottom: 1.25rem;
}
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-size: 0.9rem;
}
.form-field input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 1.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  outline: none;
}
.form-field input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.2);
}
.submit-btn {
  background: #007bff;
  width: 100%;
  padding: 0.9rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}
.submit-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* 弹窗动画 & 遮罩样式 */
.modal-fade {
  animation: modalFade 0.3s ease;
}
@keyframes modalFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* 遮罩层 */
.mask-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 弹窗容器 */
.consult-modal {
  width: 90%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 30px 24px;
  position: relative;
}
/* 关闭按钮 加大点击区域，更容易点中 */
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 20px;
  color: #6E7681;
  cursor: pointer;
  transition: color 0.2s;
  /* 扩大点击热区 */
  padding: 8px;
}
.close-btn:hover {
  color: #165DFF;
}
.fwys{
  width: 100%;
}

.col1-content .item .item-tips{

  background: #E0F0FF !important;

}

.item-functions-title p{

  font-size: 13px !important;

  color: #6b7280!important;

}

@layer utilities {

  .card-shadow {

    box-shadow: 0 2px 12px rgba(0, 123, 255, 0.08);

  }

  .icon-bg {

    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08) 0%, rgba(0, 123, 255, 0.02) 100%);

  }

  .tab-card-shadow {

    box-shadow: 0 4px 24px rgba(0, 123, 255, 0.06);

  }

  .tab-indicator {

    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  }

  .tab-hover-bg {

    transition: background-color 0.2s ease, color 0.2s ease;

  }

}

/* 头部话术 */

.section-header {

  text-align: center;

  margin-bottom: 4rem;

}



.section-header .eyebrow {

  font-size: 0.8rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: #007bff;

  font-weight: 600;

  background: rgba(0, 123, 255, 0.1);

  display: inline-block;

  padding: 0.25rem 1rem;

  border-radius: 40px;

  margin-bottom: 1rem;

}



.section-header h2 {

  font-size: clamp(2.2rem, 5vw, 3.5rem);

  font-weight: 800;

  letter-spacing: -0.02em;

  background: linear-gradient(135deg, #0f2b4d, #007bff);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  margin-bottom: 1rem;

}



.section-header p {

  max-width: 660px;

  margin: 0 auto;

  font-size: 1.1rem;

  color: #334155;

  line-height: 2;

}



.section-header p strong {

  color: #007bff;

  font-weight: 600;

}



/* 垂直时间轴 */

.timeline-vertical {

  position: relative;

  margin: 0 auto;

  margin-top: 2rem;

  width: 50%;

}



.timeline-vertical::before {

  content: '';

  position: absolute;

  left: 180px;

  top: 0;

  bottom: 0;

  width: 1px;

  background: linear-gradient(180deg, #cbd5e1, #94a3b8, #cbd5e1);

  opacity: 0.6;

  border-radius: 2px;

}



.timeline-item {

  display: flex;

  margin-bottom: 3.5rem;

  position: relative;

}



.timeline-year {

  flex: 0 0 160px;

  text-align: right;

  padding-right: 2rem;

  font-weight: 800;

  font-size: 2.6rem;

  line-height: 1.2;

  background: linear-gradient(115deg, #0056b3, #007bff);

  background-clip: text;

  -webkit-background-clip: text;

  color: transparent;

  letter-spacing: -0.02em;

  position: relative;

  z-index: 2;

}



.timeline-content {

  flex: 1;

  margin-left: 48px;

  position: relative;

}



.timeline-dot {

  position: absolute;

  left: -33px;

  top: 24px;

  width: 10px;

  height: 10px;

  background: white;

  border: 2px solid #007bff;

  border-radius: 50%;

  transition: all 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);

  z-index: 3;

}



.timeline-item:hover .timeline-dot {

  transform: scale(1.35);

  background: #007bff;

  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);

}



/* 卡片样式 - 重新排版 */

.milestone-card {

  background: white;

  border-radius: 1.25rem;

  padding: 1.6rem 2rem;

  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.05);

  border: 1px solid #eef2ff;

  transition: all 0.25s ease;

}



.timeline-item:hover .milestone-card {

  transform: translateY(-2px);

  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);

  border-color: #b8d9ff;

}



.milestone-title {

  font-size: 1.4rem;

  font-weight: 700;

  margin-bottom: 0.75rem;

  color: #0f172a;

}



/* 描述区域更宽松 */

.milestone-desc {

  font-size: 0.95rem;

  line-height: 1.6;

  color: #475569;

  margin-bottom: 0;

}



/* 可选装饰线（增加层次） */

.milestone-desc + .milestone-tag {

  margin-top: 1rem;

}



/* 标签通用样式 */

.milestone-tag {

  display: inline-block;

  background: #f1f5f9;

  padding: 0.2rem 0.9rem;

  border-radius: 30px;

  font-size: 0.75rem;

  font-weight: 500;

  color: #334155;

  border: 0.5px solid #e2e8f0;

  margin-top: 1rem;

}



/* 2025 高亮卡片：去掉标签，并调整内部排版 */

.timeline-item:last-child .milestone-card {

  border-top: 2.5px solid #f59e0b;

  background: linear-gradient(145deg, #ffffff, #fffbeb);

}

.timeline-item:last-child .timeline-year {

  background: linear-gradient(115deg, #b45309, #f59e0b);

  background-clip: text;

  -webkit-background-clip: text;

}

/* 关键：隐藏最后一个条目的标签 */

.timeline-item:last-child .milestone-tag {

  display: none;

}



/* 响应式 */

@media (max-width: 768px) {

  .timeline-container {

    padding: 3rem 1.5rem;

  }

  .timeline-vertical::before {

    left: 24px;

  }

  .timeline-item {

    flex-direction: column;

    margin-bottom: 2.8rem;

  }

  .timeline-year {

    flex: auto;

    text-align: left;

    padding-right: 0;

    padding-left: 44px;

    margin-bottom: 0.3rem;

    font-size: 2rem;

  }

  .timeline-content {

    margin-left: 0;

    padding-left: 44px;

  }

  .timeline-dot {

    left: 18px;

    top: 2.2rem;

  }

  .milestone-card {

    padding: 1.2rem 1.5rem;

  }

  .milestone-title {

    font-size: 1.25rem;

  }

}

/* 公用容器 */

.container-custom {

  max-width: 1280px;

  margin: 0 auto;

  padding-left: 1.5rem;

  padding-right: 1.5rem;

}



/* 滚动偏移辅助类（保留原样） */

.scroll-offset {

  scroll-margin-top: 2rem;

}



/* 卡片悬停特效 */

.card-hover {

  transition: all 0.3s ease;

  box-shadow: 0 8px 20px rgba(0,0,0,0.02), 0 2px 6px rgba(0,0,0,0.05);

}

.card-hover:hover {

  transform: translateY(-6px);

  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);

  border-color: rgba(59, 130, 246, 0.2);

}



/* 核心卡片背景渐变（保持原设计） */

.core-card-bg-1 {

  background: linear-gradient(136deg, #d3e9ff 0%, #f7f9ff 100%);

}

.core-card-bg-2 {

  background: linear-gradient(136deg, #cbeeff 0%, #fcfbff 100%);

}

.core-card-bg-3 {

  background: linear-gradient(136deg, #e0e9ff 0%, #f7f9ff 100%);

}



/* 功能列表样式 */

.feature-list li {

  display: flex;

  align-items: center;

  gap: 0.5rem;

  font-size: 0.95rem;

  line-height: 1.4;

}

.feature-list li i {

  width: 1.25rem;

  color: #2c7be5;

  font-size: 0.9rem;

}



/* 图标白色圆底容器 */

.icon-wrapper {

  background-color: #ffffff;

  border-radius: 1rem;

  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.05);

  transition: transform 0.2s;

}

.card-hover:hover .icon-wrapper {

  transform: scale(1.02);

}



/* 企业信任条 (新增区域样式) */

.trust-banner {

  background: #ffffff;

  position: relative;

}

.trust-content {

  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: center;

  gap: 0.75rem 1.25rem;

}

.trust-text {

  font-size: 1rem;

  font-weight: 500;

  color: #1e293b;

  letter-spacing: -0.01em;

}

@media (min-width: 640px) {

  .trust-text {

    font-size: 1.125rem;

  }

}

.trust-highlight {

  color: #1e6df2;

  font-weight: 700;

  background: linear-gradient(120deg, rgba(30,109,242,0.08) 0%, rgba(30,109,242,0.02) 100%);

  padding: 0.1rem 0.3rem;

  border-radius: 8px;

  display: inline-block;

}

.badge-icon {

  background: #eff6ff;

  width: 32px;

  height: 32px;

  border-radius: 60px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  color: #1e6df2;

}

@media (min-width: 768px) {

  .badge-icon {

    width: 38px;

    height: 38px;

  }

}



/* 响应式调整 */

@media (max-width: 768px) {

  .feature-list li {

    font-size: 0.88rem;

  }

  .trust-text {

    font-size: 0.95rem;

    text-align: center;

  }

}



/* 模块基础样式 */

#multi-terminal {

  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);

}

/* 圆点装饰 */

#multi-terminal .absolute div {

  box-shadow: 0 0 8px rgba(59, 130, 246, 0.3);

}

/* 设备样机层级 */

.lg\:col-span-8 {

  perspective: 1200px;

}

/* 鼠标悬浮轻微浮动动画 */

@keyframes floatUp {

  0% { transform: translateY(0px); }

  50% { transform: translateY(-8px); }

  100% { transform: translateY(0px); }

}

#multi-terminal .lg\:col-span-8 > div {

  animation: floatUp 6s ease-in-out infinite;

}

#multi-terminal .lg\:col-span-8 > div:nth-child(2) {

  animation-delay: 0.8s;

}

#multi-terminal .lg\:col-span-8 > div:nth-child(3) {

  animation-delay: 1.6s;

}

#multi-terminal .lg\:col-span-8 > div:nth-child(4),

#multi-terminal .lg\:col-span-8 > div:nth-child(5),

#multi-terminal .lg\:col-span-8 > div:nth-child(6) {

  animation: floatUp 4s ease-in-out infinite;

  animation-delay: 0.3s;

}

/* 按钮hover */

button.bg-primary {

  background-color: #165DFF;

}

button.bg-primary:hover {

  background-color: #0f4cd8;

  transform: translateY(-2px);

}

/* 选项卡激活文字 */

.text-primary {

  color: #165DFF;

}

.fade-tab {

  animation: fadeTab 0.3s ease forwards;

}

@keyframes fadeTab {

  from { opacity: 0; transform: translateY(10px); }

  to { opacity: 1; transform: translateY(0); }

}



#multi-terminal {

  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);

}

/* 设备浮动动画 */

@keyframes floatUp {

  0% { transform: translateY(0px); }

  50% { transform: translateY(-8px); }

  100% { transform: translateY(0px); }

}

#multi-terminal .lg\:col-span-8 .fade-tab > div {

  animation: floatUp 6s ease-in-out infinite;

}



.scrollbar-hide::-webkit-scrollbar {

  display: none;

}

.scrollbar-hide {

  -ms-overflow-style: none;

  scrollbar-width: none;

}

.act {
  position: relative;
  padding: 8px 16px;
  border: none;
  font-size: 14px;
  cursor: pointer;
}
/* 局部下划线 */
.act::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 10%;
  height: 2px;
  background: #fff;
  border-bottom: 3px solid #007bff;
}
/* 弹层遮罩 - 复用原有 .modal-mask 样式，微调 */
.modal-mask .modal-container {
  position: relative;
  background: transparent;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  max-width: 90vw;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;

}

/* 弹层内容圆角 */

.modal-mask .modal-container > .grid {

  background: #fff;

  border-radius: 1.5rem;

  overflow: hidden;

}

/* 视频容器自适应 */

.modal-mask video {

  background: #0a0a0a;

  border-radius: 0.75rem;

  width: 100%;

  display: block;

}

/* 指示点 hover 更柔和 */

.modal-mask .modal-container .absolute button {

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}

/* 卡片悬停增强 */

#cases-carousel .group:hover .group-hover\:scale-105 {

  transform: scale(1.05);

}

/* 响应式微调 */

@media (max-width: 768px) {

  .modal-mask .modal-container {

    max-width: 96vw;

    max-height: 96vh;

  }

  .modal-mask .modal-container > .grid {

    border-radius: 1rem;

  }

  .modal-mask video {

    max-height: 240px;

  }

}

/* 遮罩层——全屏固定，高于其他弹窗（z-index 确保在最上层） */

.case-modal-overlay {

  position: fixed;

  top: 0;

  left: 0;

  width: 100vw;

  height: 100vh;

  background: rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(4px);

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 9999;  /* 高于其他弹窗的 z-index */

  animation: fadeIn 0.25s ease;

}

.case-modal-container {

  position: relative;

  background: transparent;

  max-width: 90vw;

  width: 100%;

  max-height: 90vh;

  overflow-y: auto;

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);

  border-radius: 1.5rem;

}

.case-modal-container > .grid {

  background: #fff;

  border-radius: 1.5rem;

  overflow: hidden;

}

.case-modal-container video {

  background: #0a0a0a;

  border-radius: 0.75rem;

  width: 100%;

  display: block;

}

@keyframes fadeIn {

  from { opacity: 0; transform: scale(0.96); }

  to { opacity: 1; transform: scale(1); }

}

@media (max-width: 768px) {

  .case-modal-container { max-width: 96vw; max-height: 96vh; }

  .case-modal-container > .grid { border-radius: 1rem; }

  .case-modal-container video { max-height: 240px; }

}

.list-disc li{

  list-style-type: none;

  font-size: 14px;

  line-height: 30px;

}

/* 案例无缝左滑动画 */

@keyframes scroll {

  0% { transform: translateX(0); }

  100% { transform: translateX(-50%); }

}



@keyframes scroll {

  0% { transform: translateX(0); }

  100% { transform: translateX(-50%); }

}

.animate-scroll {

  animation: scroll 25s linear infinite;

}

/* 仅鼠标悬浮容器时暂停，弹窗手动控制优先级更高 */

.animate-scroll:hover {

  animation-play-state: paused !important;

}