@charset "UTF-8";
@font-face {
  font-family: "AkzidenzGrotesk";
  src: url("./fonts/AkzidenzGrotesk-Ext.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("./fonts/SourceHanSansCN-Regular_0.otf") format("otf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSansCN";
  src: url("./fonts/SourceHanSansCN-Bold_0.otf") format("otf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.family-akzidenz {
  font-family: "AkzidenzGrotesk", "Helvetica", sans-serif;
}
.updown{
    width: 100%;
    justify-content: center;
    margin: 20px 0 0 0;
}
.updown a{
    font-size: 16px;
    background: rgba(0, 0, 0, 0.1);
    line-height: 40px;
    padding: 0 15px;
    margin: 0 8px 5px 8px;
    display: block;
    border-radius: 30px;
}
.updown .pages{
    background: #d71033;
    color: #fff;
}
.updown a:hover{
    background: #d71033;
    color: #fff;
}

body {
  font-family: "SourceHanSansCN", "Helvetica", "Arial", sans-serif;
}

img {
  max-width: 100%;
}

input, textarea, button {
  outline: none;
  border: 0;
}

input:focus, textarea:focus, button:focus {
  box-shadow: none !important;
  outline: 0;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  -webkit-text-decoration: inherit;
  text-decoration: inherit;
  transition: all 0.3s ease-in-out;
}

.imgbox img{
  width: 100%;
  border-radius: 0.75rem;
}
#page-transition {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  transform: translateY(100%);
  font-size: 26px;
  font-weight: bold;
  color: var(--primary-color);
}
#page-transition span:nth-of-type(2) {
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.3s ease-in-out 0.6s;
}
#page-transition.active span:nth-of-type(2) {
  opacity: 1;
  transform: translateY(0);
}
#page-transition.fade-out {
  transform: translateY(0);
}

:root {
  --black-color: #000;
  --white-color: #fff;
  --gray-color: #f2f2f2;
  --primary-color: #d71033;
  --secondary-color: #242424;
}

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

.bg-primary {
  background-color: var(--primary-color);
}

.border-primary {
  border-color: var(--primary-color);
}

.link-hover-underline {
  display: inline-block;
}
.link-hover-underline::after {
  display: block;
  content: "";
  height: 1px;
  width: 0;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.link-hover-underline:hover::after {
  width: 100%;
}

.water-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 允许鼠标事件穿透到下层元素 */
  z-index: 1; /* 确保在内容之下 */
  /* filter: blur(4px) brightness(100%) contrast(100%) invert(100%); 加上反相 */
  filter: blur(4px); /* 加上模糊 */
  opacity: 0.3; /* 加上透明度 */
}

.header {
  padding: 1rem;
  background-color: var(--white-color);
  position: relative;
  z-index: 30;
}
@media screen and (min-width: 1024px) {
  .header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.125rem 1.25rem;
  }
}
.header .header-brand {
  width: 5.25rem;
  color: var(--primary-color);
}
.header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-language {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
}
.header .header-language .language-switch {
  display: block;
  border-radius: 50px;
  padding: 5px;
  min-width: 3.5rem;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.header .header-language .language-switch::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 6px;
  left: 6px;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.header .header-language .language-switch.active::before {
  left: calc(100% - 18px);
}
.header .header-toggleNavBtn {
  display: block;
}
@media screen and (min-width: 1024px) {
  .header .header-toggleNavBtn {
    display: none;
  }
}
.header .header-toggleNavBtn span {
  display: block;
  border-radius: 50px;
  padding: 5px 20px;
  text-align: center;
  background-color: #f2f2f2;
  color: var(--black-color);
}
.header .header-navbar {
  display: none;
  align-items: center;
  justify-content: start;
  gap: 1.875rem;
}
@media screen and (min-width: 1024px) {
  .header .header-navbar {
    display: flex;
  }
}
.header .header-nav {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.25rem;
}
.header .header-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 50px;
  padding: 5px;
  min-width: 5.375rem;
  text-align: center;
  background-color: rgba(219, 219, 219, 0.25);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.header .header-nav li a span {
  position: relative;
  z-index: 4;
}
.header .header-nav li a::before, .header .header-nav li a::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.header .header-nav li a::after {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(219, 219, 219, 0.25);
  filter: blur(8px);
}
.header .header-nav li a::before {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: transparent;
  top: 50%;
  left: 15px;
  z-index: 2;
  transform: translateY(-50%);
}
.header .header-nav li a:hover::before {
  background-color: var(--primary-color);
}
.header.bg-white .header-language .language-switch {
  background-color: rgba(0, 0, 0, 0.05);
}
.header.bg-white .header-nav li a {
  background-color: rgba(0, 0, 0, 0.05);
}
.header.sticky {
  position: sticky;
  top: 0;
}
.header.sticky .header-language .language-switch {
  background-color: rgba(0, 0, 0, 0.1);
}
.header.open {
  position: sticky;
  top: 0;
  background-color: var(--primary-color);
  color: var(--white-color);
}
.header.open .header-toggleNavBtn {
  width: 38px;
  height: 32px;
  position: relative;
  z-index: 1;
}
.header.open .header-toggleNavBtn span {
  display: none;
}
.header.open .header-toggleNavBtn::before, .header.open .header-toggleNavBtn::after {
  display: block;
  position: absolute;
  top: 15px;
  left: 4px;
  z-index: 2;
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 20px;
  background-color: var(--white-color);
  transition: all 0.3s ease-in-out;
}
.header.open .header-toggleNavBtn::before {
  transform: rotate(45deg);
}
.header.open .header-toggleNavBtn::after {
  transform: rotate(-45deg);
}
.header.open .header-brand {
  color: var(--white-color);
}
.header.open .header-navbar {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 1rem;
}
.header.open .header-navbar .header-nav {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}
.header.open .header-navbar .header-nav li a {
  background-color: transparent;
  padding: 0;
  min-width: auto;
  font-size: 1.25rem;
}
.header.open .header-navbar .header-language {
  padding: 0;
}
.header.open .header-navbar .header-language .language-switch {
  background-color: rgba(0, 0, 0, 0.1);
}
.header.open .header-navbar .header-language .language-switch::before {
  background-color: var(--white-color);
}

.footer {
  padding: 3.75rem 1.25rem 0;
  background-color: var(--primary-color);
  color: var(--white-color);
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 5.625rem 1.25rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 5.625rem 5rem 0;
  }
}
.footer .footer-container{
  max-width: 1530px;
}
.footer .footer-brand-logo {
  color: var(--white-color);
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .footer-brand-logo {
    width: 72%;
  }
}
.footer .footer-brand-logo svg {
  width: 100%;
}
.footer .footer-contact {
  font-size: 1.625rem;
  line-height: 1.5;
}
.footer .footer-nav .title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.footer .footer-nav .list {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
.footer .footer-nav .list a {
  display: inline-block;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .footer .footer-social {
    text-align: right;
  }
}
.footer .footer-social .title {
  margin-bottom: 0.625rem;
}
.footer .footer-social .qc {
  display: none;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 50%;
  width: 100%;
  min-width: 7.5rem;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  padding: 0.3125rem;
  transition: all 0.6s ease-in-out;
  opacity: 0;
}
.footer .footer-social .list {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer .footer-social .list {
    justify-content: end;
  }
}
.footer .footer-social .list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  position: relative;
  z-index: 1;
}
.footer .footer-social .list a:hover .qc {
  display: block;
  opacity: 1;
}
@media screen and (max-width: 768px){
  .footer .footer-social .list a:hover .qc{
    display: none;
  }
}
.footer .footer-brand {
  font-size: 1.25rem;
  line-height: 1.1;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
  }
}
@media screen and (min-width: 1536px) {
  .footer .footer-brand {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
  }
}
@media screen and (min-width: 1900px) {
  .footer .footer-brand {
    font-size: 2.625rem;
  }
}
.footer .footer-main {
  padding-bottom: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
.footer .footer-main .footer-brand {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .footer .footer-main {
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-bottom: 6.25rem;
  }
  .footer .footer-main .footer-brand {
    width: 100%;
    order: 3;
  }
  .footer .footer-main .footer-social {
    order: 2;
    width: 45%;
  }
  .footer .footer-main .footer-contact {
    order: 1;
    width: 45%;
  }
}
@media screen and (min-width: 1280px) {
  .footer .footer-main {
    align-items: start;
    flex-wrap: nowrap;
    padding-bottom: 12.5rem;
  }
  .footer .footer-main .footer-brand {
    order: 2;
    width: auto;
    padding-top: 0;
  }
  .footer .footer-main .footer-social {
    order: 3;
    width: 30%;
  }
  .footer .footer-main .footer-contact {
    width: 20%;
  }
}
@media screen and (min-width: 1900px) {
  .footer .footer-main .footer-brand {
    order: 2;
    width: auto;
    padding-top: 0;
  }
  .footer .footer-main .footer-social {
    order: 3;
    width: 30%;
  }
  .footer .footer-main .footer-contact {
    width: 20%;
  }
}

@media screen and (min-width: 1024px) {
  .text-hover-fadein .name {
    transition: all 0.6s ease-in-out;
    opacity: 0;
    transform: translateY(50%);
  }
  .text-hover-fadein .title {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.625rem;
  }
  .text-hover-fadein .title > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .text-hover-fadein .title > span span {
    display: inline-block;
    opacity: 0;
    transition: all 0.6s ease-in-out;
    overflow: hidden;
    max-width: 0;
  }
  .text-hover-fadein:hover .name, .text-hover-fadein.active .name {
    opacity: 1;
    transform: translateY(0);
  }
  .text-hover-fadein:hover .title > span span, .text-hover-fadein.active .title > span span {
    opacity: 1;
    max-width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .text-hover-fadein .title > span span {
    animation: fadeIn 10s ease-in-out infinite;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.hover-scale {
  display: block;
  overflow: hidden;
}
.hover-scale img {
  transition: all 0.5s ease-in-out;
}
.hover-scale:hover img {
  transform: scale(1.2);
}

.hove-tooltip-text {
  position: absolute;
  padding: 8px 30px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #000;
  border-radius: 100px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hove-tooltip-text::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23000" class="bi bi-arrow-up-right-circle" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 0 0 0 1 8m15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0M5.854 10.803a.5.5 0 1 1-.708-.707L9.243 6H6.475a.5.5 0 1 1 0-1h3.975a.5.5 0 0 1 .5.5v3.975a.5.5 0 1 1-1 0V6.707z"/></svg>') no-repeat center center;
  background-size: cover;
}

.collapse-list .item .name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.collapse-list .item .name::after {
  content: "+";
  display: block;
  font-size: 1.625rem;
  font-weight: bold;
  color: var(--black-color);
  transition: all 0.3s ease-in-out;
}
.collapse-list .item .cont {
  overflow: hidden;
  max-height: 0;
  transition: all 0.6s linear;
}
.collapse-list .item.active .name {
  color: var(--primary-color);
  font-weight: bold;
}
.collapse-list .item.active .name::after {
  transform: rotate(45deg);
}
.collapse-list .item.active .cont {
  max-height: 300px;
}

.banner {
  /*max-height: 100vh;*/
  overflow: hidden;
}

.pro_tab li a {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.1);
}
.pro_tab li a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.pro_tab li a.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.animate-rotateOrb {
  animation: counterClockwiseRotate 25s linear infinite;
}

@keyframes counterClockwiseRotate {
  0% {
    transform: rotate(1turn);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate-rotateOrbit {
  animation: clockwiseRotate 25s linear infinite;
}

@keyframes clockwiseRotate {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.rotateyuan .item {
  background-color: #78716c;
  transition: all 0.3s ease;
  height: 48px;
  width: 48px;
}
.rotateyuan .item:nth-of-type(1) {
  top: calc(50% - 24px);
  left: -24px;
}
.rotateyuan .item:nth-of-type(2) {
  left: calc(50% - 24px);
  top: -24px;
}
.rotateyuan .item:nth-of-type(3) {
  top: calc(50% - 24px);
  right: -24px;
}
.rotateyuan .item:nth-of-type(4) {
  left: calc(50% - 24px);
  bottom: -24px;
}
.rotateyuan .item .num {
  opacity: 0;
}
.rotateyuan .item.active {
  background-color: #fff;
  height: 190px;
  width: 190px;
}
.rotateyuan .item.active:nth-of-type(1) {
  top: calc(50% - 90px);
  left: -90px;
}
.rotateyuan .item.active:nth-of-type(2) {
  left: calc(50% - 90px);
  top: -90px;
}
.rotateyuan .item.active:nth-of-type(3) {
  top: calc(50% - 90px);
  right: -90px;
}
.rotateyuan .item.active:nth-of-type(4) {
  left: calc(50% - 90px);
  bottom: -90px;
}
.rotateyuan .item.active .num {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .rotateyuan .item {
    height: 24px;
    width: 24px;
  }
  .rotateyuan .item:nth-of-type(1) {
    top: calc(50% - 12px);
    left: -12px;
  }
  .rotateyuan .item:nth-of-type(2) {
    left: calc(50% - 12px);
    top: -12px;
  }
  .rotateyuan .item:nth-of-type(3) {
    top: calc(50% - 12px);
    right: -12px;
  }
  .rotateyuan .item:nth-of-type(4) {
    left: calc(50% - 12px);
    bottom: -12px;
  }
  .rotateyuan .item.active {
    height: 70px;
    width: 70px;
  }
  .rotateyuan .item.active:nth-of-type(1) {
    top: calc(50% - 35px);
    left: -35px;
  }
  .rotateyuan .item.active:nth-of-type(2) {
    left: calc(50% - 35px);
    top: -35px;
  }
  .rotateyuan .item.active:nth-of-type(3) {
    top: calc(50% - 35px);
    right: -35px;
  }
  .rotateyuan .item.active:nth-of-type(4) {
    left: calc(50% - 35px);
    bottom: -35px;
  }
}

.serveces-step-tab button {
  width: 50px;
  transition: all 0.6s ease;
}
.serveces-step-tab button .num {
  display: block;
}
.serveces-step-tab button .snum {
  display: none;
}
.serveces-step-tab button.active .num {
  display: none;
}
.serveces-step-tab button.active .snum {
  display: block;
}

/* 文本内容区域样式 */
.content {
  position: relative;
  z-index: 2; /* 确保文本内容在波纹效果之上 */
  max-width: 600px; /* 限制内容区域最大宽度 */
  isolation: isolate; /* 创建新的层叠上下文 */
}

/* 主标题样式 */
.main-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--primary-color); /* 使用主题色 */
  isolation: isolate; /* 创建新的层叠上下文 */
}

/* 描述文本样式 */
.description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #666; /* 使用稍微淡一点的灰色 */
  max-width: 80%; /* 控制文本宽度，提高可读性 */
  isolation: isolate; /* 创建新的层叠上下文 */
}

/* 水波纹效果样式 */
.water-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* 允许鼠标事件穿透到下层元素 */
  z-index: 1; /* 确保在内容之下 */
  /* filter: blur(4px) brightness(100%) contrast(100%) invert(100%); 加上反相 */
  filter: blur(4px); /* 加上模糊 */
  opacity: 0.3; /* 加上透明度 */
}

/* "Let's Talk"按钮样式 */
.lets-talk-btn {
  position: fixed;
  right: 10%;
  bottom: 15%;
  background-color: white;
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 50%; /* 圆形按钮 */
  width: 120px;
  height: 120px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-out; /* 更快的过渡效果 */
  z-index: 10000; /* 确保按钮在光标之上 */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* 添加阴影效果 */
  isolation: isolate; /* 创建新的层叠上下文 */
  /* 优化按钮变换中心点 */
  transform-origin: center center;
  /* 启用GPU加速提高性能 */
  will-change: transform, right, bottom, box-shadow;
  /* 文字居中 */
  display: flex;
  align-items: center;
  justify-content: center;
  /* 添加轻微边框使边缘更清晰 */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 按钮悬停效果 */
.lets-talk-btn:hover {
  transform: scale(1.05); /* 轻微放大 */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); /* 增强阴影 */
}

/* 按钮活跃状态 */
.lets-talk-btn:active {
  transform: scale(0.98); /* 点击时轻微缩小 */
}

/* 按钮吸附状态 */
.lets-talk-btn.ripple-active {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* 增强阴影但不添加彩色光晕 */
  /* 取消默认的变换，因为现在由JS控制 */
  /* transform: scale(1.1); */
  color: var(--primary-color); /* 文字颜色变为主题色（红色） */
}

/* "给我们发消息"按钮样式 */
.send-message-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  isolation: isolate; /* 创建新的层叠上下文 */
}

/* 箭头图标样式 */
.send-message-btn .arrow {
  margin-left: 8px;
  transition: transform 0.3s ease; /* 单独为箭头添加过渡效果 */
}

/* 发送消息按钮悬停效果 */
.send-message-btn:hover {
  color: var(--primary-color); /* 悬停时变为主题色 */
}

/* 发送消息按钮悬停时箭头的动画效果 */
.send-message-btn:hover .arrow {
  transform: translateX(5px); /* 箭头向右移动 */
}

/* 响应式设计 - 适配移动设备 */
@media (max-width: 768px) {
  .container {
    padding: 5%; /* 减少内边距 */
  }
  .main-title {
    font-size: 3rem; /* 减小标题尺寸 */
  }
  .description {
    font-size: 1rem; /* 减小描述文本尺寸 */
    max-width: 100%; /* 在小屏幕上占满宽度 */
  }
  .lets-talk-btn {
    width: 100px; /* 减小按钮大小 */
    height: 100px;
    font-size: 1rem;
    right: 5%;
    bottom: 10%;
  }
  .updown{
      flex-wrap: wrap;
  }
}/*# sourceMappingURL=global.css.map */