@charset "UTF-8";
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
}

.search-container {
  padding: 30px 0;
}

.search-container .search-title {
  font-size: 24px;
  color: #c40006;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.search-container .search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.search-container .search-form {
  padding: 30px 0;
  /* 日历控件样式 */
}

.search-container .search-form .search-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.search-container .search-form .search-row:last-child {
  margin-bottom: 0;
}

.search-container .search-form .search-label {
  font-size: 16px;
  color: #333;
  margin-right: 15px;
  min-width: 100px;
}

.search-container .search-form .search-input-wrapper {
  flex: 1;
  margin-right: 15px;
  width: 300px;
}

.search-container .search-form .search-input-wrapper .search-input {
  border: none;
  background: #fff;
  color: #666;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 2px;
  width: 100%;
  height: 36px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.search-container .search-form .search-input-wrapper .search-input::placeholder {
  color: #999;
}

.search-container .search-form .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #c40006;
}

.search-container .search-form .search-select-wrapper {
  position: relative;
  margin-right: 15px;
  /* 添加JavaScript控制类，用于选择后恢复状态 */
}

.search-container .search-form .search-select-wrapper .search-select {
  border: none;
  background: #ededed;
  color: #888;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  height: 36px;
  min-width: 160px;
  padding: 0 25px 0 10px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 4px;
}

.search-container .search-form .search-select-wrapper .icon-arrow-down {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.search-container .search-form .search-select-wrapper .search-select:focus + .icon-arrow-down {
  transform: translateY(-50%) rotate(180deg);
}

.search-container .search-form .search-select-wrapper .icon-arrow-down.active {
  transform: translateY(-50%) rotate(180deg);
}

.search-container .search-form .search-select-wrapper .icon-arrow-down.inactive {
  transform: translateY(-50%) rotate(0deg);
}

.search-container .search-form .search-date-separator {
  margin: 0 10px;
  color: #666;
  font-size: 16px;
}

.search-container .search-form .date-range-picker {
  display: flex;
  align-items: center;
  flex: 1;
}

.search-container .search-form .date-input-wrapper {
  position: relative;
  flex: 1;
}

.search-container .search-form .date-input-wrapper .date-input {
  width: 100%;
  height: 36px;
  padding: 0 30px 0 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-container .search-form .date-input-wrapper .date-input:focus {
  border-color: #c40006;
  outline: none;
}

.search-container .search-form .date-input-wrapper .date-input::placeholder {
  color: #999;
}

.search-container .search-form .date-input-wrapper .icon-calendar {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../images/calendar.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.search-container .search-form .date-separator {
  margin: 0 10px;
  color: #999;
}

.search-container .search-form .layui-inline {
  display: flex;
}

.search-container .search-form .layui-inline .layui-form-mid {
  margin: 0 10px;
}

.search-container .search-button-wrapper {
  display: flex;
  justify-content: center;
  margin-right: 30px;
}

.search-container .search-button-wrapper .search-button {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #c40006;
  color: #fff;
  height: 40px;
  min-width: 80px;
  font-size: 16px;
  border-radius: 4px;
}

.search-container .search-button-wrapper .search-button:focus {
  outline: none;
}

.search-container .search-button-wrapper .search-button:hover {
  background-color: #910004;
}

.search-results {
  margin-bottom: 50px;
}

.search-results .empty-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 0;
  color: #999;
  text-align: center;
}

.search-results .empty-placeholder .empty-icon {
  display: inline-flex;
  min-width: 56px;
  min-height: 56px;
}

.search-results .empty-placeholder .empty-icon .layui-icon {
  font-size: 100px;
  line-height: 1.4;
}

.search-results .empty-placeholder .empty-text {
  font-size: 16px;
  color: #777;
}

.pagination {
  margin-top: 50px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-list {
  display: flex;
  align-items: center;
  align-items: center;
  gap: 10px;
}

.pagination .page-list li {
  list-style: none;
}

.pagination .page-list li.active .page-link {
  color: #fff;
  background-color: #c40006;
  border-color: #c40006;
  font-weight: bold;
}

.pagination .page-list .page-size {
  position: relative;
  margin-right: 20px;
}

.pagination .page-list .page-size select {
  border: none;
  background: #ededed;
  color: #888;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  height: 36px;
  width: 100px;
  padding: 0 25px 0 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  color: #666;
  background-color: #fff;
  border-radius: 4px;
}

.pagination .page-list .page-size select:focus {
  border-color: #c40006;
  outline: none;
}

.pagination .page-list .page-size .icon-arrow-down {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../images/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.pagination .page-list .page-size select:focus + .icon-arrow-down {
  transform: translateY(-50%) rotate(180deg);
}

.pagination .page-list a, .pagination .page-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  color: #666;
  font-size: 16px;
  text-decoration: none;
  background-color: #f4f4f5;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination .page-list a:hover, .pagination .page-list span:hover {
  color: #c40006;
  border-color: #c40006;
  background-color: #f9f9f9;
}

.pagination .page-list a.active, .pagination .page-list span.active {
  color: #fff;
  background-color: #c40006;
  border-color: #c40006;
  font-weight: bold;
}

.pagination .page-list a.prev, .pagination .page-list a.next, .pagination .page-list span.prev, .pagination .page-list span.next {
  padding: 0 12px;
}

.pagination .page-list a.prev i, .pagination .page-list a.next i, .pagination .page-list span.prev i, .pagination .page-list span.next i {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
}

.pagination .page-list a.prev i, .pagination .page-list span.prev i {
  background-image: url("../images/arrow-left.svg");
}

.pagination .page-list a.next i, .pagination .page-list span.next i {
  background-image: url("../images/arrow-right.svg");
}

.pagination .page-list .goto {
  color: #666;
  font-size: 16px;
  padding: 0;
  min-width: initial;
  background-color: transparent;
}

.pagination .page-list .page-input {
  border: none;
  background: #fff;
  color: #666;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 2px;
  width: 50px;
  height: 36px;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 14px;
  border-radius: 4px;
}

.pagination .page-list .page-input::placeholder {
  color: #999;
}

.pagination .page-list .page-input:focus {
  outline: none;
  border-color: #c40006;
}

.pagination .page-list .page-input:focus {
  border-color: #c40006;
  outline: none;
}

.pagination .page-list .total {
  color: #666;
  font-size: 16px;
  background-color: transparent;
  padding: 0;
  min-width: initial;
}

/* 通用新闻列表样式 */
.pages-news-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 12px;
  transition: transform 0.3s ease;
  height: 60px;
  line-height: 60px;
  margin: 15px 0;
  padding-left: 36px;
}

.pages-news-list li:hover {
  transform: translateX(10px);
}

.pages-news-list li:hover a {
  color: #c40006;
}

.pages-news-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #c40006;
}

.pages-news-list li a {
  flex: 1;
  color: #222;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.pages-news-list li .news-date {
  margin-left: 15px;
  color: #b5b5b5;
  flex-shrink: 0;
}

.pages-news-list li::before {
  content: "";
  left: 20px;
}

.pages-news-list li:nth-child(even) {
  background-color: #f4f4f4;
}

.pages-news-list li a {
  font-size: 21px;
  color: #333;
}

.pages-news-list li .news-date {
  font-size: 21px;
  color: #aeaeae;
  padding-right: 15px;
}

.leader-news .leader-news-list li, .news-list li, .related-news-list li, .zt-detail-container li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 12px;
  transition: transform 0.3s ease;
  margin-top: 25px;
}

.leader-news .leader-news-list li:hover, .news-list li:hover, .related-news-list li:hover, .zt-detail-container li:hover {
  transform: translateX(10px);
}

.leader-news .leader-news-list li:hover a, .news-list li:hover a, .related-news-list li:hover a, .zt-detail-container li:hover a {
  color: #c40006;
}

.leader-news .leader-news-list li::before, .news-list li::before, .related-news-list li::before, .zt-detail-container li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #c40006;
}

.leader-news .leader-news-list li a, .news-list li a, .related-news-list li a, .zt-detail-container li a {
  flex: 1;
  color: #222;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.leader-news .leader-news-list li .news-date, .news-list li .news-date, .related-news-list li .news-date, .zt-detail-container li .news-date {
  margin-left: 15px;
  color: #b5b5b5;
  flex-shrink: 0;
}

.more-link {
  margin-left: auto;
  color: #999;
  font-size: 14px;
}

.header {
  height: 213px;
  background: url(../images/header-bg.png) no-repeat center;
  background-size: 1920px 213px;
  min-width: 1200px;
}

.header .logo {
  padding-top: 60px;
}

.nav2 {
  height: 60px;
  background-color: #c40006;
}

.nav2 ul {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}

.nav2 ul li {
  position: relative;
}

.nav2 ul li a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.nav2 ul li a:hover {
  font-weight: bold;
}

.nav2 ul .line {
  display: inline-block;
  width: 1px;
  height: 26px;
  background-color: #e2030e;
  margin: 0 16px;
}

.crem {
  height: 54px;
  background-color: #f4f4f4;
}

.crem .w1200 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  font-size: 16px;
}

.crem .w1200 a {
  color: #666;
  text-decoration: none;
}

.crem .w1200 a:hover, .crem .w1200 a.active {
  color: #c40006;
}

.crem .w1200 .separator {
  margin: 0 8px;
  color: #999;
}

.crem-r .item {
  position: relative;
  font-size: 18px;
  padding: 0 5px;
  line-height: 54px;
  display: inline-block;
}

.crem-r .item.active {
  color: #c40006;
  font-weight: bold;
}

.crem-r .item.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #c40006;
}

.notice-search {
  height: 54px;
  background: #f4f4f4;
  padding: 0 0;
  box-sizing: border-box;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notice-search .w1200 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.notice-search .notice-left {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

.notice-search .notice-left .notice-icon {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.notice-search .notice-left .notice-swiper-container {
  flex: 1;
  min-width: 0;
  height: 54px;
  overflow: hidden;
}

.notice-search .notice-left .notice-swiper-container .swiper-wrapper {
  height: 100%;
}

.notice-search .notice-left .notice-swiper-container .swiper-wrapper .swiper-slide {
  height: 54px;
  display: flex;
  align-items: center;
}

.notice-search .notice-left .notice-swiper-container .swiper-wrapper .swiper-slide .notice-link {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.notice-search .notice-left .notice-swiper-container .swiper-wrapper .swiper-slide .notice-link:hover .notice-text,
.notice-search .notice-left .notice-swiper-container .swiper-wrapper .swiper-slide .notice-link:hover .notice-date {
  text-decoration: underline;
  color: #c40006;
}

.notice-search .notice-left .notice-swiper-container .swiper-wrapper .swiper-slide .notice-link .notice-text {
  color: #666;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 600px;
}

.notice-search .notice-left .notice-swiper-container .swiper-wrapper .swiper-slide .notice-link .notice-date {
  color: #666;
  font-size: 16px;
  margin-left: 16px;
  flex-shrink: 0;
}

.notice-search .notice-right {
  display: flex;
  align-items: center;
  margin-left: 24px;
}

.notice-search .notice-right .notice-select-wrap {
  position: relative;
  display: inline-block;
}

.notice-search .notice-right .notice-select-wrap .notice-select {
  border: none;
  background: #ededed;
  color: #888;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  height: 38px;
  padding-right: 32px;
}

.notice-search .notice-right .notice-select-wrap .select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  pointer-events: none;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-search .notice-right .notice-select-wrap .select-arrow svg {
  width: 100%;
  height: 100%;
}

.notice-search .notice-right .notice-select-wrap.open .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.notice-search .notice-right .notice-input {
  border: none;
  background: #fff;
  color: #666;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 2px;
  height: 38px;
  width: 180px;
}

.notice-search .notice-right .notice-input::placeholder {
  color: #999;
}

.notice-search .notice-right .notice-input:focus {
  outline: none;
  border-color: #c40006;
}

.notice-search .notice-right .notice-btn {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #c40006;
  color: #fff;
  height: 38px;
  padding: 0 18px;
  border-radius: 0;
  font-size: 15px;
  min-width: 80px;
}

.notice-search .notice-right .notice-btn:focus {
  outline: none;
}

.notice-search .notice-right .notice-btn:hover {
  background-color: #910004;
}

.notice-search .notice-right .notice-btn.advance {
  background: #b10000;
  margin-left: 5px;
  border: none;
  color: #fff;
  min-width: 100px;
}

.notice-search .notice-right .notice-btn.advance:hover {
  background: #7e0000;
}

.notice-link {
  display: flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.notice-link:hover .notice-text,
.notice-link:hover .notice-date {
  text-decoration: underline;
  color: #c40006;
}

.main {
  width: 1200px;
  margin: 0 auto;
  margin: 32px auto 0 auto;
  color: #000000;
  min-height: 600px;
}

.main-content {
  display: flex;
  gap: 28px;
  margin-top: 25px;
}

.swiper-area {
  width: 650px;
}

.swiper-area .swiper-container {
  width: 650px;
  height: 432px;
  overflow: hidden;
  background: #fff;
  position: relative;
}

.swiper-area .swiper-container .swiper-slide {
  position: relative;
}

.swiper-area .swiper-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-area .swiper-container .swiper-slide .slide-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 18px;
  padding: 0 14px;
  box-sizing: border-box;
  line-height: 54px;
  height: 54px;
}

.swiper-area .swiper-container .swiper-pagination {
  position: absolute;
  right: 20px;
  bottom: 16px;
  text-align: right;
  width: auto;
}

.swiper-area .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 3px;
  border-radius: 5px;
}

.swiper-area .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #c40006;
  width: 22px;
}

.leader-news {
  width: 522px;
}

.leader-news .leader-news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #dddddd;
}

.leader-news .leader-title {
  color: #c40006;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 4px solid #c40006;
  padding-bottom: 14px;
  line-height: 1;
}

.leader-news .leader-news-list {
  padding: 0 10px;
}

.news-row {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  margin-top: 50px;
}

.news-block {
  width: 580px;
  background: #fff;
}

.block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 1px solid #dddddd;
}

.block-title {
  color: #c40006;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 4px solid #c40006;
  padding-bottom: 14px;
  line-height: 1;
}

.block-tabs {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.block-tabs .tab {
  width: 34px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dccdcd;
  color: #9c7a7c;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.block-tabs .tab.active {
  background: #c40006;
  color: #fff;
}

.news-list {
  display: none;
  padding: 0 10px;
}

.news-list.active {
  display: block;
  animation: slideInLeft 0.5s ease-out;
}

.special-report {
  margin: 50px 0;
}

.special-report .report-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
  row-gap: 20px;
}

.special-report .report-item {
  width: 280px;
  height: 70px;
  background: url(../images/report-item-bg.png) no-repeat center center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c40006;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  line-height: 1.2;
}

.special-report .report-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.special-header {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  display: block;
}

.special-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #f4f4f4;
  top: 50%;
}

.special-header .special-img {
  display: block;
  margin: 0 auto;
}

.special-title-index {
  position: relative;
  z-index: 1;
  color: #c40006;
  font-size: 26px;
  font-weight: bold;
  background-color: #fff;
  padding: 0 15px;
}

.grass-roots {
  margin: 50px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.grass-roots .grass-header {
  flex-shrink: 0;
  width: 56px;
}

.grass-roots .grass-header .special-img {
  display: block;
  width: 100%;
}

.grass-roots-content {
  position: relative;
  flex: 1;
  margin-top: 0;
  overflow: hidden;
}

.grass-roots-content .swiper-container {
  padding: 0;
  padding-bottom: 30px;
}

.grass-roots-content .swiper-container .swiper-scrollbar {
  bottom: 5px;
  height: 4px;
  background-color: #e5e5e5;
}

.grass-roots-content .swiper-container .swiper-scrollbar-drag {
  background-color: #c40006;
}

.grass-roots-content .swiper-scrollbar.swiper-scrollbar-horizontal {
  width: 100%;
  left: 0;
  border-radius: 4px;
  background-color: #f4f4f4;
  height: 10px;
}

.grass-roots-content .swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  background-color: #c40006;
  border-radius: 4px;
}

.grass-roots .grass-item {
  position: relative;
}

.grass-roots .grass-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.grass-roots .grass-item.error::before {
  display: none;
}

.grass-roots .grass-item.error::after {
  content: '图片加载失败';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #999;
  font-size: 14px;
  z-index: 2;
}

footer {
  border-top: 4px solid #c40006;
  background-color: #ebe8e8;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #929292;
}

.com-tit {
  font-size: 30px;
  font-weight: bold;
  color: #c40006;
  margin-top: 50px;
  text-align: center;
}

.pages-news-list {
  margin: 30px 0 70px;
}

.pages-news-list.active {
  display: block;
  animation: slideInLeft 0.5s ease-out;
}

.article-title {
  font-size: 24px;
  font-weight: bold;
  color: #c40006;
  margin-top: 50px;
  text-align: center;
}

.article-info {
  font-size: 18px;
  color: #999;
  margin-top: 20px;
  text-align: center;
}

.article-content {
  font-size: 18px;
  margin-bottom: 60px;
  color: #333;
  margin-top: 40px;
  line-height: 2;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content p img {
  max-width: 100%;
}

.related-news {
  margin-bottom: 150px;
}

.related-news-title {
  font-size: 24px;
  color: #c40006;
  margin-bottom: 20px;
  background-color: #dadada;
  height: 52px;
  line-height: 52px;
  padding-left: 20px;
  border-left: 10px solid #c40006;
}

.related-news-list li {
  margin-bottom: 10px;
}

.related-news-list li a {
  font-size: 18px;
}

.tw-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.tw-item {
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tw-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tw-item:hover .tw-img img {
  transform: scale(1.05);
}

.tw-item:hover .tw-title {
  color: #c40006;
}

.tw-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.tw-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.tw-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
}

.tw-img.loaded::before {
  display: none;
}

.tw-img.error::before {
  display: none;
}

.tw-img.error::after {
  content: '图片加载失败';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #999;
  font-size: 14px;
  z-index: 2;
}

.tw-content {
  padding: 20px;
}

.tw-title {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  transition: color 0.3s ease;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .tw-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .tw-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tw-img {
    height: 200px;
  }
  .tw-title {
    font-size: 16px;
  }
}

.news-platform-list {
  margin-top: 30px;
  margin-bottom: 50px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-item:hover .news-title {
  color: #c40006;
}

.news-item:hover .news-img img {
  transform: scale(1.05);
}

.news-item:last-child {
  border-bottom: none;
}

.news-img {
  width: 265px;
  height: 175px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.news-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
}

.news-img.loaded::before {
  display: none;
}

.news-img.error::before {
  display: none;
}

.news-img.error::after {
  content: '图片加载失败';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #999;
  font-size: 14px;
  z-index: 2;
}

.news-content {
  flex: 1;
  position: relative;
  padding-top: 5px;
}

.news-date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  color: #999;
}

.news-title {
  font-size: 21px;
  color: #333;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 10px 0;
  padding-right: 100px;
  transition: color 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.news-desc {
  font-size: 18px;
  color: #777777;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.zt-detail-container {
  margin: 30px 0 70px;
}

.zt-detail-container li {
  border-bottom: 1px dashed #999999;
  margin-top: 0;
  line-height: 70px;
}

.zt-detail-container li a {
  font-size: 21px;
  color: #333;
}

.zt-detail-container .news-date {
  font-size: 21px;
  color: #999;
}

.zt-detail-container.active {
  display: block;
  animation: slideInLeft 0.5s ease-out;
}

.special-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.special-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 380px;
}

.special-item {
  background: #fff;
  border: 1px solid #dfdfdf;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.special-item::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 11px 0 0;
  border-color: transparent #e2e2e2 transparent transparent;
}

.special-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.special-item:hover .special-title {
  color: #c40006;
}

.special-item:hover .special-img img {
  transform: scale(1.05);
}

.special-link:hover .special-item {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.special-link:hover .special-item .special-title {
  color: #c40006;
}

.special-link:hover .special-item .special-img img {
  transform: scale(1.05);
}

.special-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.special-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.special-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  z-index: 1;
}

.special-img.loaded::before {
  display: none;
}

.special-img.error::before {
  display: none;
}

.special-img.error::after {
  content: '图片加载失败';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #999;
  font-size: 14px;
  z-index: 2;
}

.special-content {
  padding: 20px;
}

.special-title {
  font-size: 21px;
  color: #333;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 12px 0;
  transition: color 0.3s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.special-desc {
  font-size: 18px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  height: 54px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.lazy-load {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lazy-load.loaded {
  opacity: 1;
}

.lazy-load.error {
  opacity: 1;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 1024px) {
  .special-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .special-img {
    height: 200px;
  }
  .special-title {
    font-size: 19px;
  }
  .special-desc {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .special-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .special-img {
    height: 180px;
  }
  .special-content {
    padding: 15px;
  }
  .special-title {
    font-size: 18px;
  }
  .special-desc {
    font-size: 16px;
  }
}
/*# sourceMappingURL=style.css.map */