/* ===== CSS变量定义 ===== */
:root {
  /* 主色调 */
  --primary-blue: #cbaff6;
  --hover-blue: #b185f2;
  --light-purple: #e3d7f6;

  /* 背景色 */
  --bg-grey: #f9fafb;
  --bg-white: #ffffff;

  /* 文字颜色 */
  --text-color: #333;
  --text-light: #666;
  --text-dark: #374456;

  /* 边框和分割线 */
  --border-color: #eee;
  --divider-color: #ddd;
}

/* ===== 重置样式 ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== 基础样式 ===== */
body {
  font-family: "Segoe UI", "微软雅黑", sans-serif;
  background: var(--bg-grey);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  color: var(--text-color);
}

h1 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

p,
li {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== 布局样式 ===== */
.container {
  max-width: 1200px;
  width: 100%;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-top: 30px;
}

/* ===== 面包屑导航 ===== */
.breadcrumb {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #999;
}

/* ===== FAQ问题区域 ===== */
.faq-item {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  font-weight: bold;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--text-light);
  position: relative;
}

/* ===== 图片样式 ===== */
.faq-answer img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.image-container {
  margin-top: 10px;
}

/* ===== 按钮样式 ===== */
.toggle-image-btn {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
}

.toggle-image-btn:hover {
  background-color: var(--hover-blue);
}

/* ===== 链接下划线样式 ===== */
a.custom-underline {
  position: relative;
}

a.custom-underline:hover {
  border-bottom: 2px solid var(--hover-blue);
}

/* ===== 响应式设计 ===== */
@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  h1 {
    font-size: 1.5rem;
  }
}
