/* base.css - 基础样式及全局变量 */
:root {
  --primary-color: #1e88e5;
  --text-color-zh: #333; /* 中文主要颜色 */
  --text-color-en: #777; /* 英文主要颜色 */
  --light-gray: #fafafa;
  --border-color: #e5e5e5;
  --header-bg-start: #1a2b3c;
  --header-bg-end: #2c3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  line-height: 1.8;
  color: var(--text-color-zh);
  letter-spacing: 0.3px;
  font-weight: 400;
  background: #fff;
}

.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}

.section {
  padding: 60px 0;
}

.section-gray {
  background: var(--light-gray);
}

/* 通用卡片样式 */
.card {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* 按钮样式 */
.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: 20px;
}

.cta-button:hover {
  background: #1565C0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-container {
  text-align: center;
  margin: 30px 0;
}
