/* 基础样式 */

/*@import ();*/
@import url(fonts-style.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Han Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 基础颜色设置 - 主色调：#046a38（深绿色） */

/* ==========================================
   主色调系列（深绿色系）
========================================== */
:root {
  /* 主色 - 深绿色 */
  --primary: #046a38;
  /* 主色变体 - 更深的绿色 */
  --primary-dark: #03542c;
  /* 主色变体 - 稍浅的绿色 */
  --primary-light: #058c42;
  /* 主色变体 - 更浅的绿色（用于背景） */
  --primary-bg: #eaf5f0;
  /* 主色变体 - 半透明版本 */
  --primary-transparent: rgba(4, 106, 56, 0.1);

  /* ==========================================
     辅助色系列
  =========================================== */
  /* 成功色（基于主色延伸） */
  --success: #10b981;
  --success-light: #dcfce7;

  /* 强调色（用于突出显示） */
  --accent: #f59e0b;
  /* 暖橙色，与深绿形成对比 */
  --accent-light: #fffbeb;

  /* 警告色 */
  --warning: #fbbf24;
  --warning-light: #fef3c7;

  /* 错误/危险色 */
  --danger: #ef4444;
  --danger-light: #fee2e2;

  /* 信息色 */
  --info: #3b82f6;
  --info-light: #eff6ff;

  /* ==========================================
     中性色系列（灰度）
  =========================================== */
  --black: #000000;
  --white: #ffffff;

  /* ==========================================
     文本颜色
  =========================================== */
  --text-primary: #333333;
  /* 主要文本 */
  --text-secondary: #64748b;
  /* 次要文本 */
  /* --text-tertiary: ; */
}

/* ==========================================
   基础元素颜色应用
========================================== */

/* 链接颜色 */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.text-color-dark {
  color: var(--text-primary) !important;
}

.border-radius-10 {
  border-radius: 10px !important;
}

.font-weight-300 {
  font-weight: 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-size-18 {
  font-size: 18px!important;
}

/* 按钮基础样式 */
.btn {
  background-color: var(--primary);
  color: var(--text-on-primary);
  border-color: var(--primary);
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--text-on-primary);
  border-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-on-primary);
  border-color: var(--primary);
}

/* 导航栏样式 */
.nav-link {
  color: var(--text-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--text-primary);
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 0;
}

ul,
ol {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

th,
td {
  padding: 1.2rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

th {
  background-color: #f8f9fa;
  font-weight: 600;
}

/* 表单基础样式 */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding: 0.8rem 1.2rem;
  border: 1px solid #ced4da;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

button {
  cursor: pointer;
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: none;
}

.text-center {
  text-align: center;
}

.section-space-pt-100 {
  padding-top: 100px;
}

.section-space-pb-100 {
  padding-bottom: 100px;
}

.section-space-ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 992px) {
  .mb-992-30 {
    margin-bottom: 30px;
  }

  .mb-992-40 {
    margin-bottom: 40px;
  }

  .mb-992-50 {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  h3 {
    font-size: 2rem;
  }

  /* 移动端表格可横向滚动 */
  .table-responsive {
    overflow-x: auto;
  }

  .mt-5 {
    margin-top: 1.5rem !important;
  }

  .mb-5 {
    margin-bottom: 1.5rem !important;
  }

  .mb-768-30 {
    margin-bottom: 40px;
  }

  .mb-768-40 {
    margin-bottom: 40px;
  }

  .mb-768-50 {
    margin-bottom: 50px;
  }
}

/* 头部样式 */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  max-width: 100%;
  /* height: 50px; */
  transition: transform 0.3s ease;
}

/* .logo img:hover {
  transform: scale(1.05);
} */

/* 汉堡菜单按钮 */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

/* 导航栏样式 */
.main-nav {
  position: relative;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  /* 导航项居中显示 */
}

.nav-item {
  position: relative;
  margin: 0 10px;
  /* 增加导航项间距 */
}

.nav-item:hover {
  /* background-color: #e5e5e5; */
  background: rgba(229, 229, 229, 0.5);
  border-radius: 4px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
  font-size: 16px;
  text-decoration: none;
  padding: 10px 8px;
  transition: color 0.3s ease;
}

.nav-link i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.nav-item:hover .nav-link {
  /* color: #0d6efd; */
  background-color: var(--gray-200);
  border-radius: 5px;
  font-weight: 500;
}

.nav-item:hover .nav-link i {
  transform: rotate(180deg);
}

/* 二级菜单样式 */
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* 子菜单水平居中 */
  min-width: 200px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu-item {
  padding: 0 15px;
}

.submenu-link {
  display: block;
  color: #333;
  text-decoration: none;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

.submenu-link:hover {
  color: var(--primary);
  background-color: #f5f7fa;
  padding-left: 20px;
}

/* 新增二级菜单样式 */
.xz-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 700px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  list-style: none;
  padding: 30px;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-wrap: wrap;
}

.nav-item:hover .xz-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.xz-submenu li.xz-submenu-item {
  width: 50%;
  border-radius: 4px;
}

.xz-submenu-item:hover {
  background: rgba(229, 229, 229, 0.5);
}

.xz-submenu-link {
  display: flex;
  gap: 10px;
  padding: 20px 10px;
}

.xz-submenu-link-icon img {
  width: 20px;
  max-width: 20px;
}

.xz-submenu-link-name {
  font-size: 16px;
  color: var(--text-primary);
}

.xz-submenu-link-desc {
  font-size: 10px;
  color: #4d4d4d;
}

@media (max-width: 992px) {
  .xz-submenu {
    width: 100%;
    min-width: auto;
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none !important;
    ;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    box-shadow: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .xz-submenu li.xz-submenu-item {
    width: 100%;
  }

  .nav-item .xz-submenu.active {
    visibility: visible;
    max-height: 500px;
    padding: 10px 0;
  }
}

/* 新增二级菜单样式 */

/* 语言切换 */
.lang-switch {
  cursor: pointer;
  color: #333;
  font-size: 14px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
  padding: 0 10px;
}

.lang-switch:hover {
  /* background-color: #e5e5e5; */
  background: rgba(229, 229, 229, 0.5);
  border-radius: 4px;
}

.lang-switch-icon {
  transition: transform 0.6s ease;
}

.lang-switch:hover .lang-switch-icon {
  transform: rotate(-180deg);
}

.lang-name {
  display: flex;
  flex-direction: column;
  color: #333;
}

.lang-name-en {
  font-size: 15px;
}

.lang-name-cn {
  font-size: 15px;
  color: rgba(38, 38, 38, 0.3);
}

.lang-switch:hover .lang-name-en {
  color: rgba(38, 38, 38, 0.3);
}

.lang-switch:hover .lang-name-cn {
  color: var(--text-primary);
}

@media (max-width: 480px) {
  .lang-name-en {
    font-size: 10px;
  }
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

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

.lang-option {
  padding: 8px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-option:hover {
  color: #0d6efd;
  background-color: #f5f7fa;
}

/* 轮播图样式 */
.swiper-container {
  width: 100%;
}

.main-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.main-swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* 修改Swiper左右箭头颜色 */
.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
  color: #ffffff;
}

.main-swiper .swiper-pagination{ margin-bottom:44px}
.main-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}

/* 修改Swiper分页小圆点颜色 */
.main-swiper .swiper-pagination-bullet-active {
  background-color: #ffffff !important;
}

/* 响应式调整 */
@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    overflow-y: auto;
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .main-nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
  }

  .nav-item {
    margin: 0;
    border-bottom: 1px solid #f1f1f1;
  }

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

  .nav-link {
    padding: 15px 0;
    width: 100%;
  }

  /* 移动端二级菜单 */
  .submenu {
    position: static;
    opacity: 1;
    visibility: hidden;
    transform: none !important;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    box-shadow: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .nav-item .submenu.active {
    visibility: visible;
    max-height: 500px;
    padding: 10px 0;
  }

  .submenu-item {
    padding: 0 20px;
  }

  /* 移动端背景遮罩 */
  .mobile-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }

  .mobile-overlay.active {
    display: block;
  }
}


.title-icon-box {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.title-icon img {
  width: 60px;
}

.title-h2 {
  color: var(--primary);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.title-h2-2 {
  font-size: 45px;
  line-height: 1.1;
}

.title-h2 img {
  width: 60px;
  display: inline-block;
  vertical-align: bottom;
}

.title-h3 {
  font-size: 28px;
  line-height: 1.1;
  line-height: 1.3;
  /* display: inline-flex;
  align-items: center;
  gap: 15px; */
}

.development-info-h3 {
  font-size: 26px;
  font-weight: 400;
}

.title-h3 span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.title-h3 img {
  width: 42px;
  display: inline-block;
  vertical-align: middle;
}

.title-h3-2 {
  font-size: 40px;
  font-weight: 400;
}

.title-h3-70 {
  padding-left: 70px;
}

.learn-more-btn {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 700;
}

@media (max-width: 992px) {
  .title-h2 {
    font-size: 36px;
  }

  .title-icon img,
  .title-h2 img {
    width: 42px;
  }

  .title-h3,
  .title-h3-2 {
    font-size: 24px;
  }

  .title-h3-70 {
    padding-left: 0px;
  }
}

@media (max-width: 768px) {
  .title-h2 {
    font-size: 30px;
  }

  .title-icon img,
  .title-h2 img {
    width: 36px;
  }

  .title-h3,
  .title-h3-2 {
    font-size: 20px;
  }
}

.p-text-justify {
  text-align: justify;
}

/* 关于我们 */
.about-section-one-text {
  /* padding-right: 80px; */
}

@media (max-width: 768px) {
  .about-section-one-text {
    padding-right: 0;
  }
}


/* 数字展示 */
.counter-section-one {
  padding-top: 50px;
}

.counter-item {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
  /* border-right: solid 2px var(--text-secondary); */
  padding-bottom: 30px;
}

.counter-item:hover {
  transform: translateY(-5px);
}

.counter-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ecfed5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
}

.counter-info {
  width: calc(100% - 60px);
  height: 100%;
}

.counter-info p {
  color: var(--text-secondary);
}

.counter-info-box {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.counter-info-box h2 {
  margin-bottom: 0;
}

.counter-info-box span {
  color: var(--primary);
  font-weight: 800;
}

/* 产品系列 */
.product-series-img {
  overflow: hidden;
  border-radius: 10px;
}

.product-series-item {
  margin-bottom: 80px;
}

.product-series-item:last-child {
  margin-bottom: 0;
}

.product-series-item:nth-child(odd) .product-series-picture {
  order: 1;
}

.product-series-item:nth-child(odd) .product-series-content {
  order: 2;
}

.padding-left-50 {
  padding-left: 50px;
}

.padding-right-50 {
  padding-right: 50px;
}

@media (max-width: 768px) {
  .product-series-item .product-series-picture {
    order: 1;
    margin-bottom: 30px;
  }

  .product-series-item .product-series-content {
    order: 2;
  }
  
  .padding-left-50 {
    padding-left: 0;
  }

  .padding-right-50 {
    padding-right: 0;
  }
}

.product-series-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.product-series-img:hover img {
  transform: scale(1.2);
}

/* 认证 */
.certification-item {
  display: flex;
  gap: 30px;
}

.certification-item-icon img {
  width: 42px;
  max-width: 42px;
}

.certification-item-info h4 {
  font-size: 24px;
}

.certification-item-info h4 span {
  font-size: 14px;
  font-weight: 400;
}

.certification-item-info2 p {
  font-size: 20px;
  line-height: 33px;
}

@media (max-width: 992px) {
  .certification-item-info h4 {
    font-size: 20px;
  }
  
  .certification-item-info2 p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .certification-item-info h4 {
    font-size: 18px;
  }

  .certification-item {
    margin-bottom: 1.5rem;
  }
}

.certificate-box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

/*.certificate-img::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0, 0, 0, 0.6);*/
/*  transition: opacity 5s ease;*/
/*}*/

.certificate-icon-img {
  position: absolute;
  top: -202px;
  right: 0;
  width: 350px;
  height: 202px;
  z-index: 2;
  transition: top 1.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.certificate-icon-img img {
  width: 100%;
}

/*.certificate-box:hover .certificate-img::after {*/
/*  opacity: 0;*/
/*}*/

.certificate-box:hover .certificate-icon-img {
  top: 0;
}

@media (max-width: 992px) {
  .certificate-icon-img {
    display: none;
  }
}

/* 可持续发展 */
.development-box {
  width: 100%;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: background-position 2.5s ease;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.development-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.15);
}

.development-info {
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  transition: opacity 2s ease;
}

.development-info h2,
.development-info h3,
.development-info a {
  color: var(--white);
  text-transform: uppercase;
}

.development-info-link {
  display: inline-block;
  padding: 8px 20px;
  border: solid 1px var(--white);
  border-radius: 21px;
}

.development-icon-img {
  position: absolute;
  left: -350px;
  bottom: -15px;
  width: 350px;
  height: 202px;
  z-index: 2;
  transition: left 1.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.development-box:hover {
  background-position: center top;
}

/*.development-box:hover::after {*/
/*  background: rgba(0, 0, 0, 0.25);*/
/*}*/

.development-box:hover .development-info {
  opacity: 1;
}

.development-box:hover .development-icon-img {
  left: -20px;
}

/* 新闻洞察 */
.news-box {
  display: flex;
  flex-wrap: wrap;
}

.news-box .company-news,
.news-box .industry-news {
  width: 50%;
}

@media (max-width: 992px) {

  .news-box .company-news,
  .news-box .industry-news {
    width: 100%;
  }

  .news-box .company-news {
    margin-bottom: 30px;
  }

  .news-box .industry-news {
    min-height: 485px;
  }
}

/* 公司新闻 */
.company-news {
  background-color: #f1f1f1;
  border-radius: 10px;
  padding: 30px;
}

.news-category-tit {
  font-size: 22px;
  margin-bottom: 20px;
}

.news-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.news-item {
  display: flex;
  /*margin-bottom: 25px;*/
  overflow: hidden;
}

.news-item:last-child {
  margin-bottom: 0;
}

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

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-item:hover .news-img img {
  transform: scale(1.05);
}

.news-content {
  width: calc(100% - 160px);
  padding: 0 0 0 15px;
}

.news-date {
  font-size: 12px;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.news-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-primary);
}

.news-item:hover .news-title {
  color: var(--primary);
}

.news-desc {
  color: var(--text-primary);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 行业资讯轮播样式 */
.industry-news {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.industry-news .swiper {
  width: 100%;
  height: 100%;
}

.industry-news .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
}

.industry-news .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  z-index: 1;
}

.industry-news .swiper-slide a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
}

.industry-news .slide-content {
  position: relative;
  z-index: 2;
}

.industry-news .slide-date {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--white);
}

.industry-news .slide-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--white);
}

.industry-news .swiper-pagination {
  text-align: right;
  padding: 0 20px 15px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.industry-news .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 5px;
}

.industry-news .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}

/* 大船 */
.ship-section-one {
  width: 100%;
  height: 750px;
  /* background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */
  margin-top: 100px;
  position: relative;
}

.ship-section-one-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ship-section-one-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 20s ease;
  transform-origin: top right;
}

.ship-section-one:hover .ship-section-one-img img {
  transform: scale(1.2);
}

.ship-section-one:not(:hover) .ship-section-one-img img {
  transition: transform 20s ease 3s;
  /* 延迟5秒，持续2秒的恢复动画 */
}

.ship-section-one-info {
  position: absolute;
  right: 200px;
  bottom: 100px;
  color: var(--white);
}

.ship-section-one-info h2 {
  color: var(--white);
}

.ship-section-one-info p {
  text-decoration: underline;
  line-height: 2;
  font-size: 20px;
}

.ship-section-one-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 9;
}

@media (max-width: 992px) {
  .ship-section-one-info {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .ship-section-one-info {
    width: calc(100% - 30px);
    left: 50%;
    transform: translateX(-50%);
  }
}

/* footer */
footer {
  background-color: #f1f1f1;
}

.footer-logo {
  border-bottom: solid 1px var(--black);
}

.footer-copyright-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}

.footer-copyright-link a {
  color: var(--text-primary);
}

.footer-copyright-link a:hover {
  color: var(--primary);
}

.footer-line {
  width: 100%;
  border-top: solid 1px var(--black);
}

.footer-widget-title {
  font-size: 24px;
  color: var(--black);
  font-weight: 800;
}

.footer-contact--info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-contact--info a,
.footer-contact--info p {
  color: var(--text-primary);
}

.footer-contact--info a:hover {
  color: var(--primary);
}

.footer-social-links {
  font-size: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-widget--links ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-widget--links ul a {
  color: var(--text-primary);
}

.footer-widget--links ul a:hover {
  color: var(--primary);
}

.footer-copyright-info,
.footer-copyright-info a {
  color: var(--text-primary);
}

@media (max-width: 992px) {
  .footer-social-links {
    margin-bottom: 30px;
  }
  
  .footer-copyright-link {
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .footer-copyright-info {
    text-align: center;
  }
}

/* banner */
.banner-section {
  position: relative;
  padding-bottom: 94px;
}

.banner-section-img img {
  width: 100%;
}

.banner-section-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .banner-section {
    padding-bottom: 47px;
  }

  .banner-section-icon {
    transform: translateX(-25%);
  }

  .banner-section-icon img {
    width: 50%;
  }
}

/* 联系我们 */
.page-contact-section {
  width: 100%;
}

.page-contact-form {
  padding: 0 40px;
}

.page-contact-form h4 {
  color: var(--text-primary);
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 20px;
}

.page-contact-form .form-control {
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
  transition: all 0.3s;
  font-size: 14px;
  opacity: .6;
}

.page-contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: none; 
}

.page-contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.page-contact-form label {
  color: var(--text-primary);
  /*font-weight: 500;*/
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.page-contact-form .form-group {
  margin-bottom: 25px;
}

.page-contact-form .btn-send {
  padding: 12px 30px;
  border: none;
  border-radius: 26px;
  transition: all 0.3s;
  background: none;
  border: solid 1px #333;
  color: var(--text-primary);
}

.page-contact-form .btn-send:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.page-contact-info {
  padding-left: 40px;
}

.page-contact-info h4 {
  color: var(--text-primary);
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 20px;
}

.page-contact-info h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-contact-info p {
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-contact-detail {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}

.page-contact-detail .page-contact-method:nth-child(1),
.page-contact-detail .page-contact-method:nth-child(2) {
  width: 50%;
}

.page-contact-detail .page-contact-method:last-child {
  width: 100%;
}

.page-contact-method {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.page-contact-icon {
  width: 50px;
  height: 50px;
  background: #f1f1f1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  margin-bottom: 25px;
}

.page-contact-icon i {
  color: var(--primary);
  font-size: 1.2rem;
}

.page-contact-text h4 {
  color: var(--text-primary);
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 600;
}

.page-contact-text span {
  color: var(--text-primary);
  font-size: 14px;
  opacity: 0.6;
}

.page-contact-text p {
  color: var(--text-primary);
  margin-bottom: 0;
  font-size: 20px;
}

.page-contact-hours {
  color: var(--text-primary);
  font-size: 0.9rem;
}

.page-contact-qr {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-contact-qr img {
  max-width: 150px;
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  padding: 10px;
  background: white;
}

.page-contact-qr p {
  color: var(--text-primary);
  font-size: 18px;
  line-height: 35px;
  opacity: .6;
}

@media (max-width: 992px) {
  .page-contact-form {
    padding: 0;
  }

  .page-contact-info {
    padding-left: 0;
    margin-top: 50px;
  }
}

/* 新闻列表页 */
.page-news-link {
  color: var(--text-primary);
}

.page-news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 25px 40px;
  border-radius: 10px;
  background-color: #f2f2f2;
  margin-bottom: 30px;
}

.page-news-item:last-child {
  margin-bottom: 0;
}

.page-news-item-img {
  width: 390px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.page-news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-news-link:hover .page-news-item-img img {
  transform: scale(1.1);
}

.page-news-item-content {
  width: calc(100% - 420px);
}

.news-item-category {
  display: inline-block;
  background-color: #e9e9e9;
  padding: 5px 8px;
  border-radius: 14px;
  font-size: 12px;
  color: var(--text-primary);
}

.news-item-title {
  display: block;
  width: 100%;
  font-size: 24px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: var(--text-primary);
}

.page-news-link:hover .news-item-title {
  color: var(--primary);
}

.news-item-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item-time {
  font-size: 12px;
  text-decoration: underline;
  color: var(--text-primary);
}

@media (max-width: 992px) {
  .page-news-item-img {
    width: 240px;
    height: 180px;
  }

  .page-news-item-content {
    width: calc(100% - 270px);
  }

  .news-item-title {
    font-size: 18px;
    font-weight: 400;
  }
}

.prev-next-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prev-next-box a {
  color: var(--text-primary);
}

.prev-next-box a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .page-news-item {
    padding: 10px;
  }

  .page-news-item-img {
    width: 100%;
    height: auto;
  }

  .page-news-item-content {
    width: 100%;
  }
}

/* 可持续发展 */
.development-user-item {
  padding: 0 30px;
  margin-bottom: 40px;
}

.user-item-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.user-item-info-cn {
  font-size: 20px;
  line-height: 34px;
}

.user-item-info-en {
  font-size: 12px;
  line-height: 20px;
}

/* 关于我们页面 */
.page-about-content {
  font-size: 18px;
  line-height: 35px;
}

.page-about-pr {
  padding-right: 55px;
}

@media (max-width: 992px) {
  .page-about-pr {
    padding-right: 0px;
  }
}

.advantage-item-info {
  font-size: 20px;
  font-weight: 600;
}

/* 品牌文化 */
.page-about-content h4,
.job-openings h4,
.brand-dna-item h5 {
  font-size: 24px;
}

.page-about-content h6 {
  font-size: 18px;
}

.brand-dna-item {
  border-left: solid 2px #7B7B7B;
  padding: 0 15px;
}

.brand-dna-item h5 {
  color: #7B7B7B;
}

.sub-column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.sub-column a {
  font-size: 20px;
  padding: 10px 20px;
  background-color: var(--white);
  border: solid 2px var(--text-primary);
  color: var(--text-primary);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: color 0.8s ease;
  transition: left 0.8s ease;
  transition: all 0.5s ease;
  z-index: 1;
}

/* 背景色动画层 */
/*.sub-column a::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 0;*/
/*  left: -100%;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background-color: var(--primary);*/
/*  transition: left 0.8s ease;*/
/*  z-index: -1;*/
/*}*/

/* 鼠标悬停效果 */
.sub-column a:hover {
  color: var(--white);
  border-color: var(--primary);
  background: var(--primary);
}

/*.sub-column a:hover .shadow-bg {*/
/*  left: 100%;*/
/*  box-shadow: inset 0 0 0 2px var(--primary);*/
/*}*/

/*.sub-column a:hover::before {*/
/*  left: 0;*/
/*}*/

/* 鼠标移出效果 */
/*.animated-button:not(:hover)::before {*/
/*  left: 100%;*/
/*  transition: left 0.8s ease;*/
/*}*/

.sub-column a.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

@media (max-width: 768px) {

  .page-about-content h4,
  .job-openings h4,
  .brand-dna-item h5 {
    font-size: 20px;
  }
}

/* 专利 */
/* 专利轮播容器 */
.patent-swiper-container {
  /* margin: 30px 0; */
  position: relative;
  /* border-radius: 12px; */
  overflow: hidden;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
}

/* 专利轮播样式 */
.patent-swiper {
  width: 100%;
}

.patent-swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.patent-swiper-slide img {
  width: 100%;
}

/* 渐隐渐现效果 */
.patent-swiper .swiper-slide {
  opacity: 0.3;
  transition: opacity 1s ease;
}

.patent-card {
  padding: 40px;
  height: 100%;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.patent-card h4 {
  font-size: 24px;
}

@media (max-width: 992px) {
  .patent-card {
    padding: 30px;
  }

  .patent-card h4 {
    font-size: 18px;
  }
}

/* 加入我们 */
.job-openings {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
  border-top: solid 1px #BDB6C3;
  border-bottom: solid 1px #BDB6C3;
}

.job-openings h4,
.job-openings span {
  width: 25%;
}

@media (max-width: 992px) {

  .job-openings h4,
  .job-openings span {
    width: 50%;
  }
}

/* 产品优势 */
.product-advantage .advantage-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
  /* height: 300px; */
}

.product-advantage .advantage-item:hover {
  transform: translateY(-10px);
}

.product-advantage .advantage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-advantage .advantage-item:hover .advantage-img {
  transform: scale(1.05);
}

.product-advantage .advantage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding: 20px;
  opacity: 0;
  transition: all 1s ease;
  overflow: hidden;
}

.product-advantage .advantage-item:hover .advantage-overlay {
  height: 100%;
  opacity: 1;
}

.product-advantage .advantage-overlay img {
  width: 42px;
}

.product-advantage .advantage-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  /* text-align: center; */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-advantage .advantage-title.zh {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 10px;
}

.product-advantage .advantage-desc {
  color: #ecf0f1;
  /* text-align: center; */
  font-size: 1rem;
  line-height: 1.6;
  /* max-width: 250px; */
}

@media (max-width: 768px) {
  .product-advantage .section-title h2 {
    font-size: 2rem;
  }

  .product-advantage .advantage-title {
    font-size: 1.3rem;
  }

  .product-advantage .advantage-desc {
    font-size: 0.9rem;
  }
}


/* 产品列表 */
.product-list .product-item {
  width: calc(100% - 40px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fafafa;
  border-radius: 0 0 10px 10px;
}

.product-list .product-img-container {
  width: 218px;
  height: 196px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.product-list .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

.product-list .product-info {
  width: 100%;
  height: calc(100% - 196px);
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.product-list .product-info-text {
  padding: 0 20px;    
}

.product-list .product-model {
  font-size: 1.2rem;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.product-list .product-detail {
  margin-bottom: 8px;
  /* display: flex; */
  font-size: 14px;
}

.product-list .view-large-btn {
  display: block;
  width: 100%;
  background: #efefef;
  color: var(--text-primary);
  text-align: center;
  padding: 10px;
  border: none;
  border-radius: 0 0 10px 10px;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 500;
}

.product-list .view-large-btn:hover {
  color: var(--primary);
}

/* 弹出层样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.modal-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.modal-img-container {
  height: 100%;
  position: relative;
  /* background: #f8f9fa; */
}

.modal-swiper {
  width: 100%;
  height: 100%;
}

.modal-swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-swiper-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-single-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-single-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.modal-product-info {
  padding: 20px;
}

.modal-product-model {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.modal-product-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.modal-product-detail {
  display: flex;
}

.modal-detail-label {
  font-weight: 500;
  color: #7f8c8d;
  min-width: 100px;
}

.modal-detail-value {
  color: #34495e;
}

/* 导航按钮 */
.modal-swiper-button-next,
.modal-swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.modal-swiper-button-next:after,
.modal-swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
}

.modal-swiper-button-next:hover,
.modal-swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .modal-product-details {
    grid-template-columns: 1fr;
  }

  .modal-img-container {
    height: 300px;
  }

  .product-img-container {
    height: 200px;
  }
}


/* 工业包装 */
.industrial-packaging-item2 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .industrial-packaging-item2 {
    gap: 24px;
  }
}

/* 工艺优势 */
.process-advantage-item {
  height: 100%;
  background-color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-advantage-text {
  padding: 35px;
}

.process-advantage-text p {
  min-height: 123px;
  height: 100%;
}

.process-advantage-icon {
  width: 42px;
}

.process-advantage-title {
  font-size: 22px;
}

.process-advantage-bottom h4 {
  padding: 30px 40px;
  color: rgba(17, 19, 30, 0.2);
  font-size: 20px;
  border-top: solid 1px rgba(17, 19, 30, 0.2);
}

@media (max-width: 992px) {

  .process-advantage-text,
  .process-advantage-bottom h4 {
    padding: 25px;
  }

  .process-advantage-title {
    font-size: 18px;
  }

}


/* 解决方案 */
.solution-box:nth-child(even) .solution-box-item1 {
  order: 2;
}

.solution-box:nth-child(even) .solution-box-item2 {
  order: 1;
}

.solution-item-info {
  height: 100%;
  border: solid 1px var(--text-primary);
  border-radius: 15px;
  padding: 30px;
}

.solution-item-info .title-icon {
  width: 40px;
}

.solution-item-img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.solution-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 768px) {
  .solution-box .solution-box-item1 {
    order: 2;
    margin-top: 50px;
  }

  .solution-box .solution-box-item2 {
    order: 1;
  }
}

.contact-info-link {
  display: inline-block;
  padding: 8px 20px;
  border: solid 1px var(--text-primary);
  border-radius: 21px;
  color: var(--text-primary);
  transition: all 0.3s;
}

.contact-info-link:hover {
  background-color: var(--primary);
  color: var(--white);
}



#brand,
#products {
  height: 100px;
}




/* 返回顶部按钮样式 */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.05);
}

.back-to-top:active {
  transform: scale(0.95);
  transition: transform 0.1s ease;
}

.back-to-top img {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}

/* 动画效果 */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.back-to-top.pulse {
  animation: bounce 2s infinite;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
  }

  .back-to-top img {
    width: 25px;
    height: 25px;
  }
}

.line-height-1 {
  line-height: 35px;
}

.line-height-2 {
  line-height: 1.5;
}

.line-height-3 {
  line-height: 1.7;
}


/* 选显卡 */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}


/* 新闻内页 */
.news-cont-title {
  padding: 0 8.5%;
  font-size: 2.5em;
}

@media (max-width: 768px) {
  .news-cont-title {
    font-size: 2.0em;
    padding: 0;
  }
}

.news-cont-date {
  padding: 0 8.5%;
  font-size: 16px;
  color: #adadad;
}

.news-cont-details {
  line-height: 35px;
  font-size: 18px;
  color: #666;
  text-indent: 2em;
}

.social-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-box .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #dddddd;
  transform: translateY(-50%);
}

.social-item {
  padding: 0 22px;
  background: #fff;
  position: relative;
  z-index: 9;
  font-size: 30px;
  color: #666;
  cursor: pointer;
}

.social-item:hover {
  color: var(--text-primary);
}

.wechat-qr {
  width: 180px;
  display: none;
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding-bottom: 10px;
}

.wechat-qr-title{
  padding: 0 20px;
  text-align: center;
  width: 100%;
  background-color: #f3f3f3;
  color: #777;
  font-size: 14px;
  height: 26px;
  line-height: 26px;
  position: relative;
}

.wechat-qr-title i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--text-primary);
}

.wechat-qr img {
  width: 150px!important;
}

.wechat-qr.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.related-news-h2 {
  padding: 0 0 8px;
  position: relative;
  font-size: 2.1em;
  font-weight: 700;
}

.related-news-h2::after {
  background-color: var(--primary);
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  height: 2px;
  transform: translateX(-50%);
  width: 50px;
}

.related-news-img {
  width: 100%;
  overflow: hidden;
}

.related-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.related-news-item:hover .related-news-img img {
  transform: scale(1.1);
}

.related-news-info {
  background-color: #f8f8f8;
  overflow: hidden;
  padding: 15px;
  width: 100%;
}

.related-news-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1.2em;
  height: 3.25em;
  line-height: 1.625em;
  margin: 0 0 10px;
}

.related-news-date {
  color: #999;
  line-height: 14px;
  margin-top: 10px;
}

.more-news {
  display: flex;
  justify-content: center;
}

.more-news a {
  height: 40px !important;
  line-height: 38px !important;
  min-width: 170px;
  border: 1px solid #111;
  color: #111;
  display: inline-block;
  font-size: 16px;
  transition: all 0.3s;
}

.more-news a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}


.recruitment-content h3,
.recruitment-content h4,
.recruitment-content h5,
.recruitment-content h6 {
  font-size: 18px;
  line-height: 35px;
}

