@charset 'utf-8';
/* ============================================================
   一级页面/css/venue.css —— 場地租賃 页面样式
   说明：
   1. 1rem = 100px（与 common.css 自适应换算一致）
   2. 兼容 IE11：Flexbox 均书写 -ms- 前缀；关键尺寸提供 px 兜底
   3. 禁止 CSS Grid；头尾/面包屑/分页复用 common/topbottom-hh.css
   ============================================================ */

/* ---------- 内容区 ---------- */
.venue-main {
  background: #f5f2fb;
  padding-bottom: 10px;
  padding-bottom: 0.1rem;
}
.venue-inner {
  width: 1530px;
  width: 15.3rem;
  margin: 0 auto;
  padding-bottom: 30px;
  padding-bottom: 0.3rem;
}

/* ---------- 场地内页 Tab（場地介紹/園區信息/如何前往） ---------- */
.venue-subtab {
  width: 100%;
  height: 80px;
  height: 0.8rem;
  background: #ffffff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  box-sizing: border-box;
}
.venue-subtab a {
  display: block;
  max-width: 33.3%;
  height: 80px;
  height: 0.8rem;
  line-height: 80px;
  line-height: 0.8rem;
  margin: 0 50px;
  margin: 0 0.5rem;
  text-align: center;
  font-family: "Microsoft YaHei";
  font-size: 20px;
  font-size: 0.2rem;
  font-weight: 400;
  color: #3d3d3d;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 当前项：紫色 + 4px 下划线 */
.venue-subtab a.cur {
  font-weight: 700;
  color: #6a52a9;
  box-shadow: inset 0 -4px 0 0 #6a52a9;
}
.venue-subtab a:hover {
  font-weight: 700;
  color: #6a52a9;
}

/* ---------- 场地介绍内容 ---------- */
.venue-content-tab{
  background: #ffffff;
  padding: 0 25px;
  padding: 0 0.25rem;
}
.venue-content {
  background: #ffffff;
  padding: 98px 0 0;
  padding: 0.98rem 0 0;
  box-sizing: border-box;
  padding-bottom: 0.66rem;
  padding-top: 0.38rem;
  border-top: 1px solid #ebebeb;
}
.venue-title {
  font-family: "Microsoft YaHei";
  font-size: 24px;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 40px;
  line-height: 0.4rem;
  color: #3d3d3d;
}
.venue-desc {
  margin-top: 21px;
  margin-top: 0.21rem;
  font-family: "Microsoft YaHei";
  font-size: 18px;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 32px;
  line-height: 0.32rem;
  color: #3d3d3d;
  text-align: left;
  text-indent: 2em;
  width: 100%;
  overflow-x: auto;
}
.venue-desc img{
  display: block;
  max-width: 100% !important;
  margin: auto;
}
.venue-desc p {
  margin-bottom: 0.2rem;
}
.venue-desc p:last-child {
  margin-bottom: 0;
}
/* 场地大图 */
.venue-img {
  width: 1488px;
  width: 14.88rem;
  margin: 53px auto 0;
  margin: 0.53rem auto 0;
}
.venue-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- 响应式（平板/移动端 ≤768px） ---------- */
@media screen and (max-width: 768px) {
  .venue-main {
    padding: 0 0.2rem 0.1rem;
  }
  .venue-inner {
    width: 100%;
    padding-bottom: 0.2rem;
    box-sizing: border-box;
  }
  .venue-subtab {
    height: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.1rem 0;
    flex-wrap: nowrap;
  }
  .venue-subtab a {
    width: auto;
    height: auto;
    line-height: 0.5rem;
    margin: 0 0.2rem;
    font-size: 0.26rem;
  }
  .venue-content {
    padding: 0.4rem 0 0;
  }
  .venue-title {
    font-size: 0.3rem;
  }
  .venue-desc {
    font-size: 0.26rem;
    line-height: 0.42rem;
  }
  .venue-img {
    width: 100%;
    margin-top: 0.3rem;
  }
  .venue-inner .hh-crumb,
  .venue-inner .hh-crumb a {
    font-size: 0.26rem;
  }
}
