@charset "UTF-8";
@font-face {
  font-family: "Montserrat-Light";
  src: url("../font/Montserrat-Light.woff2") format("woff2"), url("../font/Montserrat-Light.woff") format("woff"), url("../font/Montserrat-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat.woff2") format("woff2"), url("../font/Montserrat.woff") format("woff"), url("../font/Montserrat.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("../font/SourceHanSansCN.woff2") format("woff2"), url("../font/SourceHanSansCN.woff") format("woff"), url("../font/SourceHanSansCN.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSerifCN";
  src: url("../font/SourceHanSerifCN-VF.ttf.woff2") format("woff2"), url("../font/SourceHanSerifCN-VF.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
}
@font-face {
  font-family: "Career";
  src: url("../font/Career.woff2") format("woff2"), url("../font/Career.woff") format("woff"), url("../font/Career.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "AlibabaPuHuiTi";
  font-weight: 400;
  font-style: normal;
  src: url("../font/AlibabaPuHuiTi_Regular.woff2") format("woff2"), url("../font/AlibabaPuHuiTi_Regular.ttf") format("truetype");
  font-display: swap;
}
:root {
  --primary-font: AlibabaPuHuiTi;
  --number-font: Career;
  --primary-color: #00873C;
  --time-color: #6CBDE3;
  --text-color: #000000;
  --bg-color: #ffffff;
  --gary-color: #666666;
  --title-font: SourceHanSerifCN;
  --border-color: rgba(0, 135, 60, 0.1);
}

body {
  font-family: "AlibabaPuHuiTi";
  color: #000000;
  background: #ffffff;
}

html {
  scroll-behavior: smooth;
}


/* 纯CSS兜底：未启用AOS时一律显示（避免低版本JS中断导致内容隐藏） */
html:not(.aos-enabled) [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* IE / 360兼容模式核心间距回退（gap fallback） */
.is-legacy-browser .header_logo .logo > * + * {
  margin-left: 1rem;
}
.is-legacy-browser .header_content .nav_list > li {
  margin-right: 6rem;
}
.is-legacy-browser .header_content .nav_list > li:last-child {
  margin-right: 0;
}
.is-legacy-browser .header_actions > * {
  margin-right: 3.5rem;
}
.is-legacy-browser .header_actions > *:last-child {
  margin-right: 0;
}
.is-legacy-browser .footer .footer_bot .footer_social_links .social_link {
  margin-right: 2rem;
}
.is-legacy-browser .footer .footer_bot .footer_social_links .social_link:last-child {
  margin-right: 0;
}
/* 纯CSS兜底：未启用AOS时一律显示（避免低版本JS中断导致内容隐藏） */


.w {
  width: 100%;
  padding: 0 16rem;
  margin: 0 auto;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  display: none !important;
}
.swiper-button-next i,
.swiper-button-prev i {
  display: block !important;
}

.os-scrollbar {
  --os-size: 2px;
  --os-padding-perpendicular: 0;
  --os-padding-axis: 0;
  --os-track-border-radius: 0;
  --os-track-bg: rgba(14, 55, 113, 0.2);
  --os-track-bg-hover: rgba(14, 55, 113, 0.3);
  --os-track-bg-active: rgba(14, 55, 113, 0.3);
  --os-handle-border-radius: 0;
  --os-handle-bg: #0e3771;
  --os-handle-bg-hover: $primary-color;
  --os-handle-bg-active: $primary-color;
  --os-handle-min-size: 20px;
  --os-handle-max-size: none;
  --os-handle-perpendicular-size: 2px;
  --os-handle-perpendicular-size-hover: 2px;
  --os-handle-perpendicular-size-active: 2px;
}

.os-viewport {
  padding-right: 5rem !important;
}

@media screen and (max-width: 1440px) {
  .os-viewport {
    padding-right: 3rem !important;
  }
}
/*视频弹窗*/
.video_mark {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  bottom: 100%;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.video_mark.open {
  bottom: 0;
}
.video_mark .video_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 70%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.video_mark .video_box video {
  max-width: 100%;
  max-height: 100%;
}
.video_mark .video_box .close {
  position: absolute;
  top: -3.5rem;
  left: 50%;
  font-size: 3rem;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 100;
  color: #fff;
  cursor: pointer;
}

.next1,
.prev1 {
  width: 4.8rem;
  height: 4.8rem;
  background: #FFFFFF;
  color: #00873C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0.2rem 0.2rem 1rem rgba(14, 55, 113, 0.25);
}
.next1:hover,
.prev1:hover {
  background: #00873C;
  color: #fff;
}
.next1 i,
.prev1 i {
  font-size: 2.6rem;
}

.prev2,
.next2 {
  width: 4.8rem;
  height: 4.8rem;
  background: #FFFFFF;
  color: #00873C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0.2rem 0.2rem 1rem rgba(14, 55, 113, 0.25);
  position: static;
}
.prev2:hover,
.next2:hover {
  background: #00873C;
  color: #fff;
}
.prev2 i,
.next2 i {
  font-size: 2.6rem;
}

.section {
  padding: 10rem 0;
}

.section_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.section_header .index_title {
  margin-bottom: 0;
}

.index_title {
  margin-bottom: 5rem;
}
.index_title.white .en_title {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.index_title.white .title {
  color: #fff;
}
.index_title.center {
  text-align: center;
}
.index_title .en_title {
  font-family: "Career";
  font-size: 6rem;
  background: linear-gradient(180deg, rgba(0, 135, 60, 0.5) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.index_title .title {
  /*font-weight: 600;font-family: "SourceHanSerifCN";*/
  font-size: 4.8rem;
  font-family: '黑体', SimHei, sans-serif;
  margin-top: -2rem;
}
.index_title .desc {
  display: inline-block;
  margin: 0 auto;
  font-size: 2.4rem;
  position: relative;
  padding: 2rem 0;
  text-align: center;
}
.index_title .desc::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #0e3771 50%, transparent 100%);
}
.index_title .desc::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #0e3771 50%, transparent 100%);
}
.index_title .desc .separator {
  color: #00873C;
  font-size: 2rem;
  margin: 0 0.8rem;
}
.index_title.center .title {
  text-align: center;
}
.index_title.center .desc {
  justify-content: center;
}
.index_title.center .desc::before {
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 20rem;
}

.view_more_font {
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
  gap: 1.5rem;
}
.view_more_font:hover .dot {
  transform: scale(1.2);
  box-shadow: 0 0 0.4rem rgba(255, 255, 255, 0.6);
}
.view_more_font .dot {
  width: 0.8rem;
  height: 0.8rem;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.view_more_box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.view_more_btn {
  padding: 1.6rem 2.7rem;
  background: #00873C;
  border-radius: 2.4rem;
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s ease;
  gap: 1.5rem;
}
.view_more_btn:hover {
  background: rgb(0, 94.2, 41.8666666667);
  box-shadow: 0 0.4rem 1.2rem rgba(0, 135, 60, 0.3);
  transform: translateY(-0.2rem);
}
.view_more_btn:hover .dot {
  transform: scale(1.2);
  box-shadow: 0 0 0.4rem rgba(255, 255, 255, 0.6);
}
.view_more_btn .dot {
  width: 0.8rem;
  height: 0.8rem;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile_nav_overlay {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 5rem;
  box-sizing: border-box;  
  background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.3) 50%, transparent);
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00873C;
  opacity: 0.95;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
  pointer-events: none;
}
header > * {
  position: relative;
  z-index: 1;
}
header.is-scrolled::before {
  transform: translateY(0);
}

.mobile_menu_btn {
  display: none;
}

.header_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  max-height: 14rem;
  opacity: 1;
  overflow: hidden;
  transform: translateY(0);
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease, transform 0.35s ease;
}
header.is-logo-hidden .header_logo {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
}
.header_logo .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header_logo .logo .logo_img {
  width: 10rem;
  height: 10rem;
}
.header_logo .logo .logo_font {
  height: 9.2rem;
}
.header_logo .right_font img {
  height: 4.7rem;
}

.header_content {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.is-logo-hidden  .header_content{
    border-top: none;
    padding: 1rem 0;
}
.header_content .nav_list {
  display: flex;
  align-items: center;
  gap: 6rem;
}
.header_content .nav_list li {
  position: relative;
}
.header_content .nav_list li > a {
  font-size: 2rem;
  transition: color 0.3s ease;
  line-height: 7rem;
  color: #fff;
}
.header_content .nav_list li > a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 1.8rem;
  height: 1.2rem;
  background: url(../img/active.png) no-repeat center center;
  background-size: 100% 100%;
  display: block;
  opacity: 0;
}
.header_content .nav_list li.active a::after, .header_content .nav_list li:hover a::after {
  opacity: 1;
}
.header_content .nav_list li .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  border-top: 0.2rem solid #00873C;
  transform: translateX(-50%) translateY(0);
  background: #ffffff;
  padding: 1rem 0;
  min-width: 14.4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}
.header_content .nav_list li .submenu dd a {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  line-height: 1.5;
  font-size: 1.8rem;
  color: #666666;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header_content .nav_list li .submenu dd a:after {
  display: none;
}
.header_content .nav_list li .submenu dd a:hover {
  color: #000000;
  font-weight: 600;
}
.header_content .nav_list li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header_actions {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.header_actions .search_area {
  position: relative;
}
.header_actions .search_area .search_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 0.1rem solid #FFFFFF;
  color: #fff;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}
.header_actions .search_area .search_btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.header_actions .search_area .search_form {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  min-width: 30rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: all 0.3s ease;
  z-index: 1001;
}
.header_actions .search_area .search_form .search_ipt {
  flex: 1;
  border: none;
  outline: none;
  background: #f8fafc;
  border-radius: 2rem;
  padding: 0.8rem 1.6rem;
  color: #1e293b;
  font-size: 1.4rem;
}
.header_actions .search_area .search_form .search_ipt::placeholder {
  color: #94a3b8;
}
.header_actions .search_area .search_form .search_submit {
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  background: transparent;
  color: #1e293b;
  cursor: pointer;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}
.header_actions .search_area .search_form .search_submit:hover {
  color: #00873C;
}
.header_actions .search_area:hover .search_form {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header_actions .lang_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 0.1rem solid #FFFFFF;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header_actions .lang_btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.banner_section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.banner_section .banner_swiper {
  width: 100%;
  height: 100%;
}
.banner_section .title {
  color: #fff;
  position: absolute;
  z-index: 2;
  bottom: 5rem;
  left: 16rem;
  font-size: 3rem;
  color: #FFFFFF;
  line-height: 3rem;
}
.banner_section .banner_bg_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.banner_section .banner_pagination {
  position: absolute;
  bottom: 13rem;
  left: 16rem;
  width: auto !important;
  display: flex;
  align-items: center;
  z-index: 10;
}
.banner_section .banner_pagination .swiper-pagination-bullet {
  width: 1.8rem;
  height: 1.8rem;
  background: transparent;
  opacity: 1;
  padding: 0;
  margin: 0;
  margin-right: 2rem;
  border-radius: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Career";
  display: flex;
  align-items: center;
  color: transparent;
  font-size: 1.8rem;
  line-height: 1;
}
.banner_section .banner_pagination .swiper-pagination-bullet::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  margin-right: 6rem;
}
.banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  display: none;
}
.banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  left: calc(100% + 1.5rem);
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 0.1rem;
  background: #fff;
}
.banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active.last-bullet::after {
  display: none;
}

.down_icon {
  position: absolute;
  bottom: 5rem;
  right: 16rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.down_icon:hover {
  transform: scale(1.1);
}
.down_icon .down_icon_bg {
  width: 7.2rem;
  height: 7.2rem;
  background: #00873C;
  border-radius: 50%;
  animation: breathe 1.5s ease-in-out infinite;
}
.down_icon .down_icon_img {
  position: relative;
  width: 1.5rem;
  height: 9.9rem;
  margin-top: -4.2rem;
  z-index: 2;
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes paginationProgress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(1rem);
  }
}
@keyframes breatheRotate {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
.news_section {
  background: url(../img/news_bg.png) no-repeat center center;
  background-size: cover;
}
.news_section .news_content {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
}
.news_section .news_content .index_news_left {
  flex: 0 0 56%;
  min-width: 0;
}
.news_section .news_content .index_news_right {
  flex: 1;
  min-width: 0;
}

.index_news_swiper li a {
  width: 100%;
}
.index_news_swiper li .img_con {
  width: 100%;
  height: 58rem;
  position: relative;
  overflow: hidden;
}
.index_news_swiper li .img_con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.index_news_swiper li .info_con {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 18rem 2rem 3rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  color: #fff;
  z-index: 2;
}
.index_news_swiper li .info_con .time {
  font-family: "Career";
  margin-bottom: 1.5rem;
}
.index_news_swiper li .info_con .title {
  font-size: 2.4rem;
  font-weight: 600;
}
.index_news_swiper li:hover .img_con img {
  transform: scale(1.05);
}
.index_news_swiper .index_news_pagination {
  bottom: 4rem;
  left: auto;
  right: 2rem;
  width: auto !important;
}
.index_news_swiper .index_news_pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background: #fff;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 1rem;
}
.index_news_swiper .index_news_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #00873C;
}

.index_news_list {
  border-top: 0.1rem solid rgba(0, 135, 60, 0.1);
}
.index_news_list .top_news {
  border-bottom: 0.1rem solid rgba(0, 135, 60, 0.1);
}
.index_news_list .top_news:hover .info_con .title {
  color: #00873C;
}
.index_news_list .top_news a {
  width: 100%;
  display: flex;
  gap: 3rem;
  padding: 2rem 0;
}
.index_news_list .top_news .time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #00873C;
  font-family: "Career";
}
.index_news_list .top_news .time .day {
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.index_news_list .top_news .time .year {
  padding-bottom: 1.5rem;
  background: url(../img/timeline.png) no-repeat bottom center;
  background-size: 100% auto;
}
.index_news_list .top_news .info_con {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.index_news_list .top_news .info_con .title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}
.index_news_list .top_news .info_con .info {
  color: #666666;
  margin-bottom: 2rem;
}
.index_news_list .top_news .info_con .more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  transition: all 0.3s ease;
}
.index_news_list .top_news .info_con .more i {
  transition: transform 0.3s ease;
  color: #00873C;
}
.index_news_list .top_news .info_con .more:hover {
  color: #00873C;
}
.index_news_list .top_news .info_con .more:hover i {
  transform: translateX(0.3rem);
}
.index_news_list .news_item {
  width: 100%;
  padding: 2rem 0;
  border-bottom: 0.1rem solid rgba(0, 135, 60, 0.1);
  transition: all 0.3s ease;
}
.index_news_list .news_item:hover .title {
  color: #00873C;
}
.index_news_list .news_item a {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
.index_news_list .news_item .time {
  /*font-size: 1.6rem;
  color: #6CBDE3;*/
  font-size: 2.2rem;
  color: #098942;
  font-family: "Career";
  white-space: nowrap;
}
.index_news_list .news_item .title {
  flex: 1;
  font-size: 2rem;
  /*font-weight: 600;
  font-family: '黑体', SimHei, sans-serif;*/
  transition: color 0.3s ease;
}

.talent_section {
  background: #fff url(../img/talent_bg.png) no-repeat top center;
  background-size: 100% auto;
}
.talent_section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/res_bg.png) no-repeat bottom center;
  background-size: 100% auto;
  z-index: 1;
}
.talent_section .talent_content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 10rem;
}
.talent_section .talent_content .part {
  flex: 1;
  padding: 4rem;
  min-width: 0;
  background: #FFFFFF;
  border-radius: 0rem 10rem 0rem 0rem;
  position: relative;
}
.talent_section .talent_content .part::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1rem;
  background: linear-gradient(to right, #6CBDE3 0%, #FFFFFF 90%);
}
.talent_section .talent_content .part:nth-of-type(2) {
  border-radius: 10rem 0rem 0rem 0rem;
}
.talent_section .talent_content .part .look_more {
  width: 100%;
}
.talent_section .talent_content .part .look_more img {
  width: 100%;
  aspect-ratio: 69/32;
  object-fit: cover;
}
.talent_section .exchange_content {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.talent_section .exchange_content .part {
  background: #fff;
  flex: 1;
  min-width: 0;
}
.talent_section .exchange_content .part .part_img {
  width: 100%;
  position: relative;
}
.talent_section .exchange_content .part .part_img .section_header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  margin-bottom: 0;
  align-items: flex-end;
}
.talent_section .exchange_content .part .part_img img {
  width: 100%;
  aspect-ratio: 50/27;
  object-fit: cover;
}

.index_news_list2 {
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
}
.index_news_list2 li {
  border-bottom: 0.1rem solid rgba(180, 188, 130, 0.2);
  position: relative;
  transition: all 0.3s ease;
}
.index_news_list2 li:last-child {
  border-bottom: none;
}
.index_news_list2 li a {
  padding: 1.5rem 0;
}
.index_news_list2 li .title {
  font-size: 2rem;
  /*font-weight: 600;
  font-family: '黑体', SimHei, sans-serif;*/
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s ease;
}
.index_news_list2 li .title .icon_dot {
  /*color: #6CBDE3;*/
  color: #098942; 
  transition: all 0.3s ease;
  font-size: 3rem;
}
.index_news_list2 li .time {
  /*color: #6CBDE3;*/
  color: #098942; 
  font-family: "Career";
  white-space: nowrap;
}
.index_news_list2 li:hover {
  border-bottom: 0.1rem solid #00873C;
}
.index_news_list2 li:hover .title {
  color: #00873C;
}
.index_news_list2 li:hover .title .icon_dot {
  color: #00873C;
}

.notice_section {
  background: url(../img/notice_bg.png) no-repeat center center;
  background-size: cover;
  overflow-x: hidden;
}
.notice_section .notice_content {
  position: relative;
  margin-bottom: 5rem;
}
.notice_section .notice_content .notice_content_box {
  position: absolute;
  top: -10rem;
  right: 16rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
}

.notice_swiper {
  padding-top: 3rem;
  width: calc(100% + 40rem);
}
.notice_swiper li {
  background: #fff;
  position: relative;
}
.notice_swiper li a {
  padding: 7rem 3rem 4rem 3rem;
  display: block;
  width: 100%;
}
.notice_swiper li .time {
  position: absolute;
  top: -3rem;
  left: 3rem;
  width: 9.2rem;
  height: 8.2rem;
  background: url(../img/notice_time_bg.png) no-repeat center center;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Career";
}
.notice_swiper li .time .day {
  font-size: 3rem;
}
.notice_swiper li .time .year {
  font-size: 1.8rem;
}
.notice_swiper li .title {
  /*font-weight: 600;*/
}

.media_section {
  background: #FFFFFF url(../img/media_bg.png) no-repeat center center;
  background-size: cover;
}
.media_section .media_content {
  display: flex;
  gap: 10rem;
  align-items: flex-start;
}
.media_section .media_content .part {
  flex: 1;
  min-width: 0;
}

.example_gallery {
  position: relative;
  width: 100%;
  margin-top: -5rem;
}
.example_gallery:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1/1;
  z-index: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(0, 135, 60, 0.2) 0%, transparent 70%);
}

.example_small_list {
  position: relative;
  top: -2.5rem;
  width: 100%;
  height: 31.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.example_small_list .example_item {
  position: absolute;
  z-index: 1;
  width: 10rem;
  height: 10rem;
  background: #FFFFFF;
  border: 0.2rem solid #FFFFFF;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-sizing: border-box;
  opacity: 0.8;
}
.example_small_list .example_item a {
  display: block;
  width: 100%;
  height: 100%;
}
.example_small_list .example_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.example_small_list .example_item.active {
  border-color: #00873C;
  box-shadow: 0 0.2rem 1rem rgba(0, 135, 60, 0.3);
}
.example_small_list .example_item:hover:not(.active) {
  border-color: #00873C;
}
.example_small_list .example_item[data-index="1"] {
  left: 0;
  bottom: 0;
  transform: none;
}
.example_small_list .example_item[data-index="2"] {
  left: 22%;
  top: 38%;
  transform: translate(-50%, -50%);
}
.example_small_list .example_item[data-index="3"] {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.example_small_list .example_item[data-index="4"] {
  left: 78%;
  top: 38%;
  transform: translate(-50%, -50%);
}
.example_small_list .example_item[data-index="5"] {
  right: 0;
  bottom: 0;
  transform: none;
}

.example_large_container {
  position: relative;
  margin-top: -20rem;
  display: flex;
  justify-content: center;
}
.example_large_container .example_prev,
.example_large_container .example_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 4.8rem;
  height: 4.8rem;
  color: #00873C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.example_large_container .example_prev:hover:not(.disabled),
.example_large_container .example_next:hover:not(.disabled) {
  opacity: 0.5;
}
.example_large_container .example_prev.disabled,
.example_large_container .example_next.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.example_large_container .example_prev i,
.example_large_container .example_next i {
  font-size: 4.5rem;
}
.example_large_container .example_prev {
  left: 5rem;
}
.example_large_container .example_next {
  right: 5rem;
}
.example_large_container .example_large_display {
  position: relative;
  z-index: 2;
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.example_large_container .example_large_display a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.example_large_container .example_large_display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.index_media_list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.index_media_list li:hover .title {
  color: #00873C;
}
.index_media_list li a {
  display: flex;
  width: 100%;
  gap: 4rem;
}
.index_media_list li .img_con {
  width: 12rem;
  min-width: 0;
  aspect-ratio: 1/1;
  background: #FFFFFF;
  border-radius: 2rem;
  overflow: hidden;
  padding: 1rem;
}
.index_media_list li .img_con img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.index_media_list li .info_con {
  flex: 1;
  min-width: 0;
}
.index_media_list li .info_con .time {
  color: #aaa;
  font-family: "Career";
  margin-bottom: 1rem;
}
.index_media_list li .info_con .title {
  font-size: 2rem;

  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}
.index_media_list li .info_con .desc {
  color: #666666;
}

.column_section {
  background: #FFFFFF url(../img/column_bg.png) no-repeat center center;
  background-size: cover;
}

.column_content {
  position: relative;
  margin-bottom: 5rem;
}
.column_content .column_prev {
  left: -8rem;
}
.column_content .column_next {
  right: -8rem;
}

.column_swiper li:hover .title {
  color: #00873C;
}
.column_swiper li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: url(../img/mark_bg.png) no-repeat center center;
  background-size: 100% 100%;
}
.column_swiper li a {
  width: 100%;
  position: relative;
  z-index: 1;
}
.column_swiper li .img_con {
  width: calc(100% - 2rem);
  margin-left: 2rem;
  overflow: hidden;
}
.column_swiper li .img_con img {
  width: 100%;
  aspect-ratio: 9/5;
  object-fit: cover;
  transition: all 0.3s ease;
}
.column_swiper li .title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 6rem;
  height: 6rem;
  position: relative;
  padding-left: 2rem;
  transition: all 0.3s ease;
}
.column_swiper li .title:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 0.6rem solid transparent;
  border-left: 0.8rem solid #fff;
}

.image_section {
  background: #FFFFFF url(../img/image_bg.png) no-repeat center center;
  background-size: cover;
  overflow: hidden;
  width: 100%;
}
.image_section .image_content {
  position: relative;
}
.image_section .image_list {
  position: relative;
  width: 100%;
  height: 79rem;
}
.image_section .image_list li {
  position: absolute;
  overflow: hidden;
  height: 39rem;
}
.image_section .image_list li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.image_section .image_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}
.image_section .image_list li:nth-child(1) {
  top: 0;
  left: 0;
  width: calc((100% - 2rem) * 0.5);
}
.image_section .image_list li:nth-child(1) .play_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.4rem;
  height: 7.4rem;
  background: url(../img/video_icon.png) no-repeat center center;
  background-size: 100% 100%;
  transition: all 0.3s ease;
}
.image_section .image_list li:nth-child(1) .play_icon:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.image_section .image_list li:nth-child(2) {
  top: 0;
  left: calc((100% - 2rem) * 0.5 + 1rem);
  width: calc((100% - 2rem) * 0.25);
}
.image_section .image_list li:nth-child(3) {
  top: 0;
  right: 0;
  width: calc((100% - 2rem) * 0.25);
}
.image_section .image_list li:nth-child(4) {
  bottom: 0;
  left: 0;
  width: calc((100% - 1rem) * 0.6);
  height: 53.3rem;
}
.image_section .image_list li:nth-child(5) {
  bottom: 0;
  right: 0;
  width: calc((100% - 1rem) * 0.4);
}

.index_link_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9.4rem;
  position: relative;
  margin-bottom: 10rem;
}
.index_link_list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 0.1rem;
  background: #00873C;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}
.index_link_list li {
  position: relative;
  z-index: 1;
  flex: 1;
  aspect-ratio: 1/1;
  transition: all 0.3s ease;
}
.index_link_list li a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/link_bg.png) no-repeat center center;
  background-size: 100% 100%;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding: 3.2rem;
}
.index_link_list li a:hover {
  background-image: url(../img/link_bg_hover.png);
  transform: scale(1.1);
}
.index_link_list li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer {
  background: url(../img/footer_bg.png) no-repeat center center;
  background-size: cover;
  color: #fff;
  position: relative;
}
.footer .footer_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5rem;
}
.footer .footer_top .footer_logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer .footer_top .footer_logo .logo_img {
  width: 10rem;
  height: 10rem;
}
.footer .footer_top .footer_logo .logo_font {
  height: 9.2rem;
}
.footer .footer_top_right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-end;
}
.footer .footer_top_right .footer_quick_links {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.footer .footer_top_right .footer_quick_links .footer_link_group {
  position: relative;
}
.footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 2.4rem;
  min-width: 30rem;
  background: #fff;
  border: none;
  border-radius: 1rem;
  color: #000000;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
}
.footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn .btn_icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}
.footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn span {
  font-weight: 600;
}
.footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn i {
  font-size: 2.4rem;
  color: #00873C;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn:hover {
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.15);
}
.footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn:hover i {
  transform: translateY(-50%) rotate(180deg);
}
.footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: 100%;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: all 0.3s ease;
  z-index: 100;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.15);
max-height: 300px; /* 固定高度以触发滚动 */
  overflow-y: scroll; /* 启用Y轴滚动条 */
}
.footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown li a {
  display: block;
  padding: 1rem 2rem;
  color: #000000;
  transition: all 0.3s ease;
}
.footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown li a:hover {
  background: rgba(0, 135, 60, 0.1);
  color: #00873C;
}
.footer .footer_top_right .footer_quick_links .footer_link_group:hover .footer_link_dropdown, .footer .footer_top_right .footer_quick_links .footer_link_group.active .footer_link_dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer .footer_top_right .footer_address {
  text-align: right;
  font-size: 1.8rem;
  line-height: 1.5;
}
.footer .footer_top_right .footer_address .address_text {
  text-align: right;
  margin-bottom: 0.5rem;
}
.footer .footer_top_right .footer_address .zip_code {
  text-align: right;
}
.footer .footer_bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .footer_bot .copyright {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer .footer_bot .copyright span,.footer .footer_bot .copyright .banquan{
  line-height: 1.6;
}
.footer .footer_bot .footer_social_links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.footer .footer_bot .footer_social_links .social_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: transform 0.3s ease;
}
.footer .footer_bot .footer_social_links .social_link:hover {
  transform: translateY(-0.3rem);
}
.footer .footer_bot .footer_social_links .social_link .icon_con {
  width: 8rem;
  height: 8rem;
  background: #fff;
  border-radius: 50%;
  padding: 2rem;
}
.footer .footer_bot .footer_social_links .social_link .icon_con img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer .footer_bot .footer_social_links .social_link span {
  transition: color 0.3s ease;
}
.footer .footer_bot .footer_social_links .social_link .social_qr {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 1.2rem);
  transform: translateX(-50%) translateY(0.8rem) scale(0.95);
  width: 13rem;
  height: 13rem;
  background: #fff;
  border-radius: 0.8rem;
  padding: 0.6rem;
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 10;
}
.footer .footer_bot .footer_social_links .social_link .social_qr::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.8rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  border-top: 0.8rem solid #fff;
}
.footer .footer_bot .footer_social_links .social_link .social_qr img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.footer .footer_bot .footer_social_links .social_link:hover .social_qr,
.footer .footer_bot .footer_social_links .social_link:focus-within .social_qr {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.inner_section {
  position: relative;
}
.inner_section .inner_bg {
  width: 100%;
  min-height: 50rem;
  object-fit: cover;
}
.inner_section .index_title {
  position: absolute;
  top: 26rem;
  left: 16rem;
}

.menu_container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.menu_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 16rem);
  height: 100%;
  background: #00873C;
  border-radius: 0 5rem 0 0;
}
.menu_container .menu_list {
  display: flex;
  align-items: center;
  gap: 8rem;
}
.menu_container .menu_list li {
  position: relative;
}
.menu_container .menu_list li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: #6CBDE3;
  opacity: 0;
  transition: all 0.3s ease;
}
.menu_container .menu_list li a {
  display: block;
  font-size: 1.8rem;
  color: #ffffff;
  padding: 2.8rem 0;
  line-height: 2.4rem;
  transition: all 0.3s ease;
}
.menu_container .menu_list li:hover:before, .menu_container .menu_list li.active:before {
  opacity: 1;
}

.leader_list {
  margin-top: 5rem;
}
.leader_list .leader_item {
  display: flex;
  align-items: center;
  padding: 2.4rem 4rem;
  transition: all 0.3s ease;
}
.leader_list .leader_item:nth-child(even) {
  background: rgba(0, 135, 60, 0.05);
}
.leader_list .leader_item:nth-child(odd) {
  background: #ffffff;
}
.leader_list .leader_item .leader_title {
  flex: 1;
  text-align: right;
  font-size: 2.4rem;
  color: #00873C;
}
.leader_list .leader_item .leader_separator {
  width: 0.1rem;
  height: 3rem;
  background: #00873C;
  flex-shrink: 0;
  margin: 0 5rem;
}
.leader_list .leader_item .leader_name {
  flex: 1;
  text-align: left;
  font-size: 2.4rem;
  color: #888;
}

.leader_detail {
  display: flex;
  background: rgba(0, 135, 60, 0.05);
}
.leader_detail .leader_photo {
  flex: 0 0 36rem;
}
.leader_detail .leader_photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.leader_detail .leader_info {
  flex: 1;
  border-top: 5rem solid #fff;
  border-bottom: 5rem solid #fff;
}
.leader_detail .leader_info .leader_content {
  height: 100%;
  padding: 5rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}
.leader_detail .leader_info .leader_name {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.2;
}
.leader_detail .leader_info .leader_titles {
  font-size: 1.8rem;
  color: #888;
}

.organization_section {
  position: relative;
}
.organization_section::before {
  content: "";
  position: absolute;
  top: 8rem;
  left: 0;
  width: 60%;
  height: 48rem;
  background: linear-gradient(to bottom, rgba(0, 135, 60, 0.1) 0%, #ffffff 100%);
}

.organization_list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 4rem;
  margin-top: 5rem;
  padding: 8rem 9rem;
  background: linear-gradient(to bottom, #ffffff 0%, rgb(216, 242, 255) 100%);
  border-radius: 10rem 0 0 0;
}
.organization_list li {
  position: relative;
}
.organization_list li a {
  font-size: 1.8rem;
  line-height: 3rem;
  color: #000000;
  text-decoration: none;
  height: 6rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.organization_list li a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0.6rem;
  background: #00873C;
  border-radius: 50%;
  margin-right: 0;
  vertical-align: middle;
  transition: all 0.3s ease;
  opacity: 0;
}
.organization_list li:hover a {
  color: #00873C;
  font-weight: 600;
  padding-left: 1rem;
}
.organization_list li:hover a::before {
  width: 0.6rem;
  margin-right: 0.5rem;
  opacity: 1;
}

.news_list_section {
  background: #fff;
}

.news_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 10rem;
}
.news_list li {
  transition: all 0.3s ease;
  padding-bottom: 5rem;
  border-bottom: 0.1rem solid rgba(0, 135, 60, 0.1);
}
.news_list li a {
  display: flex;
  gap: 3rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.news_list li .img_con {
  flex-shrink: 0;
  width: 40rem;
  overflow: hidden;
  position: relative;
}
.news_list li .img_con .time {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #6CBDE3;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Career";
  width: 8rem;
  height: 8rem;
  transition: all 0.3s ease;
}
.news_list li .img_con .time .day {
  font-size: 4.2rem;
}
.news_list li .img_con img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  aspect-ratio: 20/13;
  transition: transform 0.3s ease;
}
.news_list li .info_con {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.news_list li .info_con .info_content {
  flex: 1;
}
.news_list li .info_con .info_content .title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.news_list li .info_con .info_content .desc {
  color: #666666;
}
.news_list li .info_con .more_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #000000;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.news_list li .info_con .more_btn i {
  color: #00873C;
  font-size: 2.8rem;
  transition: transform 0.3s ease;
}
.news_list li:hover .title {
  color: #00873C;
}
.news_list li:hover .img_con .time {
  background: #00873C;
}
.news_list li:hover .more_btn {
  color: #00873C;
}
.news_list li:hover .more_btn i {
  transform: rotate(-45deg);
}
.news_list li:hover .img_con img {
  transform: scale(1.05);
}

.example_menu_list {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 0.1rem solid #00873C;
  border-radius: 4rem;
  overflow: hidden;
  margin: 0 auto 5rem;
  width: fit-content;
}
.example_menu_list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 8rem;
  line-height: 8rem;
  font-size: 2.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 4rem;
}
.example_menu_list a.active {
  background: #00873C;
  color: #ffffff;
}
.example_menu_list a:hover:not(.active) {
  background: rgba(0, 135, 60, 0.1);
  color: #00873C;
}
.example_menu_list a:hover.active {
  background: rgb(0, 94.2, 41.8666666667);
}

.talent_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 4rem;
}
.talent_list li {
  transition: all 0.3s ease;
}
.talent_list li a {
  display: flex;
  height: 100%;
  transition: all 0.3s ease;
}
.talent_list li .time {
  flex-shrink: 0;
  width: 13rem;
  background: #6CBDE3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  transition: background 0.3s ease;
  font-family: "Career";
  color: #fff;
}
.talent_list li .time .day {
  font-size: 4.8rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.talent_list li .time .year {
  line-height: 1;
}
.talent_list li .info_con {
  flex: 1;
  background: linear-gradient(90deg, rgba(123, 195, 230, 0.2) 0%, rgba(255, 255, 255, 0) 90%);
  padding: 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease;
  min-width: 0;
}
.talent_list li .info_con .info_content {
  flex: 1;
}
.talent_list li .info_con .info_content .title {
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}
.talent_list li .info_con .more_btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.talent_list li .info_con .more_btn i {
  font-size: 2.8rem;
  color: #00873C;
  transition: transform 0.3s ease;
}
.talent_list li:hover .time {
  background: #00873C;
}
.talent_list li:hover .info_con {
  background: linear-gradient(90deg, rgba(0, 135, 60, 0.2) 0%, rgba(255, 255, 255, 0) 90%);
}
.talent_list li:hover .title {
  color: #00873C;
}
.talent_list li:hover .more_btn {
  color: #00873C;
}
.talent_list li:hover .more_btn i {
  transform: rotate(-45deg);
}

.green_bg_section {
  position: relative;
  padding: 26rem 0 10rem;
}
.green_bg_section .w {
  position: relative;
  z-index: 1;
}
.green_bg_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40rem;
  background: linear-gradient(180deg, #00873C 0%, #fff 100%);
}

.search_bar {
  margin-bottom: 6rem;
  border-radius: 2rem;
  padding: 4rem;
  background: rgba(0, 135, 60, 0.1);
}
.search_bar .search_form_main {
  display: flex;
  align-items: center;
  border-radius: 2rem;
  overflow: hidden;
  background: #ffffff;
  padding: 1rem;
}
.search_bar .search_input {
  flex: 1;
  border: none;
  outline: none;
  padding: 2.4rem 3rem;
  font-size: 1.8rem;
  color: #333333;
  background: #ffffff;
}
.search_bar .search_input::placeholder {
  color: #999999;
}
.search_bar .search_btn_main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2.8rem 6rem;
  background: #6CBDE3;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.search_bar .search_btn_main i {
  font-size: 2rem;
}
.search_bar .search_btn_main:hover {
  background: rgb(65.16, 169.7657142857, 218.84);
}
.search_bar .search_btn_main:active {
  transform: scale(0.98);
}

.section_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.section_header .sort {
  display: flex;
  align-items: center;
  font-size: 2rem;
}
.section_header .sort .sort_btn_group {
  display: flex;
  align-items: center;
  background: rgba(0, 135, 60, 0.1);
  border-radius: 3rem 3rem 3rem 3rem;
}
.section_header .sort .sort_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.9rem 2.7rem;
  border-radius: 3rem;
  transition: all 0.3s ease;
}
.section_header .sort .sort_btn:hover {
  background: rgba(0, 135, 60, 0.1);
  color: #00873C;
}
.section_header .sort .sort_btn.active {
  background: #00873C;
  color: #ffffff;
}

.search_list.service_list li {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.search_list li {
  position: relative;
  transition: all 0.3s ease;
}
.search_list li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.search_list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.4rem;
  background: #00873C;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.search_list li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 135, 60, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.search_list li a .title {
  flex: 1;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 600;
  position: relative;
  padding-left: 1rem;
  transition: color 0.3s ease;
}
.search_list li a .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background: #00873C;
  border-radius: 50%;
}
.search_list li a .time {
  flex-shrink: 0;
  color: #6CBDE3;
  font-family: "Career";
  margin-left: 2rem;
  white-space: nowrap;
}
.search_list li:hover a::before {
  opacity: 1;
}
.search_list li:hover a::after {
  opacity: 1;
}
.search_list li:hover a .title {
  color: #00873C;
}
.search_list li:nth-of-type(5n) {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 0.1rem solid rgba(0, 135, 60, 0.1);
}

.page {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 10rem;
}
.page a,
.page span {
  width: 6.7rem;
  height: 6.7rem;
  background: rgba(0, 135, 60, 0.1);
  font-family: "Career";
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.page a:hover,
.page span:hover {
  background: #00873C;
  color: #fff;
}
.page .prev,
.page .next {
  font-size: 2.4rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  line-height: 4rem;
}

.news_detail {
  padding: 8rem 10rem;
  background: #fff;
}
.news_detail .title {
  font-size: 3rem;
  line-height: 3.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
.news_detail .time {
  /*text-align: center;
  color: #6CBDE3;
  font-family: "Career";*/
  display:inline-block;
  color:#333;
  font-size:1.6rem;
  padding:0 1.2rem;
  margin-bottom: 2rem;
}
.news_detail .page_info {
  font-size: 1.8rem;
}
.news_detail .page_info p {
  font-size: 1.8rem;
}

.service_detail {
  width: 93.5rem;
  margin: 0 auto;
  padding: 13.3rem 17.6rem 30rem 17.6rem;
  background: url(../img/xin.png) no-repeat center center;
  background-size: 100% 100%;
}
.service_detail .title {
  text-align: center;
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 3rem;
}
.service_detail .page_info {
  font-size: 1.8rem;
  margin-bottom: 10rem;
}
.service_detail .page_info p {
  font-size: 1.8rem;
}
.service_detail .email_con {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}
.service_detail .email_con .email_title {
  font-size: 1.8rem;
}
.service_detail .email_con .email {
  font-size: 3rem;
  color: #00873C;
}

.impression_gallery {
  position: relative;
  width: 100%;
}
.impression_gallery .impression_main_swiper {
  margin-bottom: 3rem;
}
.impression_gallery .impression_main_swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
.impression_gallery .impression_main_swiper .impression_prev,
.impression_gallery .impression_main_swiper .impression_next {
  background: #D8A976;
  color: #fff;
}
.impression_gallery .impression_main_swiper .impression_prev:hover,
.impression_gallery .impression_main_swiper .impression_next:hover {
  background: #00873C;
  color: #fff;
}
.impression_gallery .impression_main_swiper .impression_prev {
  left: 3rem;
}
.impression_gallery .impression_main_swiper .impression_next {
  right: 3rem;
}
.impression_gallery .impression_thumbs_swiper {
  width: 100%;
}
.impression_gallery .impression_thumbs_swiper .swiper-slide {
  cursor: pointer;
  width: 100%;
  height: 15rem;
  overflow: hidden;
}
.impression_gallery .impression_thumbs_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.impression_gallery .impression_thumbs_swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border: 0.4rem solid #00873C;
}
.impression_gallery .impression_thumbs_swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

.en body {
  font-family: Montserrat-Light;
  letter-spacing: -0.1px;
}
.en .info,
.en p,
.en .info p {
  text-align: inherit;
}
@media screen and (max-width: 1680px) {
  .video_mark .video_box .close {
    top: -3.1rem;
    font-size: 2.6rem;
  }
  .next1,
  .prev1,
  .prev2,
  .next2 {
    width: 4.2rem;
    height: 4.2rem;
    box-shadow: 0.2rem 0.2rem 0.9rem rgba(14, 55, 113, 0.25);
  }
  .next1 i,
  .prev1 i,
  .prev2 i,
  .next2 i {
    font-size: 2.3rem;
  }
  .section {
    padding: 8.8rem 0;
  }
  .section_header {
    margin-bottom: 4.4rem;
  }
  .index_title {
    margin-bottom: 4.4rem;
  }
  .index_title .en_title {
    font-size: 5.3rem;
  }
  .index_title .title {
    font-size: 4.2rem;
    margin-top: -1.8rem;
  }
  .index_title .desc {
    font-size: 2.1rem;
    padding: 1.8rem 0;
  }
  .index_title .desc .separator {
    font-size: 1.8rem;
    margin: 0 0.7rem;
  }
  .index_title.center .desc::before {
    min-width: 17.5rem;
  }
  .view_more_font {
    padding: 1.4rem 0;
    font-size: 1.8rem;
    gap: 1.3rem;
  }
  .view_more_font .dot {
    width: 0.7rem;
    height: 0.7rem;
  }
  .view_more_btn {
    padding: 1.4rem 2.4rem;
    border-radius: 2.1rem;
    font-size: 1.8rem;
    gap: 1.3rem;
    box-shadow: 0 0.4rem 1.1rem rgba(0, 135, 60, 0.3);
    transform: translateY(-0.2rem);
  }
  .view_more_btn .dot {
    width: 0.7rem;
    height: 0.7rem;
  }
  header {
    padding: 0 4.4rem;
  }
  .header_logo {
    padding: 1.8rem 0;
  }
  .header_logo .logo {
    gap: 0.9rem;
  }
  .header_logo .logo .logo_img {
    width: 8.8rem;
    height: 8.8rem;
  }
  .header_logo .logo .logo_font {
    height: 8.1rem;
  }
  .header_logo .right_font img {
    height: 4.2rem;
  }
  .header_content .nav_list {
    gap: 5.3rem;
  }
  .header_content .nav_list li > a {
    font-size: 1.8rem;
    line-height: 6.1rem;
  }
  .header_content .nav_list li > a:after {
    width: 1.6rem;
    height: 1.1rem;
  }
  .header_content .nav_list li .submenu {
    border-top: 0.2rem solid #00873C;
    padding: 0.9rem 0;
    min-width: 12.6rem;
    box-shadow: 0 0.4rem 1.1rem rgba(0, 0, 0, 0.1);
    margin-top: 0.4rem;
  }
  .header_content .nav_list li .submenu dd a {
    padding: 0.9rem 1.8rem;
    font-size: 1.6rem;
  }
  .header_actions {
    gap: 3.1rem;
  }
  .header_actions .search_area .search_btn {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.6rem;
  }
  .header_actions .search_area .search_form {
    top: calc(100% + 0.9rem);
    min-width: 26.3rem;
    border-radius: 0.9rem;
    padding: 1.1rem;
    transform: translateY(-0.9rem);
  }
  .header_actions .search_area .search_form .search_ipt {
    border-radius: 1.8rem;
    padding: 0.7rem 1.4rem;
    font-size: 1.2rem;
  }
  .header_actions .search_area .search_form .search_submit {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.6rem;
  }
  .header_actions .lang_btn {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.4rem;
  }
  .banner_section .title {
    bottom: 4.4rem;
    left: 14rem;
    font-size: 2.6rem;
    line-height: 2.6rem;
  }
  .banner_section .banner_pagination {
    bottom: 11.4rem;
    left: 14rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 1.8rem;
    font-size: 1.6rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet::before {
    width: 0.5rem;
    height: 0.5rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 1.6rem;
    margin-right: 5.3rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    left: calc(100% + 1.3rem);
    width: 3.5rem;
  }
  .down_icon {
    bottom: 4.4rem;
    right: 14rem;
  }
  .down_icon .down_icon_bg {
    width: 6.3rem;
    height: 6.3rem;
  }
  .down_icon .down_icon_img {
    width: 1.3rem;
    height: 8.7rem;
    margin-top: -3.7rem;
  }
  .news_section .news_content {
    gap: 7rem;
  }
  .index_news_swiper li .img_con {
    height: 50.8rem;
  }
  .index_news_swiper li .info_con {
    padding: 1.8rem 15.8rem 1.8rem 2.6rem;
  }
  .index_news_swiper li .info_con .title {
    font-size: 2.1rem;
  }
  .index_news_swiper .index_news_pagination {
    bottom: 3.5rem;
    right: 1.8rem;
  }
  .index_news_swiper .index_news_pagination .swiper-pagination-bullet {
    width: 0.9rem;
    height: 0.9rem;
    margin: 0 0.9rem;
  }
  .index_news_list .top_news a {
    gap: 2.6rem;
    padding: 1.8rem 0;
  }
  .index_news_list .top_news .time .day {
    font-size: 4.2rem;
    margin-bottom: 0.4rem;
  }
  .index_news_list .top_news .time .year {
    padding-bottom: 1.3rem;
  }
  .index_news_list .top_news .info_con .title {
    font-size: 2rem;
    margin-bottom: 1.3rem;
  }
  .index_news_list .top_news .info_con .info {
    margin-bottom: 1.8rem;
  }
  .index_news_list .top_news .info_con .more {
    gap: 0.4rem;
  }
  .index_news_list .news_item {
    padding: 1.8rem 0;
  }
  .index_news_list .news_item a {
    gap: 2.6rem;
  }
  .index_news_list .news_item .time {
    font-size: 1.6rem;
  }
  .index_news_list .news_item .title {
    font-size: 2rem;
  }
  .talent_section .talent_content {
    gap: 1.8rem;
    margin-bottom: 8.8rem;
  }
  .talent_section .talent_content .part {
    padding: 3.5rem;
    border-radius: 0rem 8.8rem 0rem 0rem;
  }
  .talent_section .talent_content .part::after {
    height: 0.9rem;
  }
  .talent_section .talent_content .part:nth-of-type(2) {
    border-radius: 8.8rem 0rem 0rem 0rem;
  }
  .talent_section .exchange_content {
    gap: 4.4rem;
  }
  .talent_section .exchange_content .part .part_img .section_header {
    padding: 1.8rem;
  }
  .index_news_list2 {
    padding: 0 1.8rem;
  }
  .index_news_list2 li a {
    padding: 1.3rem 0;
  }
  .index_news_list2 li .title {
    font-size: 2rem;
    margin-bottom: 0.9rem;
  }
  .index_news_list2 li .title .icon_dot {
    font-size: 2.6rem;
  }
  .notice_section .notice_content {
    margin-bottom: 4.4rem;
  }
  .notice_section .notice_content .notice_content_box {
    top: -8.8rem;
    right: 14rem;
    gap: 2.6rem;
  }
  .notice_swiper {
    padding-top: 2.6rem;
    width: calc(100% + 35rem);
  }
  .notice_swiper li a {
    padding: 6.1rem 2.6rem 3.5rem 2.6rem;
  }
  .notice_swiper li .time {
    top: -2.6rem;
    left: 2.6rem;
    width: 8.1rem;
    height: 7.2rem;
  }
  .notice_swiper li .time .day {
    font-size: 2.6rem;
  }
  .notice_swiper li .time .year {
    font-size: 1.6rem;
  }
  .media_section .media_content {
    gap: 8.8rem;
  }
  .example_gallery {
    margin-top: -4.4rem;
  }
  .example_small_list {
    top: -2.2rem;
    height: 27.6rem;
  }
  .example_small_list .example_item {
    width: 8.8rem;
    height: 8.8rem;
    border: 0.2rem solid #FFFFFF;
  }
  .example_large_container {
    margin-top: -17.5rem;
  }
  .example_large_container .example_prev,
  .example_large_container .example_next {
    width: 4.2rem;
    height: 4.2rem;
  }
  .example_large_container .example_prev i,
  .example_large_container .example_next i {
    font-size: 3.9rem;
  }
  .example_large_container .example_prev {
    left: 4.4rem;
  }
  .example_large_container .example_next {
    right: 4.4rem;
  }
  .example_large_container .example_large_display {
    width: 45.5rem;
    height: 45.5rem;
  }
  .index_media_list {
    gap: 2.6rem;
  }
  .index_media_list li a {
    gap: 3.5rem;
  }
  .index_media_list li .img_con {
    width: 10.5rem;
    border-radius: 1.8rem;
    padding: 0.9rem;
  }
  .index_media_list li .info_con .title {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }
  .column_content {
    margin-bottom: 4.4rem;
  }
  .column_content .column_prev {
    left: -7rem;
  }
  .column_content .column_next {
    right: -7rem;
  }
  .column_swiper li .img_con {
    margin-left: 1.8rem;
  }
  .column_swiper li .title {
    font-size: 1.8rem;
    line-height: 5.3rem;
    height: 5.3rem;
    padding-left: 1.8rem;
  }
  .column_swiper li .title:before {
    border: 0.5rem solid transparent;
    border-left: 0.7rem solid #fff;
  }
  .image_section .image_list {
    height: 69rem;
  }
  .image_section .image_list li {
    height: 34rem;
  }
  .image_section .image_list li:nth-child(1) .play_icon {
    width: 6.5rem;
    height: 6.5rem;
  }
  .image_section .image_list li:nth-child(4) {
    height: 45.5rem;
  }
  .index_link_list {
    gap: 8.2rem;
    margin-bottom: 8.8rem;
  }
  .index_link_list li a {
    padding: 2.8rem;
  }
  .footer .footer_top {
    margin-bottom: 4.4rem;
  }
  .footer .footer_top .footer_logo {
    gap: 0.9rem;
  }
  .footer .footer_top .footer_logo .logo_img {
    width: 8.8rem;
    height: 8.8rem;
  }
  .footer .footer_top .footer_logo .logo_font {
    height: 8.1rem;
  }
  .footer .footer_top_right {
    gap: 2.6rem;
  }
  .footer .footer_top_right .footer_quick_links {
    gap: 1.8rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn {
    gap: 0.9rem;
    padding: 1.8rem 2.1rem;
    min-width: 26.3rem;
    border-radius: 0.9rem;
    font-size: 1.6rem;
    box-shadow: 0 0.2rem 0.7rem rgba(0, 0, 0, 0.1);
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn .btn_icon {
    width: 1.8rem;
    height: 1.8rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn i {
    font-size: 2.1rem;
    right: 2.1rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn:hover {
    box-shadow: 0 0.4rem 1.1rem rgba(0, 0, 0, 0.15);
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown {
    top: calc(100% + 0.4rem);
    border-radius: 0.9rem;
    padding: 0.9rem 0;
    transform: translateY(-0.9rem);
    box-shadow: 0 0.4rem 1.1rem rgba(0, 0, 0, 0.15);
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown li a {
    padding: 0.9rem 1.8rem;
  }
  .footer .footer_top_right .footer_address {
    font-size: 1.6rem;
  }
  .footer .footer_top_right .footer_address .address_text {
    margin-bottom: 0.4rem;
  }
  .footer .footer_bot .footer_social_links {
    gap: 1.8rem;
  }
  .footer .footer_bot .footer_social_links .social_link {
    gap: 0.9rem;
  }
  .footer .footer_bot .footer_social_links .social_link .icon_con {
    width: 7rem;
    height: 7rem;
    padding: 1.8rem;
  }
  .talent_list {
    gap: 4.4rem 3.5rem;
  }
  .talent_list li .time {
    width: 11.4rem;
    padding: 1.8rem 0.9rem;
  }
  .talent_list li .time .day {
    font-size: 4.2rem;
    margin-bottom: 0.4rem;
  }
  .talent_list li .info_con {
    padding: 2.6rem 3.5rem;
  }
  .talent_list li .info_con .info_content .title {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }
  .talent_list li .info_con .more_btn {
    gap: 0.4rem;
  }
  .talent_list li .info_con .more_btn i {
    font-size: 2.5rem;
  }
  .green_bg_section {
    padding: 22.8rem 0 8.8rem;
  }
  .green_bg_section::before {
    height: 35rem;
  }
  .search_bar {
    margin-bottom: 5.3rem;
    border-radius: 1.8rem;
    padding: 3.5rem;
  }
  .search_bar .search_form_main {
    border-radius: 1.8rem;
    padding: 0.9rem;
  }
  .search_bar .search_input {
    padding: 2.1rem 2.6rem;
    font-size: 1.8rem;
  }
  .search_bar .search_btn_main {
    padding: 2.5rem 5.3rem;
    font-size: 1.8rem;
    border-radius: 1.8rem;
  }
  .search_bar .search_btn_main i {
    font-size: 1.8rem;
  }
  .section_header {
    margin-bottom: 4.4rem;
  }
  .section_header .sort {
    font-size: 1.8rem;
  }
  .section_header .sort .sort_btn_group {
    border-radius: 2.6rem 2.6rem 2.6rem 2.6rem;
  }
  .section_header .sort .sort_btn {
    padding: 1.7rem 2.4rem;
    border-radius: 2.6rem;
  }
  .search_list li a {
    padding: 2.6rem 1.8rem;
  }
  .search_list li a::before {
    width: 0.4rem;
  }
  .search_list li a .title {
    font-size: 1.8rem;
    padding-left: 0.9rem;
  }
  .search_list li a .title::before {
    width: 0.5rem;
    height: 0.5rem;
  }
  .search_list li a .time {
    margin-left: 1.8rem;
  }
  .search_list li:nth-of-type(5n) {
    padding-bottom: 1.3rem;
    margin-bottom: 1.3rem;
  }
  .breadcrumb {
    gap: 0.9rem;
    line-height: 3.5rem;
  }
  .news_detail {
    padding: 7rem 8.8rem;
  }
  .news_detail .title {
    font-size: 2.6rem;
    line-height: 3.2rem;
    margin-bottom: 1.8rem;
  }
  .news_detail .time {
    margin-bottom: 1.8rem;
  }
  .news_detail .page_info {
    font-size: 1.8rem;
  }
  .news_detail .page_info p {
    font-size: 1.8rem;
  }
  .service_detail {
    width: 92rem;
    padding: 11.6rem 15.4rem 26.3rem 15.4rem;
  }
  .service_detail .title {
    font-size: 2.6rem;
    line-height: 3.5rem;
    margin-bottom: 2.6rem;
  }
  .service_detail .page_info {
    font-size: 1.8rem;
    margin-bottom: 8.8rem;
  }
  .service_detail .page_info p {
    font-size: 1.8rem;
  }
  .service_detail .email_con {
    gap: 0.4rem;
  }
  .service_detail .email_con .email_title {
    font-size: 1.8rem;
  }
  .service_detail .email_con .email {
    font-size: 2.6rem;
  }
  .example_menu_list {
    border-radius: 3.5rem;
    margin-bottom: 4.4rem;
  }
  .example_menu_list a {
    width: 35rem;
    height: 7rem;
    line-height: 7rem;
    font-size: 2.1rem;
    border-radius: 3.5rem;
  }
  .impression_gallery .impression_main_swiper {
    margin-bottom: 2.6rem;
  }
  .impression_gallery .impression_main_swiper .impression_prev {
    left: 2.6rem;
  }
  .impression_gallery .impression_main_swiper .impression_next {
    right: 2.6rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide {
    height: 13.1rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide.swiper-slide-thumb-active {
    border: 0.4rem solid #00873C;
  }
  .menu_container::before {
    width: calc(100% - 14rem);
    border-radius: 0 4.4rem 0 0;
  }
  .menu_container .menu_list {
    gap: 7rem;
  }
  .menu_container .menu_list li:before {
    height: 0.3rem;
  }
  .menu_container .menu_list li a {
    font-size: 1.8rem;
    padding: 2.5rem 0;
    line-height: 2.1rem;
  }
  .leader_list {
    margin-top: 4.4rem;
  }
  .leader_list .leader_item {
    padding: 2.1rem 3.5rem;
  }
  .leader_list .leader_item .leader_title {
    font-size: 2.1rem;
  }
  .leader_list .leader_item .leader_separator {
    height: 2.6rem;
    margin: 0 4.4rem;
  }
  .leader_list .leader_item .leader_name {
    font-size: 2.1rem;
  }
  .leader_detail .leader_photo {
    flex: 0 0 31.5rem;
  }
  .leader_detail .leader_info {
    border-top: 4.4rem solid #fff;
    border-bottom: 4.4rem solid #fff;
  }
  .leader_detail .leader_info .leader_content {
    padding: 4.4rem 6.1rem;
    gap: 3.5rem;
  }
  .leader_detail .leader_info .leader_name {
    font-size: 3.2rem;
  }
  .leader_detail .leader_info .leader_titles {
    font-size: 1.8rem;
  }
  .organization_section::before {
    top: 7rem;
    height: 42rem;
  }
  .organization_list {
    gap: 1.3rem 3.5rem;
    margin-top: 4.4rem;
    padding: 7rem 7.9rem;
    border-radius: 8.8rem 0 0 0;
  }
  .organization_list li a {
    font-size: 1.8rem;
    line-height: 2.6rem;
    height: 5.3rem;
  }
  .organization_list li a::before {
    height: 0.5rem;
  }
  .organization_list li:hover a {
    padding-left: 0.9rem;
  }
  .organization_list li:hover a::before {
    width: 0.5rem;
    margin-right: 0.4rem;
  }
  .inner_section .inner_bg {
    min-height: 43.8rem;
  }
  .inner_section .index_title {
    top: 22.8rem;
    left: 14rem;
  }
  .news_list {
    gap: 4.4rem 8.8rem;
  }
  .news_list li {
    padding-bottom: 4.4rem;
  }
  .news_list li a {
    gap: 2.6rem;
  }
  .news_list li .img_con {
    width: 35rem;
  }
  .news_list li .img_con .time .day {
    font-size: 3.7rem;
  }
  .news_list li .info_con .info_content .title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .news_list li .info_con .more_btn {
    gap: 0.4rem;
  }
  .news_list li .info_con .more_btn i {
    font-size: 2.5rem;
  }
  .page {
    gap: 0.9rem;
    padding-top: 8.8rem;
  }
  .page a,
  .page span {
    width: 5.9rem;
    height: 5.9rem;
    font-size: 1.8rem;
  }
  .page .prev,
  .page .next {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 1440px) {
  .video_mark .video_box .close {
    top: -2.6rem;
    font-size: 2.3rem;
  }
  .next1,
  .prev1,
  .prev2,
  .next2 {
    width: 3.6rem;
    height: 3.6rem;
    box-shadow: 0.2rem 0.2rem 0.8rem rgba(14, 55, 113, 0.25);
  }
  .next1 i,
  .prev1 i,
  .prev2 i,
  .next2 i {
    font-size: 2rem;
  }
  .section {
    padding: 7.5rem 0;
  }
  .section_header {
    margin-bottom: 3.8rem;
  }
  .index_title {
    margin-bottom: 3.8rem;
  }
  .index_title .en_title {
    font-size: 4.5rem;
  }
  .index_title .title {
    font-size: 3.6rem;
    margin-top: -1.5rem;
  }
  .index_title .desc {
    font-size: 1.8rem;
    padding: 1.5rem 0;
  }
  .index_title .desc .separator {
    font-size: 1.5rem;
    margin: 0 0.6rem;
  }
  .index_title.center .desc::before {
    min-width: 15rem;
  }
  .view_more_font {
    padding: 1.2rem 0;
    font-size: 1.5rem;
    gap: 1.1rem;
  }
  .view_more_font .dot {
    width: 0.6rem;
    height: 0.6rem;
  }
  .view_more_btn {
    padding: 1.2rem 2rem;
    border-radius: 1.8rem;
    font-size: 1.5rem;
    gap: 1.1rem;
    box-shadow: 0 0.4rem 0.9rem rgba(0, 135, 60, 0.3);
    transform: translateY(-0.2rem);
  }
  .view_more_btn .dot {
    width: 0.6rem;
    height: 0.6rem;
  }
  header {
    padding: 0 3.8rem;
  }
  .header_logo {
    padding: 1.5rem 0;
  }
  .header_logo .logo {
    gap: 0.8rem;
  }
  .header_logo .logo .logo_img {
    width: 7.5rem;
    height: 7.5rem;
  }
  .header_logo .logo .logo_font {
    height: 6.9rem;
  }
  .header_logo .right_font img {
    height: 3.8rem;
  }
  .header_content .nav_list {
    gap: 4.5rem;
  }
  .header_content .nav_list li > a {
    font-size: 1.8rem;
    line-height: 5.3rem;
  }
  .header_content .nav_list li > a:after {
    width: 1.4rem;
    height: 0.9rem;
  }
  .header_content .nav_list li .submenu {
    padding: 0.8rem 0;
    min-width: 10.8rem;
    margin-top: 0.4rem;
  }
  .header_content .nav_list li .submenu dd a {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
  }
  .header_actions {
    gap: 2.6rem;
  }
  .header_actions .search_area .search_btn {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.4rem;
  }
  .header_actions .search_area .search_form {
    top: calc(100% + 0.8rem);
    min-width: 22.5rem;
    padding: 0.9rem;
    transform: translateY(-0.8rem);
  }
  .header_actions .search_area .search_form .search_ipt {
    padding: 0.6rem 1.2rem;
    font-size: 1.1rem;
  }
  .header_actions .search_area .search_form .search_submit {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1.4rem;
  }
  .header_actions .lang_btn {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 1.2rem;
  }
  .banner_section .title {
    bottom: 3.8rem;
    left: 12rem;
    font-size: 2.3rem;
    line-height: 2.3rem;
  }
  .banner_section .banner_pagination {
    bottom: 9.8rem;
    left: 12rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet {
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 1.5rem;
    font-size: 1.4rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet::before {
    width: 0.5rem;
    height: 0.5rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 1.4rem;
    margin-right: 4.5rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    left: calc(100% + 1.1rem);
    width: 3rem;
  }
  .down_icon {
    bottom: 3.8rem;
    right: 12rem;
  }
  .down_icon .down_icon_bg {
    width: 5.4rem;
    height: 5.4rem;
  }
  .down_icon .down_icon_img {
    width: 1.1rem;
    height: 7.4rem;
    margin-top: -3.2rem;
  }
  .news_section .news_content {
    gap: 6rem;
  }
  .index_news_swiper li .img_con {
    height: 43.5rem;
  }
  .index_news_swiper li .info_con {
    padding: 1.5rem 13.5rem 1.5rem 2.3rem;
  }
  .index_news_swiper li .info_con .title {
    font-size: 1.8rem;
  }
  .index_news_swiper .index_news_pagination {
    bottom: 3rem;
    right: 1.5rem;
  }
  .index_news_swiper .index_news_pagination .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem;
  }
  .index_news_list .top_news a {
    gap: 2.3rem;
    padding: 1.5rem 0;
  }
  .index_news_list .top_news .time .day {
    font-size: 3.6rem;
    margin-bottom: 0.4rem;
  }
  .index_news_list .top_news .time .year {
    padding-bottom: 1.1rem;
  }
  .index_news_list .top_news .info_con .title {
    font-size: 2rem;
    margin-bottom: 1.1rem;
  }
  .index_news_list .top_news .info_con .info {
    margin-bottom: 1.5rem;
  }
  .index_news_list .top_news .info_con .more {
    gap: 0.4rem;
  }
  .index_news_list .news_item {
    padding: 1.5rem 0;
  }
  .index_news_list .news_item a {
    gap: 2.3rem;
  }
  .index_news_list .news_item .time {
    font-size: 1.4rem;
  }
  .index_news_list .news_item .title {
    font-size: 2rem;
  }
  .talent_section .talent_content {
    gap: 1.5rem;
    margin-bottom: 7.5rem;
  }
  .talent_section .talent_content .part {
    padding: 3rem;
    border-radius: 0rem 7.5rem 0rem 0rem;
  }
  .talent_section .talent_content .part::after {
    height: 0.8rem;
  }
  .talent_section .talent_content .part:nth-of-type(2) {
    border-radius: 7.5rem 0rem 0rem 0rem;
  }
  .talent_section .exchange_content {
    gap: 3.8rem;
  }
  .talent_section .exchange_content .part .part_img .section_header {
    padding: 1.5rem;
  }
  .index_news_list2 {
    padding: 0 1.5rem;
  }
  .index_news_list2 li a {
    padding: 1.1rem 0;
  }
  .index_news_list2 li .title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  .index_news_list2 li .title .icon_dot {
    font-size: 2.3rem;
  }
  .notice_section .notice_content {
    margin-bottom: 3.8rem;
  }
  .notice_section .notice_content .notice_content_box {
    top: -7.5rem;
    right: 12rem;
    gap: 2.3rem;
  }
  .notice_swiper {
    padding-top: 2.3rem;
    width: calc(100% + 30rem);
  }
  .notice_swiper li a {
    padding: 5.3rem 2.3rem 3rem 2.3rem;
  }
  .notice_swiper li .time {
    top: -2.3rem;
    left: 2.3rem;
    width: 6.9rem;
    height: 6.2rem;
  }
  .notice_swiper li .time .day {
    font-size: 2.3rem;
  }
  .notice_swiper li .time .year {
    font-size: 1.4rem;
  }
  .media_section .media_content {
    gap: 7.5rem;
  }
  .example_gallery {
    margin-top: -3.8rem;
  }
  .example_small_list {
    top: -1.9rem;
    height: 23.6rem;
  }
  .example_small_list .example_item {
    width: 7.5rem;
    height: 7.5rem;
  }
  .example_large_container {
    margin-top: -15rem;
  }
  .example_large_container .example_prev,
  .example_large_container .example_next {
    width: 3.6rem;
    height: 3.6rem;
  }
  .example_large_container .example_prev i,
  .example_large_container .example_next i {
    font-size: 3.4rem;
  }
  .example_large_container .example_prev {
    left: 3.8rem;
  }
  .example_large_container .example_next {
    right: 3.8rem;
  }
  .example_large_container .example_large_display {
    width: 39rem;
    height: 39rem;
  }
  .index_media_list {
    gap: 2.3rem;
  }
  .index_media_list li a {
    gap: 3rem;
  }
  .index_media_list li .img_con {
    width: 9rem;
    border-radius: 1.5rem;
    padding: 0.8rem;
  }
  .index_media_list li .info_con .title {
    font-size: 2rem;
    margin-bottom: 0.4rem;
  }
  .column_content {
    margin-bottom: 3.8rem;
  }
  .column_content .column_prev {
    left: -6rem;
  }
  .column_content .column_next {
    right: -6rem;
  }
  .column_swiper li .img_con {
    margin-left: 1.5rem;
  }
  .column_swiper li .title {
    font-size: 1.8rem;
    line-height: 4.5rem;
    height: 4.5rem;
    padding-left: 1.5rem;
  }
  .column_swiper li .title:before {
    border: 0.5rem solid transparent;
    border-left: 0.6rem solid #fff;
  }
  .index_link_list {
    gap: 7.1rem;
    margin-bottom: 7.5rem;
  }
  .index_link_list li a {
    padding: 2.4rem;
  }
  .footer .footer_top {
    margin-bottom: 3.8rem;
  }
  .footer .footer_top .footer_logo {
    gap: 0.8rem;
  }
  .footer .footer_top .footer_logo .logo_img {
    width: 7.5rem;
    height: 7.5rem;
  }
  .footer .footer_top .footer_logo .logo_font {
    height: 6.9rem;
  }
  .footer .footer_top_right {
    gap: 2.3rem;
  }
  .footer .footer_top_right .footer_quick_links {
    gap: 1.5rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn {
    gap: 0.8rem;
    padding: 1.5rem 1.8rem;
    min-width: 22.5rem;
    font-size: 1.4rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn .btn_icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn i {
    font-size: 1.8rem;
    right: 1.8rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown {
    top: calc(100% + 0.4rem);
    padding: 0.8rem 0;
    transform: translateY(-0.8rem);
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown li a {
    padding: 0.8rem 1.5rem;
  }
  .footer .footer_top_right .footer_address {
    font-size: 1.4rem;
  }
  .footer .footer_top_right .footer_address .address_text {
    margin-bottom: 0.4rem;
  }
  .footer .footer_bot .footer_social_links {
    gap: 1.5rem;
  }
  .footer .footer_bot .footer_social_links .social_link {
    gap: 0.8rem;
  }
  .footer .footer_bot .footer_social_links .social_link .icon_con {
    width: 6rem;
    height: 6rem;
    padding: 1.5rem;
  }
  .talent_list {
    gap: 3.8rem 3rem;
  }
  .talent_list li .time {
    width: 9.8rem;
    padding: 1.5rem 0.8rem;
  }
  .talent_list li .time .day {
    font-size: 3.6rem;
    margin-bottom: 0.4rem;
  }
  .talent_list li .info_con {
    padding: 2.3rem 3rem;
  }
  .talent_list li .info_con .info_content .title {
    margin-bottom: 1.5rem;
  }
  .talent_list li .info_con .more_btn {
    gap: 0.4rem;
  }
  .talent_list li .info_con .more_btn i {
    font-size: 2.1rem;
  }
  .green_bg_section {
    padding: 19.5rem 0 7.5rem;
  }
  .green_bg_section::before {
    height: 30rem;
  }
  .search_bar {
    margin-bottom: 4.5rem;
    border-radius: 1.5rem;
    padding: 3rem;
  }
  .search_bar .search_form_main {
    border-radius: 1.5rem;
    padding: 0.8rem;
  }
  .search_bar .search_input {
    padding: 1.8rem 2.3rem;
  }
  .search_bar .search_btn_main {
    padding: 2.1rem 4.5rem;
    border-radius: 1.5rem;
  }
  .search_bar .search_btn_main i {
    font-size: 1.5rem;
  }
  .section_header {
    margin-bottom: 3.8rem;
  }
  .section_header .sort {
    font-size: 1.5rem;
  }
  .section_header .sort .sort_btn_group {
    border-radius: 2.3rem 2.3rem 2.3rem 2.3rem;
  }
  .section_header .sort .sort_btn {
    padding: 1.4rem 2rem;
    border-radius: 2.3rem;
  }
  .search_list li a {
    padding: 2.3rem 1.5rem;
  }
  .search_list li a .title {
    padding-left: 0.8rem;
  }
  .search_list li a .title::before {
    width: 0.5rem;
    height: 0.5rem;
  }
  .search_list li a .time {
    margin-left: 1.5rem;
  }
  .search_list li:nth-of-type(5n) {
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
  }
  .breadcrumb {
    gap: 0.8rem;
    line-height: 3rem;
  }
  .news_detail {
    padding: 6rem 7.5rem;
  }
  .news_detail .title {
    font-size: 2.3rem;
    line-height: 2.7rem;
    margin-bottom: 1.5rem;
  }
  .news_detail .time {
    margin-bottom: 1.5rem;
  }
  .news_detail .page_info {
    font-size: 1.8rem;
  }
  .news_detail .page_info p {
    font-size: 1.8rem;
  }
  .service_detail {
    width: 90rem;
    padding: 12rem 13.2rem 22.5rem 13.2rem;
  }
  .service_detail .title {
    font-size: 2.3rem;
    line-height: 3rem;
    margin-bottom: 2.3rem;
  }
  .service_detail .page_info {
    font-size: 1.8rem;
    margin-bottom: 7.5rem;
  }
  .service_detail .page_info p {
    font-size: 1.8rem;
  }
  .service_detail .email_con {
    gap: 0.4rem;
  }
  .service_detail .email_con .email_title {
    font-size: 1.8rem;
  }
  .service_detail .email_con .email {
    font-size: 2.3rem;
  }
  .example_menu_list {
    border-radius: 3rem;
    margin-bottom: 3.8rem;
  }
  .example_menu_list a {
    width: 30rem;
    height: 6rem;
    line-height: 6rem;
    font-size: 1.8rem;
    border-radius: 3rem;
  }
  .impression_gallery .impression_main_swiper {
    margin-bottom: 2.3rem;
  }
  .impression_gallery .impression_main_swiper .impression_prev {
    left: 2.3rem;
  }
  .impression_gallery .impression_main_swiper .impression_next {
    right: 2.3rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide {
    height: 11.3rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide.swiper-slide-thumb-active {
    border: 0.3rem solid #00873C;
  }
  .menu_container::before {
    width: calc(100% - 12rem);
    border-radius: 0 3.8rem 0 0;
  }
  .menu_container .menu_list {
    gap: 6rem;
  }
  .menu_container .menu_list li:before {
    height: 0.3rem;
  }
  .menu_container .menu_list li a {
    font-size: 1.8rem;
    padding: 2.1rem 0;
    line-height: 1.8rem;
  }
  .leader_list {
    margin-top: 3.8rem;
  }
  .leader_list .leader_item {
    padding: 1.8rem 3rem;
  }
  .leader_list .leader_item .leader_title {
    font-size: 1.8rem;
  }
  .leader_list .leader_item .leader_separator {
    height: 2.3rem;
    margin: 0 3.8rem;
  }
  .leader_list .leader_item .leader_name {
    font-size: 1.8rem;
  }
  .leader_detail .leader_photo {
    flex: 0 0 27rem;
  }
  .leader_detail .leader_info {
    border-top: 3.8rem solid #fff;
    border-bottom: 3.8rem solid #fff;
  }
  .leader_detail .leader_info .leader_content {
    padding: 3.8rem 5.3rem;
    gap: 3rem;
  }
  .leader_detail .leader_info .leader_name {
    font-size: 2.7rem;
  }
  .leader_detail .leader_info .leader_titles {
    font-size: 1.8rem;
  }
  .organization_section::before {
    top: 6rem;
    height: 36rem;
  }
  .organization_list {
    gap: 1.1rem 3rem;
    margin-top: 3.8rem;
    padding: 6rem 6.8rem;
    border-radius: 7.5rem 0 0 0;
  }
  .organization_list li a {
    font-size: 1.8rem;
    line-height: 2.3rem;
    height: 4.5rem;
  }
  .organization_list li a::before {
    height: 0.5rem;
  }
  .organization_list li:hover a {
    padding-left: 0.8rem;
  }
  .organization_list li:hover a::before {
    width: 0.5rem;
    margin-right: 0.4rem;
  }
  .inner_section .inner_bg {
    min-height: 37.5rem;
  }
  .inner_section .index_title {
    top: 19.5rem;
    left: 12rem;
  }
  .news_list {
    gap: 3.8rem 7.5rem;
  }
  .news_list li {
    padding-bottom: 3.8rem;
  }
  .news_list li a {
    gap: 2.3rem;
  }
  .news_list li .img_con {
    width: 30rem;
  }
  .news_list li .img_con .time {
    width: 7rem;
    height: 7rem;
  }
  .news_list li .img_con .time .day {
    font-size: 2.8rem;
  }
  .news_list li .img_con .time .year {
    font-size: 1.2rem;
  }
  .news_list li .info_con .info_content .title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  .news_list li .info_con .more_btn {
    gap: 0.4rem;
  }
  .news_list li .info_con .more_btn i {
    font-size: 2.1rem;
  }
  .page {
    gap: 0.8rem;
    padding-top: 7.5rem;
  }
  .page a,
  .page span {
    width: 5rem;
    height: 5rem;
    font-size: 1.5rem;
  }
  .page .prev,
  .page .next {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1280px) {
  .video_mark .video_box .close {
    top: -2.5rem;
    font-size: 2.2rem;
  }
  .next1,
  .prev1,
  .prev2,
  .next2 {
    width: 3.5rem;
    height: 3.5rem;
    box-shadow: 0.2rem 0.2rem 0.7rem rgba(14, 55, 113, 0.25);
  }
  .next1 i,
  .prev1 i,
  .prev2 i,
  .next2 i {
    font-size: 1.9rem;
  }
  .section {
    padding: 7.2rem 0;
  }
  .section_header {
    margin-bottom: 3.6rem;
  }
  .index_title {
    margin-bottom: 3.6rem;
  }
  .index_title .en_title {
    font-size: 4.3rem;
  }
  .index_title .title {
    font-size: 3.5rem;
    margin-top: -1.4rem;
  }
  .index_title .desc {
    font-size: 1.6rem;
    padding: 1.4rem 0;
  }
  .index_title .desc .separator {
    font-size: 1.6rem;
    margin: 0 0.6rem;
  }
  .index_title.center .desc::before {
    min-width: 14.4rem;
  }
  .view_more_font {
    padding: 1.2rem 0;
    font-size: 1.6rem;
    gap: 1.1rem;
  }
  .view_more_font .dot {
    width: 0.6rem;
    height: 0.6rem;
  }
  .view_more_btn {
    padding: 1.2rem 2rem;
    border-radius: 1.4rem;
    font-size: 1.6rem;
    gap: 1.1rem;
    box-shadow: 0 0.4rem 0.7rem rgba(0, 135, 60, 0.3);
    transform: translateY(-0.2rem);
  }
  .view_more_btn .dot {
    width: 0.6rem;
    height: 0.6rem;
  }
  header {
    padding: 0 3.6rem;
  }
  .header_logo {
    padding: 1.4rem 0;
  }
  .header_logo .logo {
    gap: 0.8rem;
  }
  .header_logo .logo .logo_img {
    width: 7.2rem;
    height: 7.2rem;
  }
  .header_logo .logo .logo_font {
    height: 6.6rem;
  }
  .header_logo .right_font img {
    height: 3.6rem;
  }
  .header_content .nav_list {
    gap: 4.3rem;
  }
  .header_content .nav_list li > a {
    line-height: 5.2rem;
  }
  .header_content .nav_list li > a:after {
    width: 1.3rem;
    height: 0.9rem;
  }
  .header_content .nav_list li .submenu {
    padding: 0.7rem 0;
    min-width: 10.4rem;
    margin-top: 0.3rem;
  }
  .header_content .nav_list li .submenu dd a {
    padding: 0.7rem 1.4rem;
    font-size: 1.6rem;
  }
  .header_actions {
    gap: 2.6rem;
  }
  .header_actions .search_area .search_btn {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.6rem;
  }
  .header_actions .search_area .search_form {
    top: calc(100% + 0.7rem);
    min-width: 21.6rem;
    padding: 0.9rem;
    transform: translateY(-0.7rem);
  }
  .header_actions .search_area .search_form .search_ipt {
    padding: 0.6rem 1.2rem;
    font-size: 1.6rem;
  }
  .header_actions .search_area .search_form .search_submit {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 1.6rem;
  }
  .header_actions .lang_btn {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.6rem;
  }
  .banner_section .title {
    bottom: 3.6rem;
    left: 11.5rem;
    font-size: 2.2rem;
    line-height: 2.2rem;
  }
  .banner_section .banner_pagination {
    bottom: 9.4rem;
    left: 11.5rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet {
    width: 1.3rem;
    height: 1.3rem;
    margin-right: 1.4rem;
    font-size: 1.6rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet::before {
    width: 0.4rem;
    height: 0.4rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 1.6rem;
    margin-right: 4.3rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    left: calc(100% + 1.1rem);
    width: 2.9rem;
  }
  .down_icon {
    bottom: 3.6rem;
    right: 11.5rem;
  }
  .down_icon .down_icon_bg {
    width: 5.2rem;
    height: 5.2rem;
  }
  .down_icon .down_icon_img {
    width: 1.1rem;
    height: 7.1rem;
    margin-top: -3rem;
  }
  .news_section .news_content {
    gap: 5.8rem;
  }
  .index_news_swiper li .img_con {
    height: 41.8rem;
  }
  .index_news_swiper li .info_con {
    padding: 1.4rem 12.9rem 1.4rem 2.2rem;
  }
  .index_news_swiper .index_news_pagination {
    bottom: 2.9rem;
    right: 1.4rem;
  }
  .index_news_swiper .index_news_pagination .swiper-pagination-bullet {
    width: 0.7rem;
    height: 0.7rem;
    margin: 0 0.7rem;
  }
  .index_news_list .top_news a {
    gap: 2.2rem;
    padding: 1.4rem 0;
  }
  .index_news_list .top_news .time .day {
    font-size: 3.5rem;
    margin-bottom: 0.3rem;
  }
  .index_news_list .top_news .time .year {
    padding-bottom: 1.1rem;
  }
  .index_news_list .top_news .info_con .title {
    margin-bottom: 1.3rem;
  }
  .index_news_list .top_news .info_con .info {
    margin-bottom: 1.4rem;
  }
  .index_news_list .top_news .info_con .more {
    gap: 0.3rem;
  }
  .index_news_list .news_item {
    padding: 1.4rem 0;
  }
  .index_news_list .news_item a {
    gap: 2.2rem;
  }
  .index_news_list .news_item .time {
    font-size: 1.8rem;
  }
  .talent_section .talent_content {
    gap: 1.4rem;
    margin-bottom: 7.2rem;
  }
  .talent_section .talent_content .part {
    padding: 2.9rem;
    border-radius: 0rem 7.2rem 0rem 0rem;
  }
  .talent_section .talent_content .part::after {
    height: 0.7rem;
  }
  .talent_section .talent_content .part:nth-of-type(2) {
    border-radius: 7.2rem 0rem 0rem 0rem;
  }
  .talent_section .exchange_content {
    gap: 3.6rem;
  }
  .talent_section .exchange_content .part .part_img .section_header {
    padding: 1.4rem;
  }
  .index_news_list2 {
    padding: 0 1.4rem;
  }
  .index_news_list2 li a {
    padding: 1.1rem 0;
  }
  .index_news_list2 li .title {
    margin-bottom: 0.7rem;
  }
  .index_news_list2 li .title .icon_dot {
    font-size: 2.2rem;
  }
  .notice_section .notice_content {
    margin-bottom: 3.6rem;
  }
  .notice_section .notice_content .notice_content_box {
    top: -7.2rem;
    right: 11.5rem;
    gap: 2.2rem;
  }
  .notice_swiper {
    padding-top: 2.2rem;
    width: calc(100% + 28.8rem);
  }
  .notice_swiper li a {
    padding: 5.1rem 2.2rem 2.9rem 2.2rem;
  }
  .notice_swiper li .time {
    top: -2.2rem;
    left: 2.2rem;
    width: 6.6rem;
    height: 5.9rem;
  }
  .notice_swiper li .time .day {
    font-size: 2.2rem;
  }
  .notice_swiper li .time .year {
    font-size: 1.6rem;
  }
  .media_section .media_content {
    gap: 7.2rem;
  }
  .example_gallery {
    margin-top: -3.6rem;
  }
  .example_small_list {
    top: -1.8rem;
    height: 22.7rem;
  }
  .example_small_list .example_item {
    width: 7.2rem;
    height: 7.2rem;
  }
  .example_large_container {
    margin-top: -14.4rem;
  }
  .example_large_container .example_prev,
  .example_large_container .example_next {
    width: 3.5rem;
    height: 3.5rem;
  }
  .example_large_container .example_prev i,
  .example_large_container .example_next i {
    font-size: 3.2rem;
  }
  .example_large_container .example_prev {
    left: 3.6rem;
  }
  .example_large_container .example_next {
    right: 3.6rem;
  }
  .example_large_container .example_large_display {
    width: 37.4rem;
    height: 37.4rem;
  }
  .index_media_list {
    gap: 2.2rem;
  }
  .index_media_list li a {
    gap: 2.9rem;
  }
  .index_media_list li .img_con {
    width: 8.6rem;
    border-radius: 1.4rem;
    padding: 0.7rem;
  }
  .index_media_list li .info_con .title {
    margin-bottom: 0.3rem;
  }
  .column_content {
    margin-bottom: 3.6rem;
  }
  .column_content .column_prev {
    left: -5.8rem;
  }
  .column_content .column_next {
    right: -5.8rem;
  }
  .column_swiper li .img_con {
    margin-left: 1.4rem;
  }
  .column_swiper li .title {
    line-height: 4.3rem;
    height: 4.3rem;
    padding-left: 1.4rem;
  }
  .column_swiper li .title:before {
    border: 0.4rem solid transparent;
    border-left: 0.5rem solid #fff;
  }
  .index_link_list {
    gap: 6.8rem;
    margin-bottom: 7.2rem;
  }
  .index_link_list li a {
    padding: 2.3rem;
  }
  .image_section .image_list li:nth-child(4) {
    height: 50rem;
  }
  .footer .footer_top {
    margin-bottom: 3.6rem;
  }
  .footer .footer_top .footer_logo {
    gap: 0.8rem;
  }
  .footer .footer_top .footer_logo .logo_img {
    width: 7.2rem;
    height: 7.2rem;
  }
  .footer .footer_top .footer_logo .logo_font {
    height: 6.6rem;
  }
  .footer .footer_top_right {
    gap: 2.2rem;
  }
  .footer .footer_top_right .footer_quick_links {
    gap: 1.4rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn {
    gap: 0.7rem;
    padding: 1.4rem 1.5rem;
    min-width: 21.6rem;
    font-size: 1.6rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn .btn_icon {
    width: 1.4rem;
    height: 1.4rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn i {
    font-size: 1.6rem;
    right: 1.5rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown {
    top: calc(100% + 0.3rem);
    padding: 0.7rem 0;
    transform: translateY(-0.7rem);
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown li a {
    padding: 0.7rem 1.4rem;
  }
  .footer .footer_top_right .footer_address {
    font-size: 1.6rem;
  }
  .footer .footer_top_right .footer_address .address_text {
    margin-bottom: 0.3rem;
  }
  .footer .footer_bot .footer_social_links {
    gap: 1.4rem;
  }
  .footer .footer_bot .footer_social_links .social_link {
    gap: 0.7rem;
  }
  .footer .footer_bot .footer_social_links .social_link .icon_con {
    width: 5.8rem;
    height: 5.8rem;
    padding: 1.4rem;
  }
  .talent_list {
    gap: 3.6rem 2.9rem;
  }
  .talent_list li .time {
    width: 9.4rem;
    padding: 1.4rem 0.7rem;
  }
  .talent_list li .time .day {
    font-size: 3.5rem;
    margin-bottom: 0.4rem;
  }
  .talent_list li .info_con {
    padding: 2.2rem 2.9rem;
  }
  .talent_list li .info_con .info_content .title {
    margin-bottom: 1.4rem;
  }
  .talent_list li .info_con .more_btn {
    gap: 0.4rem;
  }
  .talent_list li .info_con .more_btn i {
    font-size: 2rem;
  }
  .green_bg_section {
    padding: 18.7rem 0 7.2rem;
  }
  .green_bg_section::before {
    height: 28.8rem;
  }
  .search_bar {
    margin-bottom: 4.3rem;
    border-radius: 1.4rem;
    padding: 2.9rem;
  }
  .search_bar .search_form_main {
    border-radius: 1.4rem;
    padding: 0.7rem;
  }
  .search_bar .search_input {
    padding: 1.7rem 2.2rem;
  }
  .search_bar .search_btn_main {
    padding: 2rem 4.3rem;
    border-radius: 1.4rem;
  }
  .search_bar .search_btn_main i {
    font-size: 1.4rem;
  }
  .section_header {
    margin-bottom: 3.6rem;
  }
  .section_header .sort {
    font-size: 1.6rem;
  }
  .section_header .sort .sort_btn_group {
    border-radius: 2.2rem 2.2rem 2.2rem 2.2rem;
  }
  .section_header .sort .sort_btn {
    padding: 1.4rem 1.9rem;
    border-radius: 2.2rem;
  }
  .search_list li a {
    padding: 2.2rem 1.4rem;
  }
  .search_list li a .title {
    padding-left: 0.7rem;
  }
  .search_list li a .title::before {
    width: 0.4rem;
    height: 0.4rem;
  }
  .search_list li a .time {
    margin-left: 1.4rem;
  }
  .search_list li:nth-of-type(5n) {
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
  }
  .breadcrumb {
    gap: 0.7rem;
    line-height: 2.9rem;
  }
  .news_detail {
    padding: 5.8rem 7.2rem;
  }
  .news_detail .title {
    font-size: 2.2rem;
    line-height: 2.6rem;
    margin-bottom: 1.4rem;
  }
  .news_detail .time {
    margin-bottom: 1.4rem;
  }
  .news_detail .page_info {
    font-size: 1.8rem;
  }
  .news_detail .page_info p {
    font-size: 1.8rem;
  }
  .service_detail {
    width: 80rem;
    padding: 9.6rem 12.7rem 21.6rem 12.7rem;
  }
  .service_detail .title {
    font-size: 2.2rem;
    line-height: 2.9rem;
    margin-bottom: 2.2rem;
  }
  .service_detail .page_info {
    font-size: 1.8rem;
    margin-bottom: 7.2rem;
  }
  .service_detail .page_info p {
    font-size: 1.8rem;
  }
  .service_detail .email_con {
    gap: 0.4rem;
  }
  .service_detail .email_con .email_title {
    font-size: 1.8rem;
  }
  .service_detail .email_con .email {
    font-size: 2.2rem;
  }
  .example_menu_list {
    border-radius: 2.9rem;
    margin-bottom: 3.6rem;
  }
  .example_menu_list a {
    width: 28.8rem;
    height: 5.8rem;
    line-height: 5.8rem;
    font-size: 1.8rem;
    border-radius: 2.9rem;
  }
  .impression_gallery .impression_main_swiper {
    margin-bottom: 2.2rem;
  }
  .impression_gallery .impression_main_swiper .impression_prev {
    left: 2.2rem;
  }
  .impression_gallery .impression_main_swiper .impression_next {
    right: 2.2rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide {
    height: 10.8rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide.swiper-slide-thumb-active {
    border: 0.3rem solid #00873C;
  }
  .menu_container::before {
    width: calc(100% - 11.5rem);
    border-radius: 0 3.6rem 0 0;
  }
  .menu_container .menu_list {
    gap: 5.8rem;
  }
  .menu_container .menu_list li:before {
    height: 0.2rem;
  }
  .menu_container .menu_list li a {
    font-size: 1.8rem;
    padding: 2rem 0;
    line-height: 1.7rem;
  }
  .leader_list {
    margin-top: 3.6rem;
  }
  .leader_list .leader_item {
    padding: 1.7rem 2.9rem;
  }
  .leader_list .leader_item .leader_title {
    font-size: 1.8rem;
  }
  .leader_list .leader_item .leader_separator {
    height: 2.2rem;
    margin: 0 3.6rem;
  }
  .leader_list .leader_item .leader_name {
    font-size: 1.8rem;
  }
  .leader_detail .leader_photo {
    flex: 0 0 25.9rem;
  }
  .leader_detail .leader_info {
    border-top: 3.6rem solid #fff;
    border-bottom: 3.6rem solid #fff;
  }
  .leader_detail .leader_info .leader_content {
    padding: 3.6rem 5rem;
    gap: 2.9rem;
  }
  .leader_detail .leader_info .leader_name {
    font-size: 2.6rem;
  }
  .leader_detail .leader_info .leader_titles {
    font-size: 1.8rem;
  }
  .organization_section::before {
    top: 5.8rem;
    height: 34.6rem;
  }
  .organization_list {
    gap: 1.1rem 2.9rem;
    margin-top: 3.6rem;
    padding: 5.8rem 6.5rem;
    border-radius: 7.2rem 0 0 0;
  }
  .organization_list li a {
    font-size: 1.8rem;
    line-height: 2.2rem;
    height: 4.3rem;
  }
  .organization_list li a::before {
    height: 0.4rem;
  }
  .organization_list li:hover a {
    padding-left: 0.7rem;
  }
  .organization_list li:hover a::before {
    width: 0.4rem;
    margin-right: 0.4rem;
  }
  .inner_section .inner_bg {
    min-height: 36rem;
  }
  .inner_section .index_title {
    top: 18.7rem;
    left: 11.5rem;
  }
  .news_list {
    gap: 3.6rem 7.2rem;
  }
  .news_list li {
    padding-bottom: 3.6rem;
  }
  .news_list li a {
    gap: 2.2rem;
  }
  .news_list li .img_con {
    width: 28.8rem;
  }
  .news_list li .img_con .time {
    width: 5.8rem;
    height: 5.8rem;
  }
  .news_list li .img_con .time .day {
    font-size: 3rem;
  }
  .news_list li .info_con .info_content .title {
    margin-bottom: 0.5rem;
  }
  .news_list li .info_con .more_btn {
    gap: 0.3rem;
  }
  .news_list li .info_con .more_btn i {
    font-size: 2rem;
  }
  .page {
    gap: 0.7rem;
    padding-top: 7.2rem;
  }
  .page a,
  .page span {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 1.6rem;
  }
  .page .prev,
  .page .next {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .w {
    padding: 0 10rem;
  }
  .header_content .nav_list {
    display: none;
  }
  .header_actions .search_area {
    display: none;
  }
  .header_actions .lang_btn {
    display: none;
  }
  .mobile_menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 0.1rem solid #FFFFFF;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .mobile_menu_btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .mobile_nav_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00873C;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block;
  }
  .mobile_nav_overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .mobile_nav_overlay .mobile_nav_content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
  }
  .mobile_nav_overlay .mobile_nav_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
  }
  .mobile_nav_overlay .mobile_nav_header .mobile_logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
  }
  .mobile_nav_overlay .mobile_nav_header .mobile_logo .logo_img {
    width: 5rem;
    height: 5rem;
  }
  .mobile_nav_overlay .mobile_nav_header .mobile_logo .logo_font {
    height: 4.5rem;
  }
  .mobile_nav_overlay .mobile_nav_header .mobile_nav_close {
    background: transparent;
    border: none;
    color: white;
    font-size: 2.4rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
  }
  .mobile_nav_overlay .mobile_nav_header .mobile_nav_close:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .mobile_nav_overlay .mobile_nav_list {
    flex: 1;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
  }
  .mobile_nav_overlay .mobile_nav_list > li {
    margin-bottom: 0;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
  }
  .mobile_nav_overlay .mobile_nav_list > li > a {
    display: block;
    font-size: 1.7rem;
    color: white;
    font-weight: 500;
    padding: 1.5rem 0;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }
  .mobile_nav_overlay .mobile_nav_list > li > a:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .mobile_nav_overlay .mobile_nav_list > li.active > a {
    color: rgba(255, 255, 255, 0.9);
  }
  .mobile_nav_overlay .mobile_nav_list > li .submenu {
    padding: 0 0 1.5rem 0;
    display: block;
    list-style: none;
    margin: 0;
  }
  .mobile_nav_overlay .mobile_nav_list > li .submenu dd {
    margin: 0;
  }
  .mobile_nav_overlay .mobile_nav_list > li .submenu dd a {
    display: block;
    font-size: 1.7rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 0 1rem 2rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
  }
  .mobile_nav_overlay .mobile_nav_list > li .submenu dd a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.4rem;
    height: 0.4rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: background 0.3s ease;
  }
  .mobile_nav_overlay .mobile_nav_list > li .submenu dd a:hover {
    color: rgba(255, 255, 255, 0.9);
  }
  .mobile_nav_overlay .mobile_nav_list > li .submenu dd a:hover::before {
    background: rgba(255, 255, 255, 0.8);
  }
  .mobile_nav_overlay .mobile_nav_footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-shrink: 0;
  }
  .mobile_nav_overlay .mobile_nav_footer .mobile_search_area .mobile_search_form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.8rem;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
  }
  .mobile_nav_overlay .mobile_nav_footer .mobile_search_area .mobile_search_form:focus-within {
    background: rgba(255, 255, 255, 0.15);
  }
  .mobile_nav_overlay .mobile_nav_footer .mobile_search_area .mobile_search_form .mobile_search_ipt {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1.6rem;
    padding: 0.8rem 0;
    font-family: inherit;
  }
  .mobile_nav_overlay .mobile_nav_footer .mobile_search_area .mobile_search_form .mobile_search_ipt::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .mobile_nav_overlay .mobile_nav_footer .mobile_search_area .mobile_search_form .mobile_search_submit {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }
  .mobile_nav_overlay .mobile_nav_footer .mobile_search_area .mobile_search_form .mobile_search_submit:hover {
    color: rgba(255, 255, 255, 0.8);
  }
  .mobile_nav_overlay .mobile_nav_footer .lang_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.8rem;
    color: white;
    font-size: 1.6rem;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
  }
  .mobile_nav_overlay .mobile_nav_footer .lang_btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
  }
  .video_mark .video_box .close {
    top: -2.1rem;
    font-size: 1.8rem;
  }
  .next1,
  .prev1,
  .prev2,
  .next2 {
    width: 2.9rem;
    height: 2.9rem;
    box-shadow: 0.2rem 0.2rem 0.6rem rgba(14, 55, 113, 0.25);
  }
  .next1 i,
  .prev1 i,
  .prev2 i,
  .next2 i {
    font-size: 1.6rem;
  }
  .section {
    padding: 6rem 0;
  }
  .section_header {
    margin-bottom: 3rem;
  }
  .index_title {
    margin-bottom: 3rem;
  }
  .index_title .en_title {
    font-size: 3.6rem;
  }
  .index_title .title {
    font-size: 2.9rem;
    margin-top: -1.2rem;
  }
  .index_title .desc {
    font-size: 1.6rem;
    padding: 1.2rem 0;
  }
  .index_title .desc .separator {
    font-size: 1.6rem;
    margin: 0 0.5rem;
  }
  .index_title.center .desc::before {
    min-width: 12rem;
  }
  .view_more_font {
    padding: 1rem 0;
    font-size: 1.6rem;
    gap: 0.9rem;
  }
  .view_more_font .dot {
    width: 0.5rem;
    height: 0.5rem;
  }
  .view_more_btn {
    padding: 1rem 1.6rem;
    border-radius: 1.2rem;
    font-size: 1.6rem;
    gap: 0.9rem;
    box-shadow: 0 0.4rem 0.7rem rgba(0, 135, 60, 0.3);
    transform: translateY(-0.2rem);
  }
  .view_more_btn .dot {
    width: 0.5rem;
    height: 0.5rem;
  }
  header {
    padding: 0 3rem;
  }
  .header_logo {
    padding: 1.2rem 0;
  }
  .header_logo .logo {
    gap: 0.6rem;
  }
  .header_logo .logo .logo_img {
    width: 6rem;
    height: 6rem;
  }
  .header_logo .logo .logo_font {
    height: 5.5rem;
  }
  .header_logo .right_font img {
    height: 3.2rem;
  }
  .header_content .nav_list {
    gap: 3.6rem;
  }
  .header_content .nav_list li > a {
    line-height: 4.2rem;
  }
  .header_content .nav_list li > a:after {
    width: 1.1rem;
    height: 0.7rem;
  }
  .header_content .nav_list li .submenu {
    padding: 0.6rem 0;
    min-width: 8.6rem;
    margin-top: 0.3rem;
  }
  .header_content .nav_list li .submenu dd a {
    padding: 0.6rem 1.2rem;
    font-size: 1.6rem;
  }
  .header_actions {
    gap: 2.2rem;
  }
  .header_actions .search_area .search_btn {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.6rem;
  }
  .header_actions .search_area .search_form {
    top: calc(100% + 0.6rem);
    min-width: 18rem;
    padding: 0.7rem;
    transform: translateY(-0.6rem);
  }
  .header_actions .search_area .search_form .search_ipt {
    padding: 0.5rem 1rem;
    font-size: 1.6rem;
  }
  .header_actions .search_area .search_form .search_submit {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 1.6rem;
  }
  .header_actions .lang_btn {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.6rem;
  }
  .banner_section .title {
    bottom: 3rem;
    left: 9.6rem;
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .banner_section .banner_pagination {
    bottom: 7.8rem;
    left: 9.6rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet {
    width: 1.1rem;
    height: 1.1rem;
    margin-right: 1.2rem;
    font-size: 1.6rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet::before {
    width: 0.4rem;
    height: 0.4rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 1.6rem;
    margin-right: 3.6rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    left: calc(100% + 1rem);
    width: 2.4rem;
  }
  .down_icon {
    bottom: 3rem;
    right: 9.6rem;
  }
  .down_icon .down_icon_bg {
    width: 4.3rem;
    height: 4.3rem;
  }
  .down_icon .down_icon_img {
    width: 1rem;
    height: 6rem;
    margin-top: -2.5rem;
  }
  .news_section .news_content {
    gap: 4.8rem;
  }
  .index_news_swiper li .img_con {
    height: 34.8rem;
  }
  .index_news_swiper li .info_con {
    padding: 1.2rem 10.8rem 1.2rem 1.8rem;
  }
  .index_news_swiper .index_news_pagination {
    bottom: 2.4rem;
    right: 1.2rem;
  }
  .index_news_swiper .index_news_pagination .swiper-pagination-bullet {
    width: 0.6rem;
    height: 0.6rem;
    margin: 0 0.6rem;
  }
  .index_news_list .top_news a {
    gap: 1.8rem;
    padding: 1.2rem 0;
  }
  .index_news_list .top_news .time .day {
    font-size: 2.9rem;
    margin-bottom: 0.3rem;
  }
  .index_news_list .top_news .time .year {
    padding-bottom: 0.9rem;
  }
  .index_news_list .top_news .info_con .title {
    margin-bottom: 1.1rem;
  }
  .index_news_list .top_news .info_con .info {
    margin-bottom: 1.2rem;
  }
  .index_news_list .top_news .info_con .more {
    gap: 0.3rem;
  }
  .index_news_list .news_item {
    padding: 1.2rem 0;
  }
  .index_news_list .news_item a {
    gap: 1.8rem;
  }
  .index_news_list .news_item .time {
    font-size: 1.8rem;
  }
  .talent_section .talent_content {
    gap: 1.2rem;
    margin-bottom: 6rem;
  }
  .talent_section .talent_content .part {
    padding: 2.4rem;
    border-radius: 0rem 6rem 0rem 0rem;
  }
  .talent_section .talent_content .part::after {
    height: 0.6rem;
  }
  .talent_section .talent_content .part:nth-of-type(2) {
    border-radius: 6rem 0rem 0rem 0rem;
  }
  .talent_section .exchange_content {
    gap: 3rem;
  }
  .talent_section .exchange_content .part .part_img .section_header {
    padding: 1.2rem;
  }
  .index_news_list2 {
    padding: 0 1.2rem;
  }
  .index_news_list2 li a {
    padding: 0.9rem 0;
  }
  .index_news_list2 li .title {
    margin-bottom: 0.6rem;
  }
  .index_news_list2 li .title .icon_dot {
    font-size: 1.8rem;
  }
  .notice_section .notice_content {
    margin-bottom: 3rem;
  }
  .notice_section .notice_content .notice_content_box {
    top: -6rem;
    right: 9.6rem;
    gap: 1.8rem;
  }
  .notice_swiper {
    padding-top: 1.8rem;
    width: calc(100% + 24rem);
  }
  .notice_swiper li a {
    padding: 4.2rem 1.8rem 2.4rem 1.8rem;
  }
  .notice_swiper li .time {
    top: -1.8rem;
    left: 1.8rem;
    width: 5.5rem;
    height: 5rem;
  }
  .notice_swiper li .time .day {
    font-size: 1.8rem;
  }
  .notice_swiper li .time .year {
    font-size: 1.6rem;
  }
  .media_section .media_content {
    gap: 6rem;
  }
  .example_gallery {
    margin-top: -3rem;
  }
  .example_small_list {
    top: -1.2rem;
    height: 19rem;
  }
  .example_small_list .example_item {
    width: 6rem;
    height: 6rem;
  }
  .example_large_container {
    margin-top: -12rem;
  }
  .example_large_container .example_prev,
  .example_large_container .example_next {
    width: 2.9rem;
    height: 2.9rem;
  }
  .example_large_container .example_prev i,
  .example_large_container .example_next i {
    font-size: 2.7rem;
  }
  .example_large_container .example_prev {
    left: 3rem;
  }
  .example_large_container .example_next {
    right: 3rem;
  }
  .example_large_container .example_large_display {
    width: 31.2rem;
    height: 31.2rem;
  }
  .index_media_list {
    gap: 1.8rem;
  }
  .index_media_list li a {
    gap: 2.4rem;
  }
  .index_media_list li .img_con {
    width: 7.2rem;
    border-radius: 1.2rem;
    padding: 0.6rem;
  }
  .index_media_list li .info_con .title {
    margin-bottom: 0.3rem;
  }
  .column_content {
    margin-bottom: 3rem;
  }
  .column_content .column_prev {
    left: -4.8rem;
  }
  .column_content .column_next {
    right: -4.8rem;
  }
  .column_swiper li .img_con {
    margin-left: 1.2rem;
  }
  .column_swiper li .title {
    line-height: 3.6rem;
    height: 3.6rem;
    padding-left: 1.2rem;
  }
  .column_swiper li .title:before {
    border: 0.4rem solid transparent;
    border-left: 0.5rem solid #fff;
  }
  .image_section .image_list {
    height: 66.6rem;
  }
  .image_section .image_list li {
    height: 32.7rem;
  }
  .image_section .image_list li:nth-child(1) .play_icon {
    width: 5.1rem;
    height: 5.1rem;
  }
  .image_section .image_list li:nth-child(4) {
    height: 44.7rem;
  }
  .index_link_list {
    gap: 5.6rem;
    margin-bottom: 6rem;
  }
  .index_link_list li a {
    padding: 1.9rem;
  }
  .footer .footer_top {
    margin-bottom: 3rem;
  }
  .footer .footer_top .footer_logo {
    gap: 0.6rem;
  }
  .footer .footer_top .footer_logo .logo_img {
    width: 6rem;
    height: 6rem;
  }
  .footer .footer_top .footer_logo .logo_font {
    height: 5.5rem;
  }
  .footer .footer_top_right {
    gap: 1.8rem;
  }
  .footer .footer_top_right .footer_quick_links {
    gap: 1.2rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn {
    gap: 0.6rem;
    padding: 1.2rem 1.4rem;
    min-width: 18rem;
    font-size: 1.6rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn .btn_icon {
    width: 1.2rem;
    height: 1.2rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn i {
    font-size: 1.6rem;
    right: 1.4rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown {
    top: calc(100% + 0.3rem);
    padding: 0.6rem 0;
    transform: translateY(-0.6rem);
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown li a {
    padding: 0.6rem 1.2rem;
  }
  .footer .footer_top_right .footer_address {
    font-size: 1.6rem;
  }
  .footer .footer_top_right .footer_address .address_text {
    margin-bottom: 0.3rem;
  }
  .footer .footer_bot .footer_social_links {
    gap: 1.2rem;
  }
  .footer .footer_bot .footer_social_links .social_link {
    gap: 0.6rem;
  }
  .footer .footer_bot .footer_social_links .social_link .icon_con {
    width: 4.8rem;
    height: 4.8rem;
    padding: 1.2rem;
  }
  .talent_list {
    gap: 3rem 2.4rem;
  }
  .talent_list li .time {
    width: 7.8rem;
    padding: 1.2rem 0.6rem;
  }
  .talent_list li .time .day {
    font-size: 2.9rem;
    margin-bottom: 0.3rem;
  }
  .talent_list li .info_con {
    padding: 1.8rem 2.4rem;
  }
  .talent_list li .info_con .info_content .title {
    margin-bottom: 1.2rem;
  }
  .talent_list li .info_con .more_btn {
    gap: 0.3rem;
  }
  .talent_list li .info_con .more_btn i {
    font-size: 1.7rem;
  }
  .green_bg_section {
    padding: 15.6rem 0 6rem;
  }
  .green_bg_section::before {
    height: 24rem;
  }
  .search_bar {
    margin-bottom: 3.6rem;
    border-radius: 1.2rem;
    padding: 2.4rem;
  }
  .search_bar .search_form_main {
    border-radius: 1.2rem;
    padding: 0.6rem;
  }
  .search_bar .search_input {
    padding: 1.4rem 1.8rem;
  }
  .search_bar .search_btn_main {
    padding: 1.7rem 3.6rem;
    border-radius: 1.2rem;
  }
  .search_bar .search_btn_main i {
    font-size: 1.2rem;
  }
  .section_header .sort {
    font-size: 1.6rem;
  }
  .section_header .sort .sort_btn_group {
    border-radius: 1.8rem 1.8rem 1.8rem 1.8rem;
  }
  .section_header .sort .sort_btn {
    padding: 1.1rem 1.6rem;
    border-radius: 1.8rem;
  }
  .search_list li a {
    padding: 1.8rem 1.2rem;
  }
  .search_list li a .title {
    padding-left: 0.6rem;
  }
  .search_list li a .title::before {
    width: 0.4rem;
    height: 0.4rem;
  }
  .search_list li a .time {
    margin-left: 1.2rem;
  }
  .search_list li:nth-of-type(5n) {
    padding-bottom: 0.9rem;
    margin-bottom: 0.9rem;
  }
  .breadcrumb {
    gap: 0.6rem;
    line-height: 2.4rem;
  }
  .news_detail {
    padding: 4.8rem 6rem;
  }
  .news_detail .title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 1.2rem;
  }
  .news_detail .time {
    margin-bottom: 1.2rem;
  }
  .news_detail .page_info {
    font-size: 1.8rem;
  }
  .news_detail .page_info p {
    font-size: 1.8rem;
  }
  .service_detail {
    width: 70rem;
    padding: 10rem 10.6rem 18rem 10.6rem;
  }
  .service_detail .title {
    font-size: 2.2rem;
    line-height: 2.4rem;
    margin-bottom: 1.8rem;
  }
  .service_detail .page_info {
    font-size: 1.8rem;
    margin-bottom: 6rem;
  }
  .service_detail .page_info p {
    font-size: 1.8rem;
  }
  .service_detail .email_con {
    gap: 0.3rem;
  }
  .service_detail .email_con .email_title {
    font-size: 1.8rem;
  }
  .service_detail .email_con .email {
    font-size: 1.8rem;
  }
  .example_menu_list {
    border-radius: 2.4rem;
    margin-bottom: 3rem;
  }
  .example_menu_list a {
    width: 24rem;
    height: 4.8rem;
    line-height: 4.8rem;
    font-size: 1.8rem;
    border-radius: 2.4rem;
  }
  .impression_gallery .impression_main_swiper {
    margin-bottom: 1.8rem;
  }
  .impression_gallery .impression_main_swiper .impression_prev {
    left: 1.8rem;
  }
  .impression_gallery .impression_main_swiper .impression_next {
    right: 1.8rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide {
    height: 9rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide.swiper-slide-thumb-active {
    border: 0.2rem solid #00873C;
  }
  .menu_container::before {
    width: calc(100% - 9.6rem);
    border-radius: 0 3rem 0 0;
  }
  .menu_container .menu_list {
    gap: 4.8rem;
  }
  .menu_container .menu_list li:before {
    height: 0.2rem;
  }
  .menu_container .menu_list li a {
    font-size: 1.8rem;
    padding: 1.7rem 0;
    line-height: 1.4rem;
  }
  .leader_list {
    margin-top: 3rem;
  }
  .leader_list .leader_item {
    padding: 1.4rem 2.4rem;
  }
  .leader_list .leader_item .leader_title {
    font-size: 1.8rem;
  }
  .leader_list .leader_item .leader_separator {
    height: 1.8rem;
    margin: 0 3rem;
  }
  .leader_list .leader_item .leader_name {
    font-size: 1.8rem;
  }
  .leader_detail .leader_photo {
    flex: 0 0 21.6rem;
  }
  .leader_detail .leader_info {
    border-top: 3rem solid #fff;
    border-bottom: 3rem solid #fff;
  }
  .leader_detail .leader_info .leader_content {
    padding: 3rem 4.2rem;
    gap: 2.4rem;
  }
  .leader_detail .leader_info .leader_name {
    font-size: 2.2rem;
  }
  .leader_detail .leader_info .leader_titles {
    font-size: 1.8rem;
  }
  .organization_section::before {
    top: 4.8rem;
    height: 28.8rem;
  }
  .organization_list {
    gap: 0.9rem 2.4rem;
    margin-top: 3rem;
    padding: 4.8rem 5.4rem;
    border-radius: 6rem 0 0 0;
  }
  .organization_list li a {
    font-size: 1.8rem;
    line-height: 2.2rem;
    height: 4.4rem;
  }
  .organization_list li a::before {
    height: 0.4rem;
  }
  .organization_list li:hover a {
    padding-left: 0.6rem;
  }
  .organization_list li:hover a::before {
    width: 0.4rem;
    margin-right: 0.3rem;
  }
  .inner_section .inner_bg {
    min-height: 30rem;
  }
  .inner_section .index_title {
    top: 15.6rem;
    left: 9.6rem;
  }
  .news_list {
    gap: 3rem 6rem;
  }
  .news_list li {
    padding-bottom: 3rem;
  }
  .news_list li a {
    gap: 1.8rem;
  }
  .news_list li .img_con {
    width: 24rem;
  }
  .news_list li .img_con .time {
    width: 6rem;
    height: 6rem;
  }
  .news_list li .img_con .time .day {
    font-size: 2.5rem;
  }
  .news_list li .info_con .info_content {
    margin-bottom: 1rem;
  }
  .news_list li .info_con .info_content .title {
    margin-bottom: 0.5rem;
  }
  .news_list li .info_con .more_btn {
    gap: 0.3rem;
  }
  .news_list li .info_con .more_btn i {
    font-size: 1.7rem;
  }
  .page {
    gap: 0.6rem;
    padding-top: 6rem;
  }
  .page a,
  .page span {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }
  .page .prev,
  .page .next {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .w {
    padding: 0 1.5rem;
  }
  .section {
    padding: 5rem 0;
  }
  .video_mark .video_box {
    width: 90%;
    height: 50%;
  }
  .video_mark .video_box .close {
    top: -2rem;
    font-size: 1.6rem;
  }
  .next1,
  .prev1,
  .prev2,
  .next2 {
    width: 3.2rem;
    height: 3.2rem;
    box-shadow: 0.2rem 0.2rem 0.8rem rgba(14, 55, 113, 0.25);
  }
  .next1 i,
  .prev1 i,
  .prev2 i,
  .next2 i {
    font-size: 1.6rem;
  }
  .section_header {
    margin-bottom: 3rem;
  }
  .index_title {
    margin-bottom: 3rem;
  }
  .index_title .en_title {
    font-size: 3rem;
  }
  .index_title .title {
    font-size: 2.4rem;
    margin-top: -1rem;
  }
  .index_title .desc {
    font-size: 1.6rem;
    padding: 1.5rem 0;
  }
  .index_title .desc .separator {
    font-size: 1.6rem;
    margin: 0 0.8rem;
  }
  .index_title.center .desc::before {
    min-width: 15rem;
  }
  .view_more_font {
    padding: 1.5rem 0;
    font-size: 1.6rem;
    gap: 1.5rem;
  }
  .view_more_font .dot {
    width: 0.8rem;
    height: 0.8rem;
  }
  .view_more_btn {
    padding: 1.3rem 2rem;
    border-radius: 2rem;
    font-size: 1.6rem;
    gap: 1.5rem;
    box-shadow: 0 0.4rem 1rem rgba(0, 135, 60, 0.3);
    transform: translateY(-0.2rem);
  }
  .view_more_btn .dot {
    width: 0.8rem;
    height: 0.8rem;
  }
  header {
    padding: 0 1.5rem;
  }
  .header_logo {
    padding: 1.5rem 0;
  }
  .header_logo .logo {
    gap: 1rem;
  }
  .header_logo .logo .logo_img {
    width: 5rem;
    height: 5rem;
  }
  .header_logo .logo .logo_font {
    height: 4.5rem;
  }
  .header_logo .right_font img {
    height: 2rem;
  }
  .banner_section {
    height: 32rem;
  }
  .banner_section .title {
    bottom: 3rem;
    left: 1.5rem;
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
  .banner_section .banner_pagination {
    bottom: 6rem;
    left: 1.5rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 1rem;
    font-size: 1.6rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet::before {
    width: 0.4rem;
    height: 0.4rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    font-size: 1.6rem;
    margin-right: 2rem;
  }
  .banner_section .banner_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    left: calc(100% + 0.8rem);
    width: 2rem;
  }
  .down_icon {
    bottom: 3rem;
    right: 1.5rem;
  }
  .down_icon .down_icon_bg {
    width: 4rem;
    height: 4rem;
  }
  .down_icon .down_icon_img {
    width: 0.8rem;
    height: 5rem;
    margin-top: -2rem;
  }
  .news_section .news_content {
    flex-direction: column;
    gap: 3rem;
  }
  .news_section .news_content .index_news_left {
    flex: 1;
    width: 100%;
  }
  .news_section .news_content .index_news_right {
    flex: 1;
    width: 100%;
  }
  .index_news_swiper li .img_con {
    height: 25rem;
  }
  .index_news_swiper li .info_con {
    padding: 1.5rem;
  }
  .index_news_swiper li .info_con .title {
    font-size: 1.7rem;
  }
  .index_news_swiper .index_news_pagination {
    bottom: 2rem;
    right: 1rem;
  }
  .index_news_swiper .index_news_pagination .swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    margin: 0 0.8rem;
  }
  .index_news_list .top_news a {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }
  .index_news_list .top_news .time {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
  }
  .index_news_list .top_news .time .day {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .index_news_list .top_news .time .year {
    padding-bottom: 0;
    background: none;
  }
  .index_news_list .top_news .info_con .title {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
  .index_news_list .top_news .info_con .info {
    margin-bottom: 1.5rem;
  }
  .index_news_list .news_item {
    padding: 1.5rem 0;
  }
  .index_news_list .news_item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .index_news_list .news_item .time {
    font-size: 1.8rem;
  }
  .index_news_list .news_item .title {
    font-size: 1.7rem;
    width: 100%;
  }
  .talent_section .talent_content {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
  }
  .talent_section .talent_content .part {
    padding: 2rem;
    border-radius: 1.5rem;
    width: 100%;
  }
  .talent_section .talent_content .part .part_img .section_header {
    padding: 2rem;
  }
  .talent_section .talent_content .part::after {
    height: 0.5rem;
  }
  .talent_section .talent_content .part:nth-of-type(2) {
    border-radius: 1.5rem;
  }
  .talent_section .exchange_content {
    flex-direction: column;
    gap: 2rem;
  }
  .talent_section .exchange_content .part {
    width: 100%;
  }
  .index_news_list2 {
    padding: 0 1rem;
  }
  .index_news_list2 li a {
    padding: 1.5rem 0;
  }
  .index_news_list2 li .title {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
  }
  .index_news_list2 li .title .icon_dot {
    font-size: 1.6rem;
  }
  .notice_section .notice_content {
    margin-bottom: 3rem;
  }
  .notice_section .notice_content .notice_content_box {
    top: -3.3rem;
    right: 1.5rem;
    gap: 1.5rem;
  }
  .notice_swiper {
    padding-top: 2rem;
    width: calc(100% + 15rem);
    margin-left: -7.5rem;
  }
  .notice_swiper li a {
    padding: 5rem 1.5rem 2rem 1.5rem;
  }
  .notice_swiper li .time {
    top: -2rem;
    left: 1.5rem;
    width: 7rem;
    height: 6rem;
  }
  .notice_swiper li .time .day {
    font-size: 1.4rem;
  }
  .notice_swiper li .time .year {
    font-size: 1.4rem;
  }
  .media_section .media_content {
    flex-direction: column;
    gap: 3rem;
  }
  .media_section .media_content .part {
    width: 100%;
  }
  .example_gallery {
    margin-top: -3rem;
  }
  .example_gallery:before {
    left: 10%;
    width: 80%;
  }
  .example_small_list {
    top: -1rem;
    height: 15rem;
  }
  .example_small_list .example_item {
    width: 6rem;
    height: 6rem;
  }
  .example_small_list .example_item[data-index="1"] {
    left: 10%;
    bottom: 0;
  }
  .example_small_list .example_item[data-index="2"] {
    left: 30%;
    top: 33%;
  }
  .example_small_list .example_item[data-index="3"] {
    top: -1rem;
  }
  .example_small_list .example_item[data-index="4"] {
    left: 70%;
    top: 33%;
  }
  .example_small_list .example_item[data-index="5"] {
    right: 10%;
    bottom: 0;
  }
  .example_large_container {
    margin-top: -9rem;
  }
  .example_large_container .example_prev,
  .example_large_container .example_next {
    width: 3.2rem;
    height: 3.2rem;
  }
  .example_large_container .example_prev i,
  .example_large_container .example_next i {
    font-size: 3rem;
  }
  .example_large_container .example_prev {
    left: 6rem;
  }
  .example_large_container .example_next {
    right: 6rem;
  }
  .example_large_container .example_large_display {
    width: 28rem;
    height: 28rem;
  }
  .index_media_list {
    gap: 2rem;
  }
  .index_media_list li a {
    gap: 1.5rem;
  }
  .index_media_list li .info_con .title {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
  }
  .column_content {
    margin-bottom: 3rem;
  }
  .column_content .column_prev {
    left: 0;
  }
  .column_content .column_next {
    right: 0;
  }
  .column_swiper li .img_con {
    margin-left: 1rem;
  }
  .column_swiper li .title {
    font-size: 1.7rem;
    line-height: 4rem;
    height: 4rem;
    padding-left: 1rem;
  }
  .column_swiper li .title:before {
    border: 0.4rem solid transparent;
    border-left: 0.5rem solid #fff;
  }
  .image_section .image_list {
    height: auto;
    min-height: 30rem;
  }
  .image_section .image_list li {
    position: relative;
  }
  .image_section .image_list li:nth-child(1), .image_section .image_list li:nth-child(2), .image_section .image_list li:nth-child(3) {
    position: relative;
    width: 100%;
    height: 22rem;
    margin-bottom: 1rem;
  }
  .image_section .image_list li:nth-child(4), .image_section .image_list li:nth-child(5) {
    position: relative;
    width: 100%;
    height: 22rem;
  }
  .image_section .image_list li:nth-child(1) .play_icon {
    width: 4rem;
    height: 4rem;
  }
  .image_section .image_list li:nth-child(2) {
    left: 0;
    width: calc(50% - 0.5rem);
  }
  .image_section .image_list li:nth-child(3) {
    position: absolute;
    width: calc(50% - 0.5rem);
    top: 23rem;
    right: 0;
  }
  .image_section .image_list li:nth-child(4) {
    height: 30rem;
    margin-top: -8rem;
    margin-bottom: 1rem;
  }
  .talent_list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .talent_list li a {
    flex-direction: column;
  }
  .talent_list li .time {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    padding: 1.5rem;
    gap: 1rem;
  }
  .talent_list li .time .day {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  .talent_list li .time .year {
    padding-bottom: 0;
  }
  .talent_list li .info_con {
    padding: 1.5rem;
  }
  .talent_list li .info_con .info_content .title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .talent_list li .info_con .more_btn {
    gap: 0.5rem;
    font-size: 1.6rem;
  }
  .talent_list li .info_con .more_btn i {
    font-size: 1.6rem;
  }
  .green_bg_section {
    padding: 13rem 0 5rem;
  }
  .green_bg_section::before {
    height: 20rem;
  }
  .search_bar {
    margin-bottom: 3rem;
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
  .search_bar .search_form_main {
    flex-direction: column;
    gap: 1rem;
    border-radius: 1.5rem;
    padding: 1rem;
  }
  .search_bar .search_input {
    padding: 1.5rem;
    font-size: 1.6rem;
  }
  .search_bar .search_btn_main {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    border-radius: 1.5rem;
  }
  .search_bar .search_btn_main i {
    font-size: 1.6rem;
  }
  .section_header .sort {
    gap: 1rem;
    font-size: 1.6rem;
  }
  .section_header .sort .sort_btn_group {
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
  }
  .section_header .sort .sort_btn {
    padding: 1.2rem 1.5rem;
    border-radius: 1.5rem;
    font-size: 1.6rem;
  }
  .search_list li a {
    padding: 1.5rem;
  }
  .search_list li a .title {
    font-size: 1.8rem;
    padding-left: 0.8rem;
  }
  .search_list li a .title::before {
    width: 0.4rem;
    height: 0.4rem;
  }
  .search_list li a .time {
    margin-left: 1rem;
    font-size: 1.4rem;
  }
  .search_list li:nth-of-type(5n) {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .breadcrumb {
    gap: 0.8rem;
    line-height: 3rem;
    font-size: 1.4rem;
  }
  .news_detail {
    padding: 1.5rem;
  }
  .news_detail .title {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }
  .news_detail .time {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }
  .news_detail .page_info {
    font-size: 1.6rem;
  }
  .news_detail .page_info img {
    width: 100%;
    height: auto;
    margin: 1.5rem 0;
  }
  .news_detail .page_info p {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .service_detail {
    width: 100%;
    padding: 10rem 6rem 20rem;
  }
  .service_detail .title {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
  }
  .service_detail .page_info {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  .service_detail .page_info p {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .service_detail .email_con {
    gap: 0.5rem;
  }
  .service_detail .email_con .email_title {
    font-size: 1.6rem;
  }
  .service_detail .email_con .email {
    font-size: 1.6rem;
    word-break: break-all;
  }
  .example_menu_list {
    flex-direction: column;
    width: 100%;
    border-radius: 1.5rem;
    margin-bottom: 3rem;
  }
  .example_menu_list a {
    width: 100%;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.8rem;
    border-radius: 1.5rem;
    white-space: normal;
  }
  .impression_gallery .impression_main_swiper {
    margin-bottom: 2rem;
  }
  .impression_gallery .impression_main_swiper .impression_prev {
    left: 1rem;
  }
  .impression_gallery .impression_main_swiper .impression_next {
    right: 1rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide {
    height: 8rem;
  }
  .impression_gallery .impression_thumbs_swiper .swiper-slide.swiper-slide-thumb-active {
    border: 0.2rem solid #00873C;
  }
  .menu_container {
    position: relative;
  }
  .menu_container::before {
    width: 100%;
    border-radius: 0;
  }
  .menu_container .menu_list {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .menu_container .menu_list li:before {
    height: 0.2rem;
  }
  .menu_container .menu_list li a {
    font-size: 1.8rem;
    padding: 1.5rem 0;
    line-height: 2.4rem;
    text-align: center;
  }
  .leader_list {
    margin-top: 3rem;
  }
  .leader_list .leader_item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
  }
  .leader_list .leader_item .leader_title {
    font-size: 1.8rem;
    text-align: left;
    width: 100%;
  }
  .leader_list .leader_item .leader_separator {
    width: 100%;
    height: 0.1rem;
    margin: 0;
  }
  .leader_list .leader_item .leader_name {
    font-size: 1.8rem;
    text-align: left;
    width: 100%;
  }
  .leader_detail {
    flex-direction: column;
    background: transparent;
  }
  .leader_detail .leader_photo {
    flex: 0 0 auto;
    width: 100%;
  }
  .leader_detail .leader_photo img {
    width: 50%;
    margin: 0 auto;
  }
  .leader_detail .leader_info {
    border-top: 0;
    border-bottom: 0;
    background: rgba(0, 135, 60, 0.05);
  }
  .leader_detail .leader_info .leader_content {
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }
  .leader_detail .leader_info .leader_name {
    font-size: 2.4rem;
  }
  .leader_detail .leader_info .leader_titles {
    font-size: 1.6rem;
  }
  .organization_section::before {
    top: 4rem;
    width: 100%;
    height: 20rem;
  }
  .organization_list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3rem;
    padding: 1.5rem;
    border-radius: 1.5rem 0 0 0;
  }
  .organization_list li {
    border-bottom: 0.1rem solid rgba(0, 135, 60, 0.1);
  }
  .organization_list li:last-child {
    border-bottom: none;
  }
  .organization_list li a {
    font-size: 1.8rem;
    line-height: 2.4rem;
    height: auto;
    padding: 1.5rem 0;
  }
  .organization_list li a::before {
    height: 0.4rem;
  }
  .organization_list li:hover a {
    padding-left: 1rem;
  }
  .organization_list li:hover a::before {
    width: 0.4rem;
    margin-right: 0.5rem;
  }
  .inner_section .inner_bg {
    min-height: 20rem;
  }
  .inner_section .index_title {
    top: 13rem;
    left: 1.5rem;
  }
  .news_list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .news_list li {
    padding-bottom: 3rem;
  }
  .news_list li a {
    flex-direction: column;
    gap: 1.5rem;
  }
  .news_list li .img_con {
    width: 100%;
  }
  .news_list li .img_con .time {
    width: 6rem;
    height: 6rem;
  }
  .news_list li .img_con .time .day {
    font-size: 2.4rem;
  }
  .news_list li .info_con .info_content .title {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  .news_list li .info_con .more_btn {
    gap: 0.5rem;
    font-size: 1.6rem;
  }
  .news_list li .info_con .more_btn i {
    font-size: 1.6rem;
  }
  .page {
    gap: 1rem;
    padding-top: 5rem;
  }
  .page a,
  .page span {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.6rem;
  }
  .page .prev,
  .page .next {
    font-size: 1.6rem;
  }
  .index_link_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 5rem;
  }
  .index_link_list li {
    flex: 0 0 calc(25% - 3rem);
    max-width: calc(25% - 3rem);
  }
  .index_link_list li a {
    padding: 3rem;
  }
  .footer .footer_top {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .footer .footer_top .footer_logo {
    gap: 1rem;
  }
  .footer .footer_top .footer_logo .logo_img {
    width: 6rem;
    height: 6rem;
  }
  .footer .footer_top .footer_logo .logo_font {
    height: 5.5rem;
  }
  .footer .footer_top_right {
    width: 100%;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer .footer_top_right .footer_quick_links {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group {
    width: 48%;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn {
    width: 100%;
    min-width: auto;
    padding: 1.5rem;
    font-size: 1.6rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn .btn_icon {
    width: 1.5rem;
    height: 1.5rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_btn i {
    font-size: 1.6rem;
    right: 1.5rem;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown {
    width: 100%;
  }
  .footer .footer_top_right .footer_quick_links .footer_link_group .footer_link_dropdown li a {
    padding: 1rem 1.5rem;
  }
  .footer .footer_top_right .footer_address {
    text-align: left;
    font-size: 1.6rem;
  }
  .footer .footer_top_right .footer_address .address_text {
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .footer .footer_top_right .footer_address .zip_code {
    text-align: left;
  }
  .footer .footer_bot {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
  .footer .footer_bot .footer_social_links {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer .footer_bot .footer_social_links .social_link {
    gap: 0.8rem;
  }
  .footer .footer_bot .footer_social_links .social_link .icon_con {
    width: 5rem;
    height: 5rem;
    padding: 1.2rem;
  }
}

/*# sourceMappingURL=style.css.map */