.main-box {
  padding-bottom: 100px;
  background-color: #fff;
}
.header-img img {
  width: 100%;
}
.dfw {
  width: 1200px;
  margin: 0 auto;
}
/* 头条区域样式 */
.headline-section {
  width: 1200px;
  margin: 40px auto 0;
  padding: 30px 0;
}

.headline-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.headline-left {
  width: 71px;
}

.headline-image-link {
  display: block;
  text-decoration: none;
}

.headline-image {
  width: 71px;
  height: 95px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.headline-image:hover {
  transform: scale(1.02);
}

.headline-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.headline-title h3 {
  font-size: 36px;
  font-weight: bold;
  color: #d7072e;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.headline-details {
  line-height: 1.8;
}

.indented-text {
  text-indent: 2em;
  font-size: 16px;
  color: #666;
  margin: 0 0 15px 0;
  line-height: 1.6;
}

.detail-link {
  color: #c00;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
}

.detail-link:hover {
  text-decoration: underline;
}

/* 轮播图区域样式 */
.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%;
  object-fit: cover;
}

.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;
}

.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;
}

/* 列表区域样式 */
.list-section {
  width: 1200px;
  margin: 40px auto 0;
  padding: 30px 0;
}

.list-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.list-item {
  padding: 20px 30px;
  border-bottom: 1px dashed #e0e0e0;
}

.list-item:last-child {
  border-bottom: none;
}

/* 第一条特殊样式 */
.first-item {
  border-bottom: 1px dashed #e0e0e0;
  padding-bottom: 25px;
}

.first-item-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.first-item-title h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}

.first-item-link {
  text-decoration: none;
  color: inherit;
}

.first-item-link:hover h3 {
  color: #c00;
}

.first-item-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.first-item-text {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex: 1;
  text-indent: 2em;
}

.first-item-detail-link {
  color: #c00;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.first-item-detail-link:hover {
  text-decoration: underline;
}

/* 后续列表项样式 */
.list-item-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.list-item-left {
  flex: 0 0 auto;
}

.list-item-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.list-item-right {
  flex: 1;
  height: 30px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.list-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;
}

.list-item-link:hover {
  color: #c00;
  text-decoration: underline;
}

.item-list-title {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  height: 30px;
  line-height: 30px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  color: #fff;
}
.item-list-title:hover {
  text-decoration: underline;
}

/* 复工复产列表区域样式 */
.resumption-section {
  width: 1050px;
  margin: 40px auto 0;
  padding: 30px 0;
}

.resumption-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.resumption-row {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.resumption-item {
  width: 500px;
  height: 460px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.resumption-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.resumption-cover {
  height: 340px;
  overflow: hidden;
}

.resumption-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.resumption-link:hover .resumption-image {
  transform: scale(1.05);
}

.resumption-title {
  padding: 15px 20px;
  flex: 0 0 auto;
}

.resumption-title h3 {
  margin: 0;
  font-size: 18px;
  color: rgb(192, 0, 0);
  font-weight: bold;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.resumption-title h3:hover {
  text-decoration: underline;
}
.resumption-details {
  padding: 0 20px 20px;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.resumption-details p {
  margin: 0;
  font-size: 14px;
  color: rgb(102, 102, 102);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-right {
  flex: 1;
  min-width: 200px;
}

.right-item {
  display: flex;
  height: 40px;
  line-height: 40px;
}
.right-item-arrow {
  margin-right: 20px;
}
.right-item-title {
  font-family: "宋体";
  color: rgb(17, 68, 119);
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.right-item-title:hover {
  text-decoration: underline;
  color: rgb(192, 0, 0);
}
.title-img {
  width: 1200px;
  margin: 40px auto;
  display: block;
}

.title-img-link {
  display: block;
  text-decoration: none;
  margin: 40px auto;
  width: 1200px;
}

.title-img-link:hover {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

/* 脱贫攻坚战区域样式 */
.poverty-alleviation-section {
  width: 1200px;
  margin: 40px auto 0;
  padding: 30px 0;
}

.poverty-alleviation-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.poverty-item {
  width: calc(50% - 20px);
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.poverty-title {
  margin-bottom: 15px;
}

.poverty-title-link {
  text-decoration: none;
  color: inherit;
}

.poverty-title-link h3 {
  margin: 0;
  font-size: 22px;
  color: rgb(51, 51, 51);
  font-weight: bold;
  line-height: 1.4;
  transition: text-decoration 0.3s ease;
}

.poverty-title-link:hover h3 {
  text-decoration: underline;
}

.poverty-details {
  font-size: 16px;
  line-height: 1.8;
}

.indented-text {
  text-indent: 2em;
  color: #333;
}

.detail-link {
  color: rgb(192, 0, 0);
  text-decoration: none;
  font-weight: normal;
}

.detail-link:hover {
  text-decoration: underline;
}
