

/* ========== 动态轮播 ========== */
.ticker-bar {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #fff7e6, #fffbf2);
  border: 1px solid #ffe58f;
  border-radius: 8px;
  padding: 8px 12px;
  margin: 12px 12px 0;
  font-size: 13px;
  color: #ad6800;
  cursor: pointer;
  overflow: hidden;
}
.ticker-icon { margin-right: 6px; font-size: 16px; }
.ticker-content {
  flex: 1;
  height: 24px;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  transition: transform 0.5s ease;
}
.ticker-item {
  height: 24px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ticker-arrow { color: #ad6800; font-size: 16px; }

/* ========== 邀请横幅 ========== */
.invite-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #ffa500 100%);
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(255,107,107,0.3);
}
.invite-banner-icon { font-size: 28px; }
.invite-banner-content { flex: 1; }
.invite-banner-title { font-size: 14px; font-weight: 600; }
.invite-banner-sub { font-size: 11px; opacity: 0.9; margin-top: 2px; }

/* ========== 状态管理样式 ========== */
.tag-success[style*="working"] { background: #e8f9ee; color: var(--success); }

/* ========== 激活推荐官页面 ========== */
.promo-hero-content .promo-subtitle { line-height: 1.6; }

/* ========== 推荐官：岗位卡片佣金标签 ========== */
.job-card-commission {
  font-size: 12px;
  color: #e6a23c;
  background: #fff8e1;
  padding: 4px 10px;
  margin: 4px 0 -4px 0;
  border-radius: 4px;
  display: inline-block;
}

/* ========== 活动中心卡片 ========== */
.activity-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: transform 0.15s;
}
.activity-card:active { transform: scale(0.98); }
.activity-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.activity-card-body {
  padding: 12px 14px;
}
.activity-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}
.activity-card-time {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
}
.activity-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 10px;
}
.activity-card-action {
  text-align: right;
}

/* ========== 活动详情 ========== */
.activity-detail-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.activity-detail-meta {
  margin-top: 4px;
}
.activity-detail-content {
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.8;
  padding: 4px 0;
}
