/* ========== 走进征信列表页专用样式 ========== */

/* 页面主体容器 */
#other {
  width: 100%;
  background: #ffffff;
}

#other .container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* 页面标题区 */
.page-header {
  margin-bottom: 32px;
}

.page-title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
  color: var(--text-main);
}

.page-desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-muted);
}

/* 最新发布推荐卡 */
.featured-card {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #fef2f1 0%, #fff5f4 50%, #fafbfc 100%);
  border: 1px solid rgba(221, 48, 35, 0.1);
  padding: 32px 36px;
  margin-bottom: 40px;
  text-decoration: none;
  color: var(--text-main);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.featured-card:hover {
  box-shadow: 0 12px 32px rgba(221, 48, 35, 0.1);
  transform: translateY(-2px);
}

.featured-badge {
  position: absolute;
  top: 16px;
  left: 20px;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--brand);
  letter-spacing: 1px;
}

.featured-body {
  flex: 1;
  padding-top: 8px;
}

.featured-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--text-main);
  max-width: 640px;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.meta-dot {
  color: #ddd;
}

.featured-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand);
  transition: transform 0.2s ease;
}

.featured-card:hover .featured-cta {
  transform: translateX(4px);
}

.featured-decoration {
  width: 140px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-decoration::before {
  content: "";
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 48, 35, 0.06) 0%, transparent 70%);
}

/* 文章分组 */
.article-section {
  margin-bottom: 36px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
}

.section-title::before,
.section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-title-text {
  white-space: nowrap;
}

/* 卡片网格 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* 文章卡片 */
.article-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: var(--text-main);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  min-height: 120px;
}

.article-card:hover {
  border-color: rgba(221, 48, 35, 0.2);
  box-shadow: 0 8px 24px rgba(221, 48, 35, 0.06);
  transform: translateY(-2px);
}

.card-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-title {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card:hover .card-title {
  color: var(--brand);
}

.card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.article-card:hover .card-arrow {
  color: var(--brand);
  transform: translateX(4px);
}

