/* ============================================
   海汇商城 - 政策与服务页面样式 policy.css
   ============================================ */

.policy-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background: var(--bg-card, #fff);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.policy-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main, #333);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--primary, #1677ff);
  padding-bottom: 16px;
  text-align: center;
}

.policy-meta {
  font-size: 13px;
  color: var(--text-muted, #999);
  text-align: center;
  margin-bottom: 30px;
}

.policy-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary, #1677ff);
  margin-top: 30px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.policy-content h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--primary, #1677ff);
  margin-right: 10px;
  border-radius: 2px;
}

.policy-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main, #333);
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-sub, #666);
  margin-bottom: 16px;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content ul li {
  list-style-type: disc;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-sub, #666);
  margin-bottom: 8px;
}

.policy-content ol li {
  list-style-type: decimal;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-sub, #666);
  margin-bottom: 8px;
}

/* 政策页面表格样式 */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.policy-table th, .policy-table td {
  border: 1px solid var(--border, #e8e8e8);
  padding: 12px 16px;
  text-align: left;
}

.policy-table th {
  background-color: var(--primary-bg, #f0f6ff);
  color: var(--primary-dark, #0052d9);
  font-weight: 600;
}

.policy-table tr:nth-child(even) {
  background-color: #fafafa;
}

/* 卡片/框体样式 */
.policy-box {
  background: var(--primary-bg, #f0f6ff);
  border-left: 4px solid var(--primary, #1677ff);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.policy-box p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--primary-dark, #0052d9);
}

.policy-warning-box {
  background: #fff2e8;
  border-left: 4px solid #ffbb96;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.policy-warning-box p {
  margin-bottom: 0;
  font-weight: 500;
  color: #d4380d;
}

/* 联系信息列表 */
.contact-list {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-label {
  width: 90px;
  font-weight: 600;
  color: var(--text-main, #333);
  flex-shrink: 0;
}

.contact-value {
  color: var(--text-sub, #666);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .policy-container {
    margin: 16px auto;
    padding: 20px 16px;
    border-radius: 0;
  }
  
  .policy-title {
    font-size: 22px;
  }
}
