:root {
  /* 字体大小变量 - 基于1920px屏幕宽度计算 vw = px / 1920 * 100 */
  --fs-12: ;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-17: 17px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-26: 26px;
  --fs-28: 28px;
  --fs-30: 30px;
  --fs-32: 32px;
  --fs-36: 36px;
  --fs-38: 38px;
  --fs-40: 40px;
  --fs-44: 44px;
  --fs-48: 48px;
  --fs-50: 50px;
  --fs-52: 52px;
  --fs-56: 56px;
  --fs-60: 60px;
  --fs-85: 85px;
  --fs-90: 90px;
  --fs-110: 110px;
  --fs-150: 150px;
  --fs-160: 160px;
  --fs-180: 180px;
  --fs-240: 240px;
  --fs-320: 320px;
  --fs-349: 349px;
}

@media screen and (max-width: 1920px) {
  :root {
    /* 字体大小变量 - 基于1920px屏幕宽度计算 vw = px / 1920 * 100 */
    --fs-12: max(0.625vw, 12px);
    --fs-14: max(0.729vw, 14px);
    --fs-15: max(0.781vw, 15px);
    --fs-16: max(0.833vw, 16px);
    --fs-17: max(0.885vw, 17px);
    --fs-18: max(0.938vw, 18px);
    --fs-20: max(1.042vw, 20px);
    --fs-22: max(1.146vw, 22px);
    --fs-24: max(1.25vw, 24px);
    --fs-26: max(1.354vw, 26px);
    --fs-28: max(1.458vw, 28px);
    --fs-30: max(1.563vw, 30px);
    --fs-32: max(1.667vw, 32px);
    --fs-36: max(1.875vw, 36px);
    --fs-38: max(1.979vw, 38px);
    --fs-40: max(2.083vw, 40px);
    --fs-44: max(2.292vw, 44px);
    --fs-48: max(2.5vw, 48px);
    --fs-50: max(2.604vw, 50px);
    --fs-52: max(2.708vw, 52px);
    --fs-56: max(2.917vw, 56px);
    --fs-60: max(3.125vw, 60px);
    --fs-85: max(4.427vw, 85px);
    --fs-90: max(4.688vw, 90px);
    --fs-110: max(5.729vw, 110px);
    --fs-150: max(7.813vw, 150px);
    --fs-160: max(8.333vw, 160px);
    --fs-180: max(9.375vw, 180px);
    --fs-240: max(12.5vw, 240px);
    --fs-320: max(16.667vw, 320px);
    --fs-349: max(18.177vw, 349px);
  }
}

.layui-input:focus,
.layui-textarea:focus {
  border-color: #052961 !important;
}
.layui-form-select dl dd.layui-this {
  color: #052961;
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 120px;
  transition: 0.3s ease-in-out;
  /* background: rgba(11, 15, 41, 0.95); */
  /* -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px); */
}

.header-wrapper .fixed-logo {
  display: none;
  width: 186px;
}

.header-wrapper.fixed {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-wrapper.sticky {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.header-wrapper.fixed .normal-logo {
  display: none;
}
.header-wrapper.fixed .fixed-logo {
  display: block;
}

.header-wrapper.fixed .nav-item > a {
  color: #262626;
}
.header-wrapper.fixed .nav-item > a:hover {
  color: unset;
}
.header-wrapper.fixed .search-icon img {
  filter: invert(1);
}

.header-wrapper.fixed .nav-item.active::after {
  background-color: #262626;
}

.header-wrapper .header-nav {
  gap: 60px;
}
.header-wrapper .nav-list {
  gap: 60px;
}

.header-wrapper .nav-item {
  position: relative;
  height: 80px;
  line-height: 80px;
}

.header-wrapper .nav-item > a {
  display: block;
  font-size: var(--fs-18);
  font-weight: 500;
  color: #fff;
}
.header-wrapper .nav-item a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.header-wrapper .nav-item .sub-nav-wrap {
  display: none;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  top: 90px;
  background-color: #fff;
  border-radius: 24px;
  max-width: 90%;
}
.header-wrapper .nav-item .sub-nav {
  padding: 28px;
  gap: 28px;
}

.header-wrapper .nav-item .left-mes {
  width: 598px;
  /* padding: 12px 0; */
}

.header-wrapper .nav-item .sub-nav-item {
  padding: 16px 10px;
  border-bottom: 1px solid #efefef;
  line-height: 1;
}

.header-wrapper .nav-item .sub-nav-item.active .arrow-icon {
  transition: all 0.3s;
  opacity: 1;
}

.header-wrapper .nav-item .sub-nav-item.active p {
  display: block;
}

.header-wrapper .nav-item .sub-nav-item h2 {
  font-size: var(--fs-20);
  line-height: 1.8;
  color: #052961;
}
.header-wrapper .nav-item .sub-nav-item p {
  display: none;
  font-size: var(--fs-14);
  color: #999;
}
.header-wrapper .nav-item .sub-nav-item .arrow-icon {
  opacity: 0;
}

.header-wrapper .nav-item .sub-nav .right-img {
  /* padding: 28px 0; */
  width: 400px;
  /* width: 498px; */
}
.header-wrapper .nav-item .sub-nav .right-img img {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-wrapper .nav-item .sub-nav2 {
  padding: 23px;

  line-height: 1;
  gap: 15px;
}
.header-wrapper .nav-item .sub-nav2 .sub-nav-item2 {
  display: block;
  width: 278px;
}
.header-wrapper .nav-item .sub-nav2 img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  border-radius: 16px;
}

.header-wrapper .nav-item .sub-nav2 .nav-content {
  padding: 18px 18px 0;
}

.header-wrapper .nav-item .sub-nav2 h2 {
  font-size: var(--fs-20);
  line-height: 1.4;
  color: #262626;
  font-weight: 600;
}
.header-wrapper .nav-item .sub-nav2 p {
  margin-top: 10px;
  font-size: var(--fs-14);
  color: #6b6b6b;
  line-height: 20px;
}

.header-wrapper .nav-item.active::after {
  content: "";
  position: absolute;
  /* bottom: -2px; */
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background-color: #fff;
}
.header-wrapper .nav-item:hover .normal-sub-nav {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 10px);
}
.header-wrapper .nav-item .normal-sub-nav {
  border-radius: 10px;
  transition: all 0.36s;
  position: absolute;
  top: calc(100% + 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  max-height: 80vh;
  min-width: 180px;
  height: auto;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.2);
  padding: 8px;
}

.header-wrapper .nav-item .normal-sub-nav > a {
  line-height: 1;
  font-size: var(--fs-16);
  color: #262626;
  font-weight: 700;
  transition: all 0.3s;
  display: block;
  padding: 10px 8px;
  text-align: center;
  white-space: nowrap;
  border-radius: 6px;
}
.header-wrapper .nav-item .normal-sub-nav > a:hover {
  color: #052961;

  background-color: rgba(0, 0, 0, 0.05);
}

.header-wrapper .search-icon {
  cursor: pointer;
}
.header-wrapper .search-icon:hover {
  opacity: 0.8;
}

.header-wrapper .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.header-wrapper .mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: 0.3s ease-in-out;
}

/* 头部区域-手机端 */
.mb-header {
  display: none;
  position: sticky;
  z-index: 999;
  top: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
}
.mb-header .top-mes {
  height: 80px;
  padding: 0 20px;
}
.mb-header .top-mes .logo {
  width: 160px;
}
.mb-header .top-mes .search-icon {
  font-size: var(--fs-16);
  color: #000;
  cursor: pointer;
}
.mb-header .top-mes .search-icon p {
  margin-left: 12px;
}
.mb-header .top-mes .search-icon img {
  filter: invert(1);
}

.mb-header .top-mes .cool-menu {
  display: flex;
  align-items: center;
  height: 80px;
}
.mb-header .top-mes .cool-menu .line-wrap {
  cursor: pointer;
  position: relative;
  z-index: 100;
}
.mb-header .top-mes .cool-menu .line-wrap div[class^="line"] {
  transition: all 0.3s ease;
  width: 28px;
  border-top: 2px solid #222;
  margin-bottom: 8px;
}
.mb-header .top-mes .cool-menu .line-wrap div.line3 {
  margin-bottom: 0;
}
.mb-header .top-mes .menu-box {
  position: fixed;
  top: 80px;
  width: 100%;
  height: calc(100vh - 80px);
  left: 100%;
  z-index: 10;
  background-color: #f8f8f8;
  overflow: auto;
  transition: left 0.3s;
}
.mb-header .top-mes .menu-box.active {
  left: 0;
}
.mb-header .top-mes .menu-box .menu-list {
  padding: 20px;
}
.mb-header .top-mes .menu-box .menu-list li {
  position: relative;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav {
  display: none;
  padding: 0 15px;
}
.mb-header .top-mes .menu-box .menu-list li .sub-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
}
.mb-header .top-mes .menu-box .menu-list .menu-item {
  position: relative;
  padding: 15px 0;
  border-bottom: 1px solid #d4d4d4;
  font-size: var(--fs-14);
  color: #333;
  font-weight: 700;
}
.mb-header .top-mes .menu-box .menu-list .menu-item .layui-icon {
  font-weight: 400;
}
.mb-header .top-mes .menu-box .menu-list .menu-item:hover {
  color: #052961;
}

.mask-layer {
  display: none;
  width: 100vw;
  background: #f7f7f7;
  position: fixed;
  z-index: 9999;
}
.mask-layer .icon-wrap:hover {
  cursor: pointer;
  color: #2c63a9;
}
.mask-layer .mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.mask-layer .search-wrapper {
  position: relative;
  z-index: 2;
  padding: 40px 100px;
  background-color: #fff;
}

.mask-layer .search-wrapper .icon-wrap .layui-icon {
  font-size: var(--fs-24);
}

.mask-layer .search-wrapper h3 {
  font-size: var(--fs-24);
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.mask-layer .search-wrapper input {
  width: 40%;
  box-shadow: none;
  border: none;
  /* background: #fff; */
  border-radius: 0;
  color: #808080;
  height: 40px;
  line-height: 40px;
  padding: 0 45px 0 15px;
  text-align: left;
  font-size: var(--fs-12);
  background-color: #f7f7f7;
}
.mask-layer .search-wrapper button {
  width: calc(10% - 20px);
  margin-left: 20px;
  align-self: stretch;
  border: none;
  /* background-color: #f7f7f7; */
  background-color: #2c63a9;
  color: white;
}

/* 通用模块 */
.choose-wrapper {
  padding: 80px 0 227px;
  color: #fff;
}

.choose-wrapper .choose-title {
  margin-bottom: 20px;
}

.choose-wrapper h2 {
  /* font-size: 48px; */
  font-size: var(--fs-36);
  font-weight: 600;
}
.choose-wrapper p {
  /* font-size: 24px; */
  font-size: var(--fs-20);
  line-height: 1.5;
}

.choose-wrapper .outline-btn {
  font-size: var(--fs-24);
  color: #fff;
  border: 1px solid #fff;
  padding: 16px 24px;
  border-radius: 100px;
  gap: 10px;
  max-width: fit-content;
  flex-shrink: 0;
}

/* 顶部 banner */
.top-banner {
  position: relative;
  height: 800px;
}
.top-banner .banner-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 200px;
}

.top-banner .banner-content.center {
  align-items: center;
  text-align: center;
}
.top-banner .banner-content.center p {
  font-size: var(--fs-24);
  width: unset;
}

.top-banner h1 {
  /* font-size: var(--fs-60); */
  font-size: var(--fs-56);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 16px;
}
.top-banner p {
  /* width: calc(655 / 1520 * 100%); */
  width: calc(800 / 1520 * 100%);
  /* font-size: var(--fs-16); */
  font-size: 18px;
  line-height: 1.75;
  color: #fff;
}

.top-banner .more-btn {
  /* font-size: var(--fs-24); */
  font-size: var(--fs-20);
  color: #052961;
  padding: 16px 24px;
  /* padding: 16px; */
  background-color: #fff;
  border-radius: 100px;
  margin-top: 30px;
  width: fit-content;
  transition: all 0.3s;
}

.top-banner .more-btn:hover {
  background-color: #052961;
  color: #fff;
}
/* 首页模块 */
#home-wrapper .home-swiper .swiper-slide {
  /* height: 1000px;  */
  height: 100vh;
}

#home-wrapper .home-swiper .swiper-slide-active .home-swiper-info {
  animation-name: fadeInUp;
}

#home-wrapper .home-swiper .swiper-pagination {
  position: absolute;
  bottom: 207px;
  left: 200px;
  right: 200px;
  text-align: left;
}

#home-wrapper .home-swiper .swiper-pagination-bullet {
  position: relative;
  margin: 0 4px;
  width: 45px;
  height: 2px;
  opacity: 1;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
#home-wrapper .home-swiper .swiper-pagination-bullet::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0;
  height: 100%;
  transition: width 3s;
}
#home-wrapper .home-swiper .swiper-pagination-bullet-active::after {
  background-color: #fff;
  width: 100%;
}

#home-wrapper .home-swiper-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  transform: scale(1.1);
  transition: transform 3s;
}
#home-wrapper .swiper-slide-active .home-swiper-img {
  transform: scale(1);
}

#home-wrapper .home-swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#home-wrapper .home-swiper-info {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 200px;
  /* gap: 40px; */
}
#home-wrapper .home-swiper-info h2 {
  /* font-size: 60px; */
  font-size: var(--fs-48);
  font-weight: 900;
  color: #fff;
  text-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
}

#home-wrapper .home-swiper-info p {
  /* margin: 11px 0 48px; */
  margin: 30px 0;
  /* font-size: 32px; */
  font-size: var(--fs-24);
  color: #fff;
  /* line-height: 1.75; */
  /* max-width: 650px; */
  line-height: 1.5;
  max-width: 600px;
  /* max-width: 800px; */
  text-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
}

#home-wrapper .more-btn {
  /* font-size: 24px; */
  font-size: var(--fs-20);
  font-weight: 600;
  color: #052961;
  background-color: #fff;
  padding: 16px 24px;
  border-radius: 100px;
  gap: 10px;
  max-width: fit-content;
}

#home-wrapper .outline-btn {
  font-size: var(--fs-24);
  color: #fff;
  border: 1px solid #fff;
  padding: 16px 24px;
  border-radius: 100px;
  gap: 10px;
  max-width: fit-content;
  flex-shrink: 0;
}

#home-wrapper .more-btn:hover {
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

#home-wrapper .about-wrapper {
  position: relative;
  /* padding: 130px 218px 150px 255px; */
  padding: 130px 200px;
}

#home-wrapper .about-wrapper .animate-step0 {
  z-index: 15;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

#home-wrapper .about-wrapper .animate-step0 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-wrapper .about-wrapper .animate-step1 {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#home-wrapper .about-wrapper h2 {
  position: relative;
  z-index: 99;
  color: #ebeff6;
  /* font-size: 192px; */
  font-size: var(--fs-160);
  line-height: 1;
  font-family: "Alibaba PuHuiTi 2.0";
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
}
#home-wrapper .about-wrapper .about-container {
  position: relative;
  z-index: 999;
}
#home-wrapper .about-image {
  flex-shrink: 0;
  width: 719px;
  border-radius: 20px;
  visibility: hidden;
}

#home-wrapper .about-image img {
  width: 100%;
  object-fit: cover;
}

#home-wrapper .about-content {
  margin-left: -40px;
}
#home-wrapper .about-content h3 {
  font-size: var(--fs-36);
  font-weight: 600;
  color: #052961;
}

#home-wrapper .about-content p {
  margin: 30px 0;
  font-size: var(--fs-18);
  line-height: 1.8;
  color: #262626;
}
#home-wrapper .about-wrapper .more-btn {
  background-color: #052961;
  color: #fff;
}

#home-wrapper .develop-wrapper {
  padding: 230px;
}
#home-wrapper .develop-wrapper .header {
  text-align: center;
}
#home-wrapper .develop-wrapper h2 {
  /* font-size: 48px; */
  font-size: var(--fs-36);
  color: #fff;
  font-weight: 600;
}

#home-wrapper .develop-wrapper p {
  width: 70%;
  margin: 30px auto 47px;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-20);
  line-height: 1.8;
}

#home-wrapper .develop-wrapper .more-btn {
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: transparent;
  color: #fff;
}

#home-wrapper .develop-wrapper .intro-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

#home-wrapper .develop-wrapper .intro-item {
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  font-size: var(--fs-28);
  color: #fff;
}

#home-wrapper .develop-wrapper .intro-value {
  /* font-size: 48px; */
  font-size: var(--fs-36);
  font-weight: 600;
}

#home-wrapper .section-header .tag {
  font-size: var(--fs-30);
  font-weight: 600;
  color: #fff;
  line-height: 48px;
  /* padding: 10px 32px; */
  padding: 16px 32px;
  line-height: 1;
  border-radius: 100px;
  background-color: #052961;
  width: fit-content;
  margin: 0 auto;
}
#home-wrapper .section-header h2 {
  margin: 10px 0 60px;
  /* font-size: 48px; */
  /* line-height: 72px; */
  font-size: var(--fs-36);
  line-height: 1.5;
  color: #052961;
  text-align: center;
}

#home-wrapper .solution-wrapper {
  /* padding: 190px 0 234px; */
  padding: 120px 0;
}

#home-wrapper .solution-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}
#home-wrapper .solution-item .solution-img {
  border-radius: 20px;
  overflow: hidden;
}

#home-wrapper .solution-item .solution-img img {
  height: 280px;
  object-fit: cover;
  width: 100%;
}

#home-wrapper .solution-item p {
  /* margin-top: 32px; */
  margin-top: 20px;
  text-align: center;
  /* font-size: 28px; */
  font-size: var(--fs-24);
  color: #262626;
}

#home-wrapper .application-wrapper .swiper-slide {
  height: 1000px;
}

#home-wrapper .application-wrapper {
  --gap: 120px;
}

#home-wrapper .application-wrapper .application-content {
  padding: var(--gap);
  padding-bottom: 153px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-radius: 32px;
  height: 100%;
  gap: 30px;
}

#home-wrapper .application-wrapper .application-content h3 {
  font-size: var(--fs-32);
  font-weight: 600;
  line-height: 1.125;
  color: #fff;
  margin-bottom: 20px;
}

#home-wrapper .application-wrapper .application-content p {
  font-size: var(--fs-20);
  line-height: 1.4;
  color: #fff;
}

#home-wrapper .application-swiper .swiper-pagination {
  display: flex;
  align-items: center;
  left: var(--gap);
  right: var(--gap);
  bottom: 35px;
  width: unset;
}

#home-wrapper .application-swiper .swiper-pagination-bullet {
  position: relative;
  flex: 1;
  margin: 0;
  width: unset;
  height: unset;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: var(--fs-24);
  padding-top: 24px;
  border-radius: 0;
  border-top: 4px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  opacity: 1;
}

#home-wrapper .application-swiper .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  transform: translateY(-100%);
  transition: width 3s;
}

#home-wrapper .application-swiper .swiper-pagination-bullet-active::before {
  width: 100%;
  background-color: #fff;
}

/* 
.app-content {
  position: relative;
  z-index: 2;
  padding: 120px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 24px;
}

.app-tabs {
  display: flex;
  gap: 0;
  border-top: 3px solid rgba(255, 255, 255, 0.3);
}

.tab-item {
  flex: 1;
  padding: 10px;
  color: #ffffff;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  border-top: 4px solid transparent;
  transition: 0.3s ease-in-out;
}
.tab-item.active {
  border-top-color: #ffffff;
  font-weight: 600;
}
.tab-item:hover:not(.active) {
  opacity: 0.8;
}

.tab-content {
  display: none;
  color: #ffffff;
}
.tab-content.active {
  display: block;
}
.tab-content h3 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}
.tab-content p {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 40px;
} */

#home-wrapper .product-wrapper {
  /* padding: 117px 0 177px; */
  padding: 120px 0;
}

#home-wrapper .product-wrapper .product-card {
  display: block;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

#home-wrapper .product-wrapper .product-image {
  width: 100%;
  height: 480px;
  min-height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

#home-wrapper .product-wrapper .product-content {
  position: absolute;
  top: 64px;
  left: 64px;
  right: 64px;
}
#home-wrapper .product-wrapper .product-content h3 {
  font-size: var(--fs-40);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}
#home-wrapper .product-wrapper .product-content p {
  font-size: var(--fs-20);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 20px 0;
}

#home-wrapper .product-wrapper .product-link {
  display: block;
  /* padding: 16px 24px; */
  padding: 12px 24px;
  width: fit-content;
  border: 1px solid #fff;
  border-radius: 100px;
  transition: 0.3s ease-in-out;
}
#home-wrapper .product-wrapper .product-link:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.1);
}

#home-wrapper .technology-wrapper {
  padding: 120px 0;
}

#home-wrapper .technology-wrapper .technology-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 33px;
}

#home-wrapper .technology-item {
  position: relative;
  /* height: 560px; */
  padding-bottom: calc(100% * (560 / 395));
  border-radius: 31px;
  overflow: hidden;
}

#home-wrapper .technology-content {
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px;
}
#home-wrapper .technology-content h3 {
  font-family: "Alibaba PuHuiTi 2.0";
  /* font-size: 48px; */
  /* font-size: var(--fs-36); */
  font-size: var(--fs-30);
  font-weight: 700;
  color: #052961;
  margin-bottom: 16px;
}
#home-wrapper .technology-content p {
  /* font-size: var(--fs-28); */
  font-size: var(--fs-24);
  color: #6b6b6b;
}

#home-wrapper .news-wrapper {
  padding: 124px 0 180px;
}

#home-wrapper .news-wrapper .news-card {
  display: block;
}

#home-wrapper .news-wrapper .news-image {
  max-height: 360px;
  background: #ececec;
  border-radius: 32px;
  overflow: hidden;
}
#home-wrapper .news-wrapper .news-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#home-wrapper .news-wrapper .news-content {
  margin-top: 23px;
}

#home-wrapper .news-wrapper .news-date {
  font-size: var(--fs-30);
  font-weight: 600;
  color: #262626;
}

#home-wrapper .news-wrapper p {
  margin-top: 8px;
  font-size: var(--fs-24);
  line-height: 1.5;
  color: #6b6b6b;
}

/* 产品模块 */
#product-wrapper .product-section {
  padding: 60px 0 130px;
}
#product-wrapper .product-filter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#product-wrapper .tab-list {
  gap: 70px;
  margin-bottom: 56px;
  overflow: auto;
}
#product-wrapper .tab-list .tab-item {
  /* font-size: 32px; */
  font-size: var(--fs-30);
  font-weight: 600;
  color: #8f9194;
  background: transparent;
  border-bottom: 3px solid transparent;
  padding: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#product-wrapper .tab-list .tab-item:hover,
#product-wrapper .tab-list .tab-item.active {
  color: #052961;
  border-bottom-color: #052961;
}
#product-wrapper .filter-list {
  gap: 15px;
  margin-bottom: 45px;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 10px;
}
#product-wrapper .filter-list .filter-item {
  font-size: var(--fs-24);
  flex-shrink: 0;
  color: #262626;
  font-weight: 500;
  background-color: #f1f1f1;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#product-wrapper .filter-list .filter-item:hover,
#product-wrapper .filter-list .filter-item.active {
  background-color: #052961;
  color: #fff;
}

#product-wrapper .product-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
#product-wrapper .product-item {
  background: #dde8fa;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding: 30px 40px;
  text-align: center;
  cursor: pointer;
}
#product-wrapper .product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(5, 41, 97, 0.15);
}

#product-wrapper .product-item .product-image {
  height: 251px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#product-wrapper .product-item .product-card-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#product-wrapper .product-item .product-card-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#product-wrapper .product-item h3 {
  font-size: var(--fs-32);
  color: #262626;
  font-weight: 600;
  line-height: 1.5;
}
#product-wrapper .product-item p {
  font-size: var(--fs-16);
  color: #262626;
  line-height: 1.8;
}

/* 产品详情模块 */
#product-detail-wrapper .breadcrumb {
  padding: 20px 0;
  font-size: var(--fs-20);
  color: #8e8e8e;
}
#product-detail-wrapper .breadcrumb a:hover {
  color: #052961;
}

#product-detail-wrapper .breadcrumb span {
  margin: 0 8px;
  color: #262626;
}
#product-detail-wrapper .breadcrumb .current {
  color: #262626;
  cursor: pointer;
}

#product-detail-wrapper .detail-swiper-wrapper {
  margin: 18px 0 74px;
}

#product-detail-wrapper .detail-swiper-wrapper .swiper-wrapper {
  z-index: 9;
}

#product-detail-wrapper .product-image-wrapper {
  position: relative;
}
#product-detail-wrapper .product-image {
  width: calc(1200 / 1680 * 100%);
}

#product-detail-wrapper .product-watermark {
  position: absolute;
  top: 50%;
  /* left: 50%; */
  transform: translateY(-50%);
  font-family: "Alibaba PuHuiTi 2.0", "PingFang SC", sans-serif;
  font-weight: 900;
  /* font-size: 349px; */
  font-size: var(--fs-320);
  line-height: 1;
  /* line-height: 550px; */
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 29%, rgba(179, 179, 179, 1) 79%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
  width: 100%;
}

#product-detail-wrapper .product-main-image {
  position: relative;
  z-index: 2;
  /* width: 640px; */
  /* width: 700px; */
  max-width: 800px;
}

#product-detail-wrapper .product-main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* #product-detail-wrapper .swiper-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 99;
} */

#product-detail-wrapper .prev-btn,
#product-detail-wrapper .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 14px 34px;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border-radius: 100px;
  z-index: 99;
}
#product-detail-wrapper .prev-btn {
  left: 20px;
}

#product-detail-wrapper .next-btn {
  right: 20px;
}
#product-detail-wrapper .prev-btn img,
#product-detail-wrapper .next-btn img {
  width: 28px;
}

#product-detail-wrapper .product-content {
  width: calc(1280 / 1680 * 100%);
  margin: 0 auto;
  text-align: center;
}

#product-detail-wrapper .product-title {
  font-weight: 700;
  font-size: var(--fs-32);
  line-height: 1.4;
  color: #262626;
  margin: 40px 0 30px;
}

#product-detail-wrapper .product-description {
  /* font-size: 20px; */
  /* line-height: 1.8; */
  font-size: var(--fs-18);
  line-height: 1.5;
  color: #262626;
  text-align: center;
}

#product-detail-wrapper .product-features-wrapper {
  padding: 102px 0 87px;
  background-color: #010513;
}

#product-detail-wrapper .features-title {
  font-weight: 600;
  font-size: var(--fs-36);
  /* font-size: 48px; */
  line-height: 1.4;
  background: linear-gradient(180deg, rgba(212, 230, 255, 1) 0%, rgba(0, 82, 195, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
  text-align: center;
}

#product-detail-wrapper .features-subtitle {
  font-size: var(--fs-20);
  line-height: 1.8;
  color: #fff;
  padding: 0 25px;
  text-align: center;
}
#product-detail-wrapper .features-image {
  margin-top: 24px;
}
#product-detail-wrapper .features-image img {
  width: 100%;
  height: auto;
  display: block;
}

#product-detail-wrapper .product-features-cards {
  padding-top: 100px;
}

#product-detail-wrapper .feature-card-content {
  color: #fff;
  font-size: var(--fs-20);
}

#product-detail-wrapper .product-features-cards .feature-card {
  margin-bottom: 120px;
}

#product-detail-wrapper .tech-section .feature-title {
  font-weight: 600;
  font-size: var(--fs-36);
  /* font-size: 48px; */
  line-height: 1.4;
  color: #fff;
}

#product-detail-wrapper .tech-section .feature-desc {
  /* line-height: 1.8; */
  margin: 24px 0;
}

#product-detail-wrapper .section-title {
  font-weight: 600;
  font-size: var(--fs-36);
  /* font-size: 48px; */
  line-height: 1.4;
  color: #fff;
  margin-bottom: 30px;
}

#product-detail-wrapper .specs-table-wrapper {
  /* display: flex;

  justify-content: center;
  flex-wrap: wrap; */

  overflow-x: auto;
}

#product-detail-wrapper .specs-table {
  border-collapse: collapse;
  width: 100%;
}

#product-detail-wrapper .specs-table tbody td {
  border: 1px solid #313645;
  /* padding: 14px 37px; */
  padding: 14px;
  /* font-size: 20px; */
  font-size: var(--fs-16);
  line-height: 1.8em;
  color: #fff;
  background: transparent;
  white-space: nowrap;
}

#product-detail-wrapper .specs-table tbody td:first-child {
  background: #141720;
  font-weight: 600;
  text-align: left;
}

#product-detail-wrapper .specs-table tbody tr {
  cursor: pointer;
}
#product-detail-wrapper .specs-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

#product-detail-wrapper .product-resources {
  margin-top: 118px;
}

#product-detail-wrapper .resource-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

#product-detail-wrapper .resource-item {
  background-color: #141720;
  border-radius: 20px;
  padding: 32px;
  transition: 0.3s ease;
  cursor: pointer;
}

#product-detail-wrapper .resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#product-detail-wrapper .resource-type {
  font-size: var(--fs-28);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

#product-detail-wrapper .resource-name {
  margin: 16px 0 37px;
  font-size: var(--fs-24);
  line-height: 1.4em;
  color: #fff;
}

#product-detail-wrapper .resource-link {
  display: inline-flex;
  gap: 10px;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  font-size: var(--fs-20);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  transition: 0.3s ease;
  width: fit-content;
}

#product-detail-wrapper .resource-link svg {
  width: 24px;
  height: 24px;
}

#product-detail-wrapper .resource-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

/* 应用场景模块 */
#apply-wrapper .apply-overview {
  padding: 140px 0;
}

#apply-wrapper .apply-overview .apply-container {
  gap: 80px;
}

#apply-wrapper .apply-overview .apply-content {
  width: calc(820 / 1680 * 100%);
}

#apply-wrapper .apply-overview .overview-item:not(:last-child) {
  margin-bottom: 40px;
}

#apply-wrapper .apply-overview h2 {
  font-size: var(--fs-40);
  font-weight: 600;
  line-height: 1.2;
  color: #052961;
  margin-bottom: 32px;
}

#apply-wrapper .apply-overview p {
  font-size: var(--fs-20);
  color: #262626;
  line-height: 1.8;
}

#apply-wrapper .apply-overview h4 {
  font-size: var(--fs-24);
  color: #052961;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 4px;
}

#apply-wrapper .apply-overview .apply-image {
  width: calc(780 / 1680 * 100%);
  border-radius: 40px;
  overflow: hidden;
}

#apply-wrapper .apply-overview .apply-image img {
  width: 100%;
}

#apply-wrapper .apply-challenges h2 {
  font-size: var(--fs-40);
  font-weight: 600;
  line-height: 1.2;
  color: #052961;
  text-align: center;
  margin-bottom: 64px;
}

#apply-wrapper .apply-swiper .swiper-slide {
  border-radius: 32px;
  align-self: stretch;
  height: unset;
  overflow: hidden;
}

#apply-wrapper .apply-swiper .swiper-pagination {
  display: flex;
  align-items: center;
  left: 60px;
  right: 60px;
  bottom: 35px;
  width: unset;
}

#apply-wrapper .apply-swiper .swiper-pagination-bullet {
  position: relative;
  flex: 1;
  margin: 0;
  width: unset;
  height: unset;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: var(--fs-24);
  padding-top: 24px;
  border-radius: 0;
  border-top: 4px solid rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  opacity: 1;
}

#apply-wrapper .apply-swiper .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  transform: translateY(-100%);
  transition: width 3s;
}

#apply-wrapper .apply-swiper .swiper-pagination-bullet-active::before {
  width: 100%;
  background-color: #fff;
}

#apply-wrapper .apply-challenges .apply-challenges-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#apply-wrapper .apply-challenges .apply-challenges-content {
  position: relative;
  height: 756px;
  padding: 60px 0 45px;
}

#apply-wrapper .apply-challenges .apply-challenges-tabs {
  position: absolute;
  bottom: 112px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  z-index: 10;
  width: 1559px;
}

#apply-wrapper .apply-challenges .apply-tabs-line {
  width: 100%;
  height: 4px;
}

#apply-wrapper .apply-challenges .apply-tabs-line img {
  width: 100%;
  height: auto;
}

#apply-wrapper .apply-challenges .apply-tabs-buttons {
  display: flex;
  gap: 0;
  width: 100%;
}

#apply-wrapper .apply-challenges .apply-tab-btn {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

#apply-wrapper .apply-challenges .apply-tab-btn span {
  font-weight: 400;
  font-size: var(--fs-24);
  line-height: 1.4em;
  color: #ffffff;
  transition: 0.3s ease-in-out;
}

#apply-wrapper .apply-challenges .apply-tab-btn.active span {
  font-weight: 600;
  color: #ffffff;
}

#apply-wrapper .apply-challenges .apply-tab-btn:hover span {
  color: rgba(255, 255, 255, 0.8);
}

#apply-wrapper .apply-challenges .apply-challenge-content {
  padding: 60px;
  padding-bottom: 153px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-radius: 32px;
  gap: 30px;
  overflow: hidden;
}

#apply-wrapper .apply-challenge-header h3 {
  font-size: var(--fs-32);
  font-weight: 600;
  line-height: 1.125;
  color: #fff;
  margin-bottom: 20px;
}

#apply-wrapper .apply-challenge-header p {
  font-size: var(--fs-20);
  line-height: 1.4;
  color: #fff;
}

#apply-wrapper .apply-challenges .apply-challenge-solution {
  width: 540px;
  padding: 40px 48px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(30px);
  border-radius: 28px;
}

#apply-wrapper .apply-challenges h4 {
  font-size: var(--fs-32);
  color: #052961;
  font-weight: 600;
  line-height: 1.5;
}

#apply-wrapper .apply-challenges .desc {
  margin: 16px 0 12px;
  font-size: var(--fs-16);
  color: #262626;
  line-height: 2;
}

#apply-wrapper .apply-challenges .feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
}

#apply-wrapper .apply-challenges .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 0;
  border-radius: 8px;
}

#apply-wrapper .apply-challenges .feature-item img {
  width: 60px;
  height: 60px;
}

#apply-wrapper .apply-challenges .feature-item p {
  margin-top: 4px;
  font-size: var(--fs-20);
  color: #262626;
  line-height: 2;
}

#apply-wrapper .apply-products {
  margin-top: 112px;
  padding: 107px 0 81px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#apply-wrapper .apply-products .section-title {
  font-weight: 600;
  font-size: var(--fs-40);
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}

#apply-wrapper .detail-swiper-wrapper {
  margin: 18px 0 74px;
}

#apply-wrapper .product-image-wrapper {
  position: relative;
  margin: 30px 0;
}
#apply-wrapper .product-image {
  width: calc(1200 / 1680 * 100%);
}

#apply-wrapper .product-watermark {
  position: absolute;
  top: 50%;
  /* left: 50%; */
  transform: translateY(-50%);
  font-family: "Alibaba PuHuiTi 2.0", "PingFang SC", sans-serif;
  font-weight: 900;
  font-size: var(--fs-320);
  /* line-height: 550px; */
  line-height: 1;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 29%, rgba(179, 179, 179, 1) 79%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  white-space: nowrap;
}

#apply-wrapper .product-main-image {
  position: relative;
  z-index: 2;
  width: 640px;
}

#apply-wrapper .product-main-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#apply-wrapper .swiper-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 3;
}

#apply-wrapper .prev-btn,
#apply-wrapper .next-btn {
  padding: 14px 34px;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border-radius: 100px;
}

#apply-wrapper .prev-btn img,
#apply-wrapper .next-btn img {
  width: 28px;
}

#apply-wrapper .prev-btn:hover,
#apply-wrapper .next-btn:hover {
  transform: translateY(-2px);
}

#apply-wrapper .apply-products .product-card {
  position: relative;
  width: 100%;
  /* height: 787px; */
  background-color: #fff;
  backdrop-filter: blur(30px);
  border-radius: 28px;
  overflow: hidden;
  padding: 52px 64px 72px;
}

#apply-wrapper .apply-products .apply-product-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#apply-wrapper .apply-products .apply-product-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

#apply-wrapper .apply-products .apply-product-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 52px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#apply-wrapper .apply-products .apply-product-watermark {
  position: absolute;
  top: 137px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Alibaba PuHuiTi 2.0", "PingFang SC", sans-serif;
  font-weight: 900;
  font-size: 348.86px;
  line-height: 1.576em;
  text-align: right;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(179, 179, 179, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

#apply-wrapper .apply-products .apply-product-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 593px;
  height: 475px;
  z-index: 2;
}

#apply-wrapper .apply-products .apply-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#apply-wrapper .apply-products .apply-product-nav {
  position: absolute;
  top: 384px;
  left: 64px;
  right: 64px;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

#apply-wrapper .apply-products .apply-product-nav-btn {
  width: 96px;
  height: 55px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(13.76px);
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 11.46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

#apply-wrapper .apply-products .apply-product-nav-btn img {
  width: 28px;
  height: auto;
}

#apply-wrapper .apply-products .apply-product-nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

#apply-wrapper .apply-products .detail-btn {
  display: block;
  margin-top: 10px;
  padding: 16px 32px;
  background-color: #052961;
  border-radius: 100px;
  font-weight: 600;
  font-size: var(--fs-24);
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  margin: 0 auto;
  width: fit-content;
}

#apply-wrapper .apply-products .apply-product-btn:hover {
  background: rgba(5, 41, 97, 0.9);
  transform: translate(-50%, -2px);
}
#apply-wrapper .apply-products .tab-scroll-wrapper {
  position: relative;
  overflow-x: hidden;
  max-width: 960px;
  margin: 0 auto;
}
#apply-wrapper .apply-products .tab-list {
  /* width: calc(960 / 1680 * 100%); */

  margin: 0 auto;
  padding-bottom: 30px;
  /* overflow-x: auto; */
  transition: transform 0.3s ease-in-out;
  /* gap: 56px; */
  gap: 50px;
}

#apply-wrapper .apply-products .tab-list .tab-item {
  font-size: var(--fs-30);
  font-weight: 600;
  color: #8f9194;
  background: transparent;
  border-bottom: 3px solid transparent;
  padding: 10px 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#apply-wrapper .apply-products .tab-list .tab-item:hover,
#apply-wrapper .apply-products .tab-list .tab-item.active {
  color: #052961;
  border-bottom-color: #052961;
}

#support-wrapper .support-contact {
  padding-top: 120px;
}

#support-wrapper .support-contact .contact-intro {
  max-width: 567px;
}

#support-wrapper .support-contact .contact-intro h2 {
  font-size: var(--fs-40);
  color: #052961;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

#support-wrapper .support-contact .contact-intro p {
  font-size: var(--fs-20);
  color: #262626;
  line-height: 1.8;
}

#support-wrapper .support-contact .contact-list {
  flex: 1;
  margin-left: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

#support-wrapper .support-contact .contact-item {
  background-color: #f7f7f7;
  backdrop-filter: blur(40px);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
  cursor: pointer;
}

#support-wrapper .support-contact .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#support-wrapper .support-contact .contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

#support-wrapper .support-contact .contact-info {
  flex: 1;
  min-width: 0;
  margin-right: 12px;
}

#support-wrapper .support-contact .contact-info h3 {
  font-size: var(--fs-20);
  line-height: 1.6;
  color: #6b6b6b;
}

#support-wrapper .support-contact .contact-info p {
  margin-top: 8px;
  font-size: var(--fs-28);
  color: #262626;
  font-weight: 600;
}

#support-wrapper .support-services {
  padding: 158px 0;
}

#support-wrapper .services-header {
  text-align: center;
  margin-bottom: 40px;
}

#support-wrapper .support-services .support-image {
  display: flex;
  align-items: flex-start;
  width: calc(847 / 1680 * 100%);
  position: relative;
  gap: 20px 47px;
}

#support-wrapper .support-services .support-image .left-img {
  border-radius: 20px;
  overflow: hidden;
}
#support-wrapper .support-services .support-image .right-img {
  border-radius: 20px;
  overflow: hidden;
  align-self: flex-end;
}

#support-wrapper .support-services .support-image .timar-logo {
  position: absolute;
  top: 53px;
  right: 0;
}

#support-wrapper .support-services .support-content {
  padding: 52px 0;
  width: calc(693 / 1680 * 100%);
}

#support-wrapper .support-content h2 {
  font-weight: 600;
  font-size: var(--fs-40);
  color: #052961;
  line-height: 1.2;
  margin-bottom: 24px;
}

#support-wrapper .support-content .extra-desc {
  margin: 20px 0 40px;
  font-size: var(--fs-20);
  color: #262626;
  line-height: 1.8;
}

#support-wrapper .support-services .service-item {
  background-color: #f7f7f7;
  border-radius: 20px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.3s ease;
  cursor: pointer;
}
#support-wrapper .support-services .service-item:not(:last-child) {
  margin-bottom: 20px;
}

#support-wrapper .support-services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#support-wrapper .support-services .service-item h3 {
  font-size: var(--fs-24);
  font-weight: 600;
  color: #262626;
  line-height: 1.4;
}

#support-wrapper .support-services .service-item p {
  font-size: var(--fs-16);
  color: #6b6b6b;
  line-height: 2;
}

#support-wrapper .support-customize {
  padding: 109px 160px 79px;
  gap: 30px 160px;
}

#support-wrapper .support-customize h2 {
  font-size: var(--fs-40);
  color: #052961;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

#support-wrapper .support-customize .customize-intro {
  padding-top: 90px;
  width: calc(660 / 1600 * 100%);
}

#support-wrapper .support-customize .customize-intro p {
  font-size: var(--fs-20);
  color: #262626;
  line-height: 2;
}

#support-wrapper .support-customize .customize-form {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 60px;
}

#support-wrapper .customize-form .form-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#support-wrapper .customize-form .form-item:not(:last-child) {
  margin-bottom: 24px;
}

#support-wrapper .form-item label {
  font-size: var(--fs-20);
  color: #262626;
  line-height: 1.6;
}

#support-wrapper .form-item input,
#support-wrapper .form-item select,
#support-wrapper .form-item textarea {
  width: 100%;
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 8px 16px;
  color: #262626;
  font-size: var(--fs-20);
  line-height: 1.6;
  transition: 0.3s ease;
}

#support-wrapper .form-item input::placeholder,
#support-wrapper .form-item textarea::placeholder {
  color: #a8a8a8;
}

#support-wrapper .form-item input:focus,
#support-wrapper .form-item select:focus,
#support-wrapper .form-item textarea:focus {
  background-color: #ebebeb;
  box-shadow: 0 0 0 2px rgba(5, 41, 97, 0.1);
}

#support-wrapper .form-item textarea {
  resize: vertical;
  min-height: 120px;
}

#support-wrapper .customize-form .submit-btn {
  margin-top: 36px;
  width: 100%;
  background-color: #052961;
  border-radius: 12px;
  padding: 0 16px;
  height: 56px;
  font-size: var(--fs-24);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

#support-wrapper .form-submit-btn:hover {
  background-color: #041f4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 41, 97, 0.3);
}

/* 技术模块 */
#technology-wrapper .top-banner p {
  font-size: var(--fs-24);
  width: calc(500 / 1520 * 100%);
}
.common-wrapper .tech-section {
  position: relative;
  background: #010616;
}
.common-wrapper .tech-section .tech-title {
  font-weight: 600;
  font-size: var(--fs-56);
  line-height: 1.4;
  text-align: center;
  background: linear-gradient(180deg, rgba(212, 230, 255, 1) 19%, rgba(0, 82, 195, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 80px;
}

/* 特性卡片 - 左图右文 */
.common-wrapper .tech-section .feature-item {
  gap: 56px;
  padding: 120px 0;
}

/* 反向布局 - 右图左文 */
.common-wrapper .tech-section .feature-item.reverse {
  flex-direction: row-reverse;
}

.common-wrapper .tech-section .feature-image {
  flex: 1;
  width: calc(812 / 1680 * 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.common-wrapper .tech-section .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-wrapper .tech-section .feature-content {
  flex: 1;
  min-width: 0;
}

.common-wrapper .tech-section .feature-title {
  /* font-size: 48px; */
  font-size: var(--fs-36);
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}

.common-wrapper .tech-section .feature-desc {
  margin-top: 16px;
  /* font-size: 24px; */
  /* font-size: 22px; */
  font-size: var(--fs-18);
  line-height: 1.6;
  /* line-height: 1.667; */
  color: #fff;
}

/* 关于我们模块 */
#about-wrapper .top-banner p {
  font-size: var(--fs-24);
  width: unset;
}

#about-wrapper .brand-philosophy {
  padding: 90px 0 125px;
}

#about-wrapper .philosophy-header {
  text-align: center;
  margin-bottom: 44px;
}

#about-wrapper .philosophy-title-en {
  font-weight: 600;
  /* font-size: 48px; */
  font-size: var(--fs-36);
  line-height: 1.4;
  color: #052961;
  margin-bottom: 22px;
}

#about-wrapper .philosophy-title-zh {
  font-weight: 600;
  /* font-size: 40px; */
  font-size: var(--fs-30);
  line-height: 1.4;
  color: #262626;
}

#about-wrapper .philosophy-visual {
  position: relative;
  height: 520px;
  border-radius: 24px;
  background-color: #adadad;
}

#about-wrapper .philosophy-formula {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 83px;
  z-index: 10;
}

#about-wrapper .formula-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: var(--fs-56);
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

#about-wrapper .zh-text {
  font-weight: 400;
  font-size: var(--fs-40);
}

#about-wrapper .company-intro {
  margin-top: 43px;
  /* font-size: 24px; */
  font-size: var(--fs-20);
  line-height: 1.6;
  color: #6b6b6b;
  padding-left: 60px;
  gap: 30px;
}

#about-wrapper .company-intro-text {
  width: calc(1046 / 1680 * 100%);
}

#about-wrapper .develop-wrapper {
  padding: 85px 0 160px;
}

#about-wrapper .develop-wrapper .develop-info {
  width: calc(744 / 1680 * 100%);
}

#about-wrapper .develop-wrapper .develop-title {
  font-weight: 600;
  /* font-size: 48px; */
  font-size: var(--fs-36);
  line-height: 1.4;
  color: #052961;
}

#about-wrapper .develop-wrapper .develop-desc {
  /* margin: 16px 0 60px; */
  margin: 30px 0;
  /* font-size: 24px; */
  font-size: var(--fs-20);
  line-height: 1.667;
  color: #6b6b6b;
}

#about-wrapper .develop-images {
  flex: 1;
  min-width: 0;
  margin-left: 80px;
  display: grid;
  align-items: flex-end;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

#about-wrapper .develop-image {
  position: relative;
  border-radius: 21.47px;
  overflow: hidden;
  background: #cdcdcd;
}

#about-wrapper .develop-image:nth-child(even) {
  height: 322px;
}

#about-wrapper .develop-image:nth-child(odd) {
  height: 386px;
}

#about-wrapper .develop-image:last-child {
  align-self: flex-start;
}

#about-wrapper .develop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#about-wrapper .develop-wrapper .intro-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
  font-size: var(--fs-20);
  line-height: 1.8;
  color: #262626;
}

#about-wrapper .intro-value {
  /* margin-bottom: 36px; */
  margin-bottom: 20px;
  font-weight: 600;
  font-size: var(--fs-36);
  line-height: 1.4;
  color: #052961;
}

#about-wrapper .global-coverage {
  position: relative;
  background-color: #fff;
  padding: 120px 0;
}

#about-wrapper .global-coverage-header {
  text-align: center;
  margin-bottom: 76px;
}
#about-wrapper .global-coverage-header h3 {
  font-weight: 600;
  /* font-size: 48px; */
  font-size: var(--fs-36);
  line-height: 1.4;
  color: #052961;
  text-align: center;
}

#about-wrapper .global-coverage-header p {
  margin-top: 16px;
  font-size: var(--fs-24);
  line-height: 1.6;
  color: #6b6b6b;
}

#about-wrapper .global-coverage .comapny-list {
  display: grid;
  /* grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px; */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

#about-wrapper .global-coverage .company-item {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 40px 50px -10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

#about-wrapper .global-coverage .company-item .company-img img {
  width: 100%;
}

#about-wrapper .global-coverage .company-item .company-info {
  padding: 22px 22px 33px;
  text-align: center;
}

#about-wrapper .global-coverage .company-item .company-info h4 {
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.667;
  color: #262626;
}

#about-wrapper .global-coverage .company-item .company-info p {
  margin-top: 10px;
  font-size: var(--fs-16);
  line-height: 1.5;
  color: #6b6b6b;
}

/* 下载模块 */
#download-wrapper .download-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 1000px;
}

#download-wrapper .download-box .download-content {
  max-width: 780px;
  text-align: center;
}

#download-wrapper .download-box .download-title {
  font-size: var(--fs-60);
  color: #fff;
}

#download-wrapper .download-box .download-description {
  margin: 25px auto;
  font-size: var(--fs-20);
  line-height: 1.6;
  color: #fff;
}

#download-wrapper .search-wrapper {
  padding: 16px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(53.3px);
}

#download-wrapper .search-box {
  position: relative;

  padding: 8px 16px;
  background: #ffffff;
  border-radius: 16px;
}

#download-wrapper .search-textarea {
  width: 100%;
  height: 100px;
  resize: none;
  font-size: var(--fs-18);
  line-height: 1.6;
  color: #000;
}

#download-wrapper .search-textarea::placeholder {
  color: #ccc;
}

#download-wrapper .download-search-btn {
  width: 32px;
  height: 32px;
  background-color: #052961;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}
#download-wrapper .download-search-btn svg {
  width: 16px;
  height: 16px;
}

#download-wrapper .download-search-btn:hover {
  background: #0a54c7;
  transform: scale(1.05);
}

#download-wrapper .search-suggestions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
#download-wrapper .suggestions-label {
  font-size: var(--fs-16);
  line-height: 1.75;
  color: #fff;
}

#download-wrapper .suggestions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

#download-wrapper .suggestion-tag {
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 100px;
  font-weight: 600;
  font-size: var(--fs-16);
  line-height: 1.4;
  color: #fff;
  transition: all 0.3s ease;
}

#download-wrapper .suggestion-tag:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* ========== Hero 区域 ========== */
#download-wrapper2 .download-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 482px;
}

#download-wrapper2 .download-heading-title {
  font-size: var(--fs-60);
  color: #fff;
  line-height: 80px;
  font-weight: 600;
  margin-bottom: 20px;
}

#download-wrapper2 .search-box {
  position: relative;
  width: 718px;
  height: 56px;
  background-color: #fff;
  border-radius: 8px;
  padding: 0 16px;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

#download-wrapper2 .search-box:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#download-wrapper2 .search-input {
  flex: 1;

  font-size: var(--fs-20);
  line-height: 1.6;
  color: #262626;
}

#download-wrapper2 .search-input::placeholder {
  color: #999;
}

#download-wrapper2 .search-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#download-wrapper2 .search-icon:hover {
  transform: scale(1.1);
}

#download-wrapper2 .download-detail {
  /* padding: 62px 320px 100px; */
  padding: 62px 16% 100px;
}

#download-wrapper2 .filter-wrapper .filter-title {
  font-size: var(--fs-32);
  color: #262626;
  font-weight: 600;
}

#download-wrapper2 .filter-wrapper .filter-list {
  display: flex;
  gap: 24px;
}

#download-wrapper2 .file-list {
  margin-top: 20px;
}

#download-wrapper2 .file-item {
  /* padding: 32px 0; */
  padding: 30px 20px;
  border-bottom: 1px solid #eee;
  background: #fff;
  transition: all 0.3s ease;
  font-size: var(--fs-24);
  cursor: pointer;
  color: #262626;
}

#download-wrapper2 .file-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

#download-wrapper2 .file-info {
  flex: 1;
  min-width: 0;
  margin: 0 28px;
}
#download-wrapper2 .file-info .file-name {
  margin-left: 20px;
  flex: 1;
}

#download-wrapper2 .file-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

#download-wrapper2 .download-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#download-wrapper2 .download-icon:hover {
  transform: scale(1.1);
}
#contact-wrapper .top-banner h1 {
  color: #052961;
}
#contact-wrapper .top-banner p {
  color: #6b6b6b;
  font-size: var(--fs-24);
}

#contact-wrapper .address-section {
  padding: 92px 0;
}

#contact-wrapper .address-section h2 {
  font-size: var(--fs-40);
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  color: #052961;
  margin-bottom: 40px;
}

#contact-wrapper .city-tab {
  flex-shrink: 0;
  padding: 0 40px;
  height: 48px;
  border-radius: 100px;
  font-size: var(--fs-24);
  background-color: #052961;
  color: #fff;
  cursor: pointer;
}
#contact-wrapper .address-list .address-item {
  padding: 32px 0;
  border-bottom: 1px solid #eee;
  gap: 30px 270px;
}

#contact-wrapper .contact-item {
  font-size: var(--fs-20);
  /* line-height: 48px; */
  color: #262626;
  gap: 18px;
}

#contact-wrapper .contact-item:not(:last-child) {
  margin-bottom: 12px;
}

#contact-wrapper .contact-form-section {
  padding: 81px 0 105px;
}

#contact-wrapper .contact-form-left {
  width: calc(702 / 1680 * 100%);
  padding-top: 48px;
  color: #fff;
  font-weight: 600;
}

#contact-wrapper .contact-form-title {
  font-size: var(--fs-40);
  line-height: 1.2;
}

#contact-wrapper .contact-form-subtitle {
  font-weight: 600;
  font-size: var(--fs-24);
  /* line-height: 2; */
  line-height: 1.5;
  margin: 8px 0 31px;
}

#contact-wrapper .contact-form-description {
  font-size: var(--fs-20);
  color: #fff;
  font-weight: 400;
  line-height: 1.6;
}

#contact-wrapper .contact-form-right {
  width: calc(905 / 1680 * 100%);
  background-color: #fff;
  border-radius: 24px;
  padding: 60px 40px;
}

#contact-wrapper .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#contact-wrapper .contact-form-row {
  display: flex;
  gap: 40px;
}

#contact-wrapper .contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

#contact-wrapper .contact-form-label {
  font-size: var(--fs-20);
  line-height: 1.6;
  color: #262626;
}

#contact-wrapper .contact-form-input,
#contact-wrapper .contact-form-select,
#contact-wrapper .contact-form-textarea,
#contact-wrapper .layui-input {
  width: 100%;
  padding: 8px 16px;
  background-color: #f4f4f4;
  border-radius: 8px;
  /* font-size: 20px; */
  font-size: var(--fs-18);
  color: #262626;
  transition: all 0.3s ease;
}

#contact-wrapper .contact-form-input::placeholder,
#contact-wrapper .contact-form-select::placeholder,
#contact-wrapper .contact-form-textarea::placeholder {
  color: #a8a8a8;
}

#contact-wrapper .contact-form-input:focus,
#contact-wrapper .contact-form-select:focus,
#contact-wrapper .contact-form-textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 2px #052961;
}

#contact-wrapper .contact-form-textarea {
  height: 120px;
  padding: 8px 16px;
  resize: vertical;
}

#contact-wrapper .contact-form-submit {
  width: 100%;
  height: 56px;
  background-color: #052961;
  border-radius: 12px;
  font-size: var(--fs-24);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#contact-wrapper .contact-form-submit:hover {
  background: #041f4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 41, 97, 0.3);
}

#contact-wrapper .contact-form-submit:active {
  transform: translateY(0);
}

#news-wrapper .top-banner p {
  font-size: var(--fs-24);
  width: calc(779 / 1920 * 100%);
}

#news-wrapper .news-main-content {
  padding: 105px 0 95px;
}

#news-wrapper .pagination-wrapper {
  /* background-color: #f8f8f8; */
}

#news-wrapper .news-featured {
  margin-bottom: 110px;
  background-color: #fff;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  /* font-size: 20px; */
  font-size: var(--fs-18);
}

#news-wrapper .news-featured:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

#news-wrapper .news-featured-image {
  position: relative;
  width: calc(616 / 1680 * 100%);
  flex-shrink: 0;
  border-radius: 24px;
  overflow: hidden;
}

#news-wrapper .news-featured-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

#news-wrapper .news-featured:hover .news-featured-image img {
  transform: scale(1.05);
}
#news-wrapper .news-featured-card:hover .news-featured-title {
  color: #052961;
}

#news-wrapper .news-featured-content {
  padding: 20px 40px;
}

#news-wrapper .news-featured-date {
  line-height: 1.4;
  color: #999;
}

#news-wrapper .news-featured-title {
  margin: 24px 0 12px;
  font-weight: 600;
  /* font-size: 36px; */
  font-size: var(--fs-30);
  line-height: 1.4;
  color: #262626;
  transition: color 0.3s ease;
}

#news-wrapper .news-featured-description {
  line-height: 1.67;
  color: #999;
}

#news-wrapper .news-featured-link {
  /* margin-top: 60px; */
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  /* font-size: 24px; */

  line-height: 1.4;
  color: #052961;
  border-radius: 58px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#news-wrapper .news-featured-link:hover {
  gap: 16px;
}

#news-wrapper .news-featured-link-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

#news-wrapper .news-featured-link:hover .news-featured-link-icon {
  transform: translateX(4px);
}

#news-wrapper .news-recent-header {
  margin-bottom: 36px;
}

#news-wrapper .news-recent-title {
  /* font-size: 48px; */
  font-size: var(--fs-36);
  color: #052961;
  font-weight: 600;
  line-height: 1.4;
}

#news-wrapper .news-view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--fs-20);
  line-height: 1.4;
  color: #052961;
}

#news-wrapper .news-view-more:hover {
  gap: 16px;
}

#news-wrapper .news-view-more-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

#news-wrapper .news-view-more:hover .news-view-more-icon {
  transform: translateX(4px);
}

#news-wrapper .news-recent-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

#news-wrapper .news-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

#news-wrapper .news-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

#news-wrapper .news-card-image {
  border-radius: 24px;
  overflow: hidden;
}

#news-wrapper .news-card-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

#news-wrapper .news-card:hover .news-card-image img {
  transform: scale(1.05);
}

#news-wrapper .news-card-content {
  /* padding: 32px 0; */
  padding: 32px 20px;
}

#news-wrapper .news-card-date {
  /* font-size: 20px; */
  font-size: var(--fs-18);
  line-height: 1.4;
  color: #999;
}

#news-wrapper .news-card-title {
  /* font-size: 28px; */
  font-size: var(--fs-24);
  font-weight: 600;
  line-height: 1.4;
  color: #262626;
  margin: 12px 0;
  transition: color 0.3s ease;
}

#news-wrapper .news-card:hover .news-card-title {
  color: #052961;
}

#news-wrapper .news-card-description {
  /* font-size: 20px; */
  font-size: var(--fs-18);
  line-height: 1.4;
  color: #999;
}

#news-wrapper .news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* font-size: 20px; */
  font-size: var(--fs-18);
  line-height: 1.4;
  color: #052961;
  margin-top: 32px;
}

#news-wrapper .news-card-link:hover {
  gap: 16px;
}

#news-wrapper .news-card-link-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

#news-wrapper .news-card-link:hover .news-card-link-icon {
  transform: translateX(4px);
}

#news-wrapper .recent-news {
  padding: 96px 0 68px;
}
#news-wrapper .recent-news-title {
  font-size: var(--fs-48);
  color: #262626;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  margin: 96px 0 70px;
}

#news-wrapper .recent-news .news-item {
  position: relative;
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
#news-wrapper .recent-news .news-item:not(:last-child) {
  margin-bottom: 40px;
}

#news-wrapper .news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

#news-wrapper .news-item-content {
  flex: 1;
  padding: 32px 40px;
  padding-right: 100px;
  /* font-size: 20px; */
  font-size: var(--fs-18);
}

#news-wrapper .news-item-image {
  flex-shrink: 0;
  width: calc(590 / 1680 * 100%);
  overflow: hidden;
  background-color: #e8e8e8;
}
#news-wrapper .news-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#news-wrapper .news-item-date {
  line-height: 1.4;
  color: #999999;
}

#news-wrapper .news-item-title {
  font-weight: 600;
  /* font-size: 32px; */
  font-size: var(--fs-30);
  line-height: 1.4;
  color: #262626;
  margin: 12px 0;
  transition: color 0.3s ease;
}

#news-wrapper .news-item:hover .news-item-title {
  color: #052961;
}

#news-wrapper .news-item-desc {
  line-height: 1.4;
  color: #999;
}

#news-wrapper .news-item-link {
  position: absolute;
  right: 40px;
  top: 50px;
  transition: all 0.3s ease;
}

#news-wrapper .news-item-link svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

#news-wrapper .news-item:hover .news-item-link svg {
  transform: translateX(4px);
}

#news-detail-wrapper .news-detail {
  padding: 70px 0;
  /* font-size: 20px; */
  font-size: var(--fs-18);
}

#news-detail-wrapper .news-detail .news-header {
  /* padding-bottom: 37px; */
  padding-bottom: 30px;
}

#news-detail-wrapper .news-detail .news-header h4 {
  color: #999;
}

#news-detail-wrapper .news-detail .news-header h2 {
  /* font-size: 36px; */
  font-size: var(--fs-30);
  font-weight: 600;
  margin-top: 13px;
}

#news-detail-wrapper .news-detail .news-content p {
  line-height: 1.5;
  margin-bottom: 36px;
}

#news-detail-wrapper .news-detail .news-content h3 {
  font-size: var(--fs-30);
  color: #262626;
  margin-bottom: 16px;
}
#news-detail-wrapper img {
  border-radius: 24px;
  margin-bottom: 36px;
}

/* 底部 */
.pc-footer .footer-top {
  padding: 50px 0 60px;
}

.pc-footer .footer-top .footer-logo {
  display: block;
  width: 186px;
}

.pc-footer .footer-center dt {
  font-size: var(--fs-20);
  font-weight: 600;
  margin-bottom: 29px;
  color: #262626;
}

.pc-footer .footer-center dd:not(:last-child) {
  margin-bottom: 17px;
}
.pc-footer .footer-center dd {
  /* font-size: 18px; */
  font-size: var(--fs-16);
  color: #262626;
}
.pc-footer .footer-center dd a:hover {
  color: #052961;
}
.pc-footer .footer-links {
  gap: 90px;
  align-items: stretch;
}
.pc-footer .footer-contact {
  width: calc(500 / 1680 * 100%);
  /* font-size: 18px; */
  font-size: var(--fs-16);
  color: #262626;
}

.pc-footer .footer-contact .contact-item:not(:last-child) {
  margin-bottom: 24px;
}

.pc-footer .footer-contact .contact-item > div:first-child {
  margin-bottom: 12px;
}

.pc-footer .footer-contact .contact-item span {
  flex-shrink: 0;
  font-weight: 600;
  margin-right: 20px;
}
.pc-footer .footer-contact .contact-item p {
  /* font-size: 18px; */
  font-size: var(--fs-16);
  color: #262626;
  line-height: 1.4;
}

.pc-footer .footer-bottom {
  margin-top: 44px;
  border-top: 1px solid #e8e8e8;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-16);
  color: #6b6b6b;
}

.pc-footer .footer-bottom a:hover {
  color: #052961;
}

/* 分页 */
.pagination-wrapper {
  padding-bottom: 100px;
}
.pagination-wrapper .jump-btn {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #dcdcdc;
  color: #052961;
  cursor: pointer;
  margin: 0 5px;
}
.pagination-wrapper .jump-btn:hover,
.pagination-wrapper .jump-btn.active {
  background-color: #052961;
  color: #fff;
}

.pagination-wrapper li {
  margin: 0 5px;
  font-size: var(--fs-16);
  color: #000;
  transition: all 0.3s;
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 4px;
}
.pagination-wrapper li a {
  display: block;
  padding: 0 4px;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.pagination-wrapper li:hover,
.pagination-wrapper li.active {
  background-color: #052961;
  color: #fff;
}

.pagination-wrapper li a:hover {
  color: currentColor;
}

.page-box {
  margin-bottom: 70px;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.page-box > a {
  padding: 18px 10px;
  font-size: var(--fs-16);
  color: #333;
  width: 48%;
}
.page-box > a .layui-icon-left {
  margin-right: 14px;
}
.page-box > a .layui-icon-right {
  margin-right: 14px;
}
.page-box > a:hover {
  color: #fff;
  background-color: #052961;
  border-radius: 4px;
}
