/* 文章头部 banner 区域 */
.article-banner {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background-image: url('../images/details/01.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* 渐变遮罩 */
.article-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.article-banner .container {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-banner-content {
    max-width: 800px;
}

/* 标签 */
.article-tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.article-tag {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

.article-tag-policy {
    background: #e0e7ff;
    color: #4f46e5;
}

.article-tag-project {
    background: #f3f4f6;
    color: #6b7280;
}

.article-tag-hot {
    background: #fee2e2;
    color: #dc2626;
}

.article-tag-essence {
    background: #fef3c7;
    color: #d97706;
}

/* 标题 */
.article-banner-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #fff;
}

.article-banner-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

/* 信息行 */
.article-meta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-meta-icon {
    width: 16px;
    height: 16px;
}

.article-text-orange-500 {
    color: #f97316;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .article-banner {
        padding: 80px 0;
    }

    .article-banner-title {
        font-size: 24px;
    }

    .article-meta-group {
        gap: 12px;
    }
}

/* 文章内容区域 */
/* 主容器布局：左右分栏 */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

/* 左侧主内容区域 */
.main-content {
    flex: 1;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 右侧侧边栏 - 防止样式污染 */
.page-container > .sidebar {
    width: 340px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    position: sticky !important;
    top: 20px !important;
    align-self: flex-start !important;
}

/* 通用卡片样式 - 防止样式污染 */
.sidebar > .card {
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

/* 1. 相关阅读卡片 - 防止样式污染 */
.sidebar > .card.related-read-card {
    padding: 20px !important;
}

/* 卡片头部 - 防止样式污染 */
.sidebar > .card > .card-header {
    display: flex !important;
    align-items: center !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    margin-bottom: 16px !important;
}

.header-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    color: #2563eb;
    /* 主题蓝色 */
}

.read-item {
    padding: 12px;
    border-radius: 8px;
    background-color: #f8faFC;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-item:hover {
    background-color: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.read-item:last-child {
    margin-bottom: 0;
}

.read-item-title {
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 4px;
}

.read-item-desc {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.5;
}

/* 2. 下载指南卡片 - 防止样式污染 */
.sidebar > .card.download-card {
    background: linear-gradient(90deg, #2563eb, #06b6d4) !important;
    padding: 20px !important;
    color: white !important;
}

.download-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.download-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

.download-subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.download-btn {
    width: 100%;
    background: white;
    border: none;
    color: #2563eb;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* 3. 专家咨询卡片 - 防止样式污染 */
.sidebar > .card.consult-card {
    padding: 20px !important;
    border: 1px solid #E5E7EB !important;
}

.consult-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.consult-subtitle {
    font-size: 12px;
    color: #6B7280;
    margin-bottom: 16px;
}

.consult-btn {
    width: 100%;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
    color: white;
    border: none;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* --- 左侧内容样式还原 --- */
.main-title {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 28px 0 12px 0;
}

.section-desc {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.feature-list {
    list-style: none;
    font-size: 14px;
    color: #4B5563;
}

.feature-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    line-height: 1.7;
}

.feature-list li::before {
    content: "•";
    color: #374151;
    position: absolute;
    left: 0;
}

/* 移动端适配 (手机端神还原) */
@media (max-width: 768px) {
    .page-container {
        flex-direction: column;
        gap: 16px;
    }

    .page-container > .sidebar {
        width: 100%;
    }

    .main-content {
        padding: 20px;
    }

    .main-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 16px;
    }
}
/* --- 模块2 --- */
/* 服务模块主容器 - 蓝青渐变背景 */
.glkf-service-section {
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  padding: 48px 16px;
}

/* 内容容器 */
.glkf-container {
  max-width: 1024px;
  margin: 0 auto;
}

/* 头部标题区域 */
.glkf-service-header {
  text-align: center;
  margin-bottom: 32px;
}

.glkf-service-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.glkf-service-subtitle {
  font-size: 16px;
  color: #dbeafe;
}

/* 卡片网格布局 */
.glkf-service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

/* 卡片样式 */
.glkf-service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.glkf-service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

/* 图标容器 */
.glkf-card-icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glkf-card-icon {
  color: #ffffff;
  width: 20px;
  height: 20px;
}

/* 卡片内容区域 */
.glkf-card-content {
  flex: 1;
}

.glkf-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.glkf-service-card:hover .glkf-card-title {
  color: #2563eb;
}

.glkf-card-desc {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
  line-height: 1.5;
}

.glkf-card-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
}

.glkf-link-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.glkf-service-card:hover .glkf-link-arrow {
  transform: translateX(4px);
}

/* 底部咨询按钮 */
.glkf-service-cta {
  text-align: center;
}

.glkf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #ffffff;
  color: #2563eb;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.glkf-cta-btn:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.glkf-cta-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.glkf-cta-btn:hover .glkf-cta-arrow {
  transform: translateX(4px);
}

/* 平板/桌面端响应式适配 */
@media (min-width: 768px) {
  .glkf-service-section {
    padding: 48px 24px;
  }

  .glkf-service-title {
    font-size: 32px;
  }

  .glkf-service-subtitle {
    font-size: 18px;
  }

  .glkf-service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .glkf-cta-btn {
    padding: 20px 40px;
    font-size: 18px;
  }
}