/* ─── 重点活动页样式 ─── */

#page-zhongdian .header-section {
  width: 100%;
  padding: 20rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

#page-zhongdian .activities-section {
  width: 100%;
  padding: 20rem 24rem calc(env(safe-area-inset-bottom) + 120rem);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

/* 重点活动 - 单列平铺列表 */
.zhongdian-list {
  display: flex;
  flex-direction: column;
  gap: 32rem;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

/* ═════════ 活动详情卡片（参考图片布局） ═════════ */
.zd-activity-card {
  background: #fff;
  border-radius: 20rem;
  overflow: hidden;
  box-shadow: 0 4rem 16rem rgba(60, 120, 60, 0.12);
}

/* --- 标题栏：深绿色底 + 星级 + 名称 + 序号圆标 --- */
.zd-header-bar {
  display: flex;
  align-items: center;
  background: #2D8A50; /* 深绿色标题栏，与其他页面一致 */
  padding: 18rem 22rem;
  gap: 12rem;
}

.zd-stars {
  color: #FFD54F;
  font-size: 26rem;
  letter-spacing: 2rem;
  flex-shrink: 0;
}

.zd-title-text {
  flex: 1;
  color: #fff;
  font-size: 28rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 右侧圆形序号 */
.zd-num-badge {
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: #FFD97D; /* 金色圆标，与主题 gold 色一致 */
  color: #2D8A50; /* 深绿文字，与标题栏呼应 */
  font-size: 26rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- 描述文字区（白色背景）--- */
.zd-desc-area {
  background: #F5F9F6;
  padding: 28rem 30rem;
}

.zd-desc-text {
  font-size: 27rem;
  color: #3A5A3E;
  line-height: 1.85;
  text-align: justify;
  letter-spacing: 1rem;
}

/* --- 底部大图区域 --- */
.zd-image-area {
  width: 100%;
  background: #E8F5E9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zd-detail-cover {
  width: 100%;
  height: auto;
  display: block;
  min-height: 280rem;
  object-fit: cover;
}

.zd-detail-cover-placeholder {
  width: 100%;
  min-height: 320rem;
  background: linear-gradient(135deg, #81C784, #4CAF50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
