.top_nav {
  width: 100%;
  min-width: 1280px;
  height: 66px;
  line-height: 66px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  color: #fff;
  background-color: #323232;
  padding-left: 100px;
}

.top_nav_logo {
  width: 260px;
  height: 100px;
  background-color: #cd1e2b;
  background-image: url(../images/logo03.png);
  background-repeat: no-repeat;
  background-position: center 32px;
  background-size: 211px 69px;
}

.top_nav .nav_menu {
  display: flex;
  flex: 1;
  align-items: center;
  max-width: 1900px;
  justify-content: flex-start;
  margin-left: 40px;
}

.top_nav .nav_menu a {
  display: block;
  color: #fff;
  font-family: "\5FAE\8F6F\96C5\9ED1", sans-serif;
  font-size: 20px;
  flex: 1;
  text-align: center;
  transition: 0.3s;
  background-color: #323232;
  border: 5px solid #323232;
  height: 66px;
  line-height: 60px;
  border-radius: 0;
}

.top_nav .nav_menu a:hover {
  background-color: #cd1e2b;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.top_nav .nav_menu i {
  font-size: 13px;
  color: #fff;
  font-style: normal;
}

/*.nav_menu a:first-child {*/
/*    min-width: 130px;*/
/*}*/

.nav_menu a:nth-child(5) {
  min-width: 130px;
}

.search {
  position: relative;
  padding-right: 20px;
  margin-left: auto;
}

.search-wrapper {
  position: relative;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  top: 0;
  right: 0;
  padding-left: 40px;
}

.search-wrapper .input-holder {
  overflow: hidden;
  height: 66px;
  background: rgba(255, 255, 255, 0);
  position: relative;
  width: 66px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  right: 0;
}

.search-wrapper.active .input-holder {
  border-radius: 50px;
  width: 300px;
  line-height: 66px;
  background: #323232;
  -webkit-transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
  -moz-transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1.57);
  right: 40px;
}

.search-wrapper .input-holder .search-input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0px 66px 0 20px;
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.search-wrapper.active .input-holder .search-input {
  opacity: 1;
  -webkit-transform: translate(0, 10px);
  -moz-transform: translate(0, 10px);
  transform: translate(0, 10px);
}

.search-wrapper .input-holder .search-icon {
  width: 66px;
  height: 66px;
  border: none;
  background: #323232;
  padding: 0px;
  outline: none;
  position: relative;
  z-index: 2;
  float: right;
  cursor: pointer;
}

.search-wrapper.active .input-holder .search-icon {
  width: 50px;
  height: 50px;
  margin: 10px;
  border-radius: 30px;
}

.search-wrapper .input-holder .search-icon span {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
  -moz-transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
  transition: all 0.4s cubic-bezier(0.65, -0.6, 0.24, 1.65);
}

.search-wrapper.active .input-holder .search-icon span {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.search-wrapper .input-holder .search-icon span::before,
.search-wrapper .input-holder .search-icon span::after {
  position: absolute;
  content: "";
}

.search-wrapper .input-holder .search-icon span::before {
  width: 4px;
  height: 11px;
  left: 8px;
  top: 18px;
  border-radius: 2px;
  background: #fff;
}

.search-wrapper .input-holder .search-icon span::after {
  width: 20px;
  height: 20px;
  left: 0px;
  top: 0px;
  border-radius: 16px;
  border: 4px solid #fff;
}

.search-wrapper .close {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
  -moz-transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
  transition: all 0.3s cubic-bezier(0.285, -0.45, 0.935, 0.11);
}

.search-wrapper.active .close {
  right: 10px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  -moz-transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.6s cubic-bezier(0, 0.105, 0.035, 1.57);
}

.search-wrapper .close::before,
.search-wrapper .close::after {
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 2px;
}

.search-wrapper .close::before {
  width: 5px;
  height: 25px;
  left: 10px;
  top: 0px;
}

.search-wrapper .close::after {
  width: 25px;
  height: 5px;
  left: 0px;
  top: 10px;
}

@media screen and (max-width: 560px) {
  .search-wrapper.active .input-holder {
    width: 200px;
  }
}

.top_news {
  width: 1280px;
  height: auto;
  border-bottom: 1px solid #f1f1f1;
  padding: 40px 0 30px;
  margin: 0 auto;
}

.top_news_container {
  width: 1280px;
  height: auto;
  margin: 0 auto;
  max-width: 2000px;
}

.top_news_container .top_main {
  background-image: url("../images/logo02.png");
  background-repeat: no-repeat;
  background-position: left 6px;
  padding-left: 150px;
}

.top_news_container .top_main a {
  display: block;
  font-weight: bold;
  color: #000;
  font-size: 40px;
  margin-bottom: 26px;
}

.top_news_container .top_main a:hover {
  color: #b61c12;
  text-decoration: none;
}

.top_news_container .bottom_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top_news_container .bottom_main a {
  display: block;
  width: 48%;
  font-size: 22px;
  line-height: 44px;
  height: 44px;
  overflow: hidden;
  color: #333;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
  position: relative;
  padding-left: 28px;
}

.top_news_container .bottom_main a:hover {
  color: #b61c12;
  text-decoration: none;
  font-weight: bold;
}

.top_news_container .bottom_main a::before {
  content: "·";
  position: absolute;
  left: 8px;
  top: 45%;
  transform: translateY(-50%);
  font-size: 46px;
  color: #176eb6;
  line-height: 1;
}

.top_news_container .bottom_main_a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top_news_container .bottom_main_a .news-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  /* 固定宽度 */
  margin: 0;
  position: relative;
}

.top_news_container .bottom_main_a .news-content {
  display: inline-block;
  transition: transform 0.5s linear;
}

.top_news_container .bottom_main_a .news-content.scrolling {
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 20px));
  }
}

.top_news_container .bottom_main_a a {
  display: block;
  width: 100%;
  font-size: 22px;
  line-height: 44px;
  height: 44px;
  overflow: hidden;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
  position: relative;
  padding-left: 28px;
}

.top_news_container .bottom_main_a a:hover {
  color: #b61c12;
  text-decoration: none;
  font-weight: bold;
}

.top_news_container .bottom_main_a a::before {
  content: "·";
  position: absolute;
  left: 8px;
  top: 45%;
  transform: translateY(-50%);
  font-size: 46px;
  color: #176eb6;
  line-height: 1;
}

.top_news_container .bottom_main_b {
  width: 100%;
}

.top_news_container .bottom_main_b div {
  margin: 10px auto 0;
  width: 100%;
}

.top_news_container .bottom_main_b div a {
  color: #000;
  font-size: 18px;
}

.top_news_container .bottom_main_b div i {
  font-style: normal;
  display: inline-block;
  padding: 0 10px;
}

.b_img {
  width: 1280px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}

.b_img a {
  display: block;
  width: 100%;
  height: 100%;
}

.b_img img {
  display: block;
  width: 1280px;
  height: 100px;
}

.hero_image {
  width: 1280px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  justify-content: space-between;
}

.hero_image_top {
  width: 100%;
  font-size: 33px;
  text-align: center;
  font-weight: bold;
  padding-bottom: 40px;
}

.hero_image_top a {
  color: #000;
}

.hero_image_top a:hover {
  color: #b61c12;
  text-decoration: none;
}

.hero_image_left {
  width: 830px;
  height: 465px;
  overflow: hidden;
}

.hero_image_left .swiper {
  width: 100%;
  height: 100%;
}

.hero_image_left .swiper-slide {
  background: #fff;
  display: block;
  position: relative;
}

.hero_image_left .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero_image_left .swiper-slide p {
  position: relative;
  z-index: 99;
  bottom: 70px;
  display: block;
  width: 100%;
  height: 70px;
  line-height: 70px;
  font-size: 22px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.hero_image_left .swiper-slide p a {
  color: #fff;
  display: block;
  width: 600px;
  height: 70px;
  overflow: hidden;
  padding-left: 20px;
}

.hero_image_left .swiper-button-next,
.hero_image_left .swiper-rtl .swiper-button-prev,
.hero_image_left .swiper-button-prev,
.hero_image_left .swiper-rtl .swiper-button-next {
  color: #fff;
  top: 430px;
}

.hero_image_left .swiper-button-next:after,
.hero_image_left .swiper-button-prev:after {
  font-size: 26px !important;
}

.hero_image_left .swiper-pagination {
  bottom: 24px;
  right: 40px;
}

.hero_image_left .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: #fff;
}

.swiper-pagination-bullet-active {
  background-color: #a0d0f7 !important;
  width: 40px !important;
  border-radius: 50px !important;
}

.hero_image_right {
  width: 430px;
}

.hero_image_right .top_content {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
}

.hero_image_right .top_content a {
  display: block;
  width: 210px;
  height: 90px;
}

.hero_image_right .top_content a img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero_image_right .bottom_comtent {
  width: 430px;
  height: 374px;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../images/index0004.png");
  background-repeat: no-repeat;
  background-position: left 165px;
  padding-top: 20px;
}

.hero_image_right .bottom_comtent a {
  display: block;
  height: 44px;
  line-height: 44px;
  width: 420px;
  overflow: hidden;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
  font-size: 16px;
  color: #000;
}

.hero_image_right .bottom_comtent a:hover {
  color: #b61c12;
}

.hero_image_right .bottom_comtent a:nth-child(1),
.hero_image_right .bottom_comtent a:nth-child(4) {
  font-size: 18px;
  font-weight: bold;
  font-family: "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", sans-serif;
}

.hero_image_right .bottom_comtent a:nth-child(3) {
  margin-bottom: 46px;
}

.flash_news {
  width: 1280px;
  height: 80px;
  line-height: 80px;
  overflow: hidden;

  position: relative;
  background-image: url("../images/index0005.png?2");
  background-repeat: no-repeat;
  background-position: left center;
  margin: 0 auto;
}

.flash_news a {
  font-size: 16px;
  color: #000;
}

.flash_news a:hover {
  color: #b61c12;
  text-decoration: none;
}

.flash_news i {
  font-style: normal;
  padding: 0 15px;
}

.news-container {
  overflow: hidden;
  white-space: nowrap;
  width: 1160px;
  margin-left: 120px;
}

.news-wrapper {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.news-wrapper:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.weidu_news {
  width: 1280px;
  height: 327px;
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
}

.weidu_news_left {
  width: 840px;
  height: 325px;
  display: flex;
  justify-content: space-between;
  background-image: url("../images/index0006.png?2");
  background-repeat: no-repeat;
  background-position: -15px top;
  flex-wrap: wrap;
}

.weidu_news_content_more {
  height: 50px;
  width: 100%;
  line-height: 50px;
}

.weidu_news_content_more a {
  width: 80px;
  height: 40px;
  display: block;
  float: right;
}

.weidu_news_left .turn_img {
  width: 427px;
  height: 266px;
  overflow: hidden;
}

.weidu_news_left .turn_img .swiper {
  width: 100%;
  height: 100%;
}

.weidu_news_left .turn_img .swiper-slide {
  background: #fff;
  display: block;
  position: relative;
}

.weidu_news_left .turn_img .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.weidu_news_left .turn_img .swiper-slide p {
  position: relative;
  z-index: 99;
  bottom: 70px;
  display: block;
  width: 100%;
  height: 70px;
  line-height: 70px;
  font-size: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.weidu_news_left .turn_img .swiper-slide p a {
  color: #fff;
  display: block;
  width: 407px;
  height: 70px;
  overflow: hidden;
  padding-left: 10px;
}

.weidu_news_left .turn_img .swiper-pagination {
  bottom: 0;
  right: 6px;
}

.weidu_news_left .turn_img .swiper-pagination-bullet {
  margin: 0 5px;
  background-color: #fff;
  opacity: 1;
}

.weidu_news_left .turn_img .swiper-pagination-bullet-active {
  background-color: #df3429 !important;
  width: 26px !important;
  border-radius: 50px !important;
}

.weidu_news_left .news_content {
  width: 398px;
  height: 265px;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../images/index0004.png");
  background-repeat: no-repeat;
  background-position: left 128px;
  margin-left: 15px;
}

.weidu_news_left .news_content a {
  display: block;
  height: 40px;
  line-height: 40px;
  width: 398px;
  overflow: hidden;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
  font-size: 16px;
  color: #000;
}

.weidu_news_left .news_content a:hover {
  color: #b61c12;
}

.weidu_news_left .news_content a:nth-child(1),
.weidu_news_left .news_content a:nth-child(4) {
  font-size: 18px;
  font-weight: bold;
  font-family: "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", sans-serif;
}

.weidu_news_left .news_content a:nth-child(3) {
  margin-bottom: 35px;
}

.weidu_news_right {
  width: 420px;
  background-image: url("../images/index0007.png?1");
  background-repeat: no-repeat;
  background-position: left 10px;
}

.weidu_news_right_more {
  height: 60px;
  line-height: 60px;
}

.weidu_news_right_more a {
  width: 80px;
  height: 40px;
  display: block;
  float: right;
}

.weidu_news_right_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.weidu_news_right_content a {
  display: block;
  width: 204px;
  height: 124px;
  margin-bottom: 17px;
}

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

.a_img {
  width: 1280px;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
}

.a_img a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.a_img div {
  width: 1280px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.a_img div a {
  width: 49%;
}

.audio_news {
  width: 1280px;
  height: 380px;
  margin: 40px auto;
  overflow: hidden;
  background-image: url("../images/index0009.png?1");
  background-repeat: no-repeat;
  background-position: 15px top;
}

.audio_news_more {
  height: 60px;
  line-height: 60px;
}

.audio_news_more a {
  width: 80px;
  height: 40px;
  display: block;
  float: right;
}

.audio_news .swiper {
  width: 100%;
  height: 316px;
}

.audio_news .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 236px;
  height: 316px;
  overflow: hidden;
  border-radius: 8px;
}

.audio_news .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.audio_news .swiper-slide em {
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 100;
  width: 100%;
  height: 20px;
  background-image: url("../images/index0010.png");
  background-repeat: no-repeat;
  background-position: left center;
}

.audio_news .swiper-slide a i {
  position: absolute;
  z-index: 99;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  top: 100px;
  background-position: bottom center;
  opacity: 0;
}

.audio_news .swiper-slide a:hover i {
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("../images/index0012.png");
  background-repeat: no-repeat;
  background-position: center center;
  transition: 0.3s;
  opacity: 1;
}

.audio_news .swiper-slide img {
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}

.audio_news .swiper-slide a:hover img {
  bottom: 316px;
}

.national_news {
  width: 1280px;
  height: 335px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.national_news_left {
  width: 840px;
  background-image: url("../images/index0011.png?1");
  background-repeat: no-repeat;
  background-position: 15px top;
}

.national_news_left_more {
  height: 60px;
  line-height: 60px;
}

.national_news_left_more a {
  width: 80px;
  height: 40px;
  display: block;
  float: right;
}

.national_news_left_bottom {
  width: 840px;
  height: 265px;
  display: flex;
  justify-content: space-between;
}

.national_news_left_bottom div {
  width: 275px;
  height: 280px;
}

.national_news_left_bottom div img {
  width: 275px;
  height: 192px;
}

.national_news_left_bottom div a {
  display: block;
  height: 70px;
  line-height: 25px;
  width: 100%;
  overflow: hidden;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
  font-size: 16px;
  color: #000;
  box-sizing: border-box;
  padding-right: 10px;
  position: relative;
  padding-left: 20px;
  padding-top: 20px;
}

.national_news_left_bottom div:hover a {
  color: #b61c12;
}

.national_news_left_bottom div a::before {
  content: "•";
  position: absolute;
  left: -13px;
  color: #999;
  font-size: 44px;
  line-height: 22px;
}

.national_news_right {
  width: 420px;
  height: 350px;
  overflow: hidden;
  box-sizing: border-box;
  background-image: url("../images/index0040.png");
  background-repeat: no-repeat;
  background-position: left 8px;
}

.national_news_right_more {
  height: 60px;
  line-height: 60px;
}

.national_news_right_more a {
  width: 100px;
  height: 40px;
  display: block;
  float: right;
}

.national_news_right_content {
  width: 100%;
  background-image: url("../images/index0042.png");
  background-repeat: no-repeat;
  background-position: left 12px;
  height: 280px;
}

.national_news_right_content a {
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  width: 100%;
  height: 39px;
  line-height: 39px;
  overflow: hidden;
  color: #000;
  padding-left: 18px;
  box-sizing: border-box;
}

.national_news_right_content a:hover {
  color: #b61c12;
}

.publication_news {
  width: 1280px;
  height: auto;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.publication_news_left {
  width: 100%;
  background-image: url("../images/index0041.png");
  background-repeat: no-repeat;
  background-position: 15px top;
}

.publication_news_left_more {
  height: 60px;
  line-height: 60px;
}

.publication_news_left_more a {
  width: 150px;
  height: 40px;
  display: block;
}

.publication_news_left_bottom {
  width: 1280px;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.publication_news_left_bottom .swiper {
  width: 100%;
  height: auto;
  overflow: initial;
}

.publication_news_left_bottom .swiper-slide {
  font-size: 18px;
}

.publication_news_left_bottom .swiper-slide img {
  display: block;
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
}

.publication_news_left_bottom .swiper-button-next,
.publication_news_left_bottom .swiper-button-prev {
  top: -28px;
  height: 18px;
  width: 16px;
  color: #fff;
  background-color: #999999;
  line-height: 18px;
  text-align: center;
}

.publication_news_left_bottom .swiper-button-prev:after,
.publication_news_left_bottom .swiper-button-next:after {
  font-size: 12px !important;
}

.publication_news_left_bottom .swiper-button-prev,
.publication_news_left_bottom .swiper-rtl .swiper-button-next {
  left: 1180px !important;
}

.publication_news_left_bottom .swiper-horizontal>.swiper-pagination-bullets,
.publication_news_left_bottom .swiper-pagination-bullets.swiper-pagination-horizontal,
.publication_news_left_bottom .swiper-pagination-custom,
.publication_news_left_bottom .swiper-pagination-fraction {
  top: -54px !important;
  width: 50px !important;
  left: 1200px !important;
  height: 30px;
}

.news_news {
  width: 1280px;
  height: 415px;
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
}

.news_news_content {
  width: 415px;
  height: 415px;
  background-repeat: no-repeat;
  background-position: left top;
}

.news_news_content_more {
  height: 50px;
  line-height: 50px;
}

.news_news_content_more a {
  width: 80px;
  height: 40px;
  display: block;
  float: right;
}

.news_news_education {
  height: 415px;
  background-image: url("../images/index0023.png?1");
}

.news_news_economics {
  height: 415px;
  background-image: url("../images/index0024.png?1");
}

.news_news_health {
  height: 415px;
  background-image: url("../images/index0025.png?1");
}

.news_news_content_bottom {
  height: 360px;
  background-image: url("../images/index0026.png");
  background-position: left 258px;
  background-repeat: no-repeat;
}

.news_news_content_bottom img {
  display: block;
  margin: 0 auto 13px;
  width: 100%;
  height: 233px;
  object-fit: cover;
  object-position: center;
}

.news_news_content_bottom span {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  padding-left: 20px;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
}

.news_news_content_bottom span a {
  display: block;
  color: #000;
  overflow: hidden;
  /* 溢出隐藏 */
  text-overflow: ellipsis;
  /* 文本溢出显示省略号 */
  white-space: nowrap;
}

.news_news_content_bottom span a:hover {
  color: #b61c12;
}

.news_news_content_bottom span i {
  display: block;
  font-style: normal;
  color: #6e6e6e;
  margin-left: 10px;
}

.culture_news {
  width: 1280px;
  height: 466px;
  margin: 0 auto;
  background-image: url("../images/index0027.png?1");
  background-repeat: no-repeat;
  background-position: 15px top;
  overflow: hidden;
}

.culture_news_content_more {
  height: 50px;
  line-height: 50px;
}

.culture_news_content_more a {
  width: 80px;
  height: 40px;
  display: block;
  float: right;
}

.culture_news_bottom {
  width: 1280px;
  height: 417px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.culture_news_bottom div {
  position: relative;
  overflow: hidden;
}

.culture_news_bottom div span {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 100%;
  transition: 0.2s;
  opacity: 0;
  z-index: 9;
  position: relative;
  overflow: hidden;
  color: #fff;
  justify-content: space-around;
  box-sizing: border-box;
  padding: 10px 20px;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
}

.culture_news_bottom div:hover span {
  top: 0;
  transition: 0.2s;
}

.culture_news_bottom div span:hover {
  transition: 0.2s;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

.culture_news_bottom div span em {
  display: block;
  width: 42px;
  height: 4px;
  background-color: #f17815;
}

.culture_news_bottom div span p {
  display: block;
  font-size: 22px;
  line-height: 30px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-align: justify;
}

.culture_news_bottom div span i {
  font-style: normal;
  font-size: 18px;
  display: none;
  line-height: 28px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.culture_news_bottom div span a {
  display: block;
  width: 98px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  background-color: #df6501;
  align-self: end;
  transition: 0.2s;
}

.culture_news_bottom div span a:hover {
  background-color: #df5a01;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.2s;
}

.culture_news_bottom div img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 0.3s;
}

.culture_news_bottom div span:hover~img {
  filter: blur(3px);
}

.culture_news_bottom_left {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 480px;
  height: 416px;
}

.culture_news_bottom_left div:nth-child(1) {
  width: 50%;
  height: 240px;
}

.culture_news_bottom_left div:nth-child(2) {
  width: 50%;
  height: 240px;
}

.culture_news_bottom_left div:nth-child(3) {
  width: 100%;
  height: 176px;
}

.culture_news_bottom_center {
  width: 318px;
  height: 416px;
}

.culture_news_bottom_center span i {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.culture_news_bottom_right {
  height: 416px;
  width: 480px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.culture_news_bottom_left div span p,
.culture_news_bottom_right div span p {
  display: block;
  font-size: 20px;
  line-height: 30px;
}

.culture_news_bottom_right div:nth-child(1) {
  width: 100%;
  height: 176px;
}

.culture_news_bottom_right div:nth-child(2) {
  width: 50%;
  height: 240px;
}

.culture_news_bottom_right div:nth-child(3) {
  width: 50%;
  height: 240px;
}

.link {
  width: 100%;
  height: 195px;
  background-color: #f5f5f7;
  margin-top: 60px;
}

.link_content {
  width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
  height: 195px;
  overflow: hidden;
}

.link_content_top {
  width: 100%;
}

.link_content_top .lib_Menubox {
  height: 50px;
  line-height: 50px;
  position: relative;
}

.link_content_top .lib_Menubox ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  position: absolute;
  left: 0;
  height: 50px;
  text-align: left;
}

.link_content_top .lib_Menubox li {
  float: left;
  display: block;
  cursor: pointer;
  width: 100px;
  color: #6b6b6b;
  font-size: 18px;
  height: 25px;
  line-height: 25px;
  margin-top: 10px;
}

.link_content_top .lib_Menubox li.hover {
  color: #bf1818;
}

.link_content_top .lib_Menubox li:nth-child(1) {
  border-right: 1px solid #999;
  margin-right: 30px;
}

.link_content_top .lib_Contentbox {
  clear: both;
  height: 70px;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
  width: 100%;
}

.link_content_top .lib_Contentbox a {
  color: #000;
  display: block;
  margin-right: 20px;
  float: left;
}

.link_content_bottom {
  display: flex;
}

.link_content_bottom a {
  display: block;
  color: #000;
}

.link_content_bottom i {
  display: block;
  margin: 0 20px;
  font-style: normal;
}

.footer {
  width: 1280px;
  height: auto;
  margin: 30px auto 40px;
}

.footer div {
  height: 36px;
  line-height: 36px;
  display: flex;
}

.footer div p {
  margin-right: 20px;
}

.footer img {
  display: block;
  margin-right: 10px;
  height: 25px;
  width: 25px;
  margin-top: 5px;
}

.footer a {
  color: #000;
}

.float-sidebar {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  width: 80px;
  height: 275px;
  border: 1px solid #e54b4b;
  border-radius: 10px;
  background-color: #fff2f2;
}

.qr-code-btn,
.back-to-top {
  width: 100%;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-btn:nth-child(1) {
  border-radius: 10px 10px 0 0;
}

.back-to-top {
  border-radius: 0 0 10px 10px;
  border-top: 1px solid #e54b4b;
  overflow: hidden;
}

.qr-code-btn:hover,
.back-to-top:hover {
  background: #b61c12;
  color: #fff;
}

.qr-code-btn:hover img {
  opacity: 1;
  visibility: visible;
}

.qr-code-btn img {
  display: block;
  position: absolute;
  right: 79px;
  top: 76%;
  transform: translateY(-50%);
  width: 87px;
  height: 87px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 120px !important;
}

.back-to-top:hover {
  background: #b61c12;
}

.back-to-top svg {
  fill: #333;
}

.back-to-top:hover svg {
  fill: #fff;
}

/* image list begin */

.image_list {
  width: 1280px;
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
}

.image_list_left {
  width: 950px;
}

.image_list_left_top {
  width: 950px;
  height: 352px;
  overflow: hidden;
  margin-bottom: 40px;
}

.image_list_left_top .swiper {
  width: 100%;
  height: 100%;
}

.image_list_left_top .swiper-slide {
  background: #fff;
  display: block;
  position: relative;
}

.image_list_left_top .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.image_list_left_top .swiper-slide p {
  position: relative;
  z-index: 99;
  bottom: 90px;
  display: block;
  width: 100%;
  height: 90px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.image_list_left_top .swiper-slide p a {
  color: #fff;
  display: block;
  width: 900px;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  padding-left: 20px;
  font-size: 22px;
  font-weight: bold;
}

.image_list_left_top .swiper-slide p span {
  color: #fff;
  width: 900px;
  display: block;
  height: 40px;
  line-height: 40px;
  padding-left: 20px;
}

.image_list_left_top .swiper-button-next,
.image_list_left_top .swiper-rtl .swiper-button-prev,
.image_list_left_top .swiper-button-prev,
.image_list_left_top .swiper-rtl .swiper-button-next {
  width: 69px;
  height: 69px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.image_list_left_top .swiper-rtl .swiper-button-prev,
.image_list_left_top .swiper-button-prev {
  border-radius: 0 50px 50px 0;
  left: -33px !important;
  text-indent: 20px;
}

.image_list_left_top .swiper-button-next,
.image_list_left_top .swiper-rtl .swiper-button-next {
  border-radius: 50px 0 0 50px;
  right: -33px !important;
  text-indent: -20px;
}

.image_list_left_top .swiper-button-next:after,
.image_list_left_top .swiper-button-prev:after {
  font-size: 30px;
}

.image_list_left_list {
  width: 950px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.image_list_left_list .top_title {
  height: 23px;
  line-height: 23px;
  font-size: 22px;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
  width: 100%;
  border-left: 5px solid #df3429;
  box-sizing: border-box;
  text-indent: 10px;
  margin-bottom: 30px;
  font-weight: bold;
}

.image_list_left_list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.image_list_left_list ul li {
  width: 460px;
  margin-bottom: 40px;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
}

.image_list_left_list ul li img {
  display: block;
  width: 460px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.image_list_left_list ul li a {
  font-size: 18px;
  color: #000;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
  display: block;
  margin: 15px 0;
}

.image_list_left_list ul li div {
  display: flex;
  justify-content: space-between;
}

.image_list_left_list ul li div p {
  font-size: 16px;
}

.image_list_left_list ul li div span {
  display: block;
  font-size: 14px;
  color: #4d4d4d;
}

.image_list_right {
  width: 304px;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
}

.image_list_right_top {
  width: 304px;
  height: auto;
  overflow: hidden;
}

.image_list_right_top_title {
  background-image: url("../images/index0050.png");
  background-repeat: no-repeat;
  background-position: left top;
  height: 50px;
  width: 100%;
}

.image_list_right_top .swiper {
  width: 100%;
  height: 300px;
  overflow: initial;
}

.image_list_right_top .swiper-slide {
  font-size: 18px;
}

.image_list_right_top .swiper-slide img {
  display: block;
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
}

.image_list_right_top .swiper-slide a {
  font-size: 18px;
  color: #000;
  margin: 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 304px;
  max-height: 3em;
  line-height: 1.5em;
}

.image_list_right_top .swiper-slide div {
  display: flex;
  justify-content: space-between;
  color: #4d4d4d;
}

.image_list_right_top .swiper-slide div p {
  font-size: 16px;
}

.image_list_right_top .swiper-slide div span {
  display: block;
  font-size: 14px;
}

.image_list_right_top .swiper-button-next,
.image_list_right_top .swiper-button-prev {
  top: -28px;
  height: 18px;
  width: 16px;
  color: #fff;
  background-color: #999999;
  line-height: 18px;
  text-align: center;
}

.image_list_right_top .swiper-button-prev:after,
.image_list_right_top .swiper-button-next:after {
  font-size: 12px !important;
}

.image_list_right_top .swiper-button-prev,
.image_list_right_top .swiper-rtl .swiper-button-next {
  left: 315px !important;
}

.image_list_right_top .swiper-horizontal>.swiper-pagination-bullets,
.image_list_right_top .swiper-pagination-bullets.swiper-pagination-horizontal,
.image_list_right_top .swiper-pagination-custom,
.image_list_right_top .swiper-pagination-fraction {
  top: -54px !important;
  width: 50px !important;
  left: 333px !important;
  height: 30px;
}

.image_list_right_center {}

.image_list_right_center ul li {
  padding: 10px 0 20px;
  border-bottom: 1px dashed #eee;
}

.image_list_right_center ul li a {
  font-size: 18px;
  color: #000;
  margin: 10px 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 304px;
  max-height: 3em;
  line-height: 1.5em;
}

.image_list_right_center ul li div {
  display: flex;
  justify-content: space-between;
  color: #4d4d4d;
}

.image_list_right_center ul li div p {
  font-size: 16px;
}

.image_list_right_center ul li span {
  display: block;
  font-size: 14px;
}

.image_list_right_bottom {
  width: 100%;
}

.image_list_right_bottom_title {
  background-image: url("../images/index0051.png");
  background-repeat: no-repeat;
  background-position: left top;
  height: 50px;
  width: 100%;
  margin-top: 20px;
}

.image_list_right_bottom img {
  width: 100%;
  height: 100%;
}



.font_list_content .top_title {
  height: 23px;
  line-height: 23px;
  font-size: 22px;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
  width: 100%;
  border-left: 5px solid #df3429;
  box-sizing: border-box;
  text-indent: 10px;
  margin-bottom: 30px;
  font-weight: bold;
}

.font_list_content ul li {
  display: flex;
  background-image: url("../images/index0046.png");
  background-repeat: no-repeat;
  background-position: 90px center;
}

.font_list_content ul li:first-child,
.font_list_content ul li:nth-child(6n+1) {
  background-image: url("../images/index0045.png");
  background-position: 90px 32px;
}

.font_list_content ul li:last-child {
  background-image: url("../images/index0047.png");
  background-position: 90px -32px;
}

.font_list_content ul li a {
  font-size: 18px;
  color: #000;
  line-height: 40px;
  height: 40px;
  overflow: hidden;
  display: block;
  margin: 15px 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.font_list_content ul li span {
  display: block;
  font-size: 14px;
  color: #4d4d4d;
  height: 40px;
  line-height: 40px;
  margin: 15px 40px 15px 0;
  width: 80px;
}

.font_list_content ul li:nth-child(6n) {
  background-image: url("../images/index0049.png");
  background-repeat: no-repeat;
  background-position: -35px -20px;
  width: 100%;
  padding-bottom: 50px;
  margin-bottom: 5px;
}

.main_title {
  font-size: 40px;
  font-weight: bold;
  width: 100%;
  line-height: 150%;
  margin-top: -10px;
  margin-bottom: 30px;
}

.main_time,
.main_editor,
.main_note {
  height: 30px;
  width: 100%;
  background-image: url("../images/index0048.png");
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 30px;
}

.main_editor p,
.main_time p,
.main_note p {
  background-color: #fff;
  height: 22px;
  line-height: 22px;
  width: auto;
  display: inline-block;
  padding-right: 20px;
  font-size: 16px;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
}

.main_img {
  margin-bottom: 30px;
}

.main_img img {
  display: block;
  width: 100%;
}

.main_content {
  line-height: 150%;
  margin-bottom: 50px;
}

.main_content img {
  display: block;
  max-width: 98%;
  margin: 20px auto;
}

.main_content p{
  font-size: 16px;
line-height: 38px;
text-align: justify;
}

.main_content video{
  display: block;
  max-width: 98%;
  margin: 20px auto;
}

.main_note p {
  float: right;
  padding-left: 20px;
  color: #999;
  padding-right: 0;
  font-size: 14px;
  height: 30px;
}


.list_more {
  margin: 60px auto 0;
  width: 135px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  font-family: "Noto Serif SC", SimSun, "\5B8B\4F53", serif;
  border-radius: 20px;
  border: 1px solid #999;
  overflow: hidden;
}

.list_more a {
  color: #666;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: 0.2s;
}


.list_more a:hover {
  background-color: #333;
  color: #fff;
  transition: 0.2s;
}

.image_list_right_bottom_main {
  height: 195px;
  overflow: hidden;
  position: relative;
  padding: 5px 0;
}

.image_list_right_bottom_main a {
  display: block;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  transition: color 0.3s;
  padding: 0 15px;
}

.image_list_right_bottom_main a:hover {
  color: #b61c12;
  text-decoration: underline;
}



.image_list_right_bottom .swiper {
  width: 100%;
  height: 100%;
  background-image: url("../images/index0042.png");
  background-repeat: no-repeat;
  background-position: 6px 12px;
  height: 280px;
  margin-top: 20px;

}

.image_list_right_bottom .swiper .swiper-wrapper {
  flex-direction: column;

}

.image_list_right_bottom .swiper-slide {

  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  width: 100%;
  height: 35px;
  line-height: 37px;
  overflow: hidden;
  color: #000;
  padding-left: 25px;
  box-sizing: border-box;
}

.image_list_right_bottom .swiper-slide a {
  color: #000;
}

.image_list_right_bottom .swiper-slide a:hover {
  color: #b61c12;
}

.main_editor{
  height: auto;
}

.main_editor p{
  display: block;
  font-size: 14px;
}

.main_editor p span{}

.main_editor p > span {
    display: inline-block;
    width: 50px;
    max-width: 80px;
    text-align: justify;
    line-height: 26px;
    height: 30px;
    vertical-align: middle;
    word-break: keep-all;
}

.main_editor p > span::after {
    content: '';
    display: inline-block;
    width: 100%;
}


.fenxiang{
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #333;
  border-radius: 20px;
  padding: 0 20px;
  margin: 30px 0;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
  cursor: pointer;
  transition: 0.2s;
}

.fenxiang div{
  background-image: url("../images/fx001.png");
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.fenxiang div:hover{
  background-image: url("../images/fx002.png");
}

.fenxiang .wb{
  border: 1px solid #ff763b;
  background-position: center -3px;
  transition: 0.2s;
}
.fenxiang .wb:hover {
  border: 1px solid #c82b1b;
  transition: 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.fenxiang .qq{
  border: 1px solid #56b6e7;
  background-position: center -102px;
  transition: 0.2s;

}

.fenxiang .qq:hover {
  border: 1px solid #1a8cc7;
  transition: 0.2s;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fenxiang .zone{
  border: 1px solid #fdbe3d;
  background-position: center -201px;
  transition: 0.2s;

}

.fenxiang .zone:hover {
  border: 1px solid #ef8616;
  transition: 0.2s;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.fenxiang .wx{
  border: 1px solid #7bc549;
  background-position: center -300px;
  transition: 0.2s;
position: relative;
  cursor: pointer;

}

.fenxiang .wx:hover {
  border: 1px solid #419807;
  transition: 0.2s;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}



.fenxiang .wx .qr-code-popup {
  position: absolute;
  top: 115%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 4px !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  background-image: none !important;
  width: 130px !important;
    height: 155px !important;
}

.fenxiang .wx:hover .qr-code-popup {
  opacity: 1;
  visibility: visible;
}

.fenxiang .wx .qr-code-popup img {
  width: 100px;
  height: 100px;
  display: block;
}

.fenxiang .wx .qr-code-popup p {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin: 0;
}