/* 利用規約ページ专用样式 - 极简扁平硬朗风格 (4px版) - 字体放大版 */
body {
  background-color: #f7f9fc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  margin: 0;
  padding: 0;
}

/* 外层容器 */
.terms-container {
  max-width: 900px;
  margin: 50px auto;
  background-color: #ffffff;
  border-radius: 4px; /* 统一 4px 圆角 */
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e1e8ed;
  padding: 40px;
  box-sizing: border-box;
}

/* 头部 */
.terms-header {
  padding-bottom: 25px;
  border-bottom: 1px solid #edf2f7;
  text-align: center;
  margin-bottom: 30px;
}

.terms-header h1 {
  color: #0f294d; /* 统一使用首页深蓝黑色 */
  font-size: 26px; /* 放大至 26px */
  font-weight: 700;
  margin: 0;
}

.terms-header h1::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background-color: #2563eb; /* 首页标准蓝 */
  margin: 12px auto 0;
  border-radius: 2px;
}

.update-date {
  color: #718096;
  font-size: 14.5px; /* 放大至 14.5px */
  margin-top: 10px;
  display: block;
}

.terms-content {
  padding: 0;
}

/* 前言引导框：淡蓝背景 + 蓝色指示条 */
.terms-intro {
  margin-bottom: 35px;
  padding: 20px;
  background-color: #f0f5ff; /* 浅淡蓝 */
  border-radius: 0 4px 4px 0;
  border-left: 3px solid #2563eb; /* 标准蓝 */
  border-top: 1px solid #dce6f7;
  border-right: 1px solid #dce6f7;
  border-bottom: 1px solid #dce6f7;
}

.terms-intro p {
  margin: 0;
  line-height: 1.7;
  color: #4a5568;
  font-size: 15px; /* 放大至 15px */
}

/* 条款小节 */
.terms-section {
  margin-bottom: 35px;
}

.terms-section:last-child {
  margin-bottom: 0;
}

/* 条款条目大标题：左侧竖向蓝色指示条，替代突兀的底部分割线 */
.terms-section h2 {
  color: #0f294d;
  font-size: 18px; /* 放大至 18px */
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 3px solid #2563eb; /* 竖向装饰线 */
  border-bottom: none; /* 去除生硬底线 */
  font-weight: 700;
  line-height: 1.3;
}

.terms-clause {
  padding-left: 12px;
}

.terms-clause p {
  margin-bottom: 12px;
  line-height: 1.65;
  color: #4a5568;
  font-size: 15px; /* 放大至 15px */
}

.terms-clause p:last-child {
  margin-bottom: 0;
}

/* 子条款缩进 */
.terms-subclause {
  padding-left: 16px;
  margin: 12px 0;
}

.terms-subclause p {
  margin-bottom: 8px;
  line-height: 1.6;
}

.terms-subclause p:last-child {
  margin-bottom: 0;
}

/* 同意须知区域 */
.terms-agreement {
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid #edf2f7;
  font-weight: 700;
  color: #2d3748;
  font-size: 15px; /* 放大至 15px */
}

/* 响应式样式 */
@media screen and (max-width: 767px) {
  .terms-container {
    margin: 20px 12px;
    padding: 24px 16px;
    border-radius: 4px;
  }
  
  .terms-header {
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
  
  .terms-header h1 {
    font-size: 22px;
  }
  
  .terms-intro {
    padding: 16px;
    margin-bottom: 25px;
  }
  
  .terms-section h2 {
    font-size: 17px;
    padding-left: 8px;
  }
  
  .terms-clause {
    padding-left: 8px;
  }
  
  .terms-subclause {
    padding-left: 12px;
  }
}