/* 媒体详情页（布局参考资讯详情 + 效果图模块） */

/* 面包屑通栏 */
.breadcrumb-bar {
  background: #f5f5f5;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0;
}

.breadcrumb-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.breadcrumb {
  margin: 0;
  font-size: 12px;
  color: #888;
  text-align: left;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #111;
  text-decoration: underline;
}

/* 主区域：与 news_detail .article-page 一致 */
.media-detail-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 24px 56px;
  box-sizing: border-box;
}

.media-detail-title {
  margin: 0 0 24px;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  color: #111;
}

/* 展示图轮播 */
.media-showcase {
  margin: 0 0 36px;
  background: #eaeaea;
  border-radius: 2px;
  overflow: hidden;
}

.media-showcase__viewport {
  overflow: hidden;
}

.media-showcase__track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.media-showcase__slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e0e0e0;
}

.media-showcase__slide img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
}

.media-showcase__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px 18px;
  background: #eaeaea;
}

.media-showcase__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.media-showcase__dot.is-active {
  background: #c00;
  box-shadow: none;
  transform: scale(1.12);
}

/* 正文块 13px */
.media-detail-body {
  font-size: 13px;
  line-height: 1.9;
  color: #333;
  text-align: left;
}

.media-section {
  margin-bottom: 28px;
}

.media-section:last-child {
  margin-bottom: 0;
}

.media-section__title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.media-section p {
  margin: 0;
  text-align: justify;
}

/* 参数列表 */
.media-specs {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 20px;
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.media-specs dt {
  margin: 0;
  font-weight: 700;
  color: #222;
}

.media-specs dd {
  margin: 0;
  color: #444;
}

/* 投放品牌 */
.media-brands {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

.media-brands li {
  white-space: nowrap;
}

@media (max-width: 800px) {
  .media-detail-page {
    padding: 24px 16px 40px;
  }

  .media-detail-title {
    font-size: 17px;
  }

  .media-showcase__slide {
    min-height: 200px;
  }

  .media-specs {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .media-specs dt {
    margin-top: 10px;
  }

  .media-specs dt:first-child {
    margin-top: 0;
  }

  .media-specs dd {
    margin-bottom: 4px;
  }
}
