@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "微软雅黑", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1440px;
  min-width: 320px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
}

header nav.container {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  padding: 0 24px 0 150px;
  width: 100%;
  max-width: 1440px;
  background: transparent;
  transition: all 0.3s ease;
}
header nav.container.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 1024px) {
  header nav.container {
    padding: 0 20px;
    height: 70px;
  }
}
@media (max-width: 768px) {
  header nav.container {
    padding: 0 15px;
    height: 60px;
  }
}
header nav.container .logo {
  width: 119.59px;
  height: 31.53px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header nav.container .logo {
    width: 96px;
    height: 26px;
  }
}
header nav.container .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
@media (max-width: 1024px) {
  header nav.container .nav-links {
    gap: 0;
  }
}
@media (max-width: 768px) {
  header nav.container .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  header nav.container .nav-links.active {
    display: flex;
    flex-direction: column;
  }
}
header nav.container .nav-links li {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header nav.container .nav-links li {
    height: auto;
    width: 100%;
  }
}
header nav.container .nav-links a {
  font-family: "HONOR Sans CN";
  font-weight: bold;
  font-size: 16px;
  color: #FCFBFA;
  line-height: 24px;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
header nav.container .nav-links a:hover {
  background: rgba(200, 160, 99, 0.1);
}
header nav.container .nav-links a.active {
  background: #C8A063;
  color: #fff;
}
header nav.container .nav-links a.active:hover {
  background: #b78841;
}
@media (max-width: 768px) {
  header nav.container .nav-links a {
    color: #34312D;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    height: auto;
    width: 100%;
  }
  header nav.container .nav-links a:last-child {
    border-bottom: none;
  }
  header nav.container .nav-links a.active {
    background: #C8A063;
    color: #fff;
  }
}
header nav.container.scrolled .nav-links a {
  color: #34312D;
}
header nav.container.scrolled .nav-links a:hover {
  background: rgba(200, 160, 99, 0.1);
  color: #C8A063;
}
header nav.container.scrolled .nav-links a.active {
  background: #C8A063;
  color: #fff;
}
header nav.container.scrolled .nav-links a.active:hover {
  background: #b78841;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #FCFBFA;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

.hero .container {
  background-image: url("./img/bg_banner.png");
  height: 701px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@supports (background-image: url("data:image/webp;base64,")) {
  .hero .container {
    background-image: url("./img/bg_banner.webp");
  }
}
@media (max-width: 1024px) {
  .hero .container {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .hero .container {
    height: 400px;
  }
}
.hero .container .p1, .hero .container .p2, .hero .container .p3, .hero .container .p4, .hero .container .p5 {
  position: absolute;
}
@media (max-width: 1024px) {
  .hero .container .p1, .hero .container .p2, .hero .container .p3, .hero .container .p4, .hero .container .p5 {
    position: relative;
    left: auto !important;
    top: auto !important;
    margin: 10px auto;
    text-align: center;
  }
}
.hero .container .p1 {
  top: 284px;
  left: 140px;
}
.hero .container .p2 {
  left: 140px;
  top: 367px;
}
.hero .container .p3 {
  left: 660px;
  top: 204px;
}
.hero .container .p4 {
  left: 1005px;
  top: 339px;
}
.hero .container .p5 {
  left: 678px;
  top: 452px;
}
.hero .container .p1, .hero .container .p2 {
  font-family: "Douyin Sans";
  font-weight: bold;
  font-size: 49px;
  color: #066CDD;
  line-height: 51px;
  font-style: normal;
  text-transform: none;
}
@media (max-width: 1024px) {
  .hero .container .p1, .hero .container .p2 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 768px) {
  .hero .container .p1, .hero .container .p2 {
    font-size: 28px;
    line-height: 32px;
  }
}
.hero .container .p3, .hero .container .p4, .hero .container .p5 {
  font-family: "HONOR Sans CN";
  font-weight: 500;
  font-size: 16px;
  color: #0060A5;
  line-height: 24px;
  font-style: normal;
  text-transform: none;
  padding: 12px;
  width: 290px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 1024px) {
  .hero .container .p3, .hero .container .p4, .hero .container .p5 {
    width: 80%;
    max-width: 290px;
    margin: 10px auto;
  }
}
@media (max-width: 768px) {
  .hero .container .p3, .hero .container .p4, .hero .container .p5 {
    width: 90%;
    font-size: 14px;
    line-height: 20px;
    padding: 10px;
  }
}
@media (max-width: 1024px) {
  .hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
}

.services .container {
  height: 844px;
  background-image: url("./img/bg_service.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
}
@supports (background-image: url("data:image/webp;base64,")) {
  .services .container {
    background-image: url("./img/bg_service.webp");
  }
}
@media (max-width: 1024px) {
  .services .container {
    height: auto;
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .services .container {
    padding: 40px 15px;
  }
}
.services .container h2.title {
  margin: auto;
  font-family: "HONOR Sans CN";
  font-weight: bold;
  font-size: 25px;
  color: #34312D;
  line-height: 34px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}
@media (max-width: 768px) {
  .services .container h2.title {
    font-size: 22px;
    line-height: 28px;
  }
}
.services .container h2.title span {
  color: #C8A063;
}
.services .container .tips {
  margin: 16px auto 0;
  max-width: 660px;
  font-family: "HONOR Sans CN";
  font-weight: 400;
  font-size: 13px;
  color: #615D57;
  line-height: 22px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}
@media (max-width: 768px) {
  .services .container .tips {
    margin-top: 12px;
    padding: 0 10px;
  }
}
.services .container .service-list {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
}
@media (max-width: 1024px) {
  .services .container .service-list {
    gap: 40px;
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .services .container .service-list {
    gap: 20px;
    margin-top: 20px;
  }
}
.services .container .service-list .service-item {
  padding: 0 12px;
  width: 220px;
  height: 260px;
  background: #FAF8F5;
  border-radius: 16px;
  border: 1px solid rgba(147, 145, 142, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .services .container .service-list .service-item {
    width: 200px;
    height: 240px;
  }
}
@media (max-width: 768px) {
  .services .container .service-list .service-item {
    width: 280px;
    height: 220px;
    margin: 0 auto;
  }
}
.services .container .service-list .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.services .container .service-list .service-item img {
  margin-top: 10px;
  width: 60px;
  height: 60px;
}
@media (max-width: 768px) {
  .services .container .service-list .service-item img {
    width: 50px;
    height: 50px;
  }
}
.services .container .service-list .service-item h3 {
  font-family: "HONOR Sans CN";
  font-weight: bold;
  font-size: 16px;
  color: #34312D;
  line-height: 24px;
  font-style: normal;
  text-transform: none;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .services .container .service-list .service-item h3 {
    font-size: 15px;
    margin-top: 8px;
  }
}
.services .container .service-list .service-item p {
  margin-top: 12px;
  font-family: "HONOR Sans CN";
  font-weight: 400;
  font-size: 13px;
  color: #615D57;
  line-height: 22px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}
@media (max-width: 768px) {
  .services .container .service-list .service-item p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 18px;
  }
}

.about .container {
  height: auto;
  min-height: 612px;
  background: #F7F7F7;
  padding: 80px 20px;
}
@media (max-width: 1024px) {
  .about .container {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .about .container {
    padding: 40px 15px;
  }
}
.about .container h2.title {
  margin: auto;
  font-family: "HONOR Sans CN";
  font-weight: bold;
  font-size: 25px;
  color: #34312D;
  line-height: 34px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}
@media (max-width: 768px) {
  .about .container h2.title {
    font-size: 22px;
    line-height: 28px;
  }
}
.about .container h2.title span {
  color: #C8A063;
}
.about .container .tips {
  margin: 16px auto 0;
  max-width: 686px;
  font-family: "HONOR Sans CN";
  font-weight: 400;
  font-size: 13px;
  color: #615D57;
  line-height: 22px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}
@media (max-width: 768px) {
  .about .container .tips {
    margin-top: 12px;
    padding: 0 10px;
  }
}
.about .container .slogan-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 70px;
}
@media (max-width: 1024px) {
  .about .container .slogan-list {
    gap: 40px;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .about .container .slogan-list {
    gap: 20px;
    margin-top: 25px;
  }
}
.about .container .slogan-list .slogan-box {
  background: #fff;
  text-align: center;
  width: 320px;
  height: 272px;
  background: #FCFBFA;
  border-radius: 12px;
  transition: transform 0.3s ease;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .about .container .slogan-list .slogan-box {
    width: 280px;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .about .container .slogan-list .slogan-box {
    width: 90%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }
}
.about .container .slogan-list .slogan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.about .container .slogan-list .slogan-box img {
  width: 100%;
  height: 200px;
  border-radius: 12px 12px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .about .container .slogan-list .slogan-box img {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .about .container .slogan-list .slogan-box img {
    height: 160px;
  }
}
.about .container .slogan-list .slogan-box h3 {
  margin-top: 10px;
  font-family: "HONOR Sans CN";
  font-weight: 600;
  font-size: 16px;
  color: #34312D;
  line-height: 24px;
  font-style: normal;
  text-transform: none;
  text-align: center;
  padding: 0 10px;
}
@media (max-width: 768px) {
  .about .container .slogan-list .slogan-box h3 {
    font-size: 15px;
    margin-top: 8px;
  }
}
.about .container .slogan-list .slogan-box p {
  margin: 6px 10px 15px;
  font-family: "HONOR Sans CN";
  font-weight: 400;
  font-size: 13px;
  color: #615D57;
  line-height: 22px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}
@media (max-width: 768px) {
  .about .container .slogan-list .slogan-box p {
    font-size: 12px;
    line-height: 18px;
    margin: 6px 10px 12px;
  }
}

.team .container {
  height: auto;
  min-height: 753px;
  padding: 80px 20px;
}
@media (max-width: 1024px) {
  .team .container {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .team .container {
    padding: 40px 15px;
  }
}
.team .container h2.title {
  margin: auto;
  font-family: "HONOR Sans CN";
  font-weight: bold;
  font-size: 25px;
  color: #34312D;
  line-height: 34px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}
@media (max-width: 768px) {
  .team .container h2.title {
    font-size: 22px;
    line-height: 28px;
  }
}
.team .container h2.title span {
  color: #C8A063;
}
.team .container .partner-box {
  text-align: center;
}
.team .container .partner-box .partner-pc {
  width: 598px;
  height: 72px;
  margin-top: 20px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .team .container .partner-box .partner-pc {
    width: 80%;
    margin-top: 15px;
  }
}
@media (max-width: 768px) {
  .team .container .partner-box .partner-pc {
    width: 90%;
    margin-top: 12px;
  }
}
.team .container .partner-box .partner-app {
  width: 800px;
  height: 329px;
  margin-top: 50px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .team .container .partner-box .partner-app {
    width: 90%;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .team .container .partner-box .partner-app {
    width: 95%;
    margin-top: 30px;
  }
}
.team .container .partner-box h3 {
  margin-top: 20px;
  font-family: "HONOR Sans CN";
  font-weight: 400;
  font-size: 20px;
  color: #34312D;
  line-height: 24px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}
@media (max-width: 768px) {
  .team .container .partner-box h3 {
    font-size: 18px;
    margin-top: 15px;
  }
}

footer#contact .container {
  height: auto;
  background: #F7F7F7;
  padding: 60px 20px 80px;
  text-align: center;
}
@media (max-width: 1024px) {
  footer#contact .container {
    padding: 50px 20px 60px;
  }
}
@media (max-width: 768px) {
  footer#contact .container {
    padding: 40px 15px 50px;
  }
}
footer#contact .container .contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "HONOR Sans CN";
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  line-height: 22px;
  font-style: normal;
  text-transform: none;
  gap: 20px;
}
@media (max-width: 768px) {
  footer#contact .container .contact {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  footer#contact .container .contact span {
    display: block;
    padding: 5px 0;
  }
}
footer#contact .container .license {
  margin-top: 30px;
  font-family: "HONOR Sans CN";
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  line-height: 16px;
  font-style: normal;
  text-transform: none;
  text-align: center;
}
@media (max-width: 768px) {
  footer#contact .container .license {
    margin-top: 20px;
    font-size: 11px;
    padding: 0 10px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1440px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .hero .container .p1, .hero .container .p2, .hero .container .p3, .hero .container .p4, .hero .container .p5 {
    position: static;
    margin: 15px auto;
    text-align: center;
  }
  .services .container .service-list {
    justify-content: space-around;
  }
  .services .container .service-list .service-item {
    flex: 0 1 calc(50% - 20px);
    margin-bottom: 20px;
  }
  .about .container .slogan-list .slogan-box {
    flex: 0 1 calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
  header nav.container .nav-links.active {
    animation: slideDown 0.3s ease-out;
  }
  .hero .container {
    padding: 20px;
  }
  .hero .container .p1, .hero .container .p2, .hero .container .p3, .hero .container .p4, .hero .container .p5 {
    position: static;
    margin: 10px auto;
    width: 100% !important;
    left: auto !important;
    top: auto !important;
  }
  .services .container .service-list {
    flex-direction: column;
    align-items: center;
  }
  .services .container .service-list .service-item {
    width: 100%;
    max-width: 320px;
    margin-bottom: 15px;
  }
  .about .container .slogan-list {
    flex-direction: column;
  }
  .about .container .slogan-list .slogan-box {
    width: 100%;
    max-width: 350px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  .hero .container {
    height: 350px;
  }
  .hero .container .p1, .hero .container .p2 {
    font-size: 24px;
    line-height: 28px;
  }
  .hero .container .p3, .hero .container .p4, .hero .container .p5 {
    font-size: 13px;
    line-height: 18px;
    padding: 8px;
  }
  .services .container h2.title, .about .container h2.title, .team .container h2.title {
    font-size: 20px;
    line-height: 24px;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  header nav.container {
    position: static !important;
  }
  .hero .container {
    background: none !important;
    height: auto !important;
  }
}
@media (prefers-contrast: high) {
  .hero .container .p3,
  .hero .container .p4,
  .hero .container .p5 {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #000;
  }
  .services .container .service-list .service-item,
  .about .container .slogan-list .slogan-box {
    border: 2px solid #333;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important 0.2s ease;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .hero .container {
    display: block;
  }
  .services .container .service-list,
  .about .container .slogan-list {
    display: block;
    text-align: center;
  }
  .services .container .service-list > *,
  .about .container .slogan-list > * {
    display: inline-block;
    vertical-align: top;
  }
}
@supports (-webkit-appearance: none) {
  .hero .container .p3,
  .hero .container .p4,
  .hero .container .p5 {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
@-moz-document url-prefix() {
  .services .container .service-list .service-item,
  .about .container .slogan-list .slogan-box {
    background-clip: padding-box;
  }
}/*# sourceMappingURL=style.css.map */