/* 全局样式 - 可调节参数区域 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #ffffff; /* 主背景色 - 可调节 */
  color: #1a1a1a; /* 主文字色 - 可调节 */
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* 主要内容区域自动扩展 */
#root {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* 确保页脚始终在底部 */
.footer {
  margin-top: auto;
}

/* 顶部导航栏 - 固定位置 + 粘性定位 */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem; /* 高度调节：上下内边距 - 可调节 */
  background: rgba(255, 255, 255, 0.9); /* 半透明背景 - 可调节 */
  backdrop-filter: blur(10px);
  position: sticky; /* 粘性定位 */
  top: 0; /* 固定在顶部 */
  z-index: 1000; /* 确保在最上层 */
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(220, 220, 220, 0.3); /* 底部细线 - 可调节 */
}

/* 固定内部元素间距 */
.nav-left {
  margin-left: 0; /* 固定左侧间距 */
}

.nav-right {
  margin-right: 0; /* 固定右侧间距 */
}

.nav-left .home-btn {
  color: #333333; /* 文字颜色 - 可调节 */
  text-decoration: none;
  font-size: 1rem; /* 字体大小 - 可调节 */
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px; /* 圆角大小 - 可调节 */
  transition: all 0.3s ease;
  background: rgba(240, 240, 240, 0.5); /* 背景色 - 可调节 */
}

.nav-left .home-btn:hover {
  background: rgba(230, 230, 230, 0.8); /* 悬停背景色 - 可调节 */
  transform: translateY(-1px); /* 悬停位移 - 可调节 */
}

.nav-right .github-link {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 间距 - 可调节 */
  color: #333333; /* 文字颜色 - 可调节 */
  text-decoration: none;
  font-size: 1rem; /* 字体大小 - 可调节 */
  padding: 0.5rem 1rem;
  border: 1px solid rgba(200, 200, 200, 0.3); /* 边框颜色和透明度 - 可调节 */
  border-radius: 8px; /* 圆角大小 - 可调节 */
  transition: all 0.3s ease;
  background: rgba(240, 240, 240, 0.5); /* 背景色 - 可调节 */
}

.nav-right .github-link:hover {
  background: rgba(230, 230, 230, 0.8); /* 悬停背景色 - 可调节 */
  transform: translateY(-1px); /* 悬停位移 - 可调节 */
  border-color: rgba(180, 180, 180, 0.5); /* 悬停边框色 - 可调节 */
}

/* 中间标题区域 - 可调节参数 */
.hero-section {
  text-align: center;
  padding: 3rem 2rem; /* 内边距 - 可调节 */
  margin-top: 1rem; /* 上边距 - 可调节 */
}

.main-title {
  font-size: 5rem; /* 主标题字体大小 - 可调节 */
  font-weight: 700; /* 字重 - 可调节 */
  margin-bottom: 1.5rem; /* 下边距 - 可调节 */
  color: #1a1a1a; /* 文字颜色 - 可调节 */
  letter-spacing: -0.02em; /* 字间距 - 可调节 */
  line-height: 1.1; /* 行高 - 可调节 */
}

.subtitle {
  font-size: 1.8rem; /* 副标题字体大小 - 可调节 */
  color: #666666; /* 文字颜色 - 可调节 */
  font-weight: 400; /* 字重 - 可调节 */
  max-width: 600px; /* 最大宽度 - 可调节 */
  margin: 0 auto;
  line-height: 1.5; /* 行高 - 可调节 */
  letter-spacing: 0.01em; /* 字间距 - 可调节 */
}

/* 下方按钮区域 - 固定间距 */
.action-section {
  padding: 3rem 2rem; /* 增加上下内边距 - 可调节 */
  display: flex;
  justify-content: center;
}

.action-buttons {
  display: flex;
  gap: 3rem; /* 显著增加按钮间距 - 可调节 */
  align-items: center;
  flex-direction: row; /* 水平排列 */
  width: 100%;
  max-width: 600px; /* 限制最大宽度以保持间距固定 */
  justify-content: center;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* 内部间距 - 可调节 */
  padding: 1rem 2rem; /* 内边距 - 可调节 */
  background: transparent; /* 背景色 - 可调节 */
  border: 3px solid rgba(100, 100, 255, 0.3); /* 边框颜色和透明度 - 可调节 */
  border-radius: 12px; /* 圆角大小 - 可调节 */
  color: #6666ff; /* 文字颜色 - 可调节 */
  font-size: 1.2rem; /* 字体大小 - 可调节 */
  font-weight: 600; /* 字重 - 可调节 */
  cursor: pointer;
  text-decoration: none; /* 链接样式 */
  transition: all 0.3s ease;
  min-width: 140px; /* 最小宽度 - 可调节 */
}

.action-btn:hover {
  background: #f8f9fa; /* 悬停背景色 - 可调节 */
  transform: translateY(-2px); /* 悬停位移 - 可调节 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* 悬停阴影 - 可调节 */
  border-color: rgba(200, 200, 200, 0.9); /* 悬停边框色 - 可调节 */
}

.action-btn span {
  font-size: 1.3rem; /* 图标大小 - 可调节 */
  margin-bottom: 0.2rem; /* 图标文字间距 - 可调节 */
}

.intro-btn {
  background: #ffffff; /* 背景色 - 可调节 */
  border-color: rgba(100, 150, 255, 0.3); /* 边框色 - 可调节 */
}

.showcase-btn {
  background: #ffffff; /* 背景色 - 可调节 */
  border-color: rgba(255, 150, 100, 0.3); /* 边框色 - 可调节 */
}

/* 内容区域 - 白色主题适配 */
#content-area {
  padding: 2rem; /* 内边距 - 可调节 */
  max-width: 800px; /* 最大宽度 - 可调节 */
  margin: 0 auto;
}

.content-container {
  background: #ffffff; /* 背景色 - 可调节 */
  border-radius: 16px; /* 圆角大小 - 可调节 */
  padding: 2rem; /* 内边距 - 可调节 */
  border: 1px solid rgba(220, 220, 220, 0.8); /* 边框颜色 - 可调节 */
  position: relative;
  color: #1a1a1a; /* 文字颜色 - 可调节 */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); /* 阴影 - 可调节 */
}

/* 音频功能展示样式 */
.audio-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.audio-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(200, 220, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.audio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.audio-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.audio-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  color: white;
}

.audio-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.audio-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: auto;
}

.audio-visual {
  margin-bottom: 1.5rem;
}

.waveform {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 60px;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(240, 245, 255, 0.5);
  border-radius: 12px;
}

.wave-bar {
  width: 6px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px;
  animation: wave 2s ease-in-out infinite;
}

.wave-bar:nth-child(2n) {
  animation-delay: 0.1s;
}

.wave-bar:nth-child(3n) {
  animation-delay: 0.2s;
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.2);
  }
}

.audio-player {
  width: 100%;
  height: 40px;
  border-radius: 8px;
}

.audio-info p {
  margin: 0.5rem 0;
  color: #4a5568;
  font-size: 0.95rem;
}

.audio-info p strong {
  color: #2d3748;
}

.audio-metrics {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.metric {
  background: rgba(240, 245, 255, 0.8);
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .audio-showcase {
    grid-template-columns: 1fr 1fr;
  }
}

/* Zero-shot TTS Table Styles */
.tts-table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.tts-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.tts-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.tts-table-container {
    border: 1px solid #a8d0ff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(123, 179, 255, 0.15);
    margin: 2rem 0;
    background: white;
}

.tts-table {
    border-collapse: collapse;
    width: 100%;
    border: none;
    table-layout: fixed; /* 固定列宽布局 */
}

/* 列宽设置 */
.tts-table th:nth-child(1),
.tts-table td:nth-child(1) {
    width: 12%; /* Speaker列 */
}

.tts-table th:nth-child(2),
.tts-table td:nth-child(2) {
    width: 25%; /* Prompt Voice列 */
}

.tts-table th:nth-child(3),
.tts-table td:nth-child(3) {
    width: 15%; /* Original列 */
}

.tts-table th:nth-child(4),
.tts-table td:nth-child(4) {
    width: 25%; /* Clone Speech列 */
}

.tts-table th:nth-child(5),
.tts-table td:nth-child(5) {
    width: 15%; /* Cloned列 */
}

.tts-table th {
    padding: 1rem 0.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #e6f2ff 0%, #d1e7ff 100%);
    color: #2c5aa0;
    border: 1px solid #b3d9ff;
    border-bottom: 1px solid #b3d9ff;
}

.tts-table td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
    background: #fafbff;
    color: #2c3e50;
    border-bottom: 1px solid #e6f2ff;
}

.tts-table td.text-cell {
    background-color: #ffffff;
    font-size: 1.5rem; /* 增大两个字号 */
    font-weight: 400; /* 加粗 */
    line-height: 1.4;
    color: #333;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.tts-table td.audio-cell {
    background-color: #ffffff;
    text-align: center;
    padding: 0.3rem;
    min-height: 60px;
    vertical-align: middle;
    display: table-cell;
}

/* 超小型音频播放器 */
.audio-player-mini {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a8d0ff 0%, #7bb3ff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 6px rgba(123, 179, 255, 0.3);
}

.audio-player-mini:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(123, 179, 255, 0.4);
}

.audio-player-mini.clicked {
    background: linear-gradient(135deg, #5ba3ff 0%, #3d8aff 100%);
}

.play-icon {
    color: white;
    font-size: 14px;
    line-height: 1;
    user-select: none;
}

.audio-player-mini.clicked .play-icon {
    font-size: 12px;
}

/* 点击后显示完整控制面板 */
.audio-player-mini.clicked {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* 浮动音频控制面板样式 */
.floating-audio-controls {
    position: absolute;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    width: 300px;
    z-index: 10000;
    border: 1px solid rgba(200, 220, 255, 0.3);
    box-sizing: border-box;
}

.control-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(200, 220, 255, 0.3);
}

.control-panel-header span {
    font-weight: 600;
    color: #2d3748;
}

.close-controls {
    background: #f8f9fa;
    border: 1px solid rgba(200, 220, 255, 0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
}

.close-controls:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.control-panel-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-panel-content .play-pause-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.control-panel-content .play-pause-btn:hover {
    transform: scale(1.1);
}

.control-panel-content .progress-container {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    cursor: pointer;
    margin: 1rem 0;
}

.control-panel-content .progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    width: 0%;
}

.control-panel-content .time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
}

.control-panel-content .volume-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.control-panel-content .volume-slider {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    cursor: pointer;
}

.control-panel-content .volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
}

.control-panel-content .volume-icon {
    font-size: 1rem;
    color: #666;
}

/* 清新浅蓝色边框样式 */
.tts-table th,
.tts-table td {
    border: 1px solid #b3d9ff !important;
}

.tts-table {
    border: 2px solid #a8d0ff !important;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(163, 196, 243, 0.1);
}

/* 新的音频控制面板样式 */
.audio-controls-panel {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(123, 179, 255, 0.15);
    padding: 8px 12px;
    z-index: 1000;
    min-width: 280px;
    max-width: 320px;
    border: 1px solid #d1e7ff;
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.play-btn {
    background: #7bb3ff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    transition: background 0.2s ease;
}

.play-btn:hover {
    background: #5ba3ff;
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    min-width: 80px;
}

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

.time {
    font-size: 11px;
    color: #666;
    min-width: 70px;
    text-align: center;
    flex-shrink: 0;
    font-family: 'Courier New', monospace;
}

.volume-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    color: #666;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.volume-btn:hover {
    color: #333;
}

.volume-slider {
    width: 60px;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
    flex-shrink: 0;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
}

.volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #667eea;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .tts-table th,
    .tts-table td {
        padding: 0.4rem 0.2rem;
        font-size: 0.75rem;
    }
    
    .audio-player-mini {
        max-width: 60px;
        transform: scale(0.7);
    }
    
    .audio-controls-panel {
        min-width: 240px;
        max-width: 280px;
        padding: 6px 10px;
    }
    
    .controls-row {
        gap: 6px;
    }
    
    .play-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .time {
        font-size: 10px;
        min-width: 60px;
    }
    
    .volume-slider {
        width: 50px;
    }
}

.tts-table tbody tr:hover {
    background-color: #e6f2ff;
}

.tts-table td {
    padding: 1.5rem 1rem;
    vertical-align: middle;
}

.content-cell {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    max-width: 300px;
    word-wrap: break-word;
}

.audio-cell {
    text-align: center;
    min-width: 200px;
}

.audio-player2 {
    width: 100%;
    max-width: 180px;
    margin-top: 0.5rem;
    border-radius: 25px;
}

/* Responsive table */
@media (max-width: 1024px) {
    .tts-table {
        font-size: 0.85rem;
    }
    
    .tts-table th,
    .tts-table td {
        padding: 1rem 0.5rem;
    }
    
    .content-cell {
        font-size: 0.8rem;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .tts-table-container {
        margin: 1rem 0;
        border-radius: 8px;
    }
    
    .tts-table {
        font-size: 0.8rem;
    }
    
    .tts-table th,
    .tts-table td {
        padding: 0.8rem 0.4rem;
    }
    
    .audio-player2 {
        max-width: 120px;
    }
    
    .mini-waveform {
        transform: scale(0.8);
    }
}

/* Zero-shot TTS 样式 */
.tts-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.tts-case {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(200, 220, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.tts-case:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.case-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 220, 255, 0.3);
}

.case-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 40px;
  text-align: center;
}

.case-text {
  font-size: 1.1rem;
  color: #2d3748;
  font-weight: 500;
  line-height: 1.4;
}

.audio-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .audio-comparison {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }
}

.audio-item {
  background: rgba(240, 245, 255, 0.5);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.audio-item:hover {
  background: rgba(240, 245, 255, 0.8);
}

.audio-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 0.5rem;
  text-align: center;
}

.audio-visual-mini {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.mini-waveform {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 40px;
  padding: 0.5rem;
}

.mini-bar {
  width: 4px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  animation: mini-wave 1.5s ease-in-out infinite;
}

.mini-bar:nth-child(2n) {
  animation-delay: 0.1s;
}

.mini-bar:nth-child(3n) {
  animation-delay: 0.2s;
}

@keyframes mini-wave {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.3);
  }
}

.audio-item .audio-player {
  width: 100%;
  height: 35px;
  border-radius: 6px;
}

.close-btn {
  position: absolute;
  top: 1rem; /* 位置 - 可调节 */
  right: 1rem; /* 位置 - 可调节 */
  background: rgba(240, 240, 240, 0.8); /* 背景色 - 可调节 */
  border: none;
  border-radius: 50%; /* 圆角 - 可调节 */
  width: 40px; /* 大小 - 可调节 */
  height: 40px; /* 大小 - 可调节 */
  font-size: 1.5rem; /* 字体大小 - 可调节 */
  cursor: pointer;
  color: #666666; /* 文字颜色 - 可调节 */
  transition: all 0.3s ease;
}

.close-btn:hover {
  background: rgba(220, 220, 220, 0.9); /* 悬停背景色 - 可调节 */
  transform: rotate(90deg); /* 悬停动画 - 可调节 */
}

#dynamic-content h2 {
  color: #1a1a1a; /* 文字颜色 - 可调节 */
  margin-bottom: 1rem; /* 下边距 - 可调节 */
  font-size: 2rem; /* 字体大小 - 可调节 */
  font-weight: 600; /* 字重 - 可调节 */
}

#dynamic-content h3 {
  color: #333333; /* 文字颜色 - 可调节 */
  margin: 1.5rem 0 1rem 0; /* 边距 - 可调节 */
  font-size: 1.5rem; /* 字体大小 - 可调节 */
  font-weight: 600; /* 字重 - 可调节 */
}

#dynamic-content h4 {
  color: #444444; /* 文字颜色 - 可调节 */
  margin: 1rem 0 0.5rem 0; /* 边距 - 可调节 */
  font-size: 1.2rem; /* 字体大小 - 可调节 */
  font-weight: 500; /* 字重 - 可调节 */
}

#dynamic-content p {
  color: #666666; /* 文字颜色 - 可调节 */
  line-height: 1.6; /* 行高 - 可调节 */
  margin-bottom: 1rem; /* 下边距 - 可调节 */
}

#dynamic-content ul {
  color: #666666; /* 文字颜色 - 可调节 */
  padding-left: 1.5rem; /* 左边距 - 可调节 */
}

#dynamic-content li {
  margin-bottom: 0.5rem; /* 下边距 - 可调节 */
  line-height: 1.6; /* 行高 - 可调节 */
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 列宽 - 可调节 */
  gap: 1.5rem; /* 间距 - 可调节 */
  margin-top: 1.5rem; /* 上边距 - 可调节 */
}

.showcase-item {
  background: #f8f9fa; /* 背景色 - 可调节 */
  padding: 1.5rem; /* 内边距 - 可调节 */
  border-radius: 12px; /* 圆角大小 - 可调节 */
  border: 1px solid rgba(220, 220, 220, 0.5); /* 边框颜色 - 可调节 */
  transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-2px); /* 悬停位移 - 可调节 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* 悬停阴影 - 可调节 */
}

.showcase-item h4 {
  margin-bottom: 0.5rem; /* 下边距 - 可调节 */
  color: #1a1a1a; /* 文字颜色 - 可调节 */
  font-weight: 600; /* 字重 - 可调节 */
}

.showcase-item p {
  color: #666666; /* 文字颜色 - 可调节 */
  font-size: 0.9rem; /* 字体大小 - 可调节 */
  line-height: 1.5; /* 行高 - 可调节 */
}

/* 页脚样式 - 固定在底部 */
.footer {
  background: rgba(248, 249, 250, 0.8); /* 背景色 - 可调节 */
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem; /* 增加内边距 */
  border-top: 1px solid rgba(220, 220, 220, 0.3); /* 顶部边框 - 可调节 */
  margin-top: auto; /* 自动推到页面底部 */
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 200px;
}

.footer-section h4 {
  color: #1a1a1a; /* 文字颜色 - 可调节 */
  font-size: 1rem; /* 字体大小 */
  font-weight: 600; /* 字重 - 可调节 */
  margin-bottom: 0.5rem; /* 下边距 */
  text-align: center; /* 内部居中 */
}

.footer-section p {
  color: #666666; /* 文字颜色 - 可调节 */
  line-height: 1.4; /* 行高 */
  font-size: 0.9rem; /* 字体大小 */
  margin: 0;
  text-align: center; /* 内部居中 */
}

/* 链接容器 */
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* 图标链接样式 */
.footer-link {
  display: inline-flex;
  align-items: center;
  color: #666666; /* 图标颜色 - 可调节 */
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: #333333; /* 悬停颜色 - 可调节 */
}

.footer-link svg {
  width: 24px; /* 图标大小 */
  height: 24px;
}

/* 版权信息 - 置于链接下方 */
.footer-copyright {
  color: #888888;
  font-size: 0.7rem;
  text-align: center;
  margin-top: 0.25rem;
  white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .top-nav {
    padding: 0.8rem 1rem;
    flex-direction: row;
    gap: 1rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  .action-buttons {
    flex-direction: column;
    gap: 2rem;
  }

  .action-btn {
    width: 100%;
    max-width: 200px;
  }

  .hero-section {
    padding: 2rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-section {
    min-width: auto;
  }
}
  