/* ===== 整个内容区域的包裹（只是局部微调留白，不会影响全站） ===== */
.mhlistx-wrapper {
  padding: 40px 0 60px 0;
  font-family: "Microsoft YaHei", sans-serif;
  color: #333;
}

/* ===== 左侧列表：卡片化 ===== */
.mhlistx-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mhlistx-card {
  display: flex;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  margin-bottom: 24px;
  transition: all .3s ease;
}
.mhlistx-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

/* 左侧缩略图 */
.mhlistx-thumb {
  flex: 0 0 260px;
  max-width: 260px;
  overflow: hidden;
  background: #f6f6f6;
}
.mhlistx-thumb .mhlistx-thumb-inner {
  width: 100%;
  height: 100%;
}
.mhlistx-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.mhlistx-card:hover .mhlistx-thumb img {
  transform: scale(1.05);
}

/* 右侧文字区域 */
.mhlistx-textbox {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mhlistx-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b2345;
  line-height: 1.4;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color .3s ease;
  display: block;
}
.mhlistx-title:hover {
  color: #0077ff;
}
.mhlistx-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 12px;
}
.mhlistx-meta {
  font-size: 13px;
  color: #999;
}

/* ===== 右侧侧栏重新设计 ===== */
.mhlistx-sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 20px 20px 10px;
}

.mhlistx-sidebar-head {
  font-size: 16px;
  font-weight: 700;
  color: #0b2345;
  line-height: 1.4;
  margin-bottom: 16px;
  border-left: 4px solid #0077ff;
  padding-left: 10px;
}

.mhlistx-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mhlistx-side-item {
  border-bottom: 1px dashed #e5e5e5;
  padding: 10px 0;
}
.mhlistx-side-item:last-child {
  border-bottom: none;
}
.mhlistx-side-link {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  text-decoration: none;
  transition: color .3s ease;
}
.mhlistx-side-link:hover {
  color: #0077ff;
}

/* ===== 响应式处理：小屏时上下排 ===== */
@media (max-width: 992px) {
  .page_cont.clearfix {
    display: block;
  }
  .page_cont .fl,
  .page_cont .fr {
    float: none;
    width: 100%;
  }

  .mhlistx-card {
    flex-direction: column;
  }

  .mhlistx-thumb {
    width: 100%;
    max-width: 100%;
  }
  .mhlistx-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .mhlistx-textbox {
    padding: 18px 20px 22px;
  }

  .mhlistx-sidebar {
    margin-top: 30px;
  }
}
/* ===== 简洁版 Banner 样式 ===== */
.mhx-bannerx {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.mhx-bannerx-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.mhx-bannerx-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.mhx-bannerx-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.mhx-bannerx-subtitle {
  font-size: clamp(16px, 1.8vw, 22px);
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .mhx-bannerx {
    height: 420px;
  }
  .mhx-bannerx-title {
    font-size: 26px;
  }
  .mhx-bannerx-subtitle {
    font-size: 14px;
  }
}
/* ===== 半透明遮罩层 ===== */
.mhx-bannerx-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* 可调：0.35=浅遮罩，0.55=更深 */
  z-index: 2;
}

/* 让文字位于遮罩之上 */
.mhx-bannerx-content {
  position: relative;
  z-index: 3;
}
/* =================== 新闻列表页 Banner 样式（对齐短视频陪跑页） =================== */
.mhx-bannerx {
  position: relative;
  width: 100%;
  height: 650px; /* 与短视频陪跑页一致 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background: #000;
}

.mhx-bannerx-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.65);
  z-index: 1;
}

.mhx-bannerx-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.mhx-bannerx-content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  max-width: 900px;
}

.mhx-bannerx-title {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

.mhx-bannerx-subtitle {
  font-size: clamp(15px, 1.8vw, 20px);
  opacity: 0.9;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 移动端 */
@media (max-width: 768px) {
  .mhx-bannerx { height: 480px; }
  .mhx-bannerx-title { font-size: 26px; }
  .mhx-bannerx-subtitle { font-size: 14px; }
}
