@import url("../css/common.css");

.page {
  /* max-width: var(--page-max); */
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #fff;
}
.topCont{
  min-height: 690px;
  background: linear-gradient(to bottom right, #eafffb, #b0effd);
}
.centerConts{
  max-width: var(--content);
  width: 100%;
  margin: 0 auto;
}
/* —— 顶栏 —— */
.site-header {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  position: relative;
  z-index: 20;
  height: 64px;
  padding: 0 48px 0 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #efefef; */
}

.site-header__logo {
  width: 146.493px;
  height: 44px;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: stretch;
  height: 64px;
}

.site-nav__item {
  position: relative;
  width: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--text-body);
  opacity: 0.8;
  cursor: pointer;
  user-select: none;
}

.site-nav__item--active {
  font-weight: 600;
  opacity: 1;
}

.site-nav__item--dropdown .site-nav__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-nav__chevron {
  width: 10px;
  height: 10px;
  object-fit: contain;
  opacity: 0.8;
}

.site-nav__underline {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 28px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #93e8ff 0%, #5ec9ea 100%);
  pointer-events: none;
}

.site-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* min-width: 160px; */
  padding: 8px 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  z-index: 30;
}

.site-nav__dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-body);
  white-space: nowrap;
}

.site-nav__dropdown a:hover {
  background: #34D5EB;
  color: #fff;
}

.site-nav__item--dropdown:hover .site-nav__dropdown {
  display: block;
}

/* —— Hero —— */
.hero {
  width: 100%;
  min-width: 0;
  position: relative;
  min-height: 624px;
  /* padding: 0 48px 0 80px; */
  box-sizing: border-box;
  display: flow-root;
  /* 勿用 overflow:hidden：窄屏时 inner 比可视区宽会裁掉右侧插图 */
  /* background: linear-gradient(to bottom right, #fff, #c2f4ff); */
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  min-height: 600px;
  margin: 0 auto;
  box-sizing: border-box;
}
.hero__inner1{
  padding: 0 48px 0 80px;
}
.hero__inner2{
  padding: 0 48px 0 80px;
}
.hero__inner3{
  padding: 0 48px 0 8px;
}

.hero__copy {
  float: left;
  width: 791px;
  padding-top: 195px;
  color: var(--text-primary);
}

.hero__title {
  margin: 0;
  font-family: "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 74px;
  white-space: nowrap;
}

.hero__subtitle {
  margin: 0;
  font-family: "Alibaba PuHuiTi", "PingFang SC", sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 74px;
  white-space: nowrap;
}

.hero__desc {
  margin: 24px 0 0;
  max-width: 732px;
  font-family: "Alibaba PuHuiTi", "PingFang SC", sans-serif;
  font-size: 22px;
  line-height: 1.45;
  opacity: 0.8;
  white-space: nowrap;
}

.hero__visual {
  position: absolute;
  right: 0;
  top: 0;
  width: min(644px, 100%);
  max-width: 644px;
  height: auto;
  padding-top: 65px;
  box-sizing: border-box;
}

.hero__visual-img {
  width: 100%;
  max-width: 644px;
  height: auto;
  display: block;
}
.hero__visual2 {
  position: absolute;
  right: 0;
  top: 40px;
  width: min(695px, 100%);
  max-width: 695px;
  height: auto;
  padding-top: 65px;
  box-sizing: border-box;
}

.hero__visual-img2 {
  width: 100%;
  max-width: 695px;
  height: auto;
  display: block;
}
.hero__visual3 {
  position: absolute;
  right: 0;
  top: 0;
  width: min(644px, 100%);
  max-width: 644px;
  height: auto;
  padding-top: 126px;
  box-sizing: border-box;
}

.hero__visual-img3 {
  width: 100%;
  max-width: 644px;
  height: auto;
  display: block;
}




.hero__carousel {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  /* background-color: #efefef; */
}

.hero__carousel-track {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  height: 31px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
}

.hero__carousel-bar {
  display: none;
  width: 18px;
  height: 5px;
  border-radius: 2.5px;
  background: #fdfdfe;
}

.hero__carousel-dot {
  display: block;
  width: 5px;
  height: 5px;
  background: #fdfdfe;
  border-radius: 2.5px;
}

.hero__carousel-dot img {
  width: 5px;
  height: 5px;
}

.hero__carousel-btn {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}

.hero__carousel-btn.is-active .hero__carousel-dot {
  display: none;
}

.hero__carousel-btn.is-active .hero__carousel-bar {
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* —— 服务介绍 —— */
.services {
  position: relative;
  padding: 72px var(--gutter) 80px;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services__head {
  text-align: center;
  margin-bottom: 34px;
}

.services__en {
  margin: 0 auto;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-body);
  opacity: 0.15;
  line-height: 45px;
}

.services__title {
  margin: 0px 0 26px 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #476c90;
  line-height: 45px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 2px 0 rgba(120, 150, 182, 0.55), 0 3px 8px rgba(71, 108, 144, 0.18);
}

.services__divider {
  width: 100%;
  max-width: 122px;
  margin: 0 auto;
}

.services__divider img {
  width: 100%;
  height: auto;
}

.services__intro {
  margin: 40px auto 56px;
  max-width: 100%;
  text-align: center;
  font-size: 24px;
  line-height: 44px;
  color: #476c90;
}

.services__intro p {
  margin: 0;
}

.services__intro strong {
  font-weight: 600;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.services__tab {
  width: 360px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  outline: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.services__tab:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(64, 149, 229, 0.65);
}

.services__tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(52, 213, 235, 0.2);
}

.services__tab img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}


/* 悬浮装饰（设计稿节点 10:2） */
.float-badge {
  position: absolute;
  right: 237px;
  top: 1578px;
  width: 148px;
  height: 169px;
  z-index: 5;
  pointer-events: none;
}

.float-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— 页脚 —— */
.site-footer {
  position: relative;
  min-height: 350px;
  margin-top: 0;
  color: var(--text-body);
  background-color: #EEF0F2;
}
.site-footer__container{
  max-width: var(--footer-content);
  width: 100%;
  margin: 0 auto;
  /* padding: 0 126px 0 114px; */
  box-sizing: border-box;
  /* background-color: #c2f4ff; */
}
.site-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.site-footer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 48px 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr 1fr;
  gap: 32px;
  align-items: start;
}
.site-footer__brand{
  width: 417px;
}
.site-footer__brand .site-footer__logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.site-footer__brand .site-footer__logo img {
  width: 100%;
}

.site-footer__contact {
  font-size: 12px;
  line-height: 20px;
  color: var(--text-muted);
}

.site-footer__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}

.site-footer__row img {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.site-footer__col-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-body);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: 8px;
}

.site-footer__links a {
  font-size: 12px;
  line-height: 24px;
  color: var(--text-muted);
}

.site-footer__qr {
  width: 156px;
  text-align: center;
  justify-self: end;
}

.site-footer__qr-box {
  position: relative;
  display: inline-block;
  width: 148px;
  height: 166px;
  margin-bottom: 12px;
}

.site-footer__qr-box img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer__qr-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  background: #fff;
}

.site-footer__qr-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__qr-caption {
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  color: #888;
}
.sit-footer__inner2{
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  color: #888;
}
.site-footer__bottom {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 16px var(--gutter) 28px;
  border-top: 1px solid rgba(91, 91, 91, 0.28);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  font-size: 12px;
  line-height: 20px;
  color: var(--text-muted);
}

.site-footer__bottom-sep {
  width: 1px;
  height: 12px;
  background: #505050;
}
