/* Restored visual styles from legacy template */

@media screen and (min-width: 768px) and (max-width: 1199px) {
  html {
    zoom: 0.8;
  }
}

body.module_bg_color {
  background: #fff;
  color: #4a5f6b;
}

/* Header / Nav */
.site-header {
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid rgba(18, 70, 92, 0.06);
}

.header-inner {
  min-height: 100px;
  align-items: stretch;
}

.site-header .header-inner>nav {
  align-self: stretch;
  display: flex;
}

.logo {
  align-self: center;
}

.logo span {
  display: none;
}

.logo img {
  height: 56px;
}

.nav-toggle {
  align-self: center;
}

.site-nav {
  gap: 0;
  height: 100%;
  align-items: stretch;
}

.site-nav li {
  display: flex;
}

.site-nav a {
  font-size: 18px;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  color: #12465a;
  padding: 0 25px;
  display: flex;
  align-items: center;
  position: relative;
  line-height: normal;
  border-bottom: none;
  transition: color 0.2s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: transparent;
  transition: background-color 0.2s;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #c7a973;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  background: #c7a973;
}

/* Hero banner */
.hero-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #12465a center/cover no-repeat;
  background-image: url("/public/static/indexbg.jpg");
}

.hero-banner .container {
  padding: 8% 5.2%;
  max-width: 1200px;
}

.hero-banner h1 {
  margin: 0 0 1.25rem;
  font-size: 34px;
  line-height: 1.5;
  font-weight: 700;
  color: #c7a973;
}

.hero-banner .lead {
  max-width: 720px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #c3beb6;
}

/* Section titles (original   style) */
.section-title {
  margin: 0 0 2rem;
}

.section-title .title-cn {
  font-size: 28px;
  font-weight: 700;
  color: #12465a;
}

.section-title .title-en {
  font-size: 18px;
  color: #768991;
  margin-left: 0.35em;
}

.section-block {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  background: #f7f7f7;
}

.section-block.bg-white {
  background: #fff;
  overflow-x: clip;
}

/* About split — 与 .container 同宽，避免图片行超出其它板块 */
.about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: start;
  width: min(100% - 2rem, var(--max-width));
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  box-sizing: border-box;
}

.about-split .about-img {
  overflow: hidden;
  line-height: 0;
  width: 100%;
  min-width: 0;
}

/* 按图片比例缩放，不裁切、不固定高度 */
.about-split .about-img img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border: none;
  margin: 0;
}

.about-split .about-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
  box-sizing: border-box;
}

.about-split .label {
  font-size: 14px;
  color: #768991;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  line-height: 1.5;
}

.about-split h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: #12465a;
  margin: 0 0 0.75rem;
  line-height: 1.4;
  word-break: break-word;
}

.about-split .about-lead {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #12465a;
  line-height: 1.5;
  margin: 0.5rem 0 0;
}

.about-split .about-body {
  font-size: clamp(0.8125rem, 1.6vw, 0.875rem);
  color: #768991;
  line-height: 1.75;
  margin: 0.75rem 0 0;
  word-break: break-word;
}

/* 了解更多 — 参考模板悬停：文字变金 + 装饰线图片切换 */
.link-more {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  color: #12465a;
  font-size: 14px;
  text-decoration: none;
}

.link-more-text {
  flex-shrink: 0;
  transition: color 0.35s ease, transform 0.35s ease;
}

.link-more-line {
  position: relative;
  display: inline-block;
  height: 14px;
  margin-left: 12px;
  line-height: 0;
  vertical-align: middle;
}

.link-more-icon {
  display: block;
  height: 14px;
  width: auto;
  border: none;
}

.link-more-icon--hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.link-more-icon--default {
  transition: opacity 0.35s ease;
}

.link-more:hover,
.about-text:hover .link-more {
  color: #c7a973;
  text-decoration: none;
}

.link-more:hover .link-more-text,
.about-text:hover .link-more .link-more-text {
  color: #c7a973;
  transform: translateX(4px);
}

.link-more:hover .link-more-icon--default,
.about-text:hover .link-more .link-more-icon--default {
  opacity: 0;
}

.link-more:hover .link-more-icon--hover,
.about-text:hover .link-more .link-more-icon--hover {
  opacity: 1;
}

.flexs {
  display: flex;
  flex-wrap: wrap;
}

/* Product list layout-104 */
.ModuleProductListGiant.layout-104 .pro-container {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ModuleProductListGiant.layout-104 .pro-item {
  width: 23.5%;
  margin: 0 2% 2% 0;
  background: #f8f8f8;
  box-sizing: border-box;
  transition: all 0.3s ease-out;
}

.ModuleProductListGiant.layout-104 .pro-item:nth-child(4n) {
  margin-right: 0;
}

.ModuleProductListGiant.layout-104 .pro-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ModuleProductListGiant.layout-104 .pro-item a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.ModuleProductListGiant.layout-104 .pro-img {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #eee;
}

.ModuleProductListGiant.layout-104 .pro-img .dummy {
  padding-top: 100%;
  display: block;
}

.ModuleProductListGiant.layout-104 .pro-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}

.ModuleProductListGiant.layout-104 .pro-item:hover .pro-img img {
  transform: scale(1.1);
}

.ModuleProductListGiant.layout-104 .pro-text {
  padding: 7% 5%;
  text-align: center;
}

.ModuleProductListGiant.layout-104 .pro-name {
  font-size: 18px;
  font-weight: 700;
  color: #12465a;
  margin: 0 0 6px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ModuleProductListGiant.layout-104 .pro-desc {
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  color: #768991;
  margin: 0;
}

/* Homepage investment — 3 columns, white cards, left-aligned text */
.ModuleProductListGiant.layout-104.home-investment .pro-item {
  width: 32%;
  margin: 0 2% 2% 0;
  background: #fff;
  display: block;
  color: inherit;
  text-decoration: none;
}

.ModuleProductListGiant.layout-104.home-investment .pro-item:nth-child(4n) {
  margin-right: 2%;
}

.ModuleProductListGiant.layout-104.home-investment .pro-item:nth-child(3n) {
  margin-right: 0;
}

.ModuleProductListGiant.layout-104.home-investment .pro-img .dummy {
  padding-top: 75%;
}

.ModuleProductListGiant.layout-104.home-investment .pro-text {
  padding: 16px 20px 20px;
  text-align: left;
  box-sizing: border-box;
}

.ModuleProductListGiant.layout-104.home-investment .pro-name {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
}

.ModuleProductListGiant.layout-104.home-investment .pro-desc {
  height: auto;
  line-height: 1.5;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

/* Product list layout-125 — 投资案例悬浮遮罩 */
.ModuleProductListGiant.layout-125 .pro-container {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ModuleProductListGiant.layout-125 .pro-container>li {
  position: relative;
  padding: 0;
  margin: 0 16px 2% 0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.ModuleProductListGiant.layout-125 li.col-lg-3 {
  flex: 0 0 calc((100% - 32px) / 3);
  width: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
}

.ModuleProductListGiant.layout-125 li.col-lg-3:nth-child(3n) {
  margin-right: 0;
}

.ModuleProductListGiant.layout-125 a {
  color: inherit;
  text-decoration: none;
}

.ModuleProductListGiant.layout-125 .pro-bg {
  position: relative;
  background-color: #0d3546;
}

.ModuleProductListGiant.layout-125 .pro-img-wrap {
  position: relative;
  overflow: hidden;
}

.ModuleProductListGiant.layout-125 .pro-img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ModuleProductListGiant.layout-125 .pro-img .dummy {
  display: block;
  padding-top: 100%;
}

.ModuleProductListGiant.layout-125 .pro-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s linear;
}

.ModuleProductListGiant.layout-125 .pro-item:hover .pro-img img {
  transform: scale(1.05);
}

.ModuleProductListGiant.layout-125 .pro-tit {
  transition: background 0.6s ease-out;
  padding: 12px 0;
}

.ModuleProductListGiant.layout-125 .pro-tit .pro-name {
  margin: 0;
  padding: 0 4%;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  height: 3em; /* 固定2行高度: 2 × 1.5 = 3em */
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ModuleProductListGiant.layout-125 .pro-item:hover .pro-tit {
  background: transparent;
}

.ModuleProductListGiant.layout-125.layout-125--portrait .pro-item:hover .pro-tit {
  background-color: #0d3546;
}

.ModuleProductListGiant.layout-125.layout-125--portrait .pro-tit .pro-n-p>div {
  margin-top: 10px;
  padding-bottom: 10px;
}

.ModuleProductListGiant.layout-125.layout-125--portrait .pro-img .dummy {
  padding-top: 128%;
}

.ModuleProductListGiant.layout-125.layout-125--portrait .pro-desc-show {
  -webkit-line-clamp: 5;
  margin-bottom: 12%;
}

.ModuleProductListGiant.layout-125 .bgColor {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 0;
  opacity: 0;
  padding: 25px;
  transition: all 0.6s ease;
}

.ModuleProductListGiant.layout-125 .bgColor>a {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transition: all 0.6s ease;
}

.ModuleProductListGiant.layout-125 .pro-name-show {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ModuleProductListGiant.layout-125 .pro-desc-show {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.ModuleProductListGiant.layout-125 .pro-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}

.ModuleProductListGiant.layout-125 .bgColor::before,
.ModuleProductListGiant.layout-125 .bgColor::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  opacity: 0;
  transition: all 0.75s ease-in-out;
  pointer-events: none;
}

.ModuleProductListGiant.layout-125 .bgColor::before {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: scale(0, 1);
}

.ModuleProductListGiant.layout-125 .bgColor::after {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: scale(1, 0);
}

@media (min-width: 768px) {
  .ModuleProductListGiant.layout-125 .pro-item:hover .bgColor {
    height: 100%;
    opacity: 0.9;
    background-color: #c0a571;
  }

  .ModuleProductListGiant.layout-125 .pro-item:hover .bgColor>a {
    top: 28%;
    opacity: 1;
    z-index: 100;
  }

  .ModuleProductListGiant.layout-125 .pro-item:hover .bgColor::before,
  .ModuleProductListGiant.layout-125 .pro-item:hover .bgColor::after {
    opacity: 1;
    transform: scale(1, 1);
  }
}

@media (max-width: 767px) {
  .ModuleProductListGiant.layout-125 li.col-lg-3 {
    width: 100%;
    margin-right: 0;
  }
}

/* News list — shared title (单行省略) & time divider */
.ModuleNewsListGiant .news-title,
.ModuleNewsListGiant .news-title span,
.ModuleNewsListGiant .layout-110-name,
.ModuleNewsListGiant .laout-110-title {
  display: block !important;
  max-width: 100%;
  overflow: hidden !important;
  white-space: nowrap !important;
  text-overflow: ellipsis !important;
  word-break: normal;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.ModuleNewsListGiant.layout-110 time::after,
.ModuleNewsListGiant.layout-118 time::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  margin-top: 12px;
  height: 1px;
  width: 100%;
  background-color: #e5e5e5;
}

@media (min-width: 768px) {

  .ModuleNewsListGiant.layout-110 .news-item:hover time::after,
  .ModuleNewsListGiant.layout-118 .news-item:hover time::after {
    animation: layout110-liner 0.6s linear both;
  }
}

/* News list layout-110 */
@keyframes layout110-liner {
  0% {
    width: 10%;
  }

  30% {
    width: 20%;
  }

  60% {
    width: 60%;
  }

  100% {
    width: 100%;
  }
}

.ModuleNewsListGiant.layout-110 .news-container {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ModuleNewsListGiant.layout-110 .news-item {
  margin: 0 3% 2% 0;
  background: #fff;
  float: none;
  cursor: pointer;
  transition: box-shadow 0.3s;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .ModuleNewsListGiant.layout-110 li.col-lg-3 {
    flex: 0 0 calc((100% - 6%) / 3);
    width: calc((100% - 6%) / 3);
    max-width: calc((100% - 6%) / 3);
  }

  .ModuleNewsListGiant.layout-110 li.col-lg-3:nth-child(3n) {
    margin-right: 0;
  }
}

.ModuleNewsListGiant.layout-110 .news-item a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.ModuleNewsListGiant.layout-110 .news-img {
  position: relative;
  overflow: hidden;
}

.ModuleNewsListGiant.layout-110 .news-img .dummy {
  padding-top: 66.666%;
  display: block;
}

.ModuleNewsListGiant.layout-110 .news-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}

.ModuleNewsListGiant.layout-110 .news-item:hover .news-img img {
  transform: scale(1.2);
}

.ModuleNewsListGiant.layout-110 .news-tit {
  padding: 20px 16px 15px;
  position: relative;
}

.ModuleNewsListGiant.layout-110 .news-tit::before,
.ModuleNewsListGiant.layout-110 .news-tit::after {
  display: none;
  content: none;
}

.ModuleNewsListGiant.layout-110 .news-title {
  font-size: 16px;
  font-weight: 600;
  color: #0d3546;
  margin: 0 0 11px;
  line-height: 1.5;
  transition: color 0.3s ease;
  /* 单行省略由上方共享规则控制，勿使用 -webkit-line-clamp: 2 */
}

.ModuleNewsListGiant.layout-110 .news-item:hover .news-title {
  color: #c0a571;
}

.ModuleNewsListGiant.layout-110 time {
  position: relative;
  font-size: 14px;
  color: #666;
  display: block;
  margin: 11px 0 0;
  padding-bottom: 0;
}

.ModuleNewsListGiant.layout-110 .news-desc {
  color: #768991;
  font-size: 14px;
  line-height: 22px;
  margin: 16px 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Charity carousel layout-118 — 一行 3 张，横向滚动（与原版一致） */
.charity-swiper-wrap {
  padding: 0 0 2rem;
  max-width: 1240px;
}

.ModuleNewsListGiant.layout-118 .charity-carousel {
  padding: 20px 1.5% 55px;
  overflow: hidden;
}

.ModuleNewsListGiant.layout-118 .news-container {
  list-style: none;
  margin: 0;
  padding: 30px 0;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ModuleNewsListGiant.layout-118 .news-container::-webkit-scrollbar {
  display: none;
}

.ModuleNewsListGiant.layout-118 .news-item {
  list-style: none;
  flex: 0 0 auto;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0 6px 30px rgba(51, 51, 51, 0.15);
  cursor: pointer;
  transition: transform 0.3s ease-out, background-color 0.3s ease, box-shadow 0.3s;
}

@media (min-width: 768px) {
  .ModuleNewsListGiant.layout-118 .news-item {
    flex: 0 0 calc((100% - 6.2%) / 3);
    width: calc((100% - 6.2%) / 3);
    max-width: calc((100% - 6.2%) / 3);
    margin-right: 3.1%;
  }

  .ModuleNewsListGiant.layout-118 .news-item:last-child {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .ModuleNewsListGiant.layout-118 .news-item {
    width: 85%;
    margin-right: 20px;
  }

  .ModuleNewsListGiant.layout-118 .charity-carousel {
    padding-bottom: 10px;
  }

  .ModuleNewsListGiant.layout-118 .charity-pagination {
    display: none;
  }
}

.ModuleNewsListGiant.layout-118 .news-item:hover {
  transform: translateY(-8px);
  background-color: #c7a973;
}

.ModuleNewsListGiant.layout-118 .news-item a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.ModuleNewsListGiant.layout-118 .news-tit {
  position: relative;
  padding: 48px 40px 40px;
  min-height: 0;
  text-align: left;
}

.ModuleNewsListGiant.layout-118 .news-tit::before,
.ModuleNewsListGiant.layout-118 .news-tit::after {
  display: none;
  content: none;
}

.ModuleNewsListGiant.layout-118 .news-title {
  font-size: 16px;
  color: #12465c;
  margin: 0;
  line-height: 1.5;
}

.ModuleNewsListGiant.layout-118 .news-item:hover .news-title,
.ModuleNewsListGiant.layout-118 .news-item:hover .news-desc,
.ModuleNewsListGiant.layout-118 .news-item:hover time {
  color: #f5f5f5;
}

.ModuleNewsListGiant.layout-118 time {
  position: relative;
  font-size: 14px;
  color: #768991;
  display: block;
  margin: 12px 0 0;
  padding-bottom: 0;
}

.ModuleNewsListGiant.layout-118 .news-item:hover time::after {
  background-color: #e5e5e5;
}

.ModuleNewsListGiant.layout-118 .news-desc {
  color: #768991;
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0;
  height: 63px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.ModuleNewsListGiant.layout-118 .charity-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 0;
}

.ModuleNewsListGiant.layout-118 .charity-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
  cursor: pointer;
  display: inline-block;
}

.ModuleNewsListGiant.layout-118 .charity-pagination .swiper-pagination-bullet-active {
  background: #999;
}

/* Video — 与首页 .container 板块（投资案例、慈善帮扶）同宽 */
.home-video {
  margin: clamp(1.25rem, 3vw, 1.875rem) auto;
  padding: 0;
  box-sizing: border-box;
}

.home-video-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.home-video-inner video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  vertical-align: top;
  background: #000;
}

/* Page top banner */
.page-top-banner {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12465a center/cover no-repeat;
  background-image: url("/public/static/titbg.jpg");
}

.page-top-banner--gold {
  text-align: center;
}

.page-top-banner--gold .banner-title-cn {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  color: #c7a973;
  letter-spacing: 0.05em;
}

.page-top-banner--gold .banner-title-en {
  margin: 0.5rem 0 0;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: #c7a973;
}

.page-spacer {
  height: 80px;
}

.about-page .about-text .article-content {
  color: #12465a;
  font-size: 18px;
  line-height: 1.75;
}

.about-page .about-text .article-content p {
  margin-bottom: 1.25rem;
}

.about-page .about-text .article-content img {
  max-width: 100%;
  height: auto;
}

.about-page .page-header {
  padding-top: 1rem;
  padding-bottom: 0;
}

.about-lead-title {
  font-size: 28px;
  color: #12465a;
  margin: 0 0 1rem;
  line-height: 1.4;
}

/* Footer：深色样式由 site.css 统一控制 */

/* Article */
.article {
  box-shadow: none;
  border-radius: 0;
  padding: 2rem 0 4rem;
}

.page-header {
  border-bottom: none;
  padding: 2.5rem 0 1.5rem;
}

.page-header h1 {
  font-size: 28px;
}

.page-header .subtitle {
  font-size: 18px;
}

@media (max-width: 991px) {

  .ModuleProductListGiant.layout-104 .pro-item,
  .ModuleNewsListGiant.layout-110 .news-item {
    flex: 0 0 49%;
    width: 49%;
    max-width: 49%;
  }

  .ModuleProductListGiant.layout-125 li.col-lg-3 {
    flex: 0 0 49%;
    width: 49%;
    max-width: 49%;
  }

  .ModuleProductListGiant.layout-104 .pro-item:nth-child(2n),
  .ModuleNewsListGiant.layout-110 .news-item:nth-child(2n),
  .ModuleProductListGiant.layout-125 li.col-lg-3:nth-child(2n) {
    margin-right: 0;
  }

  .ModuleProductListGiant.layout-104.home-investment .pro-item:nth-child(3n) {
    margin-right: 2%;
  }

  .ModuleProductListGiant.layout-104.home-investment .pro-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 126px;
  }

  .site-header {
    background: #fff;
  }

  .header-inner {
    min-height: var(--header-h);
    align-items: center;
    gap: 0;
    padding-inline: clamp(32px, 9vw, 64px);
  }

  .site-header .header-inner>nav {
    align-self: center;
    display: block;
  }

  .logo {
    align-self: center;
  }

  .logo img {
    height: clamp(62px, 10.5vw, 74px);
    max-width: min(180px, 46vw);
    object-fit: contain;
  }

  .nav-toggle {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0;
  }

  .nav-toggle span {
    width: 40px;
    height: 4px;
    margin: 4px 0;
    background: #12465a;
  }

  .site-nav {
    background: #fff;
    line-height: normal;
    top: var(--header-h);
    padding: 0.75rem clamp(32px, 9vw, 64px) 1.25rem;
  }

  .site-nav {
    height: auto;
  }

  .site-nav li {
    display: block;
  }

  .site-nav a {
    display: block;
    line-height: 1.4;
    padding: 0.65rem 0;
    font-size: 16px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-banner {
    min-height: 380px;
  }

  .hero-banner h1 {
    font-size: 26px;
  }

  .about-split {
    grid-template-columns: minmax(0, 1fr);
    width: min(100% - 2rem, var(--max-width));
  }

  .about-split .about-text {
    padding: clamp(1rem, 4vw, 1.5rem) clamp(0.875rem, 3vw, 1.25rem);
  }

  .about-split .about-img img {
    max-height: min(55vh, 420px);
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .home-video {
    margin: clamp(1rem, 4vw, 1.5rem) auto;
  }

  .ModuleProductListGiant.layout-104 .pro-item,
  .ModuleNewsListGiant.layout-110 .news-item {
    width: 100%;
    margin-right: 0 !important;
  }

  .ModuleNewsListGiant.layout-118 .news-tit {
    padding: 24px 20px 20px;
    min-height: 0;
  }

  .about-stats-grid {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-stat-item {
    flex: 1 1 45%;
    border-right: none !important;
    padding: 0.5rem 0;
  }

  .about-stat-item:nth-child(odd) {
    border-right: 1px solid #eee;
  }

  .about-culture .culture-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 96px;
  }

  .header-inner {
    padding-inline: 20px;
  }

  .logo img {
    height: 54px;
    max-width: 58vw;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-toggle span {
    width: 34px;
    height: 3px;
    margin: 4px 0;
  }

  .site-nav {
    padding-inline: 20px;
  }
}

/* About page — stats counters */
.about-stats {
  padding: 3rem 0 2.5rem;
  background: #fff;
}

.about-stats-grid {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.about-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.about-stat-item:not(:last-child) {
  border-right: 1px solid #eee;
}

.about-stat-item .digital-num-item {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 0 0.75rem;
  line-height: 1;
}

.about-stat-item .digital-num {
  font-size: 38px;
  font-weight: 300;
  color: #12465c;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}

.about-stat-item .digital-unit {
  font-size: 14px;
  color: #768991;
  margin-left: 4px;
  position: relative;
  top: 0.35em;
}

.about-stat-item .digital-title {
  font-size: 14px;
  color: #768991;
  margin: 0;
}

/* About page — business culture */
.about-culture {
  padding: 2rem 0 4rem;
}

.about-culture .culture-heading {
  margin: 0 0 2rem;
  line-height: 1.4;
}

.about-culture .culture-heading strong {
  font-size: 28px;
  color: #12465c;
  font-weight: 700;
}

.about-culture .culture-heading-en {
  font-size: 18px;
  color: #768991;
  font-weight: 400;
  margin-left: 0.35em;
}

.about-culture .culture-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 2.5rem 3rem;
}

.about-culture .culture-col {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #768991;
}