@charset "utf-8";
/* CSS Document */

/* 健康资讯频道整体样式 */
.news-section {
  width: 960px;
  margin: 0 auto;
  border: 1px solid #dadada;
  background: #fff;
  font-family: "Microsoft YaHei", sans-serif;
}

/* 红色标题栏 */
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #e94a00 0%, #cc0000 100%);
  color: #fff;
  font-weight: bold;
  padding: 8px 15px;
}

.news-header .title {
  font-size: 14px;
}

.news-header .more {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.news-header .more:hover {
  text-decoration: underline;
}

/* 内容区域 */
.news-body {
  background: #fff;
  padding: 10px 15px 15px 15px;
}

/* 新闻列表 */
.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px 40px;
}

.news-list li {
  line-height: 28px;
  font-size: 13px;
  position: relative;
  padding-left: 15px;
}

/* 左侧橙色竖条图标 */
.news-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 12px;
  background-color: #f26522;
  border-radius: 1px;
}

/* 链接样式 */
.news-list a {
  text-decoration: none;
  color: #333;
}

.news-list a:hover {
  color: #d00;
  text-decoration: underline;
}






<!-- ======================= 首页中部（红金图文版） ======================= -->

.hot-news-section {
  width: 960px;
  margin: 3px auto;
  background: linear-gradient(to bottom, #fff8f0 0%, #fff 100%);
  border: 1px solid #dca45b;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(200, 100, 20, 0.3);
  font-family: "Microsoft YaHei";
}

/* 顶部标题栏 */
.hot-header {
  background: linear-gradient(to right, #b60000 0%, #ff4d00 100%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 6px 6px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hot-header .title i {
  background: url('images/icon_yinyang.png') no-repeat center;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.hot-header a.more {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}
.hot-header a.more:hover { text-decoration: underline; }

/* 主体布局 */
.hot-body {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  gap: 10px;
  flex-wrap: wrap;
}

/* 卡片基础 */
.hot-card {
  background: #fff;
  flex: 1;
  border: 1px solid #f2c48b;
  border-radius: 6px;
  padding: 10px;
  transition: all 0.3s ease;
  min-width: 300px;
}
.hot-card:hover {
  box-shadow: 0 0 10px rgba(220, 100, 30, 0.4);
  transform: translateY(-3px);
}

/* 卡片标题 */
.hot-card .card-title {
  font-weight: bold;
  color: #b60000;
  border-bottom: 2px solid #f2c48b;
  padding-bottom: 6px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hot-card .card-title img {
  height: 22px;
  vertical-align: middle;
  margin-right: 6px;
}
.hot-card .card-title a.more {
  font-size: 12px;
  color: #b60000;
  text-decoration: none;
}

/* 图文新闻样式 */
.news-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.news-item img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 8px;
  border: 1px solid #eee;
  box-shadow: 0 0 4px rgba(0,0,0,0.15);
}
.news-item a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.3em;
  font-weight: 500;
}
.news-item:hover img {
  transform: scale(1.05);
  border-color: #f26522;
}
.news-item a:hover {
  color: #d00;
  text-decoration: underline;
}

/* CTA按钮 */
.hot-cta {
  text-align: center;
  padding: 15px 0 25px 0;
}
.hot-cta a {
  display: inline-block;
  background: linear-gradient(to bottom, #ff5c00, #c00000);
  color: #fff;
  font-weight: bold;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.hot-cta a:hover {
  background: linear-gradient(to bottom, #ff8c00, #ff0000);
}

/* 大师区 */
.master-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5e6;
  border-top: 1px solid #f0c270;
  padding: 15px;
  border-radius: 0 0 6px 6px;
}
.master-banner img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #f2c48b;
}
.master-banner .info {
  text-align: left;
}
.master-banner .info h4 {
  margin: 0;
  font-size: 15px;
  color: #a33;
}
.master-banner .info p {
  margin: 3px 0;
  font-size: 13px;
  color: #555;
}
.master-banner .info span {
  background: #d40000;
  color: #fff;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 10px;
}










.info-section {
  width: 960px;
  margin: 20px auto;
  background: linear-gradient(to bottom, #fff8ef 0%, #fff 100%);
  border: 1px solid #f3c88b;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(200, 100, 20, 0.25);
  font-family: "Microsoft YaHei";
  overflow: hidden;
}

/* 标题栏 */
.info-section .title-bar {
  background: linear-gradient(to right, #b60000, #ff6a00);
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.info-section .title-bar a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
.info-section .title-bar a:hover {
  text-decoration: underline;
}

/* 卡片布局 */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  padding: 20px;
}

/* 单卡片 */
.info-card {
  background: #fff;
  border: 1px solid #f3d39a;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(230, 120, 20, 0.4);
}

/* 图片 */
.info-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

/* 文本内容 */
.info-card .text {
  padding: 12px 15px;
}
.info-card h4 {
  font-size: 15px;
  color: #b60000;
  margin: 5px 0 8px 0;
}
.info-card p {
  font-size: 13px;
  color: #444;
  line-height: 1.6em;
  margin: 0;
}

/* CTA按钮 */
.info-card .btn {
  display: inline-block;
  margin-top: 10px;
  background: linear-gradient(to right, #ff6600, #b60000);
  color: #fff;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 13px;
  text-decoration: none;
}
.info-card .btn:hover {
  background: linear-gradient(to right, #ff9933, #ff0000);
}

/* CTA整体按钮 */
.info-cta {
  text-align: center;
  padding: 20px 0 25px 0;
}
.info-cta a {
  background: linear-gradient(to right, #ff6a00, #b60000);
  color: #fff;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.info-cta a:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #ff9933, #ff0000);
}




.bottom-section {
  width: 960px;
  margin: 30px auto;
  display: flex;
  gap: 15px;
  font-family: "Microsoft YaHei";
}

/* 单栏基础 */
.bottom-card {
  flex: 1;
  background: #fff;
  border: 1px solid #e2c28b;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(200, 100, 20, 0.2);
  display: flex;
  flex-direction: column;
}
.bottom-card:hover {
  box-shadow: 0 0 12px rgba(200, 100, 20, 0.35);
}

/* 栏目标题 */
.bottom-card .card-header {
  background: linear-gradient(to right, #b60000, #ff4d00);
  color: #fff;
  padding: 8px 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 6px 6px 0 0;
}
.bottom-card .card-header a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
.bottom-card .card-header a:hover {
  text-decoration: underline;
}

/* 内容区域 */
.bottom-card .card-body {
  padding: 12px;
  font-size: 13px;
  color: #333;
  line-height: 1.6em;
}

/* 图片 */
.bottom-card img.thumb {
  width: 98%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

/* 简短问答块 */
.qa-item {
  margin-top: 6px;
}
.qa-item h4 {
  font-size: 13px;
  color: #b60000;
  margin: 0 0 4px 0;
}
.qa-item p {
  margin: 0;
  font-size: 12px;
  color: #555;
}




