@keyframes wave1 {
  0%,
  100% {
    transform: rotate(-5deg) scale(1.5, 0.5) translateY(0);
  }

  50% {
    transform: rotate(-2deg) scale(1.5, 0.5) translateY(10vh);
  }
}

@keyframes wave2 {
  0%,
  100% {
    transform: rotate(3deg) scale(1.5, 0.6) translateY(0);
  }

  50% {
    transform: rotate(-1deg) scale(1.5, 0.6) translateY(-5vh);
  }
}

@keyframes wave3 {
  0%,
  100% {
    transform: rotate(-4deg) scale(1.5, 0.7) translateY(0vh);
  }

  50% {
    transform: rotate(-1deg) scale(1.5, 0.7) translateY(0vh);
  }
}

/* 新闻动画效果 */
@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes lineProgress {
  0% {
    width: 0;
  }

  50% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* 动画效果 */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* 动画效果 */
@keyframes accuracyPulse {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(100, 255, 218, 0.3);
  }

  50% {
    box-shadow: 0 0 16px rgba(100, 255, 218, 0.5);
  }
}

/* 精准度条主体 */
.accuracy-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* 精准度进度条相关样式 */
.accuracy-bar-container {
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  position: relative;
  margin: 0 auto;
}

/* 悬停效果 */
.accuracy-bar:hover {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

/* 填充部分 */
.accuracy-fill {
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #64ffda, #48a9fe);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  animation: accuracyPulse 2s infinite;
}

/* 标签 */
.accuracy-labels {
  position: absolute;
  width: 100%;
  top: 100%;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* 数值显示 */
.accuracy-value {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* AI预测分数单元格样式 */
#ai-prediction-score {
  /* 限制最大宽度 */
  padding: 10px;
}

.analyzing-text {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  max-width: 80%;
  font-size: 16px;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards 0.3s;
  position: relative;
}

.analyzing-text::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #64ffda, #48a9fe);
  animation: lineProgress 2s ease-in-out infinite;
}

/* 平衡条主体 */
.balance-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* 平衡条容器 */
.balance-bar-container {
  width: 100%;
  max-width: 400px;
  /* 限制最大宽度 */
  padding: 15px 20px;
  position: relative;
  margin: 0 auto;
  /* 居中显示 */
}

/* 悬停效果 */
.balance-bar:hover {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.balance-bar:hover .balance-marker {
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

/* 填充部分基础样式 */
.balance-fill {
  position: absolute;
  height: 100%;
  width: 50%;
  top: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 负值（红色）填充 */
.balance-fill.negative {
  right: 50%;
  background: linear-gradient(
    to left,
    rgba(255, 82, 82, 0.2),
    rgb(255, 82, 82)
  );
  transform-origin: right;
  transform: scaleX(0);
}

/* 正值（绿色）填充 */
.balance-fill.positive {
  left: 50%;
  background: linear-gradient(
    to right,
    rgba(76, 175, 80, 0.2),
    rgb(76, 175, 80)
  );
  transform-origin: left;
  transform: scaleX(0);
}

/* 刻度标签 */
.balance-labels {
  position: absolute;
  width: 100%;
  top: 100%;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* 中心标记 */
.balance-marker {
  position: absolute;
  width: 4px;
  height: 16px;
  background: #ffffff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.balance-value {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.card-text {
  font-size: clamp(0.875rem, 2vw, 1rem);
}

/* 标题和文本的响应式字体大小 */
.card-title {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.chart-loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  text-align: center;
}

.chart-loading-indicator .loading-spinner {
  width: 60px;
  height: 60px;
  border-width: 4px;
}

.chart-loading-indicator .loading-text {
  font-size: 16px;
  margin-top: 15px;
}

/* 图表loading效果 */
.chart-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 59, 93, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.content {
  flex: 1;
}

.curve-layer-1 {
  position: absolute;
  width: 140%;
  height: 200vh;
  left: -30%;
  top: -95vh;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(-2deg) scale(1.5, 0.5);
  animation: wave1 16s ease-in-out infinite;
  z-index: -1;
  transition: all 1.5s ease-in-out;
}

.curve-layer-2 {
  position: absolute;
  width: 140%;
  height: 200vh;
  left: -20%;
  bottom: -95vh;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(2deg) scale(1.5, 0.6);
  animation: wave2 14s ease-in-out infinite;
  z-index: -1;
  transition: all 1.5s ease-in-out;
}

.curve-layer-3 {
  position: absolute;
  width: 140%;
  height: 80vh;
  left: -20%;
  top: 10vh;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(-1deg) scale(1.5, 0.7);
  animation: wave3 18s ease-in-out infinite;
  z-index: -1;
  transition: all 1.5s ease-in-out;
}

/* 曲线背景容器 */
.curved-background {
  top: 0;
  left: 0;
  width: 100%;
  /* 添加浏览器前缀 */
  transition: all 1.5s ease-in-out;
  position: fixed;
  /* 改为 fixed 定位 */
  isolation: isolate; /* 创建新的堆叠上下文 */
  /* 添加背景大小属性 */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%; /* 添加明确的高度 */
  min-height: 100vh; /* 确保至少覆盖整个视口高度 */
  pointer-events: none;
}

/* 自定义容器的样式 */
.custom-container {
  height: 100vh;
  min-height: auto;
  padding-top: 0;
  /* 或调整 padding-top 的值 */
  padding-bottom: 0;
  /* 或调整 padding-bottom 的值 */
  margin: 0;
  /* 如果有 margin，请将其设置为 0 */
  border: 0;
  /* 如果有 border，请将其设置为 0 */
}

/* 优化容器溢出处理 */
.custom-container {
  overflow-x: hidden;
  max-width: 100vw;
}

.custom-input-field {
  padding: 10px 10px 20px 10px;
  background-color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Safari 支持 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  margin-bottom: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.custom-input-field:hover {
  background-color: rgba(255, 255, 255, 0.7) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

#custom-news {
  height: 60px;
  color: #444;
}

/* 样式基本设置 */
.details-table {
  width: 100%;
  table-layout: fixed;
  /* 添加固定布局 */
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

  background-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Safari 支持 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* 阴影效果 */
.details-table {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 表头和标签样式 */
.details-table .label {
  /* 设置标签列的宽度 */
  font-weight: bold;
  color: #d32f2f;
  padding: 20px 10px;
  /* 调整内边距 */
  white-space: nowrap;
  text-align: center;
  /* 防止标签文字换行 */
}

.details-table .loading-icon {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top: 3px solid #64ffda;
  border-left: 3px solid #64ffda;
  animation: spin 1s cubic-bezier(0.76, 0.35, 0.2, 0.7) infinite;
}

/* 单元格样式 */
.details-table td {
  padding: 15px;
  text-align: center;
  font-size: 16px;
  border: none;
  word-wrap: break-word;
  /* 允许长文本换行 */
  vertical-align: middle;
  /* 垂直居中对齐 */
}

/* 
/* 单元格之间添加分隔线 */
.details-table td {
  border-bottom: 2px solid rgba(134, 118, 121, 0.3);
  text-align: center;
}

/* 表格loading效果 */
.details-table td.loading {
  position: relative;
  background: rgba(23, 59, 93, 0.4) !important;
}

.details-table td.loading span {
  opacity: 0.2;
}

.details-table tr:nth-child(even) td {
  color: #fff;
}

/* 各行的渐变色背景 */
.details-table tr:nth-child(odd) td {
  color: #fff;
}

.h3-title {
  color: #fff;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-section img {
  width: 100%;
  height: auto;
}

/* 优化图片响应式显示 */
.image-section img {
  max-width: 70vw;
  height: auto;
  object-fit: contain;
}

/* 设置列的最小高度，保证各列平衡 */
.interaction-column {
  min-height: 500px;
}

.item-content {
  flex-direction: column;
  /* 垂直排列 */
}

/* 添加图标样式 */
.item-icon {
  font-size: 1.5rem;
  width: 30px;
  margin-right: 10px;
}

.item-icon.style1 {
  color: #745151;
}

.item-icon.style2 {
  color: #326697;
}

.item-icon.style3 {
  color: #3492a5;
}

.item-icon.style4 {
  color: #a63bae;
}

.item-icon.style5 {
  color: #b54929;
}

.item-image {
  width: 24px;
  /* 图像的宽度 */
  height: auto;
  /* 高度自适应 */
  margin-right: 10px;
  /* 图像和文本之间的间距 */
}

/* 添加一些基本的样式 */
.landing-page {
  padding-top: 30vh;
  padding-bottom: 10vh;
  /* 将 top 设置为 header 的高度 */
  width: 100%;
  height: calc(100% - 240px);
  /* 使高度适应内容 */
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate; /* 创建新的堆叠上下文 */
  position: relative;
}

.landing-page.page-slide-left {
  transform: translateX(-200%);
  display: none;
}

.left-news-column {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 15px;
  max-height: calc(70vh - 40px);
  overflow-y: auto;
}

.left-news-column {
  max-height: 300px;
  /* 设置最大高度，防止溢出 */
  overflow-y: auto;
  /* 如果内容超出，出现滚动条 */
}

.left-news-column {
  max-height: 700px;
  position: relative;
  overflow-y: auto;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

.loading-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 600px;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 59, 93, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.loading-spinner {
  width: 80px;
  display: block;
  margin: 0 auto;
  height: 80px;
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top: 6px solid #64ffda;
  border-left: 6px solid #64ffda;
  animation: spin 1s cubic-bezier(0.76, 0.35, 0.2, 0.7) infinite;
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.loading-text {
  margin-top: 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: pulse 2s ease-in-out infinite;
}

.mobile-news-list {
  max-height: 300px;
  overflow-y: auto;
}

.mobile-news-list .news-item {
  margin-bottom: 0.5rem;
}

/* 移动端新闻展示区域样式 */
.mobile-news-section {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  margin: 1rem 0;
}

/* 调整新闻列样式 */
.news-column {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 300px;
  max-height: 70vh;
  /* 限制最大高度为视口高度的70% */
  z-index: 100;
  /* 确保在其他内容之上 */
}

.news-column {
  position: fixed;
  /* 固定在视口中 */
  left: 10px;
  /* 距离屏幕左侧 10 像素 */
  bottom: 10px;
  /* 距离屏幕底部 10 像素 */
  max-width: 300px;
  /* 设置宽度，适应您的需求 */
  z-index: 1000;
  /* 确保在最上层 */
}

#news-container {
  position: relative;
  /* 固定定位 */
  bottom: 10px;
  /* 与底部对齐 */
  left: 10px;
  /* 与左侧对齐 */

  max-height: 80vh;
  /* 确保它不溢出 */
  overflow-y: auto;
  /* 决定显示滚动条 */
  z-index: 1000;
  /* 背景透明度 */
  border-radius: 8px;
  /* 圆角 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* 添加阴影效果 */
  flex-direction: column-reverse;
}

/* 新闻列表滚动区域 */
#news-container {
  overflow-y: auto;
  padding: 10px 0;
}

.news-item {
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  position: relative;
}

.news-item {
  position: relative;
  /* 保持相对布局 */
  margin-bottom: 10px;

  max-width: 90%;
  /* 下间距 */
  opacity: 1;
  /* 默认显示 */
  transform: translateY(0);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  border-radius: 8px;
}

.news-item .card-body {
  padding: 10px;
  /* 恢复一些内边距 */
  word-wrap: break-word;
}

.news-item .card-text {
  font-size: 0.9rem;
}

.news-item .card-title {
  /* font-size: 0.9rem; */
  /* font-weight: 600; */
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  /* 限制最多显示5行 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.news-item.new {
  animation: slideIn 0.5s ease forwards;
}

.news-item:active {
  background-color: #e0e0e0;
  /* 点击时的效果 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  /* 点击时的阴影效果 */
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-item:hover {
  background-color: #f0f8ff;
  /* 轻微的背景变化 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 轻微的阴影效果 */
}

.news-section {
  position: absolute;
  padding: 50px 20px;
  left: 20px;
  width: 300px;
  max-height: 400px;
  /* 限制高度 */
  /* 使内容可以滚动 */
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* 表格中较长文本的单元格 */
#news-title {
  word-break: break-word;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background-color: #935d8c;
  background-image: url(""),
    -moz-linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
  background-image: url(""),
    -webkit-linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
  background-image: url(""),
    -ms-linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
  background-image: url(""), linear-gradient(45deg, #e37682 15%, #5f4d93 85%);
}

/* 样式基本设置 */
.options-item {
  background-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Safari 支持 */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* 内容样式，初始状态隐藏 */
.options-item .content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.4s ease, opacity 0.4s ease;
}

/* 标题样式 */
.options-item .title {
  font-size: 20px;
  font-weight: bold;
  color: #313854;
  text-align: center;
  align-content: center;
  padding: 10px;
}

/* 禁用状态样式 */
.options-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(50%);
}

.options-item:hover {
  background-color: rgba(255, 255, 255, 0.7) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* 悬停状态增加高度 */
.options-item:hover {
  padding-bottom: 40px;
}

/* 悬停效果 */
.options-item:hover .content {
  height: 100px;
  /* 根据内容长度调整 */
  opacity: 1;
  padding-top: 10px;
}

/* 新闻滑入和淡入的效果 */
.slide-in {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.5s ease;
}

#stock-chart-container {
  height: 500px;
}

.stock-page-container {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  padding-top: 120px;
}

.stock-page-container.page-shows {
  opacity: 1;
  display: block;
}

.submit-button {
  background-color: #039be5 !important;
  color: #ffffff !important;
}

/* 改进按钮响应式样式 */
.submit-button {
  width: 100%;
  margin-top: 1rem;
  padding: clamp(0.5rem, 2vw, 1rem);
}

.submit-button:hover {
  background-color: #6bb9e0 !important;
  color: #000 !important;
}

/* 响应式表格样式 */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-section {
  margin-top: 40px;
  width: 100%;
  overflow-x: auto;
}

/* 表格标题样式 */
.table-section h4 {
  font-family: "Arial", sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}

.text-processing {
  display: inline-block;
  position: relative;
}

.text-processing::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #64ffda;
  right: -10px;
  top: 0;
  animation: blink 0.7s infinite;
}

.text-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-section {
  max-width: 50%;
}

.text-section .buttons {
  display: flex;
  gap: 20px;
}

.text-section .buttons a {
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  position: relative; /* 添加相对定位 */
  z-index: 3; /* 确保按钮在最上层 */
}

.text-section .get-started {
  background-color: #c3ff10;
  color: #303030;
}

.text-section .get-started:hover {
  background-color: #0056b3;
}

.text-section .how-work {
  border: 2px solid #f0f0f0;
  color: #e0e0e0;
}

.text-section .how-work:hover {
  background-color: #ffffff;
  color: #454545;
}

.text-section .review {
  display: flex;
  align-items: center;
  margin-top: 20px;
  font-size: 18px;
}

.text-section .review .stars {
  color: #ff4f5b;
  margin-right: 10px;
}

.text-section button {
  padding: 15px 30px;
  font-size: 18px;
  color: #ffffff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.text-section button:hover {
  background-color: #0056b3;
}

.text-section h1 {
  font-size: 48px;
  color: #ffeddc;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-section h1 span {
  color: #a3e3ff;
}

.text-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.text-section p {
  font-size: 18px;
  color: #d4d3d3;
  margin-bottom: 30px;
}

.text-section span {
  color: #d4d3d3;
}

.title {
  display: flex;
  /* 使标题也使用 Flexbox */
  align-items: center;
  /* 垂直居中对齐 */
  margin-bottom: 5px;
  /* 给标题和内容之间增加间距 */
}

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

/* 数值显示 */
@media screen and (max-width: 768px) {
  .details-table {
    font-size: 14px;
  }

  .details-table td {
    padding: 10px 5px;
  }

  .balance-bar-container {
    padding: 10px;
    max-width: 300px;
  }

  .accuracy-bar-container {
    padding: 10px;
    max-width: 300px;
  }

  /* 优化图片响应式显示 */
  .image-section {
    max-width: 10vw;
    height: auto;
    object-fit: contain;
  }
}

@media screen and (max-width: 1200px) {
  .custom-container {
    padding: var(--responsive-padding);
  }

  .landing-page {
    padding-top: 20vh;
    height: auto;
    text-align: center;
  }

  .text-section {
    max-width: 100%;
    padding: 20px;
  }

  .buttons {
    justify-content: center;
  }

  .details-table {
    font-size: var(--base-font-size);
  }

  .details-table td {
    padding: 8px 5px;
  }

  .options-item .title {
    font-size: var(--base-font-size);
  }

  .options-item .content p {
    font-size: calc(var(--base-font-size) * 0.9);
  }
}

@media screen and (max-width: 576px) {
  .details-table td {
    display: block;
    width: 100%;
    text-align: center;
  }

  .details-table .label {
    background: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    padding: 8px;
  }

  .balance-bar-container,
  .accuracy-bar-container {
    max-width: 100%;
  }
}
