/* ========== head ========== */
.header-top {
  background-color: #84070C;
}

.top-content .ibr-logo {
  padding-bottom: 3.125rem;
}

.top-content .ibr-logo img {
  max-width: 32.5rem;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
  gap: 1.25rem;
}

.contact-info a {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1.5rem;
  color: #FFFFFF;
}

.contact-info .header-btn {
  cursor: pointer;
  background: #A79A6E;
  display: block;
  width: 2rem;
  height: 2rem;
  text-align: center;
  line-height: 1.8rem;
  border-radius: 50%;
}

.contact-info .header-btn img {
  max-width: 1.05rem;
}

/* ========== nav ========== */
.main-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  background: #84070C;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  border-top: 1px solid #BC1820;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ========== 桌面端导航菜单 (1200px以上显示) ========== */
@media (min-width: 1200px) {
  .nav-desktop {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .nav-menu {
    display: flex;
    width: 100%;
    justify-content: space-around;
  }

  .nav-item {
    position: relative;
  }

  .nav-link {
    display: block;
    padding: 0 1.125rem;
    height: 3.75rem;
    line-height: 3.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-link:hover {
    color: #FFF1CB;
    background-color: rgba(45, 139, 192, 0.05);
  }

  .nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.125rem;
    /* 18px/16px */
    right: 1.125rem;
    /* 18px/16px */
    height: 0.1875rem;
    /* 3px/16px */
    background-color: #FFF1CB;
  }

  /* 下拉菜单 */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 12.5rem;
    /* 200px/16px */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    /* 4px/16px */
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.625rem);
    /* 10px/16px */
    transition: all 0.3s ease;
    z-index: 100;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    transition: all 0.2s ease;
  }

  .dropdown-item:hover {
    background-color: rgba(45, 139, 192, 0.1);
    padding-left: 1.5625rem;
    /* 25px/16px */
  }

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

  .dropdown-toggle::after {
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 0.3125rem;
    /* 5px/16px */
    font-size: 0.9rem;
  }

  #mobileToggle.mobile-toggle,
  .mobile-toggle {
    display: none;
  }
}

/* ========== 移动端样式 (1199px以下) ========== */
@media (max-width: 1199px) {
  .nav-desktop {
    display: none;
    /* 隐藏桌面导航 */
  }

  .mobile-toggle {
    display: block;
    font-size: 1.5rem;
    /* 24px/16px */
    cursor: pointer;
    color: #2c3e50;
    padding: 1.5rem 0.5rem;
  }
  .mobile-toggle a{
    max-width: 80%;
  }
  /* 移动端导航菜单 */
  .nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 20rem;
    /* 320px/16px */
    height: 100vh;
    background-color: #84070C;
    box-shadow: -0.125rem 0 0.625rem rgba(0, 0, 0, 0.1);
    /* -2px 0 10px /16px */
    padding: 1.25rem;
    /* 20px/16px */
    transition: right 0.4s ease;
    z-index: 1001;
    overflow-y: auto;
  }

  .nav-mobile .mob-logo {
    margin-bottom: 1.25rem;
  }

  .nav-mobile.active {
    right: 0;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    /* 20px/16px */
    padding-bottom: 0.9375rem;
    /* 15px/16px */
    border-bottom: 1px solid #dee2e6;
  }

  .close-menu {
    font-size: 1.5rem;
    /* 24px/16px */
    cursor: pointer;
    color: #666;
    padding: 0.3125rem;
    /* 5px/16px */
  }

  .mobile-nav-menu {
    margin-bottom: 1.25rem;
    /* 20px/16px */
  }

  .mobile-nav-item {
    border-bottom: 1px solid #dee2e6;
  }

  .mobile-nav-link,
  .mobile-nav-item span,
  .mobile-nav-item i {
    display: block;
    padding: 0.9375rem 0;
    /* 15px/16px */
    font-weight: 500;
    color: #fff;
    font-size: 1.125rem;
    /* 16px/16px */
  }
  .mobile-nav-item span{
    padding:0;
  }
  .mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.4375rem 0;
    /* 15px/16px */
    background: none;
    border: none;
    font-size: 1rem;
    /* 16px/16px */
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
  }

  .mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
  }

  .mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
  }

  .mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-dropdown-menu.active {
    max-height: fit-content;
  }

  .mobile-dropdown-item {
    display: block;
    padding: 0.75rem 0.9375rem;
    color: #fff;
    font-size: 1.0625rem;
    border-left: 0.1875rem solid transparent;
    transition: all 0.2s ease;
  }
  .mobile-dropdown-item:hover {
    color: #fff;
    border-left-color: #dee2e6;
  }
  /* .header-top {
    display: none;
  } */
  .top-content .ibr-logo{
    display: none;
  }
}

/* ========== cards ========== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.overlay.active {
  display: block;
}

.main-content .index-banner-swiper {
  width: 100%;
  position: relative;
  margin-top: 3.125rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-height: 31.875rem;
  overflow: hidden;
}

.main-content .index-banner-swiper .index-banner-box {
  position: absolute;
  width: 100%;
  padding: 9.375rem 1.5625rem 1.5625rem 1.5625rem;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50% ,transparent 100%);
  background-size: cover;
}

.main-content .index-banner-swiper .index-banner-box .big-tit {
  font-size: 1.375rem;
  line-height: 1.875rem;
  color: #FFFFFF;
  width: 70%;
  transition: all ease 0.25s;
}

.main-content .index-banner-swiper .index-banner-box .big-tit:hover {
  color: #FFF1CB;
}

.main-content .index-banner-swiper .swiper-other {
  position: absolute;
  bottom: 1.5625rem;
  right: 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-content .index-banner-swiper .swiper-other .swiper-button {
  position: initial;
  width: 2.25rem;
  height: 2.25rem;
  background: #F4F0EC;
  transform: translateY(0.375rem);
}

.main-content .index-banner-swiper .swiper-other .swiper-button i {
  color: #A79A6E;
  font-size: 1rem;
  font-weight: 400;
}

.main-content .index-banner-swiper .swiper-other .swiper-button:after {
  display: none;
}

.main-content .index-banner-swiper .swiper-other .swiper-button-prev {
  margin-right: 0.4688rem;
  border-radius: 4px 0px 0px 4px;
}

.main-content .index-banner-swiper .swiper-other .swiper-button-next {
  margin-left: 0.4688rem;
  border-radius: 0px 4px 4px 0px;
}

.main-content .index-banner-swiper .swiper-other .swiper-pagination {
  position: initial;
}

.main-swiper .swiper-box a {
  display: block;
  width: 100%;
  height: 31.857rem;
}

.main-swiper .swiper-box img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.main-content .index-banner-swiper .swiper-other .swiper-pagination-bullet {
  width: 1.375rem;
  height: 1.375rem;
  position: relative;
  opacity: 1;
  margin: 0 0.4688rem;
  border: 1px solid transparent;
  background: transparent;
}

.main-content .index-banner-swiper .swiper-other .swiper-pagination-bullet:after {
  content: '';
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-content .index-banner-swiper .swiper-other .swiper-pagination-bullet-active {
  border: 1px solid #fff;
}

.main-content .main-news {
  margin-top: 5rem;
}

.main-content .main-news .flex-boxs {
  display: flex;
  flex-wrap: wrap;
}

.main-content .main-news .flex-boxs.gap50 {
  gap: 3.125rem;
}

.main-content .main-news .flex-boxs.gap40 {
  gap: 2.5rem;
}

.main-content .main-news .flex-boxs .flex-w {
  width: calc((100% - 1 * 50px) / 2);
}

.main-content .main-news .flex-boxs .flex-h {
  width: calc((100% - 1 * 40px) / 2);
}

.main-content .main-news .flex-boxs .flex-h a {
  display: block;
  position: relative;
}

.main-content .main-news .flex-boxs .flex-h a:hover .title {
  color: #FFF1CB;
}

.main-content .main-news .flex-boxs .flex-h a .img-boxs {
  height: 12.5rem;
}

.main-content .main-news .flex-boxs .flex-h a .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0 0.625rem;
  transition: all ease 0.25s;
  display: none;
  background: linear-gradient(0deg, #a64c50 0%, transparent 100%);
}

.main-content .main-news .kydt-lists {
  margin-top: 1.5625rem;
}

.main-content .main-news .kydt-lists li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.9375rem;
}

.main-content .main-news .kydt-lists li a {
  display: block;
  width: 75%;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  color: #444;
  position: relative;
}

.main-content .main-news .kydt-lists li a:hover {
  color: #A79A6E;
}

.main-content .main-news .kydt-lists li a:after {
  content: '';
  display: inline-block;
  width: 0.75rem;
  height: 0.1875rem;
  background: #A79A6E;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main-content .main-news .kydt-lists li .data-time {
  flex: 1;
  text-align: right;
  color: #A79A6E;
  font-size: 1rem;
}

.main-content .main-news .tzgg-lists li {
  display: flex;
  flex-direction: column;
  margin-top: 1.25rem;
}

.main-content .main-news .tzgg-lists li .data-time {
  color: #A79A6E;
  font-size: 1rem;
  position: relative;
  margin-bottom: 0.965rem;
}

.main-content .main-news .tzgg-lists li .data-time:after {
  content: '';
  display: inline-block;
  width: 80%;
  height: 1px;
  background: #EAEAEA;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.main-content .main-news .tzgg-lists li a {
  font-size: 1.125rem;
  color: #444;
}

.main-content .main-news .tzgg-lists li a:hover {
  color: #A79A6E;
}

.main-content .main-news .switcont .tzgg-lists {
  display: none;
}

.main-content .main-news .switcont .tzgg-lists.active {
  display: block;
}

.main-content .main-news.bgf8 {
  background: #f8f8f8;
  padding: 3.4375rem 0 3.75rem 0;
}

.main-content .main-news.zt-bg {
  background: url(imr-bg04.png) center center no-repeat;
  background-size: cover;
  padding: 3.75rem 0;
}

.main-content .main-news.zt-bg .img-boxs {
  background: #A79A6E;
}

.main-content .main-news.zt-bg .img-boxs img {
  height: 6.25rem;
  width: 100%;
  object-fit: fill;
}

.main-content .main-news.xshd-bg {
  background: url(imr-bg02.png) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 3.4375rem 0;
  margin-top: 0;
}

.main-content .main-news.xshd-bg .flex-boxs-left {
  width: 27.5rem;
}

.main-content .main-news.xshd-bg .flex-boxs-left .xljz-lists li {
  margin-top: 1.25rem;
}

.main-content .main-news.xshd-bg .flex-boxs-left .xljz-lists li:first-child {
  margin-top: 0;
}

.main-content .main-news.xshd-bg .flex-boxs-left .xljz-lists li a {
  display: block;
}

.main-content .main-news.xshd-bg .flex-boxs-right {
  flex: 1;
}

.main-content .main-news.xshd-bg .flex-boxs-right .img-boxs {
  margin-bottom: 0.9375rem;
}

.main-content .main-news.xshd-bg .flex-boxs-right .zhxw-lists {
  background: url(imr-bg03.png) center center no-repeat;
  background-size: cover;
  padding: 1.25rem 1rem;
}

.main-content .main-news.xshd-bg .flex-boxs-right .zhxw-lists li {
  border-left: none;
  padding: 0.405rem 0;
}

.main-content .main-news.xshd-bg .flex-boxs-right .zhxw-lists li .data-time {
  width: 4.375rem;
  min-height: 3.6rem;
  padding-right: 0.9375rem;
  border-right: 1px solid #D8D8D8;
  /* display: none; */
}

.main-content .main-news.xshd-bg .flex-boxs-right .zhxw-lists li .data-time span {
  color: #fff;
}

.main-content .main-news.xshd-bg .flex-boxs-right .zhxw-lists li a {
  color: #fff;
  min-height: 3.6rem;
}

.main-content .main-news.xshd-bg .xshd-top {
  flex-wrap: wrap;
  margin-bottom: 0.9375rem;
  justify-content: flex-end;
  gap: 20px;
}

.main-content .main-news.xshd-bg .xshd-top .img-boxs {
  width: 55rem;
}

.main-content .main-news.xshd-bg .xshd-top .news-header {
  flex: 1;
}

.main-content .main-news .zhxw-lists li {
  display: flex;
  border-left: 3px solid #A79A6E;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.9375rem;
  align-items: center;
  border-radius: 0.3125rem;
  transition: all ease 0.25s;
}

.main-content .main-news .zhxw-lists li:hover {
  transform: translateX(0.3125rem);
}

.main-content .main-news .zhxw-lists li .data-time {
  text-align: right;
  width: 3.5rem;
  min-height: 3.75rem;
  margin-right: 1.25rem;
}

.main-content .main-news .zhxw-lists li .data-time span {
  color: #A79A6E;
  font-size: 1rem;
  display: block;
}

.main-content .main-news .zhxw-lists li a {
  flex: 1;
  font-size: 1.125rem;
  color: #444;
}

.main-content .main-news .zhxw-lists li a:hover {
  color: #A79A6E;
}

.main-content .common-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.875rem;
}

.main-content .common-title .news-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #444;
  position: relative;
  padding-bottom: 5px;
}

.main-content .common-title .news-title.switab:after {
  display: none;
}

.main-content .common-title .news-title.switab span {
  cursor: pointer;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}

.main-content .common-title .news-title.switab span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.8125rem;
  height: 0.25rem;
  background: transparent;
}

.main-content .common-title .news-title.switab span.active:after {
  background: #910000;
}

.main-content .common-title .news-title.switab span:first-child {
  padding-right: 4.375rem;
  position: relative;
}

.main-content .common-title .news-title.switab span:first-child::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1.75rem;
  background: #979797;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.main-content .common-title .news-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.8125rem;
  height: 0.25rem;
  background: #910000;
}

.main-content .common-title .news-more {
  color: #836E2A;
  font-size: 1rem;
}

.footer {
  background: #8A1B22;
  padding: 2.5rem 0;
}

.footer .flex-boxs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
}

.footer .flex-boxs .footer-bs {
  display: flex;
  align-items: center;
}

.footer .flex-boxs .footer-left {
  gap: 3.125rem;
  width: 80%;
  align-items: center;
  justify-content: space-between;
}

.footer .flex-boxs .footer-left .db {
  max-width: 17.5rem;
}

.footer .flex-boxs .footer-left .foot-info {
  flex: 1;
}

.footer .flex-boxs .footer-left .foot-info span {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.footer .flex-boxs .footer-left .foot-info span a{
  color: #fff;
}
.footer .flex-boxs .footer-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.footer .flex-boxs .footer-right .img-boxs {
  max-width: 10.9375rem;
}

.footer .flex-boxs .footer-right .wc-code {
  text-align: center;
}

.footer .flex-boxs .footer-right .wc-code img {
  max-width: 5.3125rem;
}

.footer .flex-boxs .footer-right .wc-code span {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.neiye-box {
  margin-top: 2.5rem;
  padding-bottom: 5.625rem;
}

.neiye-box .flex-boxs {
  display: flex;
  gap: 1.875rem;
}

.neiye-box .aside-item {
  width: 17.5rem;
  padding-bottom: 2.5rem;
  background: url(imr-bg05.png) bottom right no-repeat #f8f8f8;
  background-size: 11.25rem auto;
  height: fit-content;
}

.neiye-box .aside-item h3 {
  background: #8A1B22;
  padding: 2rem 1.5625rem;
  border-bottom: 5px solid #836E2A;
  position: relative;
}

.neiye-box .aside-item h3:after {
  content: '';
  display: inline-block;
  width: 5rem;
  height: 5px;
  background: #235284;
  position: absolute;
  bottom: -5px;
  left: 0;
  display: none;
}

.neiye-box .aside-item h3 span {
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
}

.neiye-box .aside-item .aside-list {
  padding-left: 1.5625rem;
  padding-top: 1.25rem;
}

.neiye-box .aside-item .aside-list li {
  margin-bottom: 0.9375rem;
  padding-right: 0.9375rem;
}

.neiye-box .aside-item .aside-list li.active a {
  color: #8A1B22;
  background: url(imr-icon04.png) right center no-repeat;
  background-size: 0.875rem auto;
}

.neiye-box .aside-item .aside-list li a {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  line-height: 1.875rem;
}

.neiye-box .aside-item .aside-list li a:hover {
  color: #8A1B22;
  transform: translateX(2px);
}

.neiye-box .neiye-content {
  width: calc(100% - (17.5rem + 1.875rem));
  padding-top: 1.875rem;
}

.neiye-box .neiye-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 0.375rem;
}

.neiye-box .neiye-head .channel-title span {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
}

.neiye-box .neiye-head .channel-title span:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 4px;
  background: #8A1B22;
  position: absolute;
  bottom: 0;
  left: 0;
}

.neiye-box .neiye-head .bread-item a {
  color: #6D7278;
  font-size: 1rem;
}

.neiye-box .neiye-detail {
  padding-top: 2.1875rem;
  padding-bottom:2.1875rem;
  font-size: 1.125rem;
  color: #444;
  line-height: 1.875rem;
}

.neiye-box .neiye-info {
  margin-top: 2.5rem;
}

.neiye-box .neiye-info .detail-title {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  color: #8A1B22;
  line-height: 2.25rem;
  margin-bottom: 1.875rem;
}
.neiye-box  .trs_editor_view p{
  margin-bottom:15px;
}
.neiye-box .neiye-info .flex-boxs {
  justify-content: center;
  color: #A79A6E;
  font-size: 1rem;
}

.neiye-box .neiye-list .wenzi-item li {
  border-bottom: 1px solid #DDDDDD;
  padding: 14px 10px 14px 0;
  transition: all ease 0.3s;
  overflow: hidden;
}

.neiye-box .neiye-list .wenzi-item li:hover a {
  color: #836E2A;
}

.neiye-box .neiye-list .wenzi-item li:hover .data-s {
  color: #836E2A;
}

.neiye-box .neiye-list .wenzi-item li a {
  font-size: 1.125rem;
  line-height: 2rem;
  color: #333333;
  position: relative;
  display: inline-block;
  width: 80%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.neiye-box .neiye-list .wenzi-item li .data-s {
  float: right;
  margin-top: 5px;
  color: #A79A6E;
}

.neiye-box .tuwen {
  margin-top: 2.1875rem;
}

.neiye-box .tuwen .tuwen-item li {
  background-color: #ffffff;
  border-radius: 0.25rem;
  transition: all ease 0.25s;
  margin-bottom: 1.25rem;
}

.neiye-box .tuwen .tuwen-item li:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.neiye-box .tuwen .tuwen-item li:hover a.db .tuwen-list .title {
  color: #836E2A;
}

.neiye-box .tuwen .tuwen-item li a.db {
  position: relative;
  padding-left: 15rem;
  min-height: 10rem;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 20px;
}

.neiye-box .tuwen .tuwen-item li a.db .img-boxs {
  width: 13.75rem;
  height: 10rem;
  position: absolute;
  top: 0;
  left: 0;
}

.neiye-box .tuwen .tuwen-item li a.db .img-boxs img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.neiye-box .tuwen .tuwen-item li a.db .img-boxs img[src=""] {
  display: none;
}

.neiye-box .tuwen .tuwen-item li a.db[data-img=""] {
  padding: 10px;
}

.neiye-box .tuwen .tuwen-item li a.db[data-img=""] .img-boxs {
  display: none;
}

.neiye-box .tuwen .tuwen-item li .tuwen-list .title {
  font-size: 1.125rem;
  line-height: 1.875rem;
  color: #333333;
  font-weight: 700;
}

.neiye-box .tuwen .tuwen-item li .tuwen-list .des {
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #999999;
  margin: 0.9375rem 0 0.625rem 0;
}

.neiye-box .tuwen .tuwen-item li .tuwen-list .date-s {
  color: #A79A6E;
}

.neiye-box .tuwen .tupian-item {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.875rem;
}

.neiye-box .tuwen .tupian-item li {
  border-bottom: 3px solid #A79A6E;
  padding-bottom: 0.625rem;
  background: #fff;
  width: calc((100% - 2 * 1.875rem) / 3);
}

.neiye-box .tuwen .tupian-item a.db {
  box-shadow: none;
}

.neiye-box .tuwen .tupian-item a.db:hover .title {
  color: #8A1B22;
}

.neiye-box .tuwen .tupian-item a.db img {
  min-height: 12.8125rem;
  max-height: 12.8125rem;
  object-fit: contain;
  width: 100%;
}

.neiye-box .tuwen .tupian-item a.db .title {
  min-height: 3.125rem;
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.625rem;
  color: #444;
  transition: all ease 0.25s;
}

.neiye-box .soul-cont {
  margin-top: 30px;
}

.neiye-box .soul-cont table {
  width: 100%;
}

.neiye-box .soul-cont table thead tr {
  background: #A79A6E;
}

.neiye-box .soul-cont table thead tr th {
  line-height: 45px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border-right: 1px solid #fff;
}

.neiye-box .soul-cont table thead tr th:last-child {
  border-right: none;
}

.neiye-box .soul-cont table tbody tr {
  background: #fff;
}

.neiye-box .soul-cont table tbody tr:nth-child(even) {
  background: #f8f8f8;
}

.neiye-box .soul-cont table tbody tr td {
  padding: 15px 10px;
  color: #333;
  text-align: center;
  border-right: 1px solid #fff;
}

.neiye-box .soul-cont table tbody tr td a:hover {
  color: #836E2A;
}

.neiye-box .soul-cont table tbody tr td:last-child {
  border-right: none;
}

.neiye-box .cgzh-boxs .form-table-01 {
  margin-top: 2.5rem;
}

.neiye-box .cgzh-boxs .form-table-01 .table {
  border: 1px solid #ddd;
}

.neiye-box .cgzh-boxs .form-table-01 .table tr>td {
  border: 1px solid #ddd;
  padding: 0.625rem;
  font-size: 1.125rem;
}

.neiye-box .cgzh-boxs .form-table-01 .table tr>td:first-child {
  background: #f8f8f8;
  text-align: right;
}

.neiye-box .people-list {
  margin-top: 2.5rem;
}

.neiye-box .people-list .people-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.875rem;
}

.neiye-box .people-list .people-item li {
  width: calc((100% - 4 * 1.875rem) / 5);
  position: relative;
  border-bottom: 4px solid #836E2A;
}

.neiye-box .people-list .people-item li:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 4px;
  background: #8A1B22;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: all ease 0.5s;
}

.neiye-box .people-list .people-item li:hover:after {
  width: 100%;
}

.neiye-box .people-list .people-item li:hover .people-name {
  color: #836E2A;
}

.neiye-box .people-list .people-item li .people-name {
  text-align: center;
  color: #444;
  font-size: 1.125rem;
  padding: 0.625rem;
  transition: all ease 0.25s;
}

.neiye-box .people-detail {
  margin-top: 2.5rem;
}

.neiye-box .people-info {
  display: flex;
  flex-wrap: wrap;
}

.neiye-box .people-info .img-boxs {
  width: 15%;
}

.neiye-box .people-info .people-infos {
  flex: 1;
  padding-left: 1.875rem;
}

.neiye-box .people-info .people-infos .info-lis {
  margin-top: 0.9375rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 1.875rem;
}

.neiye-box .people-info .people-infos .info-lis li {
  font-size: 1rem;
  color: #444;
  width: calc((100% - 1 * 1.875rem) / 2);
}

.neiye-box .people-info .people-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: #8A1B22;
}

.neiye-box .people-tabs {
  margin-top: 1.875rem;
}

.neiye-box .people-tabs .tab-titles {
  font-size: 1.25rem;
  font-weight: 700;
  color: #444;
  padding-left: 1.25rem;
  border-left: 3px solid #A79A6E;
}

.neiye-box .people-tabs .tab-conts {
  padding: 1.5625rem;
  font-size: 1.125rem;
  line-height: 1.825rem;
}

#mobileToggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#mobileToggle .mob-logo {
  display: block;
  padding: 0.625rem;
  max-width: 75%;
}

#mobileToggle i {
  color: #fff;
}

/* xsqbgl */
.neiye-xsqb-list,.neiye-lrsz-list{
  padding-top: 2.1875rem;
  padding-bottom:2.1875rem;
  font-size: 1.125rem;
  color: #444;
  line-height: 1.875rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
}
.xsqb-item{
  position: relative;
  width: 100%;
}
.xsqb-img{
  width: 100%;
  height: auto;
  margin-bottom: 1.25rem;
}
.xsqb-info{
  text-indent: 2rem;
}

/* jgsz-dpgl */
.jgsz{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}
.jgsz-img{
  text-align: center;
}
.jgsz-img:first-child{
  grid-column: 1 / -1;
}
.jgsz-img:nth-child(2){
  text-align: right;
}
.jgsz-img:nth-child(3){
  text-align: left;
}
.jgsz .trs_editor_view img{
  display: block;
  margin: auto;
}

/* lrszgl */
.neiye-lrsz-list{
  gap: 2rem;
  background-color: #f5f5f5;
  padding-top: 0;
}
.lrsz-item{
  position: relative;
  width: 100%;
  text-align: center;
}
.lrsz-item:first-child{
  grid-column: 1 / -1;
  background-color: #fff;
  padding-bottom: 2rem;
  padding-top: 2.1875rem;
}

.lrsz-img{
  width: 72%;
  height: auto;
  margin-bottom: 1.25rem;
}
.lrsz-item:first-child .lrsz-img{
  max-width: 14rem;
}
.lrsz-item:not(:first-child) .lrsz-img{
  max-width: 13rem;
}
.lrsz-name{
  font-weight: 700;
}
.lrsz-item:first-child .lrsz-name{
  font-size: 1.5rem;
}
.lrsz-item:first-child .lrsz-renqi{
  font-weight: 700;
  color: rgb(192, 0, 0);
}

/* xrld-gl */
.neiye-xrld-list{
  padding-top: 2.1875rem;
  padding-bottom:2.1875rem;
  font-size: 1.125rem;
  color: #444;
  line-height: 1.875rem;
}
.xrld-list1{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.xrld-list2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.xrld-item{
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  padding: 1rem;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.xrld-img{
  width: 8.75rem;
  height: auto;
  display: block;
  margin: auto;
  cursor: pointer;
  transition: all ease 0.25s;
  margin-bottom: 1rem;
}
.xrld-img:hover{
  transform: scale(1.05) translateZ(0);
  will-change: transform;
  image-rendering: -webkit-optimize-contrast; /* Safari 和旧版 Chrome */
  image-rendering: crisp-edges; 
  /* box-shadow: 0 0 10px rgba(0,0,0,0.2); */
}
.xrld-name{
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

/* yszj-gl */
.neiye-yszj-list{
  padding-top: 2.1875rem;
  padding-bottom:2.1875rem;
  font-size: 1.125rem;
  color: #444;
  line-height: 1.875rem;
}
.yszj-list1{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.yszj-list2{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.yszj-item{
  border: 1px solid #ddd;
  border-radius: 0.4rem;
  padding: 1rem;
  box-sizing: border-box;
  padding-bottom: 3rem;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.yszj-img{
  width: 11.625rem;
  height: auto;
  display: block;
  margin: auto;
  cursor: pointer;
  transition: all ease 0.25s;
  margin-bottom: 2rem;
  min-width: 8.75rem;
}
.yszj-list2 .yszj-img{
  /* width: 86%; */
}
.yszj-img:hover{
  transform: scale(1.05) translateZ(0);
  will-change: transform;
  image-rendering: -webkit-optimize-contrast; /* Safari 和旧版 Chrome */
  image-rendering: crisp-edges; 
  /* box-shadow: 0 0 10px rgba(0,0,0,0.3); */
}
.yszj-name{
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #9a7137;
  font-size: 1.5rem;
}
.yszj-text{
  color: #9a7137;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 700;
}
.yszj-line{
  width: 11.625rem;
  margin: auto;
  display: block;
  margin-top: 2rem;
}
.yszj-list2 .yszj-line{
  /* width: 86%; */
}


/* xsqk-gl */
.xsqk-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:4rem 1.875rem;
}
.xsqk-item{
  text-align: center;
}
.xsqk-item img{
  display: block;
  margin: auto;
  margin-bottom: 1rem;
  width: 60%;
  height: auto;
}
.xsqk-tsg{
  display: block;
  margin: auto;
  text-align: center;
  margin-top: 5rem;
}

@media screen and (max-width: 1599px) {
  .neiye-xsqb-list,.neiye-lrsz-list{
    grid-template-columns: repeat(3, 1fr);
  }
  .yszj-img{
    width: 9.46rem;
  }
}
@media (max-width: 1309px) {
  .nav-link{
    padding: 0 10px;
  }
}
@media (max-width: 1279px) {
  .main-content .main-news .flex-boxs .flex-h a .img-boxs{
    height: 9rem;
  }
}
@media (max-width: 1199px) {
  .main-content .main-news .flex-boxs .flex-w {
    width: 100%;
  }

  .main-content .main-news.xshd-bg .xshd-top .img-boxs {
    width: 70%;
  }

  .neiye-box .people-list .people-item li {
    width: calc(calc((100% - 3 * 1.875rem) / 4));
  }

  .neiye-box .people-info .img-boxs {
    width: 30%;
  }

  .neiye-box .tuwen .tupian-item li {
    width: calc((100% - 2 * 1.875rem) / 2);
  }
  .neiye-xsqb-list,.neiye-lrsz-list{
    grid-template-columns: repeat(2, 1fr);
  }
  .yszj-list2{
    grid-template-columns: repeat(3, 1fr);
  }
  .yszj-img{
    width: 11.265rem;
  }
  .yszj-list2 .yszj-img,.yszj-list2 .yszj-line{
    /* width: 70%; */
  }
}

@media (max-width: 991px) {
  .footer .flex-boxs .footer-left {
    width: 100%;
    flex-wrap: wrap;
  }
  
  .footer .flex-boxs .footer-left .foot-info {
    width: 100%;
    flex: auto;
  }

  .main-content .main-news.xshd-bg .flex-boxs-left {
    width: 100%;
  }

  .neiye-box .flex-boxs {
    flex-wrap: wrap;
    background: #fff;
    border-top-left-radius: 5px;
  }    
  .neiye-box .neiye-content {
    width: 100%;
  }

  .neiye-box .aside-item {
    position: fixed;
    top: 150px;
    width: 200px;
    margin-right: 0;
    z-index: 9999;
    box-sizing: border-box;
    transition: all ease 0.25s;
    border-bottom-left-radius: 5px;
  }

  .neiye-box .aside-item:after {
    content: '';
    pointer-events: auto;
    display: inline-block;
    width: 26px;
    height: 55px;
    background: url(sinh_icon02.png) no-repeat center;
    background-color: #8a1b22;
    border-radius: 6px 0 0 6px;
    position: absolute;
    top: 50%;
    left: -26px;
    z-index: 9997;
    transform: translateY(-60%);
  }

  .neiye-box .aside-item.open:after {
    content: '';
    pointer-events: auto;
    display: inline-block;
    width: 26px;
    height: 55px;
    background: url(sinh_icon03.png) no-repeat center;
    background-color: #8a1b22;
    border-radius: 6px 0 0 6px;
    position: absolute;
    top: 50%;
    left: -26px;
    transform: translateY(-60%);
  }
}

@media (max-width: 767px) {

  .overfloat-dot-2,
  .overfloat-dot-3,
  .overfloat-dot-4,
  .overfloat-dot-5 {
    display: block;
  }

  .main-swiper .swiper-box img {
    min-height: 18.75rem;
    object-fit: cover;
  }
  .main-swiper .swiper-box a{
    height: 18.857rem;
  }
  .neiye-box .people-list .people-item li {
    width: calc(calc((100% - 1 * 1.875rem) / 2));
  }
  .main-content .index-banner-swiper .index-banner-box{
    padding-bottom: 2.5625rem;
  }
  .main-content .index-banner-swiper .swiper-other{
    bottom: 0;
  }
  .neiye-box .people-info .img-boxs {
    width: 100%;
  }
  .main-content .index-banner-swiper .index-banner-box .big-tit{
    width: 100%;
  }
  .neiye-box .people-info .people-infos {
    padding-left: 0;
    margin-top: 1.25rem;
  }

  .neiye-box .tuwen .tuwen-item li a.db {
    padding-left: 0;
  }

  .neiye-box .tuwen .tuwen-item li a.db .img-boxs {
    position: initial;
    width: 100%;
    height: auto;
    margin-bottom: 1.25rem;
  }

  .neiye-box .tuwen .tuwen-item li a.db .tuwen-list {
    padding: 0 .9375rem;
  }

  .neiye-box .neiye-list .wenzi-item li a {
    white-space: inherit;
    width: 100%;
  }

  .neiye-box .neiye-list .wenzi-item li .data-s {
    float: none;
  }
  .xrld-list1, .xrld-list2{
    grid-template-columns: repeat(1, 1fr);
  }
  .xsqk-list{
    grid-template-columns: repeat(2, 1fr);
  }
  .main-content .main-news .kydt-lists li{
    flex-wrap: wrap;
  }
  .main-content .main-news .kydt-lists li .data-time{
    text-align: left;
  }
  .main-content .main-news .kydt-lists li a{
    text-overflow: inherit;
    white-space: inherit;
    width: 100%;
  }
  .main-content .main-news.xshd-bg .xshd-top .news-header,.main-content .main-news.xshd-bg .xshd-top .img-boxs{
    flex: auto;
    width: 100%;
  }
  .main-content .main-news .tzgg-lists li a{
    white-space: inherit;
  }
  .neiye-box .neiye-head .channel-title span{
    display: block;
  }
  .neiye-box .neiye-head .channel-title{
    margin-bottom: 10px;
  }
}

@media (max-width: 640px) {
  .neiye-box .tuwen .tupian-item li {
    width: 100%;
  }

  .neiye-box .tuwen .tupian-item a.db img {
    max-height: initial;
  }

  .neiye-xsqb-list,.neiye-lrsz-list{
    grid-template-columns: repeat(1, 1fr);
  }
  .xsqb-img{
    width: 60%;
    display: block;
    margin: auto;
    margin-bottom: 1.25rem;
  }
  .xsqk-list{
    grid-template-columns: repeat(1, 1fr);
  }
  .yszj-list1, .yszj-list2{
    grid-template-columns: repeat(1, 1fr);
  }
  .yszj-list2 .yszj-img,.yszj-list2 .yszj-line{
    /* width: 70%; */
  }
  .yszj-img{
    width: 49%;
    min-width: 11.265rem;
  }
  .jgsz{
    grid-template-columns: 1fr;
    gap: 2rem 1rem;
  }
}

@media (max-width:320px) {
  .neiye-box .people-list .people-item li {
    width: 100%;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .contact-info a{
    padding: 0 7px;
  }
  .main-content .index-banner-swiper .swiper-other .swiper-button{
    position: relative;
  }
  .main-content .index-banner-swiper .swiper-other .swiper-pagination{
    position: relative;
    bottom: -10px;
  }
  .main-content .main-news .flex-boxs .flex-boxs-left{
    padding-right: 25px;
  }
  .main-content .main-news .flex-boxs .flex-boxs-right{
    padding-left: 25px;
  }
  .main-content .main-news .flex-boxs .flex-h{
    padding-right: 20px;
  }
  .main-content .main-news .flex-boxs .flex-h:nth-child(2){
    padding-left: 20px;
    padding-right: 0;
  }
  .main-content .main-news.xshd-bg .xshd-top .img-boxs:nth-child(2){
    margin-top: 20px;
  }
  .footer .flex-boxs .footer-left .foot-info{
    margin-left: 30px;
  }
  .neiye-box .neiye-content{
    padding-left: 30px;
  }
  .neiye-box .people-list .people-item li{
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 25px;
  }
  .xsqk-item{
    display: block;
    width: 33%;
    float: left;
    margin-bottom: 30px;
  }
}