<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* 字体
?t=202312061615
PingFangSC
YouSheBiaoTiHei
PingFangTC
*/
@font-face {
  font-family: PingFangSC;
  src: url("./PingFangTC-Regular.ttf?t=202312061615");
}
@font-face {
  font-family: YouSheBiaoTiHei;
  src: url("./YouSheBiaoTiHei.ttf?t=202312061615");
}
@font-face {
  font-family: PingFangTC;
  src: url("./PingFangTC-Regular.ttf?t=202312061615");
}
:root {
  --hover-color: rgb(228, 231, 183);
  --nav-transition: all 0.2s;
  --nav-bg: #64afff;
}

* {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

.pc-show {
  display: block;
}

.mobile-show {
  display: none;
}

.pc-show-inline {
  display: inline;
}

.mobile-show-inline {
  display: none;
}

html {
  font-size: 5.2083333333vw;
}

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

.wrap {
  width: 100%;
  overflow: hidden;
  background-color: #fdfeff;
}

/* 导航 */
.nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  box-sizing: border-box;
  background: transparent;
  transition: var(--nav-transition);
}
.nav.scroll {
  background: var(--nav-bg);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.nav.scroll &gt; .nav__container {
  padding: 0;
}
.nav &gt; .nav__container {
  display: flex;
  align-items: center;
  padding: 0.32rem 0;
  transition: var(--nav-transition);
}
.nav &gt; .nav__container &gt; .nav__logo {
  height: 30px;
  margin: 0 26px 0 0;
  border-radius: 3px;
  overflow: hidden;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}
.nav &gt; .nav__container &gt; .nav__logo img {
  display: block;
  height: 100%;
}
.nav &gt; .nav__container &gt; ul {
  display: flex;
  height: 50px;
  align-items: center;
}
.nav &gt; .nav__container &gt; ul li {
  font-size: 20px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  color: #fff;
  line-height: 28px;
  transition: all 0.3s;
  margin-right: 26px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.nav &gt; .nav__container &gt; ul li.active::after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background: #fff;
  opacity: 0.57;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
}
.nav &gt; .nav__container &gt; ul li:hover {
  color: var(--hover-color);
}

.top {
  height: 12.94rem;
  background: url(../image/t-bg.png?t=202312061615) 50% 100%/cover;
}
.top .top__container {
  padding-top: 2.27rem;
  margin: 0 auto;
  max-width: initial;
  width: 1014px;
}
.top .top__container h1 {
  font-size: 0.71rem;
  font-family: YouSheBiaoTiHei;
  color: #FFFFFF;
  line-height: 0.92rem;
  text-align: center;
}
.top .top__container p {
  font-size: 24px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 33px;
  text-align: center;
  margin-top: 0.64rem;
}

.main {
  margin-top: -2.03rem;
}
.main .main__container .main__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.main .main__container .main__item img {
  width: 479px;
}
.main .main__container .main__item p {
  font-size: 40px;
  font-family: PingFangTC, PingFangTC;
  font-weight: 400;
  color: #666666;
  line-height: 56px;
  text-align: center;
}
.main .main__container .main__item:nth-child(2n) {
  justify-content: flex-end;
}
.main .main__container .main__item:nth-child(2n) p {
  order: -1;
}
.main .main__container .main__item:nth-child(n+2) {
  margin-top: 2.98rem;
}
.main .main__container .main__item:nth-child(1) p {
  width: 454px;
  margin: 0 0 0 165px;
}
.main .main__container .main__item:nth-child(2) p {
  width: 670px;
  margin: 0 26px 0 0;
}
.main .main__container .main__item:nth-child(3) p {
  width: 601px;
  margin: 0 0 0 110px;
}

/* 底部 */
.footer {
  margin-top: 2.99rem;
  background: linear-gradient(360deg, #3F91FF 0%, #48BAFF 100%);
}
.footer .footer__container {
  padding: 116px 0 119px;
}
.footer .footer__container .footer__about {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer__container .footer__about h1 {
  font-size: 30px;
  font-family: YouSheBiaoTiHei;
  color: #FFFFFF;
  line-height: 37px;
  letter-spacing: 1px;
}
.footer .footer__container .footer__about p {
  margin-top: 47px;
  font-size: 29px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 41px;
  text-align: center;
}
.footer .footer__container .footer__line {
  width: 100%;
  opacity: 0.2;
  border-bottom: 2px solid #fff;
  margin-top: 32px;
}
.footer .footer__container .footer__privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}
.footer .footer__container .footer__privacy &gt; div {
  display: flex;
  align-items: center;
}
.footer .footer__container .footer__privacy &gt; div img {
  width: 22px;
  margin-right: 4px;
}
.footer .footer__container .footer__privacy &gt; div &gt; span {
  font-size: 24px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 33px;
}
.footer .footer__container .footer__privacy &gt; div &gt; span span {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.footer .footer__container .footer__privacy &gt; div &gt; span span:hover {
  color: var(--hover-color);
}
.footer .footer__container .footer__privacy &gt; div:nth-child(1) {
  margin-bottom: 10px;
}

/* 屏幕宽度在1500内 */
@media (max-width: 1500px) {
  .max-w-auto {
    max-width: 80vw;
  }
  .nav.scroll {
    background: var(--nav-bg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  }
  .nav &gt; .nav__container &gt; .nav__logo {
    height: 2vw;
    margin: 0 1.7333333333vw 0 0;
    border-radius: 0.2vw;
    filter: drop-shadow(0 0 0.2vw rgba(0, 0, 0, 0.2));
  }
  .nav &gt; .nav__container &gt; ul {
    height: 3.3333333333vw;
  }
  .nav &gt; .nav__container &gt; ul li {
    font-size: 1.3333333333vw;
    line-height: 1.8666666667vw;
    margin-right: 1.7333333333vw;
  }
  .top .top__container {
    width: 67.6vw;
  }
  .top .top__container p {
    font-size: 1.6vw;
    line-height: 2.2vw;
  }
  .main .main__container .main__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .main .main__container .main__item img {
    width: 31.9333333333vw;
  }
  .main .main__container .main__item p {
    font-size: 2.6666666667vw;
    line-height: 3.7333333333vw;
  }
  .main .main__container .main__item:nth-child(1) p {
    width: 30.2666666667vw;
    margin: 0 0 0 11vw;
  }
  .main .main__container .main__item:nth-child(2) p {
    width: 44.6666666667vw;
    margin: 0 1.7333333333vw 0 0;
  }
  .main .main__container .main__item:nth-child(3) p {
    width: 40.0666666667vw;
    margin: 0 0 0 7.3333333333vw;
  }
  .footer .footer__container {
    padding: 7.7333333333vw 0 7.9333333333vw;
  }
  .footer .footer__container .footer__about h1 {
    font-size: 2vw;
    line-height: 2.4666666667vw;
    letter-spacing: 0.0666666667vw;
  }
  .footer .footer__container .footer__about p {
    margin-top: 3.1333333333vw;
    font-size: 1.9333333333vw;
    line-height: 2.7333333333vw;
  }
  .footer .footer__container .footer__line {
    margin-top: 2.1333333333vw;
  }
  .footer .footer__container .footer__privacy {
    margin-top: 2.1333333333vw;
  }
  .footer .footer__container .footer__privacy &gt; div img {
    width: 1.4666666667vw;
    margin-right: 0.2666666667vw;
  }
  .footer .footer__container .footer__privacy &gt; div &gt; span {
    font-size: 1.6vw;
    line-height: 2.2vw;
  }
  .footer .footer__container .footer__privacy &gt; div:nth-child(1) {
    margin-bottom: 0.6666666667vw;
  }
}
/* 移动端 */
@media (max-width: 600px) {
  .pc-show {
    display: none;
  }
  .mobile-show {
    display: block;
  }
  .pc-show-inline {
    display: none;
  }
  .mobile-show-inline {
    display: inline;
  }
  html {
    font-size: 26.6666666667vw;
  }
  .max-w-auto {
    max-width: 100%;
  }
  .wrap {
    width: 100%;
  }
  .nav,
  .top,
  .main,
  .footer {
    padding: 0 0.15rem;
  }
  /* 导航 */
  .nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    box-sizing: border-box;
    background: transparent;
    transition: var(--nav-transition);
  }
  .nav.scroll {
    background: var(--nav-bg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  }
  .nav.scroll &gt; .nav__container {
    padding: 0;
  }
  .nav &gt; .nav__container {
    display: flex;
    align-items: center;
    padding: 0.05rem 0;
    transition: var(--nav-transition);
  }
  .nav &gt; .nav__container &gt; .nav__logo {
    height: 0.2rem;
    margin: 0 0.14rem 0 0;
    border-radius: 0.015rem;
    overflow: hidden;
    filter: drop-shadow(0 0 0.015rem rgba(0, 0, 0, 0.2));
  }
  .nav &gt; .nav__container &gt; .nav__logo img {
    display: block;
    height: 100%;
  }
  .nav &gt; .nav__container &gt; ul {
    display: flex;
    height: 0.3rem;
    align-items: center;
  }
  .nav &gt; .nav__container &gt; ul li {
    font-size: 0.12rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 0.14rem;
    transition: all 0.3s;
    margin-right: 0.14rem;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .nav &gt; .nav__container &gt; ul li.active::after {
    content: "";
    display: block;
    width: 70%;
    height: 1px;
    background: #fff;
    opacity: 0.57;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.015rem;
  }
  .nav &gt; .nav__container &gt; ul li:hover {
    color: #fff;
  }
  .top {
    height: 3.99rem;
    background: url(../image/t-bg-y.png?t=202312061615) 50% 100%/cover;
  }
  .top .top__container {
    padding-top: 0.545rem;
    margin: 0 auto;
    max-width: initial;
    width: 100%;
  }
  .top .top__container h1 {
    font-size: 0.2rem;
    font-family: YouSheBiaoTiHei;
    color: #fff;
    line-height: 0.26rem;
    text-align: center;
  }
  .top .top__container p {
    font-size: 0.12rem;
    font-family: PingFangTC, PingFangTC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.165rem;
    letter-spacing: 0.005rem;
    text-align: center;
    margin-top: 0.13rem;
  }
  .main {
    margin-top: -1.12rem;
  }
  .main .main__container .main__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .main .main__container .main__item img {
    width: 1.485rem;
  }
  .main .main__container .main__item p {
    font-size: 0.125rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    color: #666666;
    line-height: 0.18rem;
    text-align: center;
  }
  .main .main__container .main__item:nth-child(2n) {
    justify-content: flex-end;
  }
  .main .main__container .main__item:nth-child(2n) p {
    order: -1;
  }
  .main .main__container .main__item:nth-child(n+2) {
    margin-top: 0.59rem;
  }
  .main .main__container .main__item:nth-child(1) p {
    width: 1.58rem;
    margin: 0 0 0 0.25rem;
  }
  .main .main__container .main__item:nth-child(2) p {
    width: 1.55rem;
    margin: 0 0.365rem 0 0;
  }
  .main .main__container .main__item:nth-child(3) p {
    width: 1.58rem;
    margin: 0 0 0 0.255rem;
  }
  /* 底部 */
  .footer {
    margin-top: 0.59rem;
    background: linear-gradient(360deg, #3F91FF 0%, #48BAFF 100%);
  }
  .footer .footer__container {
    padding: 0.305rem 0;
  }
  .footer .footer__container .footer__about {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer .footer__container .footer__about h1 {
    font-size: 0.14rem;
    font-family: YouSheBiaoTiHei;
    color: #FFFFFF;
    line-height: 0.18rem;
    letter-spacing: initial;
  }
  .footer .footer__container .footer__about p {
    margin-top: 0.17rem;
    font-size: 0.12rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.165rem;
    text-align: right;
  }
  .footer .footer__container .footer__line {
    width: 100%;
    opacity: 0.39;
    border-bottom: 1px solid #fff;
    margin-top: 0.165rem;
  }
  .footer .footer__container .footer__privacy {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0.145rem;
  }
  .footer .footer__container .footer__privacy &gt; div {
    display: flex;
    align-items: center;
  }
  .footer .footer__container .footer__privacy &gt; div img {
    width: 0.11rem;
    margin-right: 0.02rem;
  }
  .footer .footer__container .footer__privacy &gt; div &gt; span {
    font-size: 0.12rem;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 0.165rem;
  }
  .footer .footer__container .footer__privacy &gt; div &gt; span span {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .footer .footer__container .footer__privacy &gt; div &gt; span span:hover {
    color: var(--hover-color);
  }
  .footer .footer__container .footer__privacy &gt; div:nth-child(1) {
    margin-bottom: 0.025rem;
  }
}/*# sourceMappingURL=1.css.map */</pre></body></html>