/* ==================== 行业前景页 - 专用样式 ==================== */

/* Tab 内容面板切换 */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* 内容主体区域 */
.hangye-main {
  width: 1512px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

/* 文章卡片网格 */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
}

/* 文章卡片 */
.article-card {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid #bccbdd;
  margin: 0 34px 24px 0;
}

.article-grid a:nth-of-type(even) .article-card {
  margin-right: 0;
}

.article-card:hover {
  box-shadow: var(--shadow-hover);
}

/* 推荐卡片 - 青色背景 */
.article-card:hover {
  background: var(--primary);
  color: var(--white);
}

.article-card:hover .article-title {
  color: var(--white);
}

.article-card:hover .article-summary {
  color: rgba(255, 255, 255, 0.85);
}

.article-card:hover .article-arrow {
  color: var(--white);
}

/* 日期标签区域 */
.article-date {
  min-width: 70px;
  padding: 0;
  color: #121212;
  flex-shrink: 0;
  text-align: right;
}

.article-date-year {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.85;
  margin-bottom: 4px;
  border-bottom: 2px solid #ffba00;
  padding-bottom: 10px;
  margin-top: 22px;
}

.article-date-day {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 10px;
  letter-spacing: 1px;
}

.article-card:hover .article-date-year, .article-card:hover .article-date {
  color: #fff;
}

/* 文章内容区域 */
.article-content {
  flex: 1;
  padding: 22px 34px 22px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
}

.article-title {
  font-size: 18px;
  font-weight: 600;
  color: #121212;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card.featured:hover .article-title {
  color: var(--white);
}

.article-summary {
  font-size: 14px;
  color: #5b5b5b;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.article-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5b5b5b;
  font-size: 18px;
}

.article-arrow svg {
  width: 18px;
  height: 18px;
}