/* 活动卡片列表 V2 -- 蓝湖设计稿(参考 lanhu_funengpeixunliebiao) */

.activity-list-v2 {
  background: linear-gradient(180deg, #E8F2FE 0%, #FFFFFF 100%);
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
.activity-list-v2 .container-v2 { max-width: 1420px; margin: 0 auto; padding: 0 40px; box-sizing: border-box; }

/* Hero -- 1920×460 背景图,内容左对齐 (left:250 ≈ 13%),顶部 150px */
.activity-list-v2 .hero {
  position: relative;
  width: 100%;
  height: 460px;
  background: url(../../img/point-line/activity-card-list/hero-bg.png) 100% no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.activity-list-v2 .hero-inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 150px 40px 0;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.activity-list-v2 .hero h1 {
  font-size: 60px;
  font-weight: 700;
  color: #222426;
  margin: 0 0 16px;
  line-height: 60px;
  letter-spacing: 0;
  white-space: nowrap;
}
.activity-list-v2 .hero p {
  font-size: 28px;
  font-weight: 500;
  color: #333333;
  margin: 0;
  line-height: 28px;
  white-space: nowrap;
}

/* 筛选区 -- 直接铺在页面背景上,与设计稿 group_15/group_16 一致 */
.activity-list-v2 .filter-section {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 60px 0 0;
  box-sizing: border-box;
  position: relative;
}

/* 浮动搜索条 -- 设计稿 block_11: 900×60,16px 圆角,半透明白底,蓝色渐变按钮 */
/* margin-top: -90px 让搜索框上移,一半浮在 hero 背景图上 */
.activity-list-v2 .search-bar {
  width: 900px;
  max-width: 100%;
  height: 60px;
  margin: -90px auto 30px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(27, 103, 249, 0.1);
  display: flex;
  align-items: center;
  padding: 0 6px 0 26px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.activity-list-v2 .search-bar .search-input {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 18px;
  color: #333;
  font-family: inherit;
}
.activity-list-v2 .search-bar .search-input::placeholder { color: #999; }
.activity-list-v2 .search-bar .search-btn {
  flex-shrink: 0;
  width: 166px;
  height: 48px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(90deg, #1A5FF8 0%, #25B8FD 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  transition: opacity 0.15s;
}
.activity-list-v2 .search-bar .search-btn:hover { opacity: 0.9; }
.activity-list-v2 .search-bar .search-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.activity-list-v2 .filter-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}
.activity-list-v2 .filter-label {
  font-size: 20px;
  font-weight: 500;
  color: #3F5170;
  flex-shrink: 0;
  width: 100px;
  text-align: center;
  line-height: 20px;
}
.activity-list-v2 .filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1;
}
.activity-list-v2 .filter-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  min-width: 100px;
  padding: 0 18px;
  font-size: 20px;
  font-weight: 500;
  color: #3F5170;
  background: #FFFFFF;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  user-select: none;
  line-height: 20px;
}
.activity-list-v2 .filter-tag:hover {
  color: #1A5FF8;
  background: #EAF2FF;
}
.activity-list-v2 .filter-tag.active {
  color: #FFFFFF;
  background: linear-gradient(90deg, #1A5FF8 0%, #25B8FD 100%);
}

/* 卡片网格 -- 与设计稿 group_17 顶部 60px 间距 */
.activity-list-v2 .activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 0 48px;
}
.activity-list-v2 .activity-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(27, 103, 249, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.activity-list-v2 .activity-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(27, 103, 249, 0.16);
}
.activity-list-v2 .card-cover {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #F0F2F5;
}
.activity-list-v2 .card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.activity-list-v2 .status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  height: 30px;
  min-width: 64px;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 8px;
  line-height: 30px;
  text-align: center;
  box-sizing: border-box;
}
.activity-list-v2 .status-badge.status-10 { background: #22C55E; }   /* 报名中 - 绿 */
.activity-list-v2 .status-badge.status-05 { background: #F8AC59; }   /* 报名未开始 - 橙 */
.activity-list-v2 .status-badge.status-20 { background: #A3A9A6; }   /* 报名已结束 - 灰 */
.activity-list-v2 .status-badge.status-30 { background: #23C6C8; }   /* 活动进行中 - 青 */
.activity-list-v2 .status-badge.status-40 { background: #909399; }   /* 活动已结束 - 深灰 */

.activity-list-v2 .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.activity-list-v2 .card-type-row {
  margin-bottom: 12px;
}
.activity-list-v2 .card-title-row {
  margin-bottom: 8px;
}
.activity-list-v2 .type-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 52px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  line-height: 14px;
  box-sizing: border-box;
}
.activity-list-v2 .type-tag.type-1 { color: #007AFF; background: rgba(25, 77, 248, 0.1); }   /* 宣讲 - 蓝 */
.activity-list-v2 .type-tag.type-2 { color: #08A5E1; background: rgba(8, 165, 225, 0.1); }   /* 培训 - 青 */
.activity-list-v2 .type-tag.type-3 { color: #FF6200; background: rgba(255, 98, 0, 0.1); }    /* 路演 - 橙 */
.activity-list-v2 .type-tag.type-5 { color: #7256E8; background: rgba(114, 86, 232, 0.12); } /* 才聚武昌 - 紫 */
.activity-list-v2 .card-name {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 32px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}
.activity-list-v2 .card-name:hover { color: #1A5FF8; }
.activity-list-v2 .card-info {
  flex: 1;
  margin-bottom: 20px;
}
.activity-list-v2 .info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #3F5170;
  line-height: 16px;
  margin-bottom: 8px;
}
.activity-list-v2 .info-row:last-child { margin-bottom: 0; }
.activity-list-v2 .info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.activity-list-v2 .info-icon.icon-time { background-image: url(../../img/point-line/activity-card-list/icon-time.png); }
.activity-list-v2 .info-icon.icon-loc  { background-image: url(../../img/point-line/activity-card-list/icon-location.png); }
.activity-list-v2 .info-icon.icon-user { background-image: url(../../img/point-line/activity-card-list/icon-user.png); }
.activity-list-v2 .info-icon.icon-deadline { background-image: url(../../img/point-line/activity-card-list/icon-deadline.png); }
.activity-list-v2 .info-text {
  flex: 1;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.activity-list-v2 .card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #F0F2F5;
}
.activity-list-v2 .price-slot {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.activity-list-v2 .price {
  font-size: 20px;
  font-weight: 900;
  color: #007AFF;
  line-height: 20px;
}
.activity-list-v2 .price.free { color: #007AFF; }
.activity-list-v2 .slots {
  font-size: 16px;
  font-weight: 500;
  color: #3F5170;
  line-height: 16px;
}
.activity-list-v2 .btn-group {
  display: flex;
  gap: 16px;
}
.activity-list-v2 .btn-primary,
.activity-list-v2 .btn-disabled,
.activity-list-v2 .btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 112px;
  height: 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: none;
  line-height: 16px;
  box-sizing: border-box;
}
.activity-list-v2 .btn-primary {
  background: linear-gradient(90deg, #1A5FF8 0%, #25B8FD 100%);
  color: #fff;
}
.activity-list-v2 .btn-primary:hover { opacity: 0.9; }
.activity-list-v2 .btn-primary,
.activity-list-v2 .btn-link {
  width: 112px;
}
.activity-list-v2 .btn-disabled {
  width: auto;
  min-width: 112px;
  padding: 0 16px;
  background: #E4E7ED;
  color: #909399;
  cursor: not-allowed;
}
.activity-list-v2 .btn-link {
  background: #fff;
  color: #3F5170;
  border: 1px solid #DDDDDD;
}
.activity-list-v2 .btn-link:hover { background: #F5F7FA; }
.activity-list-v2 .btn-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.activity-list-v2 .btn-primary .btn-arrow { background-image: url(../../img/point-line/activity-card-list/icon-arrow-primary.png); }
.activity-list-v2 .btn-link .btn-arrow { background-image: url(../../img/point-line/activity-card-list/icon-arrow-link.png); }
.activity-list-v2 .btn-disabled .btn-arrow { background-image: url(../../img/point-line/activity-card-list/icon-arrow-primary.png); filter: grayscale(1) opacity(0.5); }

/* 空态 / 加载更多 */
.activity-list-v2 .empty-hint {
  text-align: center;
  padding: 80px 0;
}
.activity-list-v2 .empty-hint .img-hint { width: 120px; }
.activity-list-v2 .empty-hint .txt-desc { color: #999; margin-top: 12px; font-size: 14px; }
.activity-list-v2 .hidden { display: none; }
.activity-list-v2 .load-more-wrap {
  text-align: center;
  padding: 20px 0 48px;
}
.activity-list-v2 .load-more-wrap button {
  padding: 10px 36px;
  background: #fff;
  border: 1px solid #1B67F9;
  color: #1B67F9;
  border-radius: 22px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
}
.activity-list-v2 .load-more-wrap button:hover { background: #EAF2FF; }
.activity-list-v2 .load-more-wrap button:disabled { color: #999; border-color: #DCDFE6; cursor: not-allowed; }

/* 响应式 */
@media (max-width: 1200px) {
  .activity-list-v2 .container-v2 { width: 96%; padding: 0 16px; }
  .activity-list-v2 .hero-inner { padding: 150px 16px 0; }
  .activity-list-v2 .filter-section { padding-top: 60px; }
}
@media (max-width: 900px) {
  .activity-list-v2 .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-list-v2 .hero h1 { font-size: 36px; line-height: 1.2; }
  .activity-list-v2 .hero p { font-size: 18px; }
  .activity-list-v2 .hero { height: 360px; }
  .activity-list-v2 .hero-inner { padding: 100px 24px 0; }
  .activity-list-v2 .filter-section { padding: 60px 0 0; }
  .activity-list-v2 .search-bar { width: 100%; margin-top: -20px; height: 52px; padding: 0 4px 0 16px; }
  .activity-list-v2 .search-bar .search-input { font-size: 15px; }
  .activity-list-v2 .search-bar .search-btn { width: 96px; height: 40px; font-size: 15px; }
  .activity-list-v2 .search-bar .search-icon { width: 16px; height: 16px; }
  .activity-list-v2 .filter-row { flex-wrap: wrap; }
  .activity-list-v2 .filter-label { width: auto; text-align: left; font-size: 16px; }
  .activity-list-v2 .filter-tag { height: 40px; min-width: 72px; font-size: 15px; padding: 0 12px; }
  .activity-list-v2 .card-name { font-size: 20px; line-height: 24px; }
  .activity-list-v2 .info-row { font-size: 14px; line-height: 14px; }
  .activity-list-v2 .info-icon { width: 16px; height: 16px; }
  .activity-list-v2 .price { font-size: 18px; }
  .activity-list-v2 .slots { font-size: 14px; }
  .activity-list-v2 .btn-primary, .activity-list-v2 .btn-disabled, .activity-list-v2 .btn-link { width: auto; min-width: 96px; height: 36px; font-size: 14px; }
}
@media (max-width: 600px) {
  .activity-list-v2 .activity-grid { grid-template-columns: 1fr; }
  .activity-list-v2 .hero { height: 240px; }
  .activity-list-v2 .hero-inner { padding: 80px 24px 0; }
  .activity-list-v2 .hero h1 { font-size: 32px; }
  .activity-list-v2 .hero p { font-size: 16px; }
}
