.main-box {
  padding-bottom: 100px;
  background-color: #fff;
  min-width: 1920px;
  position: relative;
  font-family: 宋体, 微软雅黑, "Microsoft YaHei";
}
.header-img {
  position: relative;
  z-index: 1;
}
.header-img img {
  width: 100%;
}
.content-box {
  position: relative;
  z-index: 2;
}
.footer-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 600px;
  z-index: 0;
}
.footer-img img {
  width: 100%;
  height: 100%;
}
.dfw {
  width: 1200px;
  margin: 0 auto;
}

/* ============================== 样式分割线 ========================== */

/* 轮播图区域样式 */
.carousel-section {
  width: 1200px;
  margin: 40px auto 0;
  padding: 30px 0;
}

.carousel-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.carousel-left {
  flex: 0 0 648px;
}

.carousel-wrapper {
  position: relative;
  width: 648px;
  height: 430px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100%;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.6);
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.carousel-caption h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 60%;
  margin: 0;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2;
}

.carousel-indicators {
  position: absolute;
  bottom: 8px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.indicator {
  width: 15px;
  height: 15px;
  border: none;
  background: #999;
  cursor: pointer;
  transition: background 0.3s ease;
  color: #fff;
}

.indicator.active {
  background: #ff8800;
}

/* 轮播图右侧稿件列表样式 */
.carousel-right {
  flex: 1;
  min-height: 430px;
}

.article-list-container {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.article-item {
}

.article-item:last-child {
  border-bottom: none;
}

/* 第一条特殊样式 */
.first-article {
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 10px;
  padding-top: 10px;
}

.first-article-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.first-article-title h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}

.first-article-link h3 {
  color: #c00;
}

.first-article-link:hover h3 {
  text-decoration: underline;
}

.first-article-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.first-article-text {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex: 1;
  text-indent: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100px;
}

.first-article-detail-link {
  color: #c00;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.first-article-detail-link:hover {
  text-decoration: underline;
}

/* 后续稿件列表项样式 */
.article-item-content {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 30px;
  margin-bottom: 8px;
}

.article-item-left {
  flex: 0 0 auto;
}

.article-item-icon {
  object-fit: contain;
}

.article-item-right {
  flex: 1;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
}

.article-item-link {
  color: #147;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
}

.article-item-link:hover {
  color: #c00;
  text-decoration: underline;
}

/* ============================== 英雄辈出光耀黔中样式 ========================== */

/* 英雄辈出区域样式 */
.heroes-section {
  margin-top: 40px;
}

/* 标题图片样式 */
.heroes-title-img {
  margin-bottom: 60px;
  text-align: center;
}

.heroes-title-image {
  max-width: 100%;
  height: auto;
}

/* 稿件列表样式 - Grid布局 */
.heroes-list {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 稿件项样式 */
.heroes-item {
  display: flex;
  gap: 15px;
}

/* 左侧图片样式 */
.heroes-item-left {
  flex: 0 0 auto;
}

.heroes-item-image {
  width: 170px;
  height: 115px;
}

/* 右侧内容样式 */
.heroes-item-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 标题样式 */
.heroes-item-title {
  margin: 0;
}

.heroes-item-title a {
  color: #2b2b2b;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.heroes-item-title a:hover {
  text-decoration: underline;
}

/* 详细内容样式 */
.heroes-item-content {
  color: #000000;
  font-size: 14px;
  line-height: 1.6;
  text-indent: 2em;
}

.heroes-item-content a {
  color: #c13b14;
  text-decoration: none;
  margin-left: 5px;
}

.heroes-item-content a:hover {
  text-decoration: underline;
}

/* ============================== 围绕四新抓四化样式 ========================== */

/* 标题图片样式 */
.four-new-title-img {
  width: 1200px;
  margin: 60px auto;
  text-align: center;
}

.four-new-title-image {
  max-width: 100%;
  height: auto;
}

/* 围绕四新区域样式 - 左右布局 */
.four-new-section {
  width: 1200px;
  margin: 40px auto 0;
  display: flex;
  gap: 30px;
}

/* 左侧图片区域样式 */
.four-new-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

/* 图片项样式 */
.four-new-image-item {
  width: 285px;
}

/* 图片链接样式 */
.four-new-image-link {
  display: block;
  text-decoration: none;
}

/* 图片容器样式 */
.four-new-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 图片样式 */
.four-new-image {
  width: 100%;
  height: auto;
  display: block;
}

/* 图片标题样式 - 底部对齐 */
.four-new-image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.four-new-image-title span {
  color: #ffffff;
  font-size: 14px;
}

/* 右侧稿件列表样式 */
.four-new-right {
  flex: 1;
}

/* 稿件列表样式 */
.four-new-article-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 稿件项样式 */
.four-new-article-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 图标样式 */
.four-new-article-icon {
  flex: 0 0 auto;
}

.four-new-icon {
  width: 6px;
  height: 11px;
}

/* 稿件标题样式 */
.four-new-article-title {
  flex: 1;
}

.four-new-article-title a {
  color: #114477;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.four-new-article-title a:hover {
  color: #cc3300;
  text-decoration: underline;
}

/* ============================== 沿着高铁高速看安顺样式 ========================== */

/* 标题图片样式 */
.high-speed-title-img {
  width: 1200px;
  margin: 60px auto;
  text-align: center;
}

.high-speed-title-image {
  max-width: 100%;
  height: auto;
}

/* 稿件列表样式 - Grid布局 */
.high-speed-list {
  width: 1200px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 单元格样式 */
.high-speed-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* 图片链接样式 */
.high-speed-image-link {
  display: block;
  text-decoration: none;
}

/* 图片样式 */
.high-speed-item-image {
  width: 100%;
  height: 200px;
  display: block;
}

/* 标题样式 */
.high-speed-item-title {
  margin: 0;
}

.high-speed-item-title a {
  color: #c00027;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.high-speed-item-title a:hover {
  text-decoration: underline;
}

/* 详细内容样式 */
.high-speed-item-content {
  color: #666666;
  font-size: 16px;
  line-height: 1.6;
  text-indent: 2em;
}

.high-speed-detail-link {
  color: #c13b14;
  text-decoration: none;
  margin-left: 5px;
}

.high-speed-detail-link:hover {
  text-decoration: underline;
}
