@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: calc(10px + 0.1vw);
}

body {
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

div {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 80vw;
  height: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

/* 顶部导航栏 */
.header {
  /*background: linear-gradient(to right, rgba(41, 101, 211, .2), rgba(15, 223, 172.2));
  transform: translateY(0px);
  backdrop-filter: blur(12px);*/
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.header-top {
  width: 85vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-top .header-title {
  display: flex;
  flex: 1;
  justify-content: center;
}
.header-top .header-title img {
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  height: 5rem;
  width: auto;
  display: block;
}
.logo-text {
  height: 5rem;
  width: auto;
  display: block;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 0 15px;
  height: 40px;
  transition: all 0.3s ease;
}
.search-box:focus-within {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.search-icon {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-right: 10px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.search-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.search-input {
  width: 150px;
  height: 38px;
  padding: 0;
  border: none;
  background: transparent;
  color: white;
  font-size: 14px;
  outline: none;
}
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.header-bottom {
  background: transparent;
}

.nav-menu {
  width: 85vw;
  margin: 0 auto;
  padding: 2rem 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-menu .nav-item {
  position: relative;
}
.nav-menu .nav-item > a {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
  display: block;
}
.nav-menu .nav-item > a:hover {
  color: #4facfe;
}
.nav-menu .nav-item > a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4facfe;
}
.nav-menu .nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
}
.nav-menu .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 10rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  margin-top: 15px;
}
.nav-menu .submenu a {
  display: block;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0px;
  padding: 8px 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
}
.nav-menu .submenu a:hover {
  background: linear-gradient(to right, rgba(41, 101, 211, 0.95), rgba(15, 223, 172, 0.95));
  color: white;
}

/* Banner区域 */
.banner {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
}
.banner .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.5s ease;
  background-color: #152339;
}
.banner .banner-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.banner .banner-icons {
  position: absolute;
  right: 7rem;
  top: 22%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 70vh;
  z-index: 10;
}
.banner .banner-icons .banner-icon {
  position: relative;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.banner .banner-icons .banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.banner .banner-icons .banner-icon.active {
  opacity: 1;
  transform: scale(1.2);
}
.banner .banner-icons .banner-icon.active img {
  /* filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)); */
}
.banner .banner-icons .banner-icon .banner-icon-label {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  color: #FF0000;
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.banner .banner-icons .banner-icon.active .banner-icon-label {
  opacity: 1;
  visibility: visible;
}
.banner .banner-icons .banner-icon::after {
  content: attr(data-title);
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.banner .banner-icons .banner-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}
.banner .banner-icons .banner-icon:hover::after {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

/* Banner 收起按鈕 */
.banner .banner-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, #197fab 0%, #09ae5c 100%);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}
.banner .banner-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(25, 127, 171, 0.4);
}
.banner .banner-toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}
.banner .banner-content {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.3s ease;
}
/* 收起状态 */
.banner.collapsed {
  height: auto;
  min-height: 0;
}
.banner.collapsed .banner-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
}
.banner.collapsed .banner-icons {
  display: none;
}
/* 展开视频栏：收起时显示 */
.banner-expand-bar {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  padding-top: 13.5vh;
  cursor: pointer;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  text-align: center;
  background: linear-gradient(135deg, rgba(240, 248, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  transition: background 0.2s ease;
}
.banner-expand-bar:hover {
  background: linear-gradient(135deg, rgba(220, 238, 255, 0.98) 0%, rgba(240, 255, 250, 0.98) 100%);
}
.banner-expand-bar.visible {
  display: flex;
}
.banner-expand-bar .expand-bar-icon svg {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
}
.banner-expand-bar .expand-bar-text {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(to right, #2965D3, #0FDFAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.title-text {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2rem;
  text-align: left;
  color: #2834A8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.title-arrow {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.title-subtitle {
  font-family: "Source Han Sans CN", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: left;
  color: #5B7EE5;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 关于我们区域 */
.about-section {
  background: url("images/森工简介/background.svg") no-repeat center center;
  background-size: cover;
  padding: 3% 0 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-section .container {
  width: 90%;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  padding: 0;
}
.about-section .container .section-title{
  /* padding: 2rem 0 0 7%; */
}
.about-section .about-content {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 2rem 0 5rem;
}
.about-section .about-content .about-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 1rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.about-section .about-content .about-text::-webkit-scrollbar {
  display: none;
}
.about-section .about-content .about-description {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.2rem;
  text-align: left;
  text-indent: 2em;
  margin-bottom: 0.8rem;
  color: #333;
}
.about-section .about-content .about-description:first-child {
  display: block;
}
.about-section .about-content .about-description:not(:first-child) {
  display: block;
}
.about-section .about-content .about-description strong {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: 1px;
  text-align: left;
}
.about-section .about-content .about-image {
  flex: 0 0 32%;
  position: relative;
}
.about-section .about-content .about-image .image-bottom {
  width: 100%;
  height: calc(100% - 30px);
  object-fit: contain;
  object-position: top left;
  display: block;
  position: absolute;
  top: 10rem;
  left: 0;
}
.about-section .about-content .about-image .image-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 86.67%;
  height: 90%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  z-index: 1;
}
.about-section .about-features {
  width: 100%;
  display: flex;
  gap: 0;
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #4E7FE8 0%, #4878E8 50%, #3D6BD9 100%);
  padding: 2.5% 0;
  overflow: hidden;
  flex-shrink: 0;
}
.about-section .about-features .feature-card {
  flex: 1;
  text-align: center;
  color: white;
  padding: 0 1.5%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}
.about-section .about-features .feature-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 65%;
  background: rgba(255, 255, 255, 0.3);
}
.about-section .about-features .feature-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}
.about-section .about-features .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.about-section .about-features .feature-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.1;
  letter-spacing: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.about-section .about-features .feature-title .unit {
  font-size: 0.7rem;
  font-weight: 400;
  margin-left: 0.2rem;
}
.about-section .about-features .feature-card:nth-child(1) .feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}
.about-section .about-features .feature-card:nth-child(2) .feature-title {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 500;
}
.about-section .about-features .feature-card:nth-child(3) .feature-numbers {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  text-align: center;
}
.about-section .about-features .feature-card:nth-child(3) .feature-numbers .num-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0px;
}
.about-section .about-features .feature-card:nth-child(3) .feature-numbers .num-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0px;
  margin: 0 0.2rem;
}
.about-section .about-features .feature-card:nth-child(3) .feature-numbers .num-unit {
  font-size: 0.75rem;
  font-weight: 400;
  margin-left: 0.1rem;
}
.about-section .about-features .feature-card:nth-child(4) .feature-title,
.about-section .about-features .feature-card:nth-child(5) .feature-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}
.about-section .about-features .feature-card:nth-child(4) .feature-title .unit,
.about-section .about-features .feature-card:nth-child(5) .feature-title .unit {
  font-size: 0.7rem;
  font-weight: 400;
}
.about-section .about-features .feature-desc {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.95;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 新闻中心区域 */
.news-section {
  background: url("images/bg1.svg") no-repeat center center;
  background-size: cover;
  height: 100vh;
  overflow: hidden; /* 统一裁切边界，允许内层容器动画溢出 */
}
.news-section .container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  padding-top: 2rem;
  width: 90%;
}
.news-section .container .section-header {
  flex: 0 0 auto;
  margin-bottom: 1rem;
}
.news-section .container .section-header .section-title-news {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-section .container .section-header .section-title-news .title-text {
  color: rgb(15, 89, 146);
}
.news-section .container .section-header .section-title-news .title-subtitle {
  color: rgba(25, 93, 168, 0.35);
}
.news-section .container {
  /* 主内容区域：两列布局 */
}
.news-section .container .news-main-content {
  display: flex;
  gap: 2%;
  flex: 1;
  min-height: 0;
  overflow: visible; /* 允许子元素动画从右侧/左侧飞入，不被裁切 */
  /* 左侧：图片轮播 */
}
.news-section .container .news-main-content .news-carousel-wrapper {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
/* 新闻轮播轨道 */
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
  position: relative;
  z-index: 1;
}
/* 新闻轮播项 */
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-carousel-item {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
/* 日期框 - 固定展示 */
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-date-box {
  position: absolute;
  left: 5%;
  bottom: 5%;
  background: rgba(22, 68, 222, 0.96);
  padding: 1.5rem 2rem;
  color: white;
  z-index: 5;
  min-width: 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: default;
}
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-date-day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-date-month {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 0.2rem;
}
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-date-year {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 0.3rem;
}
/* 标题栏 - 固定展示 */
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-title-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3%;
  padding-left: 20%;
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  background: linear-gradient(to right, rgba(41, 132, 211, 0.87), rgba(15, 223, 172, 0.87));
  z-index: 2;
  cursor: default;
}
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-title-text {
  flex: 1;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.4;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* 指示器 - 独立于标题栏 */
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-indicators {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-dot.active {
  background: #fff;
}
.news-section .container .news-main-content .news-carousel-wrapper .news-carousel .news-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}
.news-section .container .news-main-content {
  /* 右侧：两个新闻列表模块 */
  padding-bottom: 1rem;
}
.news-section .container .news-main-content .news-lists-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2%;
  min-height: 0;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module {
  background: white;
  padding: 2%;
  border-radius: 8px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1%;
  border-bottom: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, rgb(23, 119, 156) 0%, rgba(16, 160, 102, 0.61) 100%) border-box;
  flex: 0 0 auto;
  min-width: 0;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-header .module-title {
  display: flex;
  align-items: center;
  gap: 1%;
  flex: 1;
  min-width: 0;
  position: relative;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-header .module-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(to bottom, rgb(25, 130, 171), rgb(15, 158, 121));
  flex: 0 0 auto;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-header .module-title .title-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(15, 89, 146);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  text-indent: 0.5em;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-header .module-more {
  font-size: 0.9rem;
  color: rgb(15, 89, 146);
  text-decoration: none;
  transition: color 0.3s ease;
  flex: 0 0 auto;
  white-space: nowrap;
  margin-left: 2%;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-header .module-more:hover {
  color: #0FDFAC;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-news-list {
  display: flex;
  flex-direction: column;
  gap: 2%;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  /* 隐藏滚动条 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-news-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-news-list .module-news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1% 0;
  border-bottom: 1px solid rgb(223, 223, 223);
  flex: 0 0 auto;
  min-width: 0;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-news-list .module-news-item:last-child {
  border-bottom: none;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-news-list .module-news-item .news-item-title {
  flex: 1;
  font-size: 1.2rem;
  color: #333;
  text-align: left;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  text-indent: 0.5em;
}
.news-section .container .news-main-content .news-lists-wrapper .news-list-module .module-news-list .module-news-item .news-item-date {
  font-size: 1rem;
  color: #999;
  text-align: right;
  margin-left: 2%;
  white-space: nowrap;
  flex: 0 0 auto;
}
.news-section .container {
  /* 底部内容区域：五列布局 */
}
.news-section .container .news-bottom-modules {
  display: flex;
  gap: 1rem;
  flex: 0 0 auto;
  margin-top: 1rem;
  margin-bottom: 2%;
  min-height: 0;
}
.news-section .container .news-bottom-modules .news-bottom-module {
  flex: 1;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-shadow: 0px 0px 11px 0px rgba(0, 126, 175, 0.18);
}
.news-section .container .news-bottom-modules .news-bottom-module .module-header {
  flex: 0 0 auto;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, linear-gradient(90deg, rgb(23, 119, 156) 0%, rgba(16, 160, 102, 0.61) 100%) border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-section .container .news-bottom-modules .news-bottom-module .module-header .module-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  position: relative;
}
.news-section .container .news-bottom-modules .news-bottom-module .module-header .module-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 1.5rem;
  background: linear-gradient(to bottom, rgb(25, 130, 171), rgb(15, 158, 121));
  flex: 0 0 auto;
}
.news-section .container .news-bottom-modules .news-bottom-module .module-header .module-title .title-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgb(15, 89, 146);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  text-indent: 0.5em;
}
.news-section .container .news-bottom-modules .news-bottom-module .module-header .module-more {
  font-size: 0.9rem;
  color: rgb(15, 89, 146);
  text-decoration: none;
  transition: color 0.3s ease;
  flex: 0 0 auto;
  white-space: nowrap;
  margin-left: 2%;
}
.news-section .container .news-bottom-modules .news-bottom-module .module-header .module-more:hover {
  color: #0FDFAC;
}
.news-section .container .news-bottom-modules .news-bottom-module .module-news-list {
  display: flex;
  flex-direction: column;
  gap: 3%;
  flex: 0 0 auto;
}

.news-section .container .news-bottom-modules .news-bottom-module .module-news-list .module-news-item-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 0 0 auto;
  min-width: 0;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid rgb(223, 223, 223);
}
.news-section .container .news-bottom-modules .news-bottom-module .module-news-list .module-news-item-vertical .news-item-date {
  font-size: 1rem;
  color: #999;
  flex: 0 0 auto;
}
.news-section .container .news-bottom-modules .news-bottom-module .module-news-list .module-news-item-vertical .news-item-title {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  text-indent: 0.5em;
}

/* 党的建设区域 */
.study-section {
  padding: 100px 0;
  background: url("images/bg2.svg") center center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.study-section .container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    padding-top: 2rem;
    width: 90%;
}
.study-section .section-title-party {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.study-section .section-title-party .title-text {
  color: rgb(184, 0, 0);
}
.study-section .section-title-party .title-subtitle {
  color: rgba(168, 0, 0, 0.4);
}
.study-section .party-highlight {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: rgb(184, 0, 0);
  margin-bottom: 3rem;
  padding: 1.5rem 0;
}
.study-section .study-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2% 10%;
}
.study-section .study-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  min-width: 0;
}
.study-section .study-card-red {
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.study-section .study-card-red img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.study-section .study-card-red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
  pointer-events: none;
  z-index: 0;
}
.study-section .study-card-red .study-card-content {
  position: relative;
  z-index: 1;
  padding: 40px;
  text-align: center;
  width: 100%;
}
.study-section .study-card-red .study-card-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffd700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.study-section .study-card-red .study-card-text {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin: 10px 0;
  line-height: 1.6;
}
.study-section .study-card-white {
  display: flex;
  flex-direction: column;
}
.study-section .study-card-white .study-card-image {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}
.study-section .study-card-white .study-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.study-section .study-card-white .study-card-content {
  padding: 20px;
  flex: 1;
}
.study-section .study-card-white .study-card-title-dark {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.study-section .study-card-white .study-card-desc-dark {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
}
.study-section .study-card:hover {
  transform: translateY(-5px);
}

/* 生态概况区域 */
.ecology-section {
  padding: 100px 0;
  background: url("../images/bg7.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.ecology-section .container {
      display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    padding-top: 2rem;
    width: 90%;
}
.ecology-section .section-title-ecology {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.ecology-section .section-title-ecology .title-text {
  color: rgb(0, 81, 81);
}
.ecology-section .section-title-ecology .title-subtitle {
  color: rgba(0, 81, 81, 0.51);
}
.ecology-section .ecology-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}
.ecology-section .ecology-image {
  flex: 1;
  max-width: 250px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ecology-section .ecology-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.ecology-section .ecology-image:hover img {
  transform: scale(1.1);
}
.ecology-section .ecology-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}
.ecology-section .ecology-image:hover .ecology-overlay {
  transform: translate(-50%, -50%) scale(1.2);
}
.ecology-section img.ecology-icon {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.ecology-section .ecology-number {
  font-size: 2rem;
  font-weight: 700;
}
.ecology-section .ecology-unit {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 0.2rem;
}
.ecology-section .ecology-label {
  font-size: 1.2rem;
  font-weight: 500;
}
.ecology-section .ecology-image-down {
  margin-top: 3rem;
}
.ecology-section .ecology-image-up {
  margin-bottom: 3rem;
}

/* 经营发展区域 */
.business-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.business-section .container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  padding-top: 2rem;
  width: 90%;
}
.business-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/bg3.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: blur(2px);
}
.business-section .container {
  position: relative;
  z-index: 1;
}
.business-section .section-title-business {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.business-section .section-title-business .title-text {
  color: #0F5A92;
}
.business-section .section-title-business .title-subtitle {
  color: rgba(15, 89, 146, 0.4);
}
.business-section .business-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  width: 100%;
}
.business-section .business-tab {
  position: relative;
  padding: 1rem 2rem;
  min-width: 200px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transform: skewX(-12deg);
  background: linear-gradient(135deg, #0FDFAC 0%, #0F9A7A 100%);
  box-shadow: 0 4px 15px rgba(15, 223, 172, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.business-section .business-tab-left {
  z-index: 2;
  transform: skewX(-12deg) translateY(-2rem);
  background: linear-gradient(135deg, rgb(25, 130, 171) 0%, rgb(9, 174, 92) 100%);
  box-shadow: 0 4px 15px rgba(25, 130, 171, 0.3);
}
.business-section .business-tab-left:hover {
  transform: skewX(-12deg) translateY(-2.2rem);
  box-shadow: 0 6px 20px rgba(25, 130, 171, 0.4);
}
.business-section .business-tab-left.active {
  background: linear-gradient(135deg, rgb(25, 130, 171) 0%, rgb(9, 174, 92) 100%);
}
.business-section .business-tab-left:not(.active) {
  background: rgba(0, 99, 99, 0.47);
}
.business-section .business-tab-right {
  z-index: 1;
  margin-left: -2rem;
  background: rgba(0, 99, 99, 0.47);
  box-shadow: 0 4px 15px rgba(0, 99, 99, 0.3);
}
.business-section .business-tab-right:hover {
  box-shadow: 0 6px 20px rgba(0, 99, 99, 0.4);
  transform: skewX(-12deg) translateY(-1rem);
}
.business-section .business-tab-right.active {
  background: linear-gradient(135deg, rgb(25, 130, 171) 0%, rgb(9, 174, 92) 100%);
  box-shadow: 0 4px 15px rgba(25, 130, 171, 0.3);
}
.business-section .business-tab-right:not(.active) {
  background: rgba(0, 99, 99, 0.47);
}
.business-section .business-tab .tab-text {
  font-size: 24px;
  transform: skewX(12deg);
  text-align: center;
  margin-bottom: 5px;
  white-space: nowrap;
}
.business-section .business-tab .tab-text-en {
  font-size: 14px;
  transform: skewX(12deg);
  text-align: center;
  opacity: 0.9;
  font-weight: 400;
  white-space: nowrap;
}
.business-section .business-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  padding: 3rem 0;
  overflow: visible;
}
.business-section .business-carousel-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 12px;
  background: #FDFCFA;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.business-section .business-carousel-btn img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
.business-section .business-carousel-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.business-section .business-carousel-btn-left:hover {
  transform: scale(1.1) translateX(-3px);
}
.business-section .business-carousel-btn-right:hover {
  transform: scale(1.1) translateX(3px);
}
.business-section .business-carousel-container {
  flex: 1;
  overflow: visible;
  position: relative;
  perspective: 1200px;
  min-height: 510px;
}
.business-section .business-carousel-slides {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 510px;
  transform: translateX(10%);
  transform-style: preserve-3d;
}
.business-section .business-carousel-slide {
  position: absolute;
  width: 46%;
  left: 50%;
  top: 0;
  transform: translateX(-50%) rotateY(0deg);
  border-radius: 12px;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  padding: 2px;
  background: linear-gradient(135deg, #0FDFAC 0%, #2965D3 100%);
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  text-decoration: none;
  display: block;
}
.business-section .business-carousel-slide.slide-current {
  transform: translateX(-50%) rotateY(28deg) scale(1.04);
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.business-section .business-carousel-slide.slide-prev {
  transform: translateX(calc(-50% - 58%)) rotateY(28deg) scale(0.87);
  opacity: 0.85;
  visibility: visible;
  z-index: 2;
}
.business-section .business-carousel-slide.slide-next {
  transform: translateX(calc(-50% + 58%)) rotateY(28deg) scale(0.87);
  opacity: 0.85;
  visibility: visible;
  z-index: 2;
}
.business-section .business-slide-image {
  width: 100%;
  height: 310px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.business-section .business-slide-image-wrapper {
  background: white;
  padding: 1rem;
  border-radius: 10px 10px 0 0;
}
.business-section .business-slide-content {
  padding: 1rem;
  text-align: center;
  background: white;
  border-radius: 0 0 10px 10px;
}
.business-section .business-slide-title {
  font-size: 24px;
  font-weight: 700;
  color: #0F5A92;
  margin-bottom: 15px;
  line-height: 1.4;
}
.business-section .business-slide-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 auto;
  text-align: center;
}

/* 社会责任图片 */
.responsibility-image-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.responsibility-image-wrapper .responsibility-carousel {
  width: 100vw;
  overflow: hidden;
  position: relative;
}
.responsibility-image-wrapper .responsibility-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}
.responsibility-image-wrapper .responsibility-banner-image {
  width: 100vw;
  height: auto;
  display: block;
  flex: 0 0 100%;
}
.responsibility-image-wrapper .responsibility-carousel-indicators {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}
.responsibility-image-wrapper .responsibility-carousel-indicator {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.responsibility-image-wrapper .responsibility-carousel-indicator:hover,
.responsibility-image-wrapper .responsibility-carousel-indicator.active {
  background: #fff;
  transform: scale(1.2);
}
.responsibility-image-wrapper .responsibility-banner-icon {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  height: 240px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  z-index: 2;
}

/* 社会责任区域 */
.responsibility-section {
  min-height: 100vh;
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(144, 238, 144, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
  background-image: url("images/bg4.svg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.responsibility-section .section-title-responsibility {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.responsibility-section .section-title-responsibility .title-text {
  color: rgb(0, 81, 81);
}
.responsibility-section .section-title-responsibility .title-subtitle {
  color: rgba(0, 81, 81, 0.51);
}
.responsibility-section .responsibility-content {
  display: flex;
  gap: 3rem;
  align-items: stretch;
}
.responsibility-section .responsibility-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.responsibility-section .responsibility-desc-box {
  flex: 1;
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.responsibility-section .responsibility-desc-box .responsibility-desc-title {
  font-size: 3rem;
  font-weight: 700;
  color: rgb(0, 75, 49);
  margin-bottom: 0.8rem;
}
.responsibility-section .responsibility-desc-box .responsibility-desc-text {
  font-size: 2rem;
  color: rgb(24, 59, 86);
  line-height: 1.8;
}
.responsibility-section .responsibility-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 8px;
  flex-shrink: 0;
}
.responsibility-section .responsibility-btn {
  flex: 0 0 calc(33.333% - 0.7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: rgba(240, 248, 240, 0.8);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.responsibility-section .responsibility-btn:hover {
  background: rgba(27, 123, 78, 0.1);
  transform: translateY(-3px);
}
.responsibility-section .responsibility-btn .btn-icon {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  background: rgba(40, 115, 0, 0.06);
  padding: 1rem;
  border-radius: 10px;
}
.responsibility-section .responsibility-btn .btn-text {
  font-size: 1.1rem;
  color: #333;
  text-align: center;
  line-height: 1.5;
}
.responsibility-section .responsibility-right {
  flex: 0 0 45%;
}
.responsibility-section .responsibility-right .responsibility-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* 森工文化区域 */
.culture-section {
  min-height: 80vh;
  padding: 2rem 0;
  background-image: url("images/bg5.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.culture-section .container {
  width: 90%;
  padding: 0;
}
.culture-section .section-title-culture {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.culture-section .section-title-culture .title-main {
  color: rgb(139, 69, 19);
}
.culture-section .section-title-culture .title-arrow {
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
}
.culture-section .section-title-culture .title-text {
  color: rgb(139, 69, 19);
}
.culture-section .section-title-culture .title-subtitle {
  color: rgba(139, 69, 19, 0.4);
}
.culture-section .culture-video-section {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.culture-section .culture-video-section .culture-video-text {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.culture-section .culture-video-section .culture-video-text .video-text-line {
  font-family: "Alimama ShuHeiTi", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 4.8125rem;
  letter-spacing: 0.125rem;
  color: rgb(51, 51, 51);
  text-align: left;
  white-space: nowrap;
}
.culture-section .culture-video-section .culture-video-text .video-text-line:nth-child(2) {
  text-indent: 2em;
}
.culture-section .culture-video-section .culture-video-text img.video-text-line {
    display: block;
    max-width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.culture-section .culture-video-section .culture-video-text img.video-text-line:nth-child(2) {
  transform: translateX(2em);
  text-indent: 0;
}
.culture-section .culture-video-section .culture-video-wrapper {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 70%;
}
.culture-section .culture-video-section .culture-video-wrapper .culture-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.culture-section .culture-video-section .culture-video-wrapper .culture-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.culture-section .culture-video-section .culture-video-wrapper .culture-video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: white;
}
.culture-section .culture-video-section .culture-video-wrapper .culture-video-play .play-btn {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent rgba(139, 69, 19, 0.8);
  margin-left: 5px;
}

/* 人力资源区域 */
.hr-section {
  min-height: 50vh;
  padding: 5rem 0;
  background-image: url("images/hr.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hr-section .container {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  padding-top: 2rem;
  width: 90%;
}
.hr-section .section-title-hr {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.hr-section .section-title-hr .title-main {
  color: rgb(0, 90, 146);
}
.hr-section .section-title-hr .title-arrow {
    width: 2.25rem;
    height: 2.25rem;
}
.hr-section .section-title-hr .title-text {
  color: rgb(0, 90, 146);
}
.hr-section .section-title-hr .title-subtitle {
  color: rgba(0, 90, 146, 0.4);
}
.hr-section .hr-grid {
  display: flex;
  gap: 2rem;
}
.hr-section .hr-card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.hr-section .hr-card:hover {
  transform: translateY(-10px);
}
.hr-section .hr-card .hr-card-image {
      width: 100%;
      height: 30rem;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
}
.hr-section .hr-card {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.hr-section .hr-card .hr-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 3rem 2rem 2rem;
  color: white;
}
.hr-section .hr-card-recruit .hr-card-overlay, .hr-section .hr-card-training .hr-card-overlay {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    background: transparent;
    padding: 0;
    opacity: 1;
}
.hr-section .hr-card-overlay-blue .hr-card-overlay-title {
    position: absolute;
    left: 10%;
    bottom: 50%;
    font-size: 5rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
}
.hr-section .hr-card-overlay-blue .hr-card-overlay-btn {
    position: absolute;
    left: 10%;
    bottom: 20%;
    display: inline-block;
    padding: 0.8rem 4rem;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 1px;
    transition: background 0.3s ease, color 0.3s ease;
}
.hr-section .hr-card-recruit:hover .hr-card-overlay-btn,
.hr-section .hr-card-training:hover .hr-card-overlay-btn {
  background: rgba(255, 255, 255, 0.15);
}
.hr-section .hr-card .hr-card-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.hr-section .hr-card .hr-card-desc {
  font-size: 1rem;
  opacity: 0.9;
}

/* 页脚 */
.footer {
  background: url("images/footer/footer1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 3rem 0 0;
}
.footer .container {
  width: 80%;
  padding: 0;
}
.footer .footer-main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
}
.footer .footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer .footer-left .footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer .footer-left .footer-logo-img {
  height: 50px;
  width: auto;
}
.footer .footer-left .footer-logo-text-img {
  height: 40px;
  width: auto;
}
.footer .footer-left .footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer .footer-left .footer-qr .qr-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
}
.footer .footer-left .footer-qr .qr-text {
  font-size: 1rem;
  opacity: 0.9;
  text-align: center;
}
.footer .footer-nav {
  flex: 1;
  display: flex;
  gap: 3rem;
}
.footer .footer-column {
  text-align: center;
}
.footer .footer-column h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}
.footer .footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.footer .footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.footer .footer-column a:hover {
  color: white;
}
.footer .footer-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer .footer-right .footer-contact-item {
  font-size: 1.2rem;
  line-height: 1.6;
}
.footer .footer-right .footer-contact-item .contact-label {
  opacity: 0.9;
}
.footer .footer-right .footer-contact-item .contact-value {
  color: white;
}
.footer .footer-right .footer-host {
  margin-top: 1rem;
  font-size: 1.1rem;
  opacity: 0.9;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem 0;
  background: rgb(20, 121, 166);
  margin: 0 -100vw;
  padding-left: 100vw;
  padding-right: 100vw;
}
.footer .footer-bottom .footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
  opacity: 0.9;
  flex-wrap: wrap;
}
.footer .footer-bottom .footer-copyright .footer-security {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer .footer-bottom .footer-copyright .footer-security .police-icon {
  width: 1.2rem;
  height: 1.2rem;
}

/*# sourceMappingURL=index.css.map */
