/* ============================== 默认样式 ========================== */

.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;
}
/* ============================== 默认样式end ========================== */

/* ============================== 轮播图区域样式 ========================== */
.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 {
  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;
}

.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 {
}

.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;
}

/* ============================== 轮播图区域样式end ========================== */

/* ============================== 践行嘱托十年间样式 ========================== */
.practice-section {
  width: 1200px;
  margin: 40px auto 0;
}

.practice-title {
  margin-bottom: 30px;
}

.title-image {
  width: 100%;
  height: auto;
  display: block;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.practice-item {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.item-left {
  flex: 0 0 235px;
}

.item-image {
  width: 235px;
  height: 130px;
  display: block;
}

.item-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.item-title {
  margin: 0 0 15px 0;
  color: #2b2b2b;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-content {
  margin: 0;
  color: #000000;
  font-size: 14px;
  line-height: 1.8;
  text-indent: 2em;
  flex: 1;
}

.detail-link {
  color: #c00;
  text-decoration: none;
  font-weight: bold;
}

.detail-link:hover {
  text-decoration: underline;
}
/* ============================== 践行嘱托十年间样式end ========================== */

/* ============================== 县区巡礼样式 ========================== */
.county-section {
  width: 1200px;
  margin: 40px auto 0;
}

.county-title {
  margin-bottom: 30px;
}

.county-title-image {
  width: 100%;
  height: auto;
  display: block;
}

.county-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.county-item {
  display: flex;
  flex-direction: column;
}

.county-item-top {
  flex: 0 0 auto;
}

.county-item-image {
  width: 355px;
  height: 200px;
  display: block;
}

.county-item-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}

.county-item-title {
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: bold;
}

.county-item-title a {
  color: #c00000;
  text-decoration: none;
}

.county-item-title a:hover {
  text-decoration: underline;
}

.county-item-content {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
  text-indent: 2em;
}

.county-detail-link {
  color: #c00000;
  text-decoration: none;
  font-weight: bold;
}

.county-detail-link:hover {
  text-decoration: underline;
}
/* ============================== 县区巡礼样式end ========================== */

/* ============================== 我们的新时代·瀑乡安顺奋斗者样式 ========================== */
.striver-section {
  width: 1200px;
  margin: 40px auto 0;
}

.striver-title {
  margin-bottom: 30px;
}

.striver-title-image {
  width: 100%;
  height: auto;
  display: block;
}

.striver-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* 左侧图片稿件区域 */
.striver-image-section {
  flex: 0 0 285px;
  display: flex;
  gap: 20px;
}

.striver-image-item {
  flex: 0 0 auto;
}

.striver-image-wrapper {
  position: relative;
  width: 285px;
  height: 200px;
  overflow: hidden;
}

.striver-image {
  width: 100%;
  height: 100%;
  display: block;
}

.striver-image-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #525252;
  padding: 10px;
  text-align: center;
}

.striver-image-title h3 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 右侧稿件列表区域 */
.striver-list-section {
  flex: 1;
}

.striver-list-item {
  margin-bottom: 10px;
}

.striver-list-content {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 30px;
}

.striver-list-left {
  flex: 0 0 auto;
}

.striver-list-icon {
  display: block;
}

.striver-list-right {
  flex: 1;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
}

.striver-list-link {
  color: #114477;
  font-size: 16px;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block;
}

.striver-list-link:hover {
  color: #cc3300;
  text-decoration: underline;
}
/* ============================== 我们的新时代·瀑乡安顺奋斗者样式end ========================== */

/* ============================== 赶超跨越样式 ========================== */
.surpass-section {
  width: 1200px;
  margin: 40px auto 0;
}

.surpass-title {
  margin-bottom: 30px;
}

.surpass-title-image {
  width: 100%;
  height: auto;
  display: block;
}

.surpass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.surpass-item {
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.surpass-item-top {
  flex: 0 0 auto;
}

.surpass-item-image {
  width: 260px;
  height: 210px;
  display: block;
}

.surpass-item-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 15px;
}

.surpass-item-title {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: bold;
}

.surpass-item-title a {
  color: #cc3354;
  text-decoration: none;
}

.surpass-item-title a:hover {
  text-decoration: underline;
}

.surpass-item-content {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
  text-indent: 2em;
  flex: 1;
}

.surpass-detail-link {
  color: #cc3354;
  text-decoration: none;
  font-weight: bold;
}

.surpass-detail-link:hover {
  text-decoration: underline;
}
/* ============================== 赶超跨越样式end ========================== */

.main-box {
  background-image: url(/images/special/img-043.jpg);
  background-size: 100% 823px;
  background-repeat: no-repeat;
  background-position: center bottom;
}
