body {
  background-color: #fff;
}

/* 图片画廊样式 */
.image-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(214, 29, 22, 0.2);
}

.gallery-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.gallery-image {
  width: 216px;
  height: 106px;
  object-fit: fill;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 15px 12px 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  display: block;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .image-gallery {
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
  }

  .gallery-item {
    min-width: 150px;
    flex-shrink: 0;
  }

  .gallery-image {
    height: 100px;
  }
}

/* 服务画廊样式 - 简洁一行布局 */
.service-gallery {
  padding: 20px 0;
}

.gallery-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}

.gallery-card {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  height: 100px;
  min-width: 0;
}

.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(214, 29, 22, 0.15);
}

.card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.card-image {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  vertical-align: revert;
}

.gallery-card:hover .card-img {
  transform: scale(1.03);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  padding: 8px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-card:hover .card-overlay {
  transform: translateY(0);
}

.card-content {
  text-align: center;
  color: #fff;
}

.card-title {
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-desc {
  font-size: 10px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  display: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .gallery-grid {
    flex-wrap: wrap;
    gap: 10px;
  }

  .gallery-card {
    flex: 1 1 calc(50% - 5px);
    height: 90px;
  }

  .card-title {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .gallery-card {
    flex: 1 1 100%;
    height: 80px;
  }

  .card-title {
    font-size: 10px;
  }
}

/* 内容列表样式 - 与其他列表保持一致 */
.content-list-wrapper {
  padding-bottom: 20px;
  background: #fff;
}

.content-list-columns {
  display: flex;
  gap: 20px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.content-list-columns .list-column {
  flex: 1;
}

.dynamic-list-container {
  width: 100%;
}

.dynamic-list-container .list_t {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.dynamic-list-container .list_t li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  gap: 10px;
  width: 48%;
  box-sizing: border-box;
  justify-content: flex-start;
}

/* 为内容列表添加文字截断 - 考虑两列布局 */
.content-list-columns .list_t li a {
  display: inline-block;
  max-width: calc(100% - 100px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.dynamic-list-container .list_t li a {
  display: inline-block;
  max-width: calc(100% - 100px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .content-list-columns {
    flex-direction: column;
    gap: 15px;
  }

  .content-list-columns .list_t li a {
    max-width: calc(100% - 90px);
  }

  .dynamic-list-container .list_t {
    flex-direction: column;
  }

  .dynamic-list-container .list_t li {
    width: 100%;
  }

  .dynamic-list-container .list_t li a {
    max-width: calc(100% - 90px);
  }
}

@media (max-width: 480px) {
  .content-list-wrapper {
    padding: 15px 0;
  }

  .content-list-columns .list_t li a {
    max-width: calc(100% - 80px);
  }

  .dynamic-list-container .list_t li a {
    max-width: calc(100% - 80px);
  }
}

#Swipertt {
  width: 100%;
}

#Swipertt .swiper-pagination {
  bottom: 0px;
}

#Swipertt .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: #cccccc;
  border-radius: 50%;
  margin: 0 8px;
}

#Swipertt .swiper-pagination-bullet-active {
  background-color: #d61d16;
}

.toutiao {
  padding: 30px;
}

@media (max-width: 600px) {
  .toutiao {
    padding: 0;
  }
}

.toutiao a {
  display: block;
  color: #333333;
  font-family: MicrosoftYaHei;
  font-size: 32px;
  font-weight: normal;
  line-height: 60px;
  text-align: center;
  letter-spacing: 0px;
  color: #d61d16;

  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.toutiao a:hover {
  color: #d61d16;
}

.toutiao .toutiao_descs {
  height: 20px;
  opacity: 1;
  font-size: 20px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0px;
  text-align: center;
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toutiao .toutiao_descs span {
  max-width: calc(100% - 140px);
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

@media (max-width: 600px) {
  .toutiao a {
    font-size: 20px;
  }
}

#Swiper1 {
  width: 100%;
  height: 350px;
}

@media (max-width: 992px) {
  #Swiper1 {
    height: auto;
  }
}

#Swiper1 .swiper-button-prev,
#Swiper1 .swiper-button-next {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 58px;
  opacity: 0;
}

#Swiper1 .swiper-button-prev {
  background: url(../images/btn_prev.png) no-repeat center center;
  -webkit-transform: translate(-50px, 0);
  -moz-transform: translate(-50px, 0);
  -ms-transform: translate(-50px, 0);
  -o-transform: translate(-50px, 0);
  transform: translate(-50px, 0);
}

#Swiper1 .swiper-button-next {
  background: url(../images/btn_next.png) no-repeat center center;
  -webkit-transform: translate(50px, 0);
  -moz-transform: translate(50px, 0);
  -ms-transform: translate(50px, 0);
  -o-transform: translate(50px, 0);
  transform: translate(50px, 0);
}

#Swiper1:hover .swiper-button-prev,
#Swiper1:hover .swiper-button-next {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

#Swiper1 .swiper-pagination {
  bottom: 14px;
  text-align: right;
  padding-right: 16px;
}

#Swiper1 .swiper-pagination-bullet {
  opacity: 1;
  width: 12px;
  height: 12px;
  background-color: #eff7ff;
  border-radius: 6px;
}

#Swiper1 .swiper-pagination-bullet-active {
  width: 24px;
  background-color: #fcd33f;
}

.img_mask_box {
  position: relative;
  height: 100%;
}

.img_mask_box a {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}

.img_mask_box a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}

.img_mask_box img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.img_mask_box .mask_title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.img_mask_box .mask_title h3 {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  width: 70%;
  height: 54px;
  line-height: 54px;
  padding-left: 1em;
  font-size: 18px;
  font-weight: normal;
  color: #fefefe;
}

@media (min-width: 993px) {
  .tab_pane1 {
    height: 100%;
  }

  .tab_pane1 .tab a:nth-child(5) {
    margin-right: 0 !important;
  }

  .yw_link {
    position: absolute !important;
    top: 390px;
    display: block;
    width: 49%;
    height: 74px;
    text-align: center;
    line-height: 74px;
    background-color: #f5f8fa;
    border: solid 1px #e8eef4;
    font-size: 20px;
    font-weight: normal;
    color: #333;
  }

  .yw_link.yw_link1 {
    left: 0;
  }

  .yw_link.yw_link2 {
    right: 0;
  }

  .yw_link.cur {
    background-color: #d61d16;
    font-weight: bold;
    color: #fff !important;
    border-bottom: none !important;
  }
}

@media (max-width: 992px) {
  .tab_pane1 .tab a:not(.enter):not(:last-child) {
    margin-right: 30px;
  }
}

.list_t li:not(.panel-more) {
  position: relative;
  padding: 15px 0px 15px 20px;
  line-height: 1;
  display: flex;
}

.list_t_22 li:not(.panel-more) {
  position: relative;
  padding: 10px 0px 10px 20px;
  line-height: 1;
  border-bottom: 1px dashed #d3d3d3;
}
.list_t_22 li:not(.panel-more):last-child {
  position: relative;
  border-bottom: none;
}

.list_t li:not(.panel-more)::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  /* width: 11px;
  height: 12px;
  background: url(../images/icon_li.png) no-repeat center; */
  width: 4px;
  height: 4px;
  background-color: #c1c1c1;
  border-radius: 50%;
  background-size: contain;
}

.list_t li:not(.panel-more) a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  width: calc(100% - 140px);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 20px;
  color: #333333;
}

.list_t li:not(.panel-more) a:hover {
  color: #d61d16;
}

.list_t li:not(.panel-more) span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  font-size: 18px;
  color: #999;
}

.list_t2 li:not(.panel-more) {
  position: relative;
  padding: 6px 0px;
  line-height: 48px;
  display: flex;
  align-items: center;
}

.list_t2 li:not(.panel-more) .date {
  display: inline-block;
  width: 92px;
  height: 48px;
  background-color: #f1f6fa;
  font-size: 16px;
  font-weight: normal;
  color: #8e8d8d;
  text-align: center;
}

.list_t2 li:not(.panel-more) .date b {
  font-size: 24px;
}

.list_t2 li:not(.panel-more) .list_text {
  padding-left: 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  max-width: calc(100% - 220px);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 18px;
  font-weight: normal;
  color: #333333;
}

.list_t2 li:not(.panel-more) .list_text:hover {
  color: #d61d16;
}

.list_t2 li:not(.panel-more) .gljd_link {
  width: 110px;
  font-size: 18px;
  font-weight: normal;
  color: #d61d16;
}

.gljd_link {
  color: #d61d16;
}

.zfxxgk.item_box_ver {
  box-sizing: border-box;
  margin-left: -8px;
  margin-right: -8px;
}

.zfxxgk.item_box_ver::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.zfxxgk.item_box_ver > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 16.66%;
  padding-left: 8px;
  padding-right: 8px;
  float: left;
}
.zfxxgk.item_box_ver > li img {
  height: 50px;
  width: 50px;
}

.zfxxgk.item_box_ver > li:nth-child(n) {
  margin-top: 0;
}

.zfxxgk.item_box_ver > li:nth-child(2) {
  margin-top: 0;
}

.zfxxgk.item_box_ver a {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}

@media (max-width: 992px) {
  .zfxxgk.item_box_ver {
    margin-left: -8px;
    margin-right: -8px;
  }

  .zfxxgk.item_box_ver::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .zfxxgk.item_box_ver > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.333%;
    padding-left: 8px;
    padding-right: 8px;
    float: left;
  }

  .zfxxgk.item_box_ver > li:nth-child(n) {
    margin-top: 0;
  }

  .zfxxgk.item_box_ver > li:nth-child(n + 3) {
    margin-top: 16px;
  }

  .zfxxgk.item_box_ver > li:nth-child(3) {
    margin-top: 0;
  }

  .zfxxgk.item_box_ver a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .zfxxgk.item_box_ver {
    margin-left: -8px;
    margin-right: -8px;
  }

  .zfxxgk.item_box_ver::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .zfxxgk.item_box_ver > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.333%;
    padding-left: 8px;
    padding-right: 8px;
    float: left;
  }

  .zfxxgk.item_box_ver > li:nth-child(n) {
    margin-top: 0;
  }

  .zfxxgk.item_box_ver > li:nth-child(n + 3) {
    margin-top: 16px;
  }

  .zfxxgk.item_box_ver > li:nth-child(3) {
    margin-top: 0;
  }

  .zfxxgk.item_box_ver a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .menu_list {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
  }
  .menu_list .menu_item {
    min-width: 220px;
  }
}

.zfxxgk.item_box_ver li a {
  transition: all 0.3s;
  box-sizing: border-box;
  width: 100%;
  height: 125px;
  border: solid 1px #e8eef4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  align-items: center;
  padding: 25px 10px;
}

.zfxxgk.item_box_ver li i {
  transition: all 0.3s;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../images/zfxxgk_icons.png) no-repeat;
}

.zfxxgk.item_box_ver li i.s1 {
  background-position: 4px 2px;
}

.zfxxgk.item_box_ver li i.s2 {
  background-position: -186px 2px;
}

.zfxxgk.item_box_ver li i.s3 {
  background-position: -377px 2px;
}

.zfxxgk.item_box_ver li i.s4 {
  background-position: 4px -137px;
}

.zfxxgk.item_box_ver li i.s5 {
  background-position: -186px -137px;
}

.zfxxgk.item_box_ver li i.s6 {
  background-position: -377px -137px;
}

.zfxxgk.item_box_ver li i.s7 {
  background-position: 4px -276px;
}

.zfxxgk.item_box_ver li i.s8 {
  background-position: -186px -276px;
}

.zfxxgk.item_box_ver li i.s9 {
  background-position: -377px -276px;
}

.zfxxgk.item_box_ver li h6 {
  transition: all 0.3s;
  font-size: 18px;
  font-weight: normal;
  color: #333333;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-align: center;
}

.zfxxgk.item_box_ver li:hover a {
  background-color: #d61d16;
  border: solid 1px #e8eef4;
}

.zfxxgk.item_box_ver li:hover i {
  background-image: url(../images/zfxxgk_icons_cur.png);
  transform: rotateY(360deg);
}

.zfxxgk.item_box_ver li:hover h6 {
  font-weight: bold;
  color: #ffffff;
}

.wyzzc {
  margin-top: 16px;
  padding: 20px;
  background-color: #f1f6fa;
  border: solid 1px #e8eef4;
}

.wyzzc b {
  width: 120px;
  font-size: 20px;
  font-weight: bold;
  color: #d61d16;
}

.wyzzc .radios_box {
  width: 240px;
}

.wyzzc .radios_box label {
  cursor: pointer;
  font-size: 18px;
  font-weight: normal;
  color: #333333;
  float: left;
  word-break: keep-all;
  padding-left: 10px;
}

.wyzzc .radios_box label + label {
  margin-left: 20px;
}

.wyzzc .radios_box input[type="radio"] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  position: relative;
  appearance: none;
}

.wyzzc .radios_box input[type="radio"]:focus {
  border: none;
  outline: none;
}

.wyzzc .radios_box input[type="radio"]::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #d61d16;
}

.wyzzc .radios_box input[type="radio"]:checked:after {
  content: "";
  position: absolute;
  top: 2px;
  left: -4.2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d61d16;
}

.wyzzc .search_box1 {
  flex: 1;
  text-align: center;
}

.wyzzc .search_box1 .search {
  display: inline-block;
  position: relative;
  width: 100%;
}

.wyzzc .search_box1 .search input {
  display: block;
  outline: none;
  border: none;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  background-color: #ffffff;
  border: solid 1px #e8eef4;
  border-radius: 0px;
  font-size: 16px;
  font-weight: normal;
  color: #333;
  padding-left: 16px;
  padding-right: 106px;
}

.wyzzc .search_box1 .search input::placeholder {
  color: #999;
}

.wyzzc .search_box1 .search button {
  outline: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 2px;
  width: 90px;
  height: 44px;
  background-color: #d61d16;
  border-radius: 0px 0px 0px 0px;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  transition: opacity 0.3s;
}

.wyzzc .search_box1 .search button img {
  position: relative;
  vertical-align: middle;
  top: -2px;
}

.wyzzc .search_box1 .search button:hover {
  opacity: 0.7;
}

@media (max-width: 992px) {
  .wyzzc .search_box1 .search {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .wyzzc .search_box1 .search input {
    padding: 0 1em;
  }

  .wyzzc .search_box1 .search button {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 10px;
    border-radius: 0px;
  }
}

.gk.item_box_type {
  box-sizing: border-box;
  margin-left: -11px;
  margin-right: -11px;
}

.gk.item_box_type::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.gk.item_box_type > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.333%;
  padding-left: 11px;
  padding-right: 11px;
  float: left;
}

.gk.item_box_type > li:nth-child(n) {
  margin-top: 0;
}

.gk.item_box_type > li:nth-child(n + 3) {
  margin-top: 22px;
}

.gk.item_box_type > li:nth-child(3) {
  margin-top: 0;
}

.gk.item_box_type a {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .gk.item_box_type {
    margin-left: -11px;
    margin-right: -11px;
  }

  .gk.item_box_type::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .gk.item_box_type > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.333%;
    padding-left: 11px;
    padding-right: 11px;
    float: left;
  }

  .gk.item_box_type > li:nth-child(n) {
    margin-top: 0;
  }

  .gk.item_box_type > li:nth-child(n + 3) {
    margin-top: 22px;
  }

  .gk.item_box_type > li:nth-child(3) {
    margin-top: 0;
  }

  .gk.item_box_type a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .gk.item_box_type {
    margin-left: -11px;
    margin-right: -11px;
  }

  .gk.item_box_type::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .gk.item_box_type > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding-left: 11px;
    padding-right: 11px;
    float: left;
  }

  .gk.item_box_type > li:nth-child(n) {
    margin-top: 0;
  }

  .gk.item_box_type > li:nth-child(n + 1) {
    margin-top: 22px;
  }

  .gk.item_box_type > li:nth-child(1) {
    margin-top: 0;
  }

  .gk.item_box_type a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.gk.item_box_type a {
  display: block;
  box-sizing: border-box;
}

@media (min-width: 993px) {
  .gk.item_box_type a {
    height: 114px;
  }
}

.gk.item_box_type a:hover {
  box-shadow: 0 0px 10px 5px #dbe5f0;
}

.gk.item_box_type a img {
  width: 100%;
  height: 100%;
}

.ztfw.item_box_hor {
  box-sizing: border-box;
  margin-left: -8px;
  margin-right: -8px;
}

.ztfw.item_box_hor::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.ztfw.item_box_hor > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 16.666%;
  padding-left: 8px;
  padding-right: 8px;
  float: left;
}

.ztfw.item_box_hor > li:nth-child(n) {
  margin-top: 0;
}

.ztfw.item_box_hor > li:nth-child(n + 6) {
  margin-top: 16px;
}

.ztfw.item_box_hor > li:nth-child(6) {
  margin-top: 0;
}

.ztfw.item_box_hor a {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .ztfw.item_box_hor {
    margin-left: -8px;
    margin-right: -8px;
  }

  .ztfw.item_box_hor::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .ztfw.item_box_hor > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 25%;
    padding-left: 8px;
    padding-right: 8px;
    float: left;
  }

  .ztfw.item_box_hor > li:nth-child(n) {
    margin-top: 0;
  }

  .ztfw.item_box_hor > li:nth-child(n + 4) {
    margin-top: 16px;
  }

  .ztfw.item_box_hor > li:nth-child(4) {
    margin-top: 0;
  }

  .ztfw.item_box_hor a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .ztfw.item_box_hor {
    margin-left: -8px;
    margin-right: -8px;
  }

  .ztfw.item_box_hor::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .ztfw.item_box_hor > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
    float: left;
  }

  .ztfw.item_box_hor > li:nth-child(n) {
    margin-top: 0;
  }

  .ztfw.item_box_hor > li:nth-child(n + 2) {
    margin-top: 16px;
  }

  .ztfw.item_box_hor > li:nth-child(2) {
    margin-top: 0;
  }

  .ztfw.item_box_hor a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.ztfw.item_box_hor li a {
  transition: all 0.3s;
  box-sizing: border-box;
  width: 100%;
  height: 64px;
  background-color: #ffffff;
  border: solid 1px #e8eef4;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ztfw.item_box_hor li i {
  margin-right: 15px;
  transition: all 0.3s;
  display: inline-block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/ztfw_icons.png);
}

.ztfw.item_box_hor li i.s1 {
  background-position: 0 0;
}

.ztfw.item_box_hor li i.s2 {
  background-position: -230px 0;
}

.ztfw.item_box_hor li i.s3 {
  background-position: -444px 0;
}

.ztfw.item_box_hor li i.s4 {
  background-position: -678px 0;
}

.ztfw.item_box_hor li i.s5 {
  background-position: -905px 0;
}

.ztfw.item_box_hor li i.s6 {
  background-position: -1131px 0;
}

.ztfw.item_box_hor li i.s7 {
  background-position: 0 -79px;
}

.ztfw.item_box_hor li i.s8 {
  background-position: -230px -79px;
}

.ztfw.item_box_hor li i.s9 {
  background-position: -444px -79px;
}

.ztfw.item_box_hor li i.s10 {
  background-position: -678px -79px;
}

.ztfw.item_box_hor li i.s11 {
  background-position: -879px -79px;
}

.ztfw.item_box_hor li i.s12 {
  background-position: -1131px -79px;
}

.ztfw.item_box_hor li h6 {
  transition: all 0.3s;
  font-size: 18px;
  font-weight: normal;
  color: #333333;
  text-align: left;
}

.ztfw.item_box_hor li:hover a {
  background-color: #d61d16;
}

.ztfw.item_box_hor li:hover i {
  background-image: url(../images/ztfw_icons_cur.png);
  transform: rotateY(360deg);
}

.ztfw.item_box_hor li:hover h6 {
  color: #ffffff;
}

.ztfw.item_box_hor li.panel-more {
  display: none;
}

.cxfw.item_box_title {
  box-sizing: border-box;
  margin-left: -8px;
  margin-right: -8px;
}

.cxfw.item_box_title::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.cxfw.item_box_title > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 25%;
  padding-left: 8px;
  padding-right: 8px;
  float: left;
}

.cxfw.item_box_title > li:nth-child(n) {
  margin-top: 0;
}

.cxfw.item_box_title > li:nth-child(n + 4) {
  margin-top: 16px;
}

.cxfw.item_box_title > li:nth-child(4) {
  margin-top: 0;
}

.cxfw.item_box_title a {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .cxfw.item_box_title {
    margin-left: -8px;
    margin-right: -8px;
  }

  .cxfw.item_box_title::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .cxfw.item_box_title > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 16.666%;
    padding-left: 8px;
    padding-right: 8px;
    float: left;
  }

  .cxfw.item_box_title > li:nth-child(n) {
    margin-top: 0;
  }

  .cxfw.item_box_title > li:nth-child(n + 6) {
    margin-top: 16px;
  }

  .cxfw.item_box_title > li:nth-child(6) {
    margin-top: 0;
  }

  .cxfw.item_box_title a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .cxfw.item_box_title {
    margin-left: -8px;
    margin-right: -8px;
  }

  .cxfw.item_box_title::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .cxfw.item_box_title > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
    float: left;
  }

  .cxfw.item_box_title > li:nth-child(n) {
    margin-top: 0;
  }

  .cxfw.item_box_title > li:nth-child(n + 2) {
    margin-top: 16px;
  }

  .cxfw.item_box_title > li:nth-child(2) {
    margin-top: 0;
  }

  .cxfw.item_box_title a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.cxfw.item_box_title li a {
  transition: all 0.3s;
  box-sizing: border-box;
  width: 100%;
  height: 64px;
  line-height: 64px;
  text-align: center;
  background-color: #ffffff;
  border: solid 1px #e8eef4;
  padding: 0 20px;
  font-size: 18px;
  font-weight: normal;
  color: #333333;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.cxfw.item_box_title li:hover a {
  background-color: #d61d16;
  color: #fff;
}

.cxfw.item_box_title li.panel-more {
  display: none;
}

.m_cjsdh_list .item {
  display: block;
  background: no-repeat center;
  background-size: 102% 102%;
  background-color: #f1f6fa;
}

.m_cjsdh_list .item div {
  padding: 36px 24px 40px 24px;
}

.m_cjsdh_list .item h4 {
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 20px;
  letter-spacing: 1px;
  color: #d61d16;
  margin-bottom: 10px;
}

.m_cjsdh_list .item p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 16px;
  letter-spacing: 0px;
  color: #333333;
}

.m_cjsdh_list .item1 {
  background-image: url(../images/cjsdh_p01.png);
}

.m_cjsdh_list .item2 {
  background-image: url(../images/cjsdh_p02.png);
}

.m_cjsdh_list .item3 {
  background-image: url(../images/cjsdh_p03.png);
}

.m_cjsdh_list .item4 {
  background-image: url(../images/cjsdh_p04.png);
}

.m_cjsdh_list .item5 {
  background-image: url(../images/cjsdh_p05.png);
}

.m_cjsdh_list .item6 {
  background-image: url(../images/cjsdh_p06.png);
}

.m_cjsdh_list .item7 {
  background-image: url(../images/cjsdh_p07.png);
}

.m_cjsdh_list .item8 {
  background-image: url(../images/cjsdh_p08.png);
}

.m_cjsdh_list .item9 {
  background-image: url(../images/cjsdh_p09.png);
}

.m_cjsdh_list .item10 {
  background-image: url(../images/cjsdh_p010.png);
}

.m_cjsdh_list .item11 {
  background-image: url(../images/cjsdh_p011.png);
}

.m_cjsdh_list .news_swiper {
  padding-bottom: 30px;
}

.m_cjsdh_list .news_swiper .swiper-pagination {
  bottom: 0;
}

.m_cjsdh_list .news_swiper .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: #cccccc;
  border-radius: 50%;
  margin: 0 8px;
}

.m_cjsdh_list .news_swiper .swiper-pagination-bullet-active {
  background-color: #d61d16;
}

.ftable_column {
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  /* border-top: solid 1px transparent; */
  /* border-left: solid 1px transparent; */
  background-color: #fff;
}

.ftable_column .fth {
  font-size: 18px;
  font-weight: bold;
  /* color: #d61d16; */
}

.ftable_column .ftd {
  font-size: 18px;
  font-weight: normal;
  color: #333;
}

.ftable_column .frow {
  width: 100%;
  display: flex;
}

.ftable_column .fth,
.ftable_column .ftd {
  display: flex;
  align-items: center;
  border-bottom: solid 1px transparent;
  border-right: solid 1px transparent;
}

.ftable_column .fth {
  justify-content: center;
  height: 52px;
  line-height: 52px;
  background-color: #f5f8fa;
}

.ftable_column .ftd {
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  word-break: break-all;
  text-align: justify;
  line-height: 1.5;
}

.ftable_column .ftd p,
.ftable_column .ftd a {
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.ftable_column .ftbody .frow:not(:last-child) {
  border-bottom: 1px dashed #c5e1f8;
}

.ftable1 .fth:nth-child(1),
.ftable1 .ftd:nth-child(1) {
  width: 70%;
  justify-content: start;
}

.ftable1 .fth:nth-child(2),
.ftable1 .ftd:nth-child(2) {
  width: 30%;
}

.myzj.list_t li a {
  width: calc(100% - 200px);
}

.myzj.list_t .myzj_tag {
  margin-top: 6px;
  line-height: 28px;
  font-size: 14px;
  border-radius: 5px;
  padding: 0 13px;
  display: inline-block;
  position: absolute;
  top: 21px;
  right: 120px;
}

.myzj.list_t .myzj_tag.going {
  background-color: #ecf6ff;
  color: #226ebc;
}

.myzj.list_t .myzj_tag.end {
  background-color: #e7e8e9;
  color: #999999;
}

.hygq.list_t li a {
  width: calc(100% - 120px);
}

.img_text2 {
  /* height: 170px; */
  background-color: #f5f8fa;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.img_text2 .img_text_left {
  /* width: 230px;
  margin-right: 20px; */
  border-radius: 8px;
  overflow: hidden;
  width: 292px;
  min-width: 292px;
  height: 220px;
}
.img_text2 .img_text_left a {
  display: block;
  width: 100%;
  height: 100%;
}

.img_text2 .img_text_right {
  width: calc(100% - 312px);
}
.img_text2 .img_text_right a {
  display: block;
}

.img_text2 .img {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
}

.img_text2 .img img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img_text2 .text h6 a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #333;

  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin-bottom: 15px;
  transition: all 0.3s;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 24px;
}

.img_text2 .text p {
  font-size: 16px;
  font-weight: normal;
  color: #717171;
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 10px;
}

.img_text2 .text span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #999999;
}
.img_text2 span.ft_span {
  display: inline-block;
}

.img_text2:hover .img img {
  transform: scale(1.05);
}

.img_text2:hover .text a {
  color: #d61d16;
}

@media (max-width: 992px) {
  .img_text2 {
    height: auto;
    flex-wrap: wrap;
  }

  .img_text2 .img_text_left,
  .img_text2 .img_text_right {
    width: 100%;
    margin: 10px 0;
  }

  .img_text2 .img img {
    height: auto;
  }

  .img_text2 .panel-more {
    width: 100%;
  }
}

.wqhg {
  width: 100%;
  height: 86px;
  background-color: #f5f8fa;
  border: solid 1px #e8eef4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  align-items: center;
  padding: 10px 10px;
}

.wqhg span {
  font-size: 16px;
  font-weight: normal;
  color: #d61d16;
}

.list_t.wqhg_list {
  margin-top: -8px;
  margin-bottom: -8px;
}

.list_t.wqhg_list li {
  padding: 8px 0px 8px 20px;
}

.list_t.wqhg_list li a {
  font-size: 16px;
}

.fw_img {
  width: 100%;
  height: 92px;
}

@media (max-width: 992px) {
  .fw_img {
    height: auto;
  }
}

.fw.item_box_ver {
  box-sizing: border-box;
  margin-left: 0px;
  margin-right: 0px;
}

.fw.item_box_ver::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.fw.item_box_ver > li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.333%;
  padding-left: 0px;
  padding-right: 0px;
  float: left;
}

.fw.item_box_ver > li:nth-child(n) {
  margin-top: 0;
}

.fw.item_box_ver > li:nth-child(n + 3) {
  margin-top: 16px;
}

.fw.item_box_ver > li:nth-child(3) {
  margin-top: 0;
}

.fw.item_box_ver a {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .fw.item_box_ver {
    margin-left: -8px;
    margin-right: -8px;
  }

  .fw.item_box_ver::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .fw.item_box_ver > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.333%;
    padding-left: 8px;
    padding-right: 8px;
    float: left;
  }

  .fw.item_box_ver > li:nth-child(n) {
    margin-top: 0;
  }

  .fw.item_box_ver > li:nth-child(n + 3) {
    margin-top: 16px;
  }

  .fw.item_box_ver > li:nth-child(3) {
    margin-top: 0;
  }

  .fw.item_box_ver a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .fw.item_box_ver {
    margin-left: -8px;
    margin-right: -8px;
  }

  .fw.item_box_ver::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .fw.item_box_ver > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 33.333%;
    padding-left: 8px;
    padding-right: 8px;
    float: left;
  }

  .fw.item_box_ver > li:nth-child(n) {
    margin-top: 0;
  }

  .fw.item_box_ver > li:nth-child(n + 3) {
    margin-top: 16px;
  }

  .fw.item_box_ver > li:nth-child(3) {
    margin-top: 0;
  }

  .fw.item_box_ver a {
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.fw.item_box_ver li a {
  transition: all 0.3s;
  box-sizing: border-box;
  width: 100%;
  height: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
  align-items: center;
  padding: 10px 0px;
}

.fw.item_box_ver li i {
  transition: all 0.3s;
  display: inline-block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
}

.fw.item_box_ver li i.s1 {
  background-image: url(../images/index_fw_icon1.png);
}

.fw.item_box_ver li i.s2 {
  background-image: url(../images/index_fw_icon2.png);
}

.fw.item_box_ver li i.s3 {
  background-image: url(../images/index_fw_icon3.png);
}

.fw.item_box_ver li h6 {
  transition: all 0.3s;
  font-size: 16px;
  font-weight: normal;
  color: #41423e;
  width: 100%;
  text-align: center;
}

.fw.item_box_ver li:hover i {
  transform: rotateY(360deg);
}

.fw.item_box_ver li:hover h6 {
  color: #d61d16;
}

.swiper_box2 {
  position: relative;
  margin-top: -10px;
}

.swiper_box2 #Swiper2 {
  padding: 10px 8px;
  width: 100%;
}

@media (max-width: 600px) {
  .swiper_box2 #Swiper2 {
    height: auto;
  }
}

.swiper_box2 .img_box {
  display: block;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  padding: 10px;
}

/* 专题专栏轮播图样式 - 只针对Swiper3 */
#Swiper3 .swiper_box2 .img_box img,
#Swiper3 .img_box img {
  transition: all 0.3s;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* 其他轮播图保持原样 */
.swiper_box2 .img_box img {
  transition: all 0.3s;
  width: 100%;
  height: 112px;
}

.swiper_box2 .img_box h6 {
  margin-top: 15px;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: normal;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.swiper_box2 .img_box:hover {
  background-color: #ffffff;
  box-shadow: 0px 2px 13px 0px #8fc0ff;
}

.swiper_box2 .img_box:hover h6 {
  color: #d61d16;
}

@media (max-width: 600px) {
  .swiper_box2 .img_box {
    width: 100%;
  }

  /* 专题专栏轮播图移动端样式 - 只针对Swiper3 */
  #Swiper3 .swiper_box2 .img_box img,
  #Swiper3 .img_box img {
    height: 150px;
    object-fit: cover;
  }

  /* 其他轮播图移动端保持原样 */
  .swiper_box2 .img_box img {
    height: auto;
  }
}

/* 专题专栏轮播图导航按钮 - 只针对Swiper3 */
#Swiper3 .swiper-button-prev,
#Swiper3 .swiper-button-next {
  position: absolute;
  top: 42%;
  width: 28px;
  height: 53px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: 0px 2px 6px 0px #c4deff;
}

/* 其他轮播图导航按钮保持原样 */
.swiper_box2 .swiper-button-prev,
.swiper_box2 .swiper-button-next {
  position: absolute;
  top: 39%;
  width: 28px;
  height: 53px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  box-shadow: 0px 2px 6px 0px #c4deff;
}

.swiper_box2 .swiper-button-prev {
  left: -60px;
  background-image: url(../images/btn_prev3.png);
}

.swiper_box2 .swiper-button-next {
  right: -60px;
  background-image: url(../images/btn_next3.png);
}

.left_zntj2 {
  position: absolute;
  top: 560px;
  left: calc(50% - 1400px / 2 - 66px);
  z-index: 99999;
}

.left_zntj2 .zntj_box {
  position: relative;
}

.left_zntj2 .zntj_box .zntj_btn {
  position: relative;
  z-index: 120;
  width: 66px;
  height: 136px;
  font-size: 0;
}

.left_zntj2 .zntj_box:hover .zntj_tab_pane_fir {
  display: block;
}

.left_zntj2 .zntj_box .zntj_tab_pane_fir {
  display: none;
  background-color: #fff;
  z-index: 110;
  position: absolute;
  top: 1px;
  left: 66px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 700px;
  height: 474px;
  background-color: #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(29, 106, 174, 0.2);
  padding: 25px;
}

.left_zntj2 .zntj_box .zntj_tab_sec {
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e8edf1;
  display: flex;
  justify-content: space-between;
}

.left_zntj2 .zntj_box .zntj_tab_sec a {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  padding-bottom: 5px;
}

.left_zntj2 .zntj_box .zntj_tab_sec a.cut {
  font-weight: bold;
  color: #106bc8;
  border-bottom: 2px solid #106bc8;
}

.left_zntj2 .zntj_box h4 {
  font-size: 14px;
  font-weight: bold;
  line-height: 36px;
  color: #1658a0;
}

.left_zntj2 .zntj_box .zntj_list li {
  line-height: 1;
  position: relative;
  padding: 20px 0px;
}

.left_zntj2 .zntj_box .zntj_list li:not(:last-child) {
  border-bottom: 1px dashed #eaebee;
}

.left_zntj2 .zntj_box .zntj_list li a {
  transition: all 0.3s;
  display: block;
  width: calc(100% - 120px);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-size: 18px;
  color: #555555;
}

.left_zntj2 .zntj_box .zntj_list li a:hover {
  color: #106bc8;
}

@media (max-width: 600px) {
  .left_zntj2 .zntj_box .zntj_list li a {
    width: 100%;
  }
}

.left_zntj2 .zntj_box .zntj_list li span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  font-size: 18px;
  color: #555555;
}

.left_zntj2 .refresh {
  margin-top: 20px;
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  color: #555555;
  background-color: #f2f8ff;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.left_zntj2 .refresh:hover {
  opacity: 0.7;
}

.left_zntj2 .refresh img {
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}

.zfxkgk_tab .tab {
  border-bottom: none;
  white-space: nowrap;
  display: flex;
  gap: 8px;
}

.zfxkgk_tab .tab a {
  flex: 0.8;
  min-width: 0;
  height: 38px;
  border-radius: 4px;
  padding: 0 8px;
  opacity: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 只针对信息公开tab下的最后一个子标签 */
#tab-content-info .zfxkgk_tab .tab a:last-child {
  flex: 1.4;
}

/* 网上服务tab下的子标签保持等宽 */
#tab-content-service .zfxkgk_tab .tab a {
  flex: 1;
}

.zfxkgk_tab .tab a {
  background: #ffffff;
  box-sizing: border-box;
  border: 1px solid transparent !important;
  background: #f6f6f6;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0px;
  color: #111111;
  display: inline-block;
  text-align: center;
  align-items: center;
  padding: 0;
  line-height: 38px;
  font-weight: bold;
  margin-right: 10px !important;
}

.zfxkgk_tab .tab a.cur {
  color: #d61d16;
  background: #ffffff;
  border: 1px solid #d61d16 !important;
}

/* 信息公开按钮区域样式优化 */
.zfxkgk_btn_box {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.zfxkgk_btn_box a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid #e9ecef;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  margin-bottom: 12px;
  text-decoration: none;
  padding: 0 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.zfxkgk_btn_box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #d61d16 0%, #e53935 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.zfxkgk_btn_box a:hover {
  background: #fff5f5;
  color: #d61d16;
  border-color: #d61d16;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(214, 29, 22, 0.15);
}

.zfxkgk_btn_box a:hover::before {
  transform: scaleY(1);
  background: #ffffff;
}

.zfxkgk_btn_box a img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  transition: all 0.3s ease;
  filter: grayscale(0.3);
}

.zfxkgk_btn_box a:hover img {
  filter: grayscale(0) brightness(1.2);
  transform: scale(1.1);
}

.zfxkgk_btn_box a:last-child {
  margin-bottom: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .zfxkgk_btn_box {
    padding: 15px;
  }

  .zfxkgk_btn_box a {
    height: 66px;
    font-size: 15px;
    padding: 12px;
  }

  .zfxkgk_btn_box a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .zfxkgk_btn_box {
    padding: 12px;
  }

  .zfxkgk_btn_box a {
    height: 64px;
    font-size: 14px;
    padding: 0 10px;
  }

  .zfxkgk_btn_box a img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
  }
}

/* 底部图片区域样式 */
.dbewm {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.dbewm img {
  width: 100%;
  height: auto;
  display: block;
}

.dbewm a {
  display: block;
  position: absolute;
  width: 62px;
  height: 80px;
  top: 80px;
  transition: all 0.3s ease;
}

.dbewm a:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* 响应式调整链接位置 */
@media (max-width: 1200px) {
  .dbewm a {
    width: 50px;
    height: 65px;
    top: 70px;
  }

  .dbewm a:nth-child(2) {
    right: 5%;
  }

  .dbewm a:nth-child(3) {
    right: 18%;
  }

  .dbewm a:nth-child(4) {
    right: 35%;
  }
}

@media (max-width: 768px) {
  .dbewm a {
    width: 40px;
    height: 50px;
    top: 60px;
  }

  .dbewm a:nth-child(2) {
    right: 5%;
  }

  .dbewm a:nth-child(3) {
    right: 20%;
  }

  .dbewm a:nth-child(4) {
    right: 35%;
  }
}

@media (max-width: 480px) {
  .dbewm a {
    width: 30px;
    height: 40px;
    top: 50px;
  }

  .dbewm a:nth-child(2) {
    right: 5%;
  }

  .dbewm a:nth-child(3) {
    right: 25%;
  }

  .dbewm a:nth-child(4) {
    right: 45%;
  }
}

/* 公告公示样式 */
.cloumn1 {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
}

.w720 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gsgg_hd {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gsgg_hd a {
  color: #d61d16;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gsgg_hd a::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url("./xlb.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

.gsgg_focus {
  flex: 1;
  position: relative;
}

.gsggTxt {
  position: relative;
  overflow: visible;
  /* width: 965px; */
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-shrink: 0;
  margin: 0 auto;
}

.gsggList {
  position: relative;
  /* width: 900px; */
  width: calc(100% - 80px);
  flex-shrink: 0;
}

.gsggList ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

.gsggList li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  gap: 15px;
  transition: opacity 0.2s ease;
}

.gsggList li:last-child {
  border-bottom: none;
}

.gsggTitle {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: #d61d16;
  border-radius: 50%;
}

.gsggList li .bt {
  flex: 1;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 800px;
}

.gsggList li .bt:hover {
  color: #d61d16;
  text-decoration: none;
}

.gsggDate {
  flex-shrink: 0;
  color: #666;
  font-size: 13px;
  margin-left: 15px;
}

.gsgg_buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-top: 8px;
  width: 50px;
}

.prev,
.next {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  border: none;
  border-radius: 0;
}

.prev:hover,
.next:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.prev {
  background-image: url("./btn_prev3.png");
}

.next {
  background-image: url("./btn_next3.png");
}

/* 响应式设计 */
@media (max-width: 768px) {
  .w720 {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0 15px;
  }

  #Swiper1 .swiper-pagination {
    bottom: -14px;
  }

  .gsgg_hd {
    width: 100%;
    justify-content: flex-start;
  }

  .gsgg_focus {
    width: 100%;
  }

  .gsggList li {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
  }

  .gsggList li .bt {
    white-space: nowrap;
    line-height: 1.4;
    max-width: -webkit-fill-available;
  }

  .gsggDate {
    margin-left: 0;
    align-self: flex-end;
  }

  .prev,
  .next {
    display: block !important;
  }
}

@media (max-width: 480px) {
  .cloumn1 {
    padding: 15px 0;
  }

  .gsgg_hd a {
    font-size: 15px;
  }

  .gsggList li .bt {
    font-size: 13px;
  }

  .gsggDate {
    font-size: 12px;
  }
}

.ztzl_box {
  margin-top: 20px;
  opacity: 1;
  /* background: #f5f8fa; */
  margin-bottom: 20px;
}
.ztzl_box h6 {
  display: none;
}

.item_box_ver.hdjl img {
  width: 32px !important;
  height: 32px !important;
  margin-bottom: 8px;
}

.header_logo_text_span {
  display: flex;
  justify-content: center;
}

.header_logo_text_span span {
  display: inline-block;
  padding: 10px 20px;
  font-size: 24px;
  color: #c52b31;
  text-shadow: 2px 2px 0px #ffffff;
}
.swiper-wrapper-bg-tip .img_box {
  position: relative;
}
.swiper-wrapper-bg-tip p {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 40px;
  height: 80px;
  width: 200px;
  font-size: 24px;
  text-align: center;
  color: #fff;
  font-weight: normal;
}
.hdjl_box_content {
  height: 100%;
  background-color: #d61d16;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  line-height: 28px;
  height: 125px;
}
.zfxxgk.item_box_ver.hdjl_box_ul li {
  width: 20%;
}
.zfxxgk.item_box_ver.hdjl_box_ul li:nth-child(4) {
  width: 40%;
}

@media (max-width: 600px) {
  .zfxxgk.item_box_ver.hdjl_box_ul li {
    width: 33.33%;
  }
  .zfxxgk.item_box_ver.hdjl_box_ul li:nth-child(4) {
    width: 100%;
    margin-bottom: 20px;
  }
}

.xj-container {
  padding: 0 20px 14px 20px;
  background-color: #f5f8fa;
  border-radius: 8px;
}

@media (max-width: 600px) {
  .fiexd_box {
    display: none;
  }
}
