/**
 * 长沙市峰言科技有限公司 - 页面专属样式
 */

/* ============ 首页 - 顶部横幅 ============ */
.homepage-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: var(--color-white);
  padding: var(--space-xxl) 0;
  max-height: 300px;
  overflow: hidden;
}

.homepage-banner-inner {
  width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.homepage-banner h1 {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.homepage-banner-subtitle {
  font-size: var(--text-md);
  opacity: 0.85;
  margin-bottom: var(--space-lg);
}

.homepage-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.banner-cta-btn {
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.banner-cta-primary {
  background: var(--brand-accent);
  color: var(--color-white);
  border-color: var(--brand-accent);
}

.banner-cta-primary:hover {
  background: var(--brand-accent-dark);
}

.banner-cta-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.banner-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* ============ 首页 - 产品网格 ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.product-grid-item {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
}

.product-grid-item:hover {
  box-shadow: var(--shadow-md);
}

.product-grid-thumb {
  position: relative;
  width: 100%;
  padding-top: 65%;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.product-grid-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-grid-tags {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 4px;
}

.product-grid-info {
  padding: 12px;
}

.product-grid-name {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-grid-name a {
  color: inherit;
}

.product-grid-name a:hover {
  color: var(--brand-primary);
}

.product-grid-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-grid-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-grid-price {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brand-accent);
}

.product-grid-price .price-symbol {
  font-size: var(--text-xs);
  font-weight: 500;
}

.product-grid-price-old {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-left: 4px;
  font-weight: 400;
}

.product-grid-sold {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============ 首页 - 热销横滑区域 ============ */
.hot-products-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
  padding-bottom: var(--space-sm);
}

.hot-products-scroll::-webkit-scrollbar {
  height: 4px;
}

.hot-products-scroll::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 2px;
}

.hot-products-track {
  display: flex;
  gap: var(--space-md);
  min-width: 100%;
}

.hot-product-card {
  width: 200px;
  flex-shrink: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
}

.hot-product-card:hover {
  box-shadow: var(--shadow-md);
}

.hot-product-thumb {
  width: 100%;
  height: 130px;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.hot-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-product-info {
  padding: 10px;
}

.hot-product-name {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hot-product-name a {
  color: var(--color-text-primary);
}

.hot-product-name a:hover {
  color: var(--brand-primary);
}

.hot-product-price {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brand-accent);
}

/* ============ 首页 - 新品垂直列表 ============ */
.new-products-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.new-product-row {
  display: flex;
  gap: var(--space-md);
  padding: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition-normal);
}

.new-product-row:hover {
  box-shadow: var(--shadow-sm);
}

.new-product-row-thumb {
  width: 100px;
  height: 75px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.new-product-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-product-row-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.new-product-row-name {
  font-size: var(--text-base);
  font-weight: 500;
}

.new-product-row-name a {
  color: var(--color-text-primary);
}

.new-product-row-name a:hover {
  color: var(--brand-primary);
}

.new-product-row-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.new-product-row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============ 首页 - 分类精选标签页 ============ */
.category-tab-content {
  display: none;
}

.category-tab-content.active {
  display: block;
}

/* ============ 首页 - 统计栏 ============ */
.stats-ribbon {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg) 0;
  margin: var(--space-xl) 0;
}

.stats-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xxl);
}

.stats-item {
  text-align: center;
}

.stats-number {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--brand-primary);
}

.stats-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ============ 首页 - 新闻列表 ============ */
.news-preview-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.news-preview-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
}

.news-preview-card:hover {
  box-shadow: var(--shadow-md);
}

.news-preview-thumb {
  width: 100%;
  height: 160px;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.news-preview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-preview-body {
  padding: 12px;
}

.news-preview-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.news-preview-title {
  font-size: var(--text-base);
  font-weight: 500;
  margin-bottom: 6px;
}

.news-preview-title a {
  color: var(--color-text-primary);
}

.news-preview-title a:hover {
  color: var(--brand-primary);
}

.news-preview-excerpt {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============ 首页 - 合作伙伴 ============ */
.partner-wall {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.partner-badge {
  padding: 10px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* ============ 服务列表页 ============ */
.service-listing-main {
  flex: 1;
}

.service-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.service-sort-group {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
}

.service-sort-btn {
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.service-sort-btn:hover,
.service-sort-btn.active {
  background: var(--brand-primary);
  color: var(--color-white);
}

.service-result-count {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* 服务卡片大尺寸 */
.service-card-large {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: box-shadow var(--transition-normal);
}

.service-card-large:hover {
  box-shadow: var(--shadow-md);
}

.service-card-thumb {
  width: 220px;
  height: 165px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-top {
  flex: 1;
}

.service-card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.service-card-title a {
  color: var(--color-text-primary);
}

.service-card-title a:hover {
  color: var(--brand-primary);
}

.service-card-tags {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}

.service-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: var(--leading-relaxed);
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-actions {
  display: flex;
  gap: var(--space-sm);
}

/* ============ 服务详情页 ============ */
.service-detail-top {
  display: flex;
  gap: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.service-detail-gallery {
  width: 400px;
  flex-shrink: 0;
}

.service-detail-main-img {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: var(--space-sm);
}

.service-detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-info {
  flex: 1;
}

.service-detail-name {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.service-detail-price-box {
  background: var(--brand-primary-bg);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.service-detail-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.service-detail-meta {
  display: flex;
  gap: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.service-detail-buttons {
  display: flex;
  gap: var(--space-md);
}

/* 详情标签页 */
.detail-tab-section {
  margin-bottom: var(--space-lg);
}

.detail-tab-content {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: var(--space-lg);
}

.detail-tab-panel {
  display: none;
}

.detail-tab-panel.active {
  display: block;
}

.detail-description {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-primary);
}

.detail-description p {
  margin-bottom: var(--space-md);
}

/* 评价列表 */
.review-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.review-item {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}

.review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-primary);
}

.review-user-info {
  flex: 1;
}

.review-user-name {
  font-size: var(--text-sm);
  font-weight: 500;
}

.review-user-company {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.review-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.review-content {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-top: var(--space-sm);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  padding: 12px 16px;
  font-size: var(--text-base);
  font-weight: 500;
  background: var(--color-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::after {
  content: "+";
  font-size: 18px;
  color: var(--color-text-muted);
  transition: transform var(--transition-fast);
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.faq-item.open .faq-answer {
  padding: 12px 16px;
  max-height: 500px;
}

/* 相关服务 */
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

/* 最近浏览 */
.recent-view-row {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
}

.recent-view-item {
  width: 140px;
  flex-shrink: 0;
  text-align: center;
}

.recent-view-item img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-light);
  margin-bottom: 4px;
}

.recent-view-item .recent-view-name {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============ 关于我们页 ============ */
.about-intro {
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.about-license-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.license-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 10px 14px;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
}

.license-item strong {
  color: var(--color-text-primary);
  min-width: 80px;
}

/* 团队 */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.team-member-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.team-member-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  background: var(--color-bg-alt);
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: 4px;
}

.team-member-title {
  font-size: var(--text-sm);
  color: var(--brand-primary);
  margin-bottom: var(--space-sm);
}

.team-member-bio {
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  text-align: left;
}

/* 发展历程 */
.timeline-track {
  position: relative;
  padding-left: 24px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--color-border);
}

.timeline-node {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline-node::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-primary);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--brand-primary);
}

.timeline-date {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 4px;
}

.timeline-content {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* 资质认证 */
.qualification-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.qualification-item {
  padding: var(--space-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.qualification-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  background: var(--brand-primary-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.qualification-icon svg {
  width: 24px;
  height: 24px;
}

.qualification-name {
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 4px;
}

.qualification-status {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* 数据概览 */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.about-stat-box {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}

.about-stat-num {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--brand-primary);
}

.about-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ============ 联系我们页 ============ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--brand-primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-title {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

/* ============ 下单 / 报名页 ============ */
.order-form-panel {
  max-width: 680px;
  margin: 0 auto;
}

/* ============ 支付页 ============ */
.payment-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-lg);
  align-items: start;
}

.payment-service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: sticky;
  top: calc(var(--header-total-height) + var(--space-md));
}

.payment-service-thumb {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: var(--space-md);
}

.payment-service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-service-name {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.payment-service-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: var(--leading-relaxed);
}

.payment-service-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

/* ============ 新闻页 ============ */
.news-article-card {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  transition: box-shadow var(--transition-normal);
}

.news-article-card:hover {
  box-shadow: var(--shadow-md);
}

.news-article-thumb {
  width: 240px;
  height: 160px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.news-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-body {
  flex: 1;
}

.news-article-category {
  display: inline-block;
  padding: 2px 8px;
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  font-size: var(--text-xs);
  border-radius: 2px;
  margin-bottom: var(--space-sm);
}

.news-article-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.news-article-title a {
  color: var(--color-text-primary);
}

.news-article-title a:hover {
  color: var(--brand-primary);
}

.news-article-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-article-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============ 招聘页 ============ */
.career-position-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.career-position-header {
  padding: var(--space-lg);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
}

.career-position-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 4px;
}

.career-position-meta {
  display: flex;
  gap: var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.career-salary {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--brand-accent);
  white-space: nowrap;
}

.career-position-body {
  padding: 0 var(--space-lg) var(--space-lg);
}

.career-section-title {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
}

.career-req-list li,
.career-resp-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.career-req-list li::before,
.career-resp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-primary);
}

.career-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.career-benefit-tag {
  padding: 4px 12px;
  background: var(--brand-primary-bg);
  color: var(--brand-primary);
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
}

/* ============ 法务/政策文档页 ============ */
.legal-document {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-xxl) var(--space-xl);
}

.legal-document h1 {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.legal-update-date {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.legal-document h2 {
  font-size: var(--text-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.legal-document p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.legal-document ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-document ul li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.legal-document ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--brand-primary);
}

/* ============ 404 页面 ============ */
.error-page {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.error-code {
  font-size: 96px;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-message {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.error-search-box {
  max-width: 400px;
  margin: 0 auto var(--space-xl);
  position: relative;
}

.error-search-box input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
}

.error-search-box input:focus {
  border-color: var(--brand-primary);
}

.error-search-box button {
  position: absolute;
  right: 2px;
  top: 2px;
  bottom: 2px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  cursor: pointer;
}

.error-quick-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
