body * {
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    PingFangSC-Regular,
    Roboto,
    Helvetica Neue,
    Helvetica,
    Tahoma,
    Arial,
    PingFang SC-Light,
    Microsoft YaHei;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}
.stagger-children > *.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
/* 通用标题样式 */
.section-title {
  position: relative;
  font-family:
    Nimbus Sans,
    Nimbus Sans;
  font-weight: bold;
  font-size: 0.07rem;
  color: #0ea5e9;
  line-height: 0.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.13rem;
}

.section-title span:first-child {
  display: inline-block;
  width: 0.25rem;
  height: 0.02rem;
  background: #0ea5e9;
  border-radius: 52.08rem;
  margin-right: 0.04rem;
}

.section-subtitle {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.25rem;
  color: #0f172a;
  line-height: 0.25rem;
  margin-bottom: 0.22rem;
}

/* 顶部导航 */
.top {
  width: 100%;
  height: 0.5rem;
  background-color: #e6f0f9;
  padding: 0.11rem 0.25rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
}

.top-logo {
  width: 0.33rem;
  height: 0.33rem;
  margin-right: 0.25rem;
}
.top-title {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.16rem;
  color: #2563eb;
  line-height: 0.19rem;
}
.top-subtitle {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.06rem;
  color: #94a3b8;
  line-height: 0.08rem;
  letter-spacing: 4px;
}

.top nav a {
  font-family:
    Noto Sans SC,
    Noto Sans SC;
  font-weight: bold;
  font-size: 0.07rem;
  color: #6b7280;
  line-height: 0.1rem;
  text-decoration: none;
  margin-right: 0.25rem;
  transition: color 0.3s ease;
}

.top nav a:hover {
  color: #2563eb;
  text-underline-offset: 0.05rem;
  text-decoration: underline;
}

.top nav a.active {
  color: #2563eb;
  text-underline-offset: 0.05rem;
  text-decoration: underline;
}
/* 主页 */
.content-section {
  position: relative;
  height: 5.13rem;
  padding-left: 1.92rem;
  background: url(../images/index/top-bg.jpg) no-repeat center center;
  background-size: cover;
  margin-top: 0.5rem;
}

.content-section .title {
  width: 1.71rem;
  height: 0.16rem;
  line-height: 0.16rem;
  background: rgba(14, 165, 233, 0.2);
  border-radius: 52.08rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.3);
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.1rem;
  color: #ffffff;
  text-align: center;
}

.content-section .intro {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.38rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0.17rem 0;
}
.content-section .desc {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.13rem;
  color: #f0f9ff;
  line-height: 0.17rem;
  margin-bottom: 0.25rem;
}
.content-section .btns button {
  width: 0.75rem;
  height: 0.3rem;
  line-height: 0.3rem;
  background: #0ea5e9;
  border-radius: 0.08rem;
  box-shadow:
    0rem 0.04rem 0.05rem -0.03rem rgba(14, 165, 233, 0.3),
    0rem 0.1rem 0.13rem -0.03rem rgba(14, 165, 233, 0.3);
  text-align: center;
  color: #ffffff;
}
.content-section .btns button:nth-child(2) {
  background: transparent;
  border: 0.01rem solid rgba(255, 255, 255, 0.3);
  margin-left: 0.13rem;
  box-shadow: none;
}
/* 关于我们 */
.about-section {
  height: 4.13rem;
  background-color: #f8fafc;
}
.about-section .left {
  position: relative;
}
.about-section .left img {
  position: relative;
  height: 2.16rem;
  z-index: 999;
}
.about-section .left .bottom-img {
  width: 1.67rem;
  height: 1.67rem;
  position: absolute;
  right: -0.3rem;
  bottom: -0.32rem;
  z-index: 0;
}
.about-section .right {
  height: 100%;
  padding: 0.48rem 0.4rem;
}

.about-section .section-intro {
  width: 3.95rem;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.09rem;
  color: #64748b;
  line-height: 0.15rem;
  margin-top: 0.134rem;
}

.about-section .section-num .num-item {
  margin-top: 0.42rem;
  width: 2.19rem;
  height: 0.69rem;
  background: #f0f9ff;
  border-radius: 0.13rem;
  padding: 0.17rem;
}

.about-section .section-num .num {
  font-family:
    Nimbus Sans,
    Nimbus Sans;
  font-weight: bold;
  font-size: 0.19rem;
  color: #0ea5e9;
  line-height: 0.21rem;
}
.about-section .section-num .text {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.08rem;
  color: #475569;
  line-height: 0.13rem;
  margin-top: 0.06rem;
}
.about-section .section-num .num-item:nth-child(2) {
  background: #f1f5f9;
  margin-left: 0.17rem;
}
.about-section .section-num .num-item:nth-child(2) .num {
  color: #1e293b;
}

/* 企业文化 */
.culture-section {
  padding: 0.67rem 1.92rem;
  text-align: center;
}
.culture-section .title {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.19rem;
  color: #0f172a;
  line-height: 0.21rem;
}
.culture-section .subtitle {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.09rem;
  color: #64748b;
  line-height: 0.15rem;
  margin: 0.13rem 0 0.42rem;
}
.culture-list {
  gap: 0.17rem;
}
.culture-list .culture-item {
  background: #f8fafc;
  border-radius: 0.13rem;
  padding: 0.2rem;
}
.culture-list .culture-item:hover {
  box-shadow: 0rem 0.05rem 0.16rem -0.05rem rgba(14, 165, 233, 0.15);
  transition: all 0.3s ease;
}
.culture-list img {
  width: 0.42rem;
  height: 0.42rem;
}
.culture-list .culture-title {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.1rem;
  color: #334155;
  line-height: 0.15rem;
  margin: 0.17rem 0 0.08rem;
}
.culture-list .culture-desc {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.07rem;
  color: #64748b;
  line-height: 0.12rem;
}
/* 业务核心 */
.core-section {
  padding: 0.67rem 1.92rem;
  background: #f1f5f9;
}

.core-section .section-title-right {
  width: 2.25rem;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.09rem;
  color: #64748b;
  line-height: 0.15rem;
}
.core-section .core-list {
  gap: 0.25rem;
  margin-top: 0.542rem;
}
.core-section .core-item {
  box-shadow: 0rem 0.05rem 0.16rem -0.05rem rgba(14, 165, 233, 0.15);
  border-radius: 0.25rem;
  overflow: hidden;
}

.core-section .core-item img {
  width: 100%;
  height: 1.67rem;
  border-radius: 0.25rem 0.25rem 0 0;
}
.core-section .core-item img:hover {
  transform: scale(1.05);
  transition: all 0.5s ease-out;
}
.core-section .core-item .text-box {
  padding: 0.25rem;
}

.core-section .core-item .core-title {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.13rem;
  color: #0f172a;
  line-height: 0.17rem;
}
.core-section .core-item .core-desc {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.08rem;
  color: #64748b;
  line-height: 0.14rem;
  margin: 0.1rem 0 0.17rem;
}
.core-section .core-item .more {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.09rem;
  color: #0ea5e9;
  line-height: 0.15rem;
  cursor: pointer;
}
.core-section .core-item .more:hover {
  transform: translateY(-0.01rem);
  transition: all 0.3s;
}
/* 未来愿景 */
.feature-section {
  text-align: center;
  padding: 0.67rem 1.92rem 1.04rem;
  background: url(../images/index/feature-bg.png) no-repeat center center;
  background-size: cover;
  background-color: #020617;
}

.feature-section .title-box {
  margin-bottom: 0.5rem;
}
.feature-section .title-box .section-title {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.25rem;
  color: #ffffff;
  line-height: 0.25rem;
}
.feature-section .title-box .section-subtitle {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.1rem;
  color: #bae6fd;
  line-height: 0.15rem;
  margin: 0.17rem 0 0.21rem;
}
.feature-section .title-box .line {
  width: 0.5rem;
  height: 0.04rem;
  background: #ffffff;
  border-radius: 52.08rem;
}
.feature-section .feature-list {
  gap: 0.21rem;
}
.feature-section .feature-item {
  width: 1.92rem;
  height: 1.86rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.2);
}
.feature-section .feature-item:hover {
  box-shadow: 0 0 0.2rem rgba(255, 255, 255, 0.3);
}

.feature-section .feature-item .feature-title {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.13rem;
  color: #ffffff;
  line-height: 0.17rem;
  margin-bottom: 0.16rem;
}
.feature-section .feature-item .feature-desc {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.09rem;
  color: #f0f9ff;
  line-height: 0.15rem;
}
.feature-section .feature-item .feature-desc-list .feature-desc-item {
  width: 0.59rem;
  height: 0.26rem;
  line-height: 0.26rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 52.08rem 52.08rem 52.08rem 52.08rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.3);
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.08rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.08rem;
  cursor: pointer;
}
/* 底部 */
.footer {
  padding: 0.67rem 2.3rem 0.33rem 1.92rem;
  background-color: #121212;
}

.footer .footer-left img {
  width: 0.33rem;
  height: 0.33rem;
  margin-right: 0.1rem;
}
.footer .footer-left .title {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.16rem;
  color: #ffffff;
  line-height: 0.19rem;
}
.footer .footer-left .subtitle {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.06rem;
  color: #94a3b8;
  line-height: 0.08rem;
  letter-spacing: 4px;
}

.footer .footer-left .left-bottom {
  width: 2.33rem;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.08rem;
  color: #64748b;
  line-height: 0.14rem;
  margin-top: 0.21rem;
}

.footer .footer-middle {
  margin-left: 0.38rem;
}
.footer .footer-middle .title,
.footer .footer-right .title {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.1rem;
  color: #ffffff;
  line-height: 0.15rem;
}

.footer .menu .item {
  margin-top: 0.13rem;
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.08rem;
  color: #94a3b8;
  line-height: 0.13rem;
}

.footer .menu .item-detail {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 400;
  font-size: 0.08rem;
  color: #94a3b8;
  line-height: 0.13rem;
  margin-top: 0.02rem;
}
.footer .footer-right.menu .item {
  color: #cbd5e1;
}
.footer .line {
  width: 100%;
  height: 0;
  border-bottom: 0.01rem solid rgba(255, 255, 255, 0.05);
  margin: 0.42rem 0 0.21rem;
}
.footer .copyright {
  font-family:
    PingFang SC,
    PingFang SC;
  font-weight: 500;
  font-size: 0.07rem;
  color: #94a3b8;
  line-height: 0.1rem;
}
