@charset 'utf-8';
/* ============================================================
   一级页面/css/review.css —— 活動專題/精彩回顧 页面样式（活动中心）
   说明：
   1. 1rem = 100px（与 common.css 自适应换算一致）
   2. 兼容 IE11：Flexbox 均书写 -ms- 前缀；关键尺寸提供 px 兜底
   3. 禁止 CSS Grid；头尾/面包屑/分页复用 common/topbottom-hh.css
   ============================================================ */
body {
  overflow-x: hidden;
}
.hh-pagination {
  padding-top: 29px;
  padding-top: .29rem;
}
/* ---------- 内容区 ---------- */
.review-main {
  background: url('//hunghom.net/template/20019/2026/8/19/2006907/images/deco-bg.png') no-repeat;
  background-size: cover;
  padding-bottom: 10px;
  padding-bottom: 0.1rem;
  background-attachment: fixed;
}
.review-inner {
  width: 1530px;
  width: 15.3rem;
  margin: 0 auto;
  padding-bottom: 30px;
  padding-bottom: 0.3rem;
}

/* ---------- 活动卡片网格（3 行 x 3 列） ---------- */
.review-grid {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  gap: .27rem;
}
.review-card {
  width: 492px;
  width: 4.92rem;
  margin-bottom: 30px;
  margin-bottom: 0.3rem;
  background: #ffffff;
  box-sizing: border-box;
  padding: 20px 20px 20px;
  padding: 0.2rem;
  text-decoration: none;
  display: block;
}
/* 封面图 */
.review-cover {
  width: 452px;
  width: 4.52rem;
  height: 278px;
  height: 2.78rem;
  overflow: hidden;
}
.review-cover img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  -ms-transition: -ms-transform 0.5s ease;
  object-fit: cover;
}
.review-card:hover .review-cover img {
  transform: scale3d(1.05, 1.05, 1.05);
  -webkit-transform: scale3d(1.05, 1.05, 1.05);
  -ms-transform: scale3d(1.05, 1.05, 1.05);
}
/* 标题 */
.review-title {
  margin-top: 10px;
  margin-top: 0.1rem;
  height: 72px;
  height: 0.72rem;
  padding-left: 10px;
  padding-left: 0.1rem;
  font-family: "Microsoft YaHei";
  font-size: 20px;
  font-size: 0.2rem;
  font-weight: 700;
  line-height: 167.25%;
  color: #3d3d3d;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card:hover .review-title {
  color: #6440c3;
}
/* 活动信息（日期/时间/地点） */
.review-info {
  margin-top: 10px;
  margin-top: 0.1rem;
  padding-left: 10px;
  padding-left: 0.1rem;
}
.review-info p {
  height: 35px;
  height: 0.35rem;
  font-family: "Microsoft YaHei";
  font-size: 16px;
  font-size: 0.16rem;
  line-height: 24px;
  line-height: 0.24rem;
  color: #999999;
  position: relative;
  padding-left: 28px;
  padding-left: 0.28rem;
}
.review-info p::before {
  content: "";
  background: url("../images/icon-date.svg") no-repeat;
  background-size: cover;
  width: 16px;
  width: 0.16rem;
  height: 16px;
  height: 0.16rem;
  position: absolute;
  left: 0;
  top: 4px;
  top: .04rem;
}
.review-info p.address::before {
  content: '';
  position: absolute;
  background: url('../images/icon-loc.svg') no-repeat;
  background-size: 100% 100%;
}
.review-info p.address {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.review-info p.date {
  height: 55px;
  height: .55rem;
}
/* ---------- 分页器 ---------- */
.review-inner .hh-pagination {
  margin-bottom: 0;
}

/* ---------- 响应式（平板/移动端 ≤1024px） ---------- */
@media screen and (max-width: 1024px) {
  .review-main {
    padding: 0 0.2rem 0.1rem;
  }
  .review-inner {
    width: 100%;
    padding-bottom: 0.2rem;
    box-sizing: border-box;
  }
  /* 移动端：卡片单列展示 */
  .review-grid {
    display: block;
  }
  .review-card {
    width: 100%;
    margin-bottom: 0.25rem;
    padding: 0.2rem;
  }
  .review-cover {
    width: 100%;
    height: 3.4rem;
  }
  .review-title {
    font-size: 0.28rem;
    line-height: .42rem;
    height: .9rem;
  }
  .review-info p {
    font-size: 0.26rem;
    height: 0.5rem;
    padding-left: 0.32rem;
  }
  .review-info p::before {
    width: 0.24rem;
    height: 0.24rem;
    top: 0.01rem;
  }
  .review-info p.date {
    height: 1rem;
    line-height: .42rem;
    height: 1rem;
  }
  .review-info p.date::before {
    top: 0.05rem;
  }
  .review-inner .hh-crumb,
  .review-inner .hh-crumb a {
    font-size: 0.26rem;
  }
}
