/* 法律页面共用样式 */

.legal-section {
  padding: 8rem 0 6rem;
  min-height: 100vh;
  background: 
    radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.legal-header {
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: #9ca3af;
  font-size: 1rem;
  font-style: italic;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.legal-section-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section-item h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #06b6d4;
  display: inline-block;
}

.legal-section-item h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.legal-section-item p {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.legal-section-item ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.legal-section-item ul li {
  color: #e5e7eb;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.legal-section-item ul li::before {
  content: '•';
  color: #06b6d4;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
}

.legal-section-item ul li ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.legal-section-item ul li ul li {
  color: #d1d5db;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.legal-section-item ul li ul li::before {
  content: '◦';
  color: #8b5cf6;
  font-size: 1rem;
}

/* 公司信息和联系信息样式 */
.company-info,
.contact-info {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.company-info p,
.contact-info p {
  margin-bottom: 0.75rem;
  color: white;
}

.company-info p:last-child,
.contact-info p:last-child {
  margin-bottom: 0;
}

.company-info strong,
.contact-info strong {
  color: #06b6d4;
  font-weight: 600;
}

/* 强调文本 */
.legal-section-item strong {
  color: #06b6d4;
  font-weight: 600;
}

/* 链接样式 */
.legal-content a {
  color: #06b6d4;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.legal-content a:hover {
  border-bottom-color: #06b6d4;
  color: #0891b2;
}

/* 表格样式（如果需要） */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  overflow: hidden;
}

.legal-table th,
.legal-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-table th {
  background: rgba(6, 182, 212, 0.2);
  color: white;
  font-weight: 600;
}

.legal-table td {
  color: #e5e7eb;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .legal-section {
    padding: 6rem 0 4rem;
  }
  
  .legal-header h1 {
    font-size: 2.5rem;
  }
  
  .legal-content {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .legal-section-item h2 {
    font-size: 1.25rem;
  }
  
  .legal-section-item h3 {
    font-size: 1.1rem;
  }
  
  .legal-section-item p,
  .legal-section-item ul li {
    font-size: 0.95rem;
  }
  
  .company-info,
  .contact-info {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-header h1 {
    font-size: 2rem;
  }
  
  .legal-content {
    padding: 1.5rem;
  }
  
  .legal-section-item {
    margin-bottom: 2rem;
  }
  
  .legal-section-item h2 {
    font-size: 1.1rem;
  }
  
  .legal-section-item p,
  .legal-section-item ul li {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* 打印样式 */
@media print {
  .navbar {
    display: none;
  }
  
  .legal-section {
    background: white;
    color: black;
    padding: 2rem 0;
  }
  
  .legal-content {
    background: white;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }
  
  .legal-header h1 {
    color: black;
    background: none;
    -webkit-text-fill-color: black;
  }
  
  .legal-section-item h2,
  .legal-section-item h3,
  .legal-section-item p,
  .legal-section-item ul li,
  .company-info p,
  .contact-info p {
    color: black;
  }
  
  .company-info,
  .contact-info {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
  }
}


