@charset "utf-8";

/**
 * @Author   zcool
 * @Date     2017-11-20
 */
:root {
  --main: #0053ff;
  --white: #ffffff;
  --black: #0f1e35;
  --gray: rgba(15, 30, 53, 0.4);
  --green: #afe226;
  --orange: #f8c291;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --picEase: cubic-bezier(0.76, 0, 0.24, 1);
}

@font-face {
  font-family: 'iconfont';
  /* Project id 4902209 */
  src: url('//at.alicdn.com/t/c/font_4902209_ukeqepe348j.woff2?t=1745679126971') format('woff2'), url('//at.alicdn.com/t/c/font_4902209_ukeqepe348j.woff?t=1745679126971') format('woff'), url('//at.alicdn.com/t/c/font_4902209_ukeqepe348j.ttf?t=1745679126971') format('truetype');
}

.iconfont {
  font-family: 'iconfont';
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ul,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
ol {
  margin: 0;
  padding: 0;
}

*,
::after,
::before {
  box-sizing: border-box;
  font-family: Noto Sans SC, "SourceHanSansCN", "Microsoft JhengHei", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}

body {
  font: 12px "SourceHanSansCN", "Microsoft JhengHei", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
  line-height: 1.5;
  overflow-x: hidden;
}

ol,
ul,
li {
  list-style-type: none;
  vertical-align: middle;
}

img {
  vertical-align: top;
  border: 0;
}

input,
select,
textarea,
button {
  vertical-align: middle;
}

textarea,
input {
  text-indent: 10px;
}

/*表单元素默认有10像素的缩进*/
input[type='submit'],
input[type='button'],
button {
  text-indent: 0;
  text-align: center;
  cursor: pointer;
}

label,
button,
a {
  cursor: pointer;
}

ins,
em,
b,
i {
  text-decoration: none;
  font-style: normal;
}

/* 去掉浏览器激活样式 */
select:focus,
textarea:focus,
input:focus,
button {
  outline: none;
}

/* 提示文字的初始样式 */
input::-webkit-input-placeholder,
input::-moz-input-placeholder,
textarea::-webkit-textarea-placeholder,
textarea::-moz-textarea-placeholder {
  color: #999;
  transition: color 0.5s;
}

/* 提示文字的激活样式 */
input:focus::-webkit-input-placeholder,
input:focus::-moz-input-placeholder,
input:hover::-webkit-input-placeholder,
input:hover::-moz-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-input-placeholder,
textarea:hover::-webkit-input-placeholder,
textarea:hover::-moz-input-placeholder {
  color: #c2c2c2;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font: inherit;
}

/* a_link */
a {
  color: inherit;
  text-decoration: none;
}

a[href] {
  cursor: pointer;
}

a:hover {
  text-decoration: none;
  cursor: pointer;
}

a:focus {
  background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
em {
  font-weight: normal;
}

a,
span,
li,
b,
i,
label,
p,
strong,
div,
h1,
h2,
h3,
h4,
h5,
h6,
font,
small,
em,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  font-size: 14px;
}

span {
  display: inline-block;
}

p {
  line-height: 2;
}

img {
  max-width: 100%;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/*用来解决在安卓上的点击出现篮框问题*/
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*解决ios上去除微信点击蓝色边框 */
a:focus,
input:focus,
p:focus,
div:focus {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img[src=""],
img:not([src]) {
  opacity: 0;
}

font {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  text-transform: inherit;
}

body,
html {
  height: 100%;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #F2F2F2;
}

::-webkit-scrollbar-thumb {
  border: solid 1px #F2F2F2;
  width: 3px;
  border-radius: 4px;
  background-color: #0053FF;
}

::-webkit-scrollbar-corner {
  background-color: #F2F2F2;
}

::-webkit-scrollbar:horizontal {
  height: 9px;
}

::-webkit-selection {
  background: #0053FF;
  color: #fff;
}

::-moz-selection {
  background: #0053FF;
  color: #fff;
}

::selection {
  background: #0053FF;
  color: #fff;
}

/*滚动动画的样式*/
.disable-hover {
  pointer-events: none;
}

.scroll-animate.animated {
  visibility: hidden;
}

.font-fadeIn font {
  display: inline-block;
}

.scrolly {
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}

/* 浮动与清浮动 */
.fl {
  float: left;
}

.fr {
  float: right;
}

.cl::after {
  content: '\20';
  display: block;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.text_overflow {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-ahref] {
  cursor: pointer;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

@media screen and (orientation: landscape) {
  .over-2 {
    line-height: 1.6;
    height: 3.2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .over-3 {
    line-height: 1.5;
    height: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .over-5 {
    line-height: 1.5;
    height: 7.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
}

html {
  font-size: 5.208vw;
}

/* 初始定义 */
/* 定义网站色值 */
.mc {
  color: #0053FF;
}

.fc {
  color: #FF7400;
}

.wc {
  color: #fff;
}

.grc {
  color: #BFBFBF;
}

.d-gc {
  color: #777777;
}

.rc {
  color: #ff231c;
}

.oc {
  color: #ffb11e;
}

.yc {
  color: #fff714;
}

.gc {
  color: #8aff3c;
}

.bc {
  color: #707C97;
}

.tint {
  color: #777777;
}

.transi {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

.linear-bg {
  background: linear-gradient(0deg, #03aedb 0%, #137acc 100%);
}

.linear-txt {
  background: linear-gradient(0deg, #03aedb 0%, #137acc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/*鼠标自定*/
.cursor--group {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
  min-height: 100vh;
  pointer-events: none;
  opacity: 0;
}

.cursor--group .cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
}

.cursor--group .cursor--inner {
  width: 5px;
  height: 5px;
  left: -2.5px;
  top: -2.5px;
  z-index: 11000;
  opacity: 0;
  background-color: #fff;
}

.cursor--group .cursor--outer {
  width: 0.8rem;
  height: 0.8rem;
  background-color: #fff;
  z-index: 12000;
  box-shadow: 0 0.2rem 0.4rem -0.05rem rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor--group .cursor--outer:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 50%;
  background-color: #0053FF;
  transform: scale(0.01);
  transition: transform 0.3s ease-in-out;
}

.cursor--group .cursor--outer:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  border-radius: 50%;
  background-color: #fff;
  transform: scale(0.01);
  transition: transform 0.3s ease-in-out 0.3s;
}

.cursor--group .cursor--outer .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
}

.cursor--group .cursor--outer .mask:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 50%;
  background-color: #f97d42;
  transform: scale(0.01);
  transition: transform 0.3s ease-in-out 0.5s;
}

.cursor--group .cursor--outer .mask:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  border-radius: 50%;
  background-color: #fff;
  transform: scale(0.01);
  transition: transform 0.3s ease-in-out 0.7s;
}

.cursor--group .cursor--outer h5 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0053FF;
  z-index: 10;
  transition: opacity 0.3s ease-in-out;
}

.cursor--group .cursor--outer h5 i {
  color: #333;
}

.cursor--group .cursor--outer h5.tbtn {
  opacity: 0;
}

.cursor--group .cursor--outer h5.pbtn {
  opacity: 0;
}

.cursor--group .cursor--outer h5.nbtn {
  opacity: 0;
}

.cursor--group .cursor--outer .en_b {
  padding-top: 0.3em;
}

.cursor--group .cursor--outer.mid h5.tbtn {
  opacity: 1;
}

.cursor--group .cursor--outer.next h5.pbtn {
  opacity: 0;
}

.cursor--group .cursor--outer.next h5.nbtn {
  opacity: 1;
}

.cursor--group .cursor--outer.prev h5.pbtn {
  opacity: 1;
}

.cursor--group .cursor--outer.prev h5.nbtn {
  opacity: 0;
}

.cursor--group .cursor--outer.active .mask:before {
  transform: scale(1);
}

.cursor--group .cursor--outer.active .mask:after {
  transform: scale(1);
}

.cursor--group .cursor--outer.active:before {
  transform: scale(1);
}

.cursor--group .cursor--outer.active:after {
  transform: scale(1);
}

/*图片容器*/
.pic {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.pic .img-w {
  position: absolute !important;
  width: 100% !important;
  min-height: 100% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  -moz-transform: translateY(-50%) !important;
  -webkit-transform: translateY(-50%) !important;
  -o-transform: translateY(-50%) !important;
  display: block;
}

.pic .img-h {
  position: absolute !important;
  height: 100% !important;
  min-width: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  -moz-transform: translateX(-50%) !important;
  -webkit-transform: translateX(-50%) !important;
  -o-transform: translateX(-50%) !important;
  display: block;
}

.pic img.w-h {
  width: 100%;
  max-width: 100%;
  opacity: 0;
}

.pic img.lazy {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
}

/* 按钮 */
.layout-btn {
  padding: 10px 30px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid #fff;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

.layout-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.layout-btn-1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.68rem;
  transform: translate3d(0px, 0%, 0px);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition-delay: 0.6s;
  border-radius: 0.2rem;
  overflow: hidden;
}

.layout-btn-1:before {
  content: '';
  position: absolute;
  top: -3%;
  left: -3%;
  width: 106%;
  height: 106%;
  background: #0053FF;
  border-radius: 50% 50% 0 0;
  transform: translateY(100%) scaleY(0.5);
  transition: all 0.6s ease;
}

.layout-btn-1:after {
  content: '';
  position: absolute;
  top: -3%;
  left: -3%;
  width: 106%;
  height: 106%;
  background: #fff;
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition: all 0.6s ease;
}

.layout-btn-1>div {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-btn-1>div>span {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.5s ease;
}

.layout-btn-1>div>span:first-of-type {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(24px);
}

.layout-btn-1>div>span:last-of-type {
  position: relative;
  display: block;
  padding: 0 0.8rem;
  color: #1e0f21;
  transform: translateY(0);
}

.layout-btn-1>div>span:last-of-type.mc {
  color: #0053FF;
}

.layout-btn-1:hover,
.layout-btn-1.on {
  background: #0053FF !important;
  border-color: transparent !important;
  transition: background 0.5s linear, border-color 0.5s linear;
  transition-delay: 0.3s;
}

.layout-btn-1:hover:before,
.layout-btn-1.on:before {
  border-radius: 0;
  transform: translateY(0) scaleY(1);
  transition-delay: 0s;
}

.layout-btn-1:hover:after,
.layout-btn-1.on:after {
  border-radius: 0 0 50% 50%;
  transform: translateY(-100%) scaleY(0.5);
  transition-delay: 0s;
}

.layout-btn-1:hover>div>span:first-of-type,
.layout-btn-1.on>div>span:first-of-type {
  transform: translateY(0);
}

.layout-btn-1:hover>div>span:last-of-type,
.layout-btn-1.on>div>span:last-of-type {
  transform: translateY(-24px);
}

.layout-btn-2 {
  width: 200px;
  height: 60px;
  cursor: pointer;
  perspective: 500px;
  display: inline-block;
}

.layout-btn-2>div {
  height: 100%;
  transform-style: preserve-3d;
  transition: 0.25s;
}

.layout-btn-2>div>span {
  width: 100%;
  height: 100%;
  position: absolute;
  box-sizing: border-box;
  border: 5px solid #fff;
  line-height: 50px;
  font-size: 17pt;
  text-align: center;
  text-transform: uppercase;
}

.layout-btn-2>div>span:first-of-type {
  color: #fff;
  transform: translate3d(0, 0, 30px);
}

.layout-btn-2>div>span:last-of-type {
  color: #737f39;
  background: #fff;
  transform: rotateX(90deg) translate3d(0, 0, 30px);
}

.layout-btn-2:hover>div {
  transform: rotateX(-90deg);
}

.layout-btn-3 {
  height: 80px;
  line-height: 80px;
  width: 180px;
  text-align: center;
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.layout-btn-3>span {
  display: inline-block;
  font-size: 14px;
  position: relative;
  z-index: 3;
  color: #000;
  width: 100%;
  height: 60px;
  line-height: 60px;
  vertical-align: top;
  transition: all 0.3s cubic-bezier(0, 0.25, 0.5, 1);
}

.layout-btn-3 .Sline {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  fill: #fff;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0, 0.25, 0.5, 1);
}

.layout-btn-3:hover>span {
  color: #fff;
}

.layout-btn-3:hover .Sline {
  fill: #0053FF;
  transform: translate3d(-66.6%, 0, 0);
}

.layout-btn-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 60px;
  line-height: 60px;
  width: 180px;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  text-align: center;
}

.layout-btn-4>span {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}

.layout-btn-4:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transform: translate(0, -100%);
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.layout-btn-4:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transform: translate(0, -100%);
  -webkit-transform: translate(0, -100%);
  -moz-transform: translate(0, -100%);
  -o-transform: translate(0, -100%);
  -ms-transform: translate(0, -100%);
  transition-delay: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.layout-btn-4:hover:after {
  transform: translate(0, 0);
}

.layout-btn-4:hover:before {
  transform: translate(0, 0);
}

/*输入框*/
.layout-inputBox {
  display: inline-block;
}

.layout-inputBox>h5 {
  height: 0.32rem;
  line-height: 0.32rem;
}

.layout-inputBox .input-text {
  height: 40px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.layout-inputBox .input-text>input {
  width: 100%;
  height: 100%;
  background-color: white;
  border: solid 1px #d4d4d4;
  font-weight: 400;
  padding: 0 10px;
  position: relative;
  z-index: 10;
}

.layout-inputBox .input-text>input:focus {
  background-color: transparent;
  border-color: transparent;
}

.layout-inputBox .input-text>input:focus~.input-border {
  background-color: white;
}

.layout-inputBox .input-text>input:focus~.input-border:first-of-type:before {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  width: 100%;
}

.layout-inputBox .input-text>input:focus~.input-border:first-of-type:after {
  height: 100%;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.layout-inputBox .input-text>input:focus~.input-border:last-of-type {
  background: transparent;
}

.layout-inputBox .input-text>input:focus~.input-border:last-of-type:before {
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  width: 100%;
}

.layout-inputBox .input-text>input:focus~.input-border:last-of-type:after {
  height: 100%;
  -webkit-transition: 0.15s ease-in-out all;
  transition: 0.15s ease-in-out all;
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
  top: 0;
}

.layout-inputBox .input-text .input-border {
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.layout-inputBox .input-text .input-border:before,
.layout-inputBox .input-text .input-border:after {
  bottom: 0;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 0;
  background-color: #5b4c5c;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

.layout-inputBox .input-text .input-border:first-of-type:before {
  height: 2px;
  left: 0;
  top: 0;
  width: 0;
}

.layout-inputBox .input-text .input-border:first-of-type:after {
  height: 0;
  right: 0;
  top: 0;
  width: 2px;
}

.layout-inputBox .input-text .input-border:last-of-type:before {
  background-color: #01afd1;
  height: 2px;
  top: calc(100% - 2px);
  right: 0;
  width: 0;
}

.layout-inputBox .input-text .input-border:last-of-type:after {
  background-color: #01afd1;
  height: 0;
  top: calc(100% - 2px);
  left: 0;
  width: 2px;
}

/*省市区三级联动*/
.layout-adr {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.layout-adr .parent {
  display: inline-block;
  position: relative;
  font-size: 14px;
  margin: 0 15px;
  text-decoration: none;
  cursor: default;
  padding-bottom: 10px;
}

.layout-adr .parent .con {
  position: relative;
  min-width: 120px;
  padding: 0 26px 0 8px;
  height: 36px;
  line-height: 36px;
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 3px;
}

.layout-adr .parent .con span {
  display: inline;
  padding: 5px 12px;
  border-radius: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: top;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

.layout-adr .parent .adr-down {
  position: absolute;
  display: none;
  width: 100%;
  top: 100%;
}

.layout-adr .parent .adr-down>ul {
  line-height: 36px;
  position: relative;
  margin: 0;
  padding: 0;
  background: #fff;
  z-index: 999999999;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #dedede;
  border-top: 0;
  max-height: 220px;
}

.layout-adr .parent .adr-down>ul>li {
  padding-left: 8px;
  background: #ffffff;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  margin: 0;
  list-style: none;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.layout-adr .parent .adr-down>ul>li:hover {
  background-color: #0053FF;
  color: #fff;
}

.layout-adr .parent .adr-down:after {
  content: "◆";
  position: absolute;
  top: 0px;
  left: 50%;
  right: 0px;
  text-align: center;
  font-size: 20px;
  line-height: 8px;
  margin-top: -5px;
  color: #ffffff;
  height: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
}

.layout-adr .parent .adr-down.on {
  display: block;
}

.layout-adr .parent:after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 16px;
  right: 8px;
  display: block;
  border: 6px solid #999;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.layout-adr.adr-inline .parent .con {
  padding-left: 4px;
}

.layout-adr.adr-inline .parent .con span:hover {
  background-color: #0053FF;
  color: #fff;
}

.component {
  margin: 0 auto;
  position: relative;
  margin-bottom: 0.4rem;
  max-width: 100%;
}

.component>ul {
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.component>ul>li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.component>ul>li>img {
  display: block;
  max-width: 100%;
  opacity: 0;
  max-height: 100%;
}

.component>ul .current {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

.component nav>a {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #5b4c5c;
  outline: none;
  overflow: visible;
  text-align: center;
  top: 50%;
  z-index: 1100;
  color: #fff;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.component nav .moveNext {
  right: 0;
}

.component .Tcon {
  position: absolute;
  width: 80%;
  height: 90%;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  z-index: 11;
}

.component .Tcon>small {
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  width: max-content;
}

.component .Tcon>small>.Tpage {
  color: #fff;
  font-size: 0.2rem;
}

.component .Tcon .txtChange {
  position: relative;
  height: 100%;
  width: 100%;
}

.component .Tcon .txtChange>[data-txt] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50%;
  height: max-content;
  color: #fff;
  text-align: center;
  font-size: 0.24rem;
  pointer-events: none;
  transition: all 0.4s;
  -webkit-perspective: 1600px;
  perspective: 1600px;
}

.component .Tcon .txtChange>[data-txt].on {
  opacity: 1;
  pointer-events: auto;
}

.component .Tcon .txtChange>[data-txt].txtHide {
  -webkit-animation: scaleUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: scaleUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.component .Tcon .txtChange>[data-txt].txtShow {
  -webkit-animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
  animation: scaleDownUp 1.5s forwards cubic-bezier(0.7, 0, 0.3, 1);
}

.component .Tcon .pageChange {
  position: absolute;
  width: max-content;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.component .Tcon .pageChange>li {
  background-color: #fff;
  display: inline-block;
  float: left;
  width: 0.3rem;
  height: 0.1rem;
  line-height: 0.1rem;
  margin: 0.2rem 0.2rem;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

.component .Tcon .pageChange>li.on {
  background-color: #000;
}

.component-small {
  width: 650px;
  height: 290px;
}

.component-small>ul {
  width: 450px;
}

.component-fullwidth {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  background: transparent;
}

.component-fullwidth>ul {
  overflow: hidden;
}

.component-fullwidth>ul>li {
  overflow: hidden;
}

.component-fullwidth>ul>li>img {
  min-width: 100%;
  max-width: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.component-transparent {
  width: 900px;
  height: 500px;
}

.component-transparent>ul {
  width: 112px;
}

.webGL-slider {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 5;
}

.webGL-slider>img {
  width: 100%;
  max-width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}

.webGL-slider canvas {
  position: absolute;
  z-index: 2;
}

.webGL-slider .pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5vw;
  z-index: 6;
}

.webGL-slider .pagination>[data-slide] {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  border-radius: 100%;
  padding: 0;
  margin: 30px 0;
  cursor: pointer;
  position: relative;
  opacity: 0.2;
  transition: opacity 0.2s ease-in-out;
  outline: none;
}

.webGL-slider .pagination>[data-slide].on {
  opacity: 1;
}

.webGL-slider a.move-prev {
  position: absolute;
  bottom: 100%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: 0;
  color: #fff;
  background-color: transparent;
  font-size: 24px;
  opacity: 0.6;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

.webGL-slider a.move-prev:hover {
  opacity: 1;
}

.webGL-slider a.move-next {
  position: absolute;
  top: 100%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: 0;
  color: #fff;
  background-color: transparent;
  font-size: 24px;
  opacity: 0.6;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}

.webGL-slider a.move-next:hover {
  opacity: 1;
}

.webGL-slider .txt-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5;
}

.webGL-slider .txt-item>li {
  position: absolute;
  top: 50%;
  left: 10vw;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.webGL-slider .txt-item>li>a {
  position: absolute;
  display: inline-block;
  top: 30vh;
  left: 0;
}

.webGL-slider .txt-item>li>a>i {
  font-size: 32px;
  opacity: 0;
  vertical-align: middle;
  display: inline-block;
  animation: fadeInLeftSmall 1.5s ease forwards;
  animation-delay: 1s;
}

/*弹窗*/
.dialog {
  position: fixed;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  pointer-events: none;
  visibility: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.dialog .dialog_mask {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1001;
  background: rgba(55, 58, 71, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-backface-visibility: hidden;
}

.dialog .dialog_content {
  width: 50%;
  max-width: 560px;
  min-width: 290px;
  background: #fff;
  padding: 4em;
  text-align: center;
  position: relative;
  z-index: 1005;
  opacity: 0;
}

.dialog.dialog--open,
.dialog.dialog--close {
  visibility: visible;
}

.dialog.dialog--open .dialog_mask,
.dialog.dialog--close .dialog_mask {
  opacity: 1;
  pointer-events: auto;
}

.dialog.dialog--open .dialog_content,
.dialog.dialog--close .dialog_content {
  opacity: 1;
  pointer-events: auto;
}

.dialog.dialog--close .dialog_mask {
  opacity: 0;
}

.inter {
  position: relative;
  display: inline-block;
}

.inter>a {
  padding: 6px 20px;
  background-color: #fff;
  border-radius: 50px;
  transition: color 0.5s ease-in-out;
}

.inter .items {
  position: absolute;
  visibility: hidden;
  bottom: 99%;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  left: -1.15rem;
  z-index: 10;
}

.inter .items>img {
  border: 2px solid #0053FF;
  max-width: 3rem;
}

.inter .items>ul {
  border-radius: 5px;
  overflow: hidden;
}

.inter .items>ul>li {
  background-color: #fff;
}

.inter .items>ul>li>a {
  display: inline-block;
  line-height: 45px;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  white-space: nowrap;
  padding: 0 0.2rem;
}

.inter .items>ul>li>a:hover {
  color: #0053FF;
  text-decoration: underline;
}

.inter .items>span {
  height: 20px;
  line-height: 20px;
  position: relative;
  width: 100%;
  display: block;
}

.inter .items>span:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-style: solid;
  border-width: 6px;
  border-color: #0053FF transparent transparent transparent;
  left: 1.5rem;
  top: 0;
}

.inter:hover>a {
  color: #333;
}

.inter:hover .items {
  opacity: 1;
  transform: none;
  visibility: visible;
}

@media screen and (max-width: 800px) {
  .inter {
    cursor: pointer;
  }

  .inter.on .items {
    opacity: 1;
    transform: none;
    visibility: visible;
  }
}

/*下拉*/
.dropdown {
  text-align: left;
  width: 220px;
  display: inline-block;
  position: relative;
}

.dropdown select {
  display: none;
}

.dropdown>ul {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  max-height: calc(8 * 42px);
  top: 42px;
  left: 0;
  z-index: 1;
  right: 0;
  background: #151924;
  border-radius: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  -webkit-transform: scale(0.8) translate(0, 4px);
  transform: scale(0.8) translate(0, 4px);
  border: 1px solid #cdd9ed;
}

.dropdown>ul>li {
  opacity: 0;
  -webkit-transform: translate(6px, 0);
  transform: translate(6px, 0);
  transition: all 0.3s ease;
}

.dropdown>ul>li>a {
  cursor: pointer;
  display: block;
  padding: 10px 16px;
  color: #cdd9ed;
  text-decoration: none;
  outline: none;
  position: relative;
  transition: all 0.3s ease;
}

.dropdown>ul>li>a:hover {
  color: #eee;
}

.dropdown>ul>li.active>a {
  color: #fff;
  background-color: #000;
}

.dropdown>span {
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 6px;
  display: block;
  position: relative;
  color: #cdd9ed;
  border: 1px solid #2f3545;
  background-color: #151924;
}

.dropdown>span:before {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  right: 15px;
  background: #99A3BA;
  transition: all 0.3s ease;
  margin-right: 4px;
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
  transform: scale(0.96, 0.8) rotate(50deg);
}

.dropdown>span:after {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  top: 50%;
  right: 15px;
  background: #99A3BA;
  transition: all 0.3s ease;
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
  transform: scale(0.96, 0.8) rotate(-50deg);
}

.dropdown.open>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) translate(0, 12px);
  transform: scale(1) translate(0, 12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32), -webkit-transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}

.dropdown.open>ul>li {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.dropdown.open>span:before {
  -webkit-transform: scale(0.96, 0.8) rotate(-50deg);
  transform: scale(0.96, 0.8) rotate(-50deg);
}

.dropdown.open>span:after {
  -webkit-transform: scale(0.96, 0.8) rotate(50deg);
  transform: scale(0.96, 0.8) rotate(50deg);
}

.dropdown.open ul li:nth-child(1) {
  transition-delay: 80ms;
}

.dropdown.open ul li:nth-child(2) {
  transition-delay: 160ms;
}

.dropdown.open ul li:nth-child(3) {
  transition-delay: 240ms;
}

.dropdown.open ul li:nth-child(4) {
  transition-delay: 320ms;
}

.dropdown.open ul li:nth-child(5) {
  transition-delay: 400ms;
}

.dropdown.open ul li:nth-child(6) {
  transition-delay: 480ms;
}

.dropdown.open ul li:nth-child(7) {
  transition-delay: 560ms;
}

.dropdown.open ul li:nth-child(8) {
  transition-delay: 640ms;
}

.dropdown.open ul li:nth-child(9) {
  transition-delay: 720ms;
}

.dropdown.open ul li:nth-child(10) {
  transition-delay: 800ms;
}

.f-78 {
  font-size: 0.78rem;
}

.f-68 {
  font-size: 0.68rem;
}

.f-64 {
  font-size: 0.64rem;
}

.f-60 {
  font-size: 0.6rem;
}

.f-50 {
  font-size: 0.5rem;
}

.f-48 {
  font-size: 0.48rem;
}

.f-46 {
  font-size: 0.46rem;
}

.f-44 {
  font-size: 0.44rem;
}

.f-42 {
  font-size: 0.42rem;
}

.f-40 {
  font-size: 0.4rem;
}

.f-38 {
  font-size: 0.38rem;
}

.f-36 {
  font-size: 0.36rem;
}

.f-34 {
  font-size: 0.34rem;
}

.f-32 {
  font-size: 0.32rem;
}

.f-30 {
  font-size: 0.3rem;
}

.f-28 {
  font-size: 0.28rem;
}

.f-26 {
  font-size: 0.26rem;
}

.f-24 {
  font-size: 0.24rem;
}

.f-22 {
  font-size: 0.22rem;
}

.f-20 {
  font-size: 0.2rem;
}

.f-18 {
  font-size: 0.18rem;
}

.f-16 {
  font-size: 0.16rem;
}

.f-15 {
  font-size: 0.15rem;
}

.f-14 {
  font-size: 0.14rem;
}

.f-12 {
  font-size: 0.12rem;
}

.f-light {
  font-weight: lighter;
}

.f-bold {
  font-weight: bold;
}

.f-500 {
  font-weight: 500;
}

.f-left {
  text-align: left;
}

.f-center {
  text-align: center;
}

.f-right {
  text-align: right;
}

.up-word {
  text-transform: uppercase;
}

.v-show {
  visibility: visible;
}

.v-hide {
  visibility: hidden;
}

.pr {
  position: relative;
}

.pa {
  position: absolute;
}

.back-cover {
  background-size: cover;
}

.back-contain {
  background-size: contain;
}

.wid-10 {
  width: 10%;
}

.wid-15 {
  width: 15%;
}

.wid-20 {
  width: 20%;
}

.wid-25 {
  width: 25%;
}

.wid-30 {
  width: 30%;
}

.wid-35 {
  width: 35%;
}

.wid-40 {
  width: 40%;
}

.wid-45 {
  width: 45%;
}

.wid-50 {
  width: 50%;
}

.wid-55 {
  width: 55% !important;
}

.wid-60 {
  width: 60%;
}

.wid-65 {
  width: 65%;
}

.wid-70 {
  width: 70%;
}

.wid-75 {
  width: 75%;
}

.wid-80 {
  width: 80%;
}

.wid-85 {
  width: 85%;
}

.wid-90 {
  width: 90%;
}

.wid-95 {
  width: 95%;
}

.wid-100 {
  width: 100%;
}

.op-0 {
  opacity: 0;
}

.op-1 {
  opacity: 0.1;
}

.op-2 {
  opacity: 0.2;
}

.op-3 {
  opacity: 0.3;
}

.op-4 {
  opacity: 0.4;
}

.op-5 {
  opacity: 0.5;
}

.op-6 {
  opacity: 0.6;
}

.op-7 {
  opacity: 0.7;
}

.op-8 {
  opacity: 0.8;
}

.op-9 {
  opacity: 0.9;
}

.op-10 {
  opacity: 1;
}

.layout-middle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.layout-v-middle {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.layout-h-middle {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.pa-v {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.pa-h {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.pa-mid {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.pa-lt {
  position: absolute;
  top: 0;
  left: 0;
}

.pa-rt {
  position: absolute;
  top: 0;
  right: 0;
}

.pa-lb {
  position: absolute;
  left: 0;
  bottom: 0;
}

.pa-rb {
  position: absolute;
  right: 0;
  bottom: 0;
}

.flex-row-cc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-row-cb {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-row-cs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-row-ce {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-col-cb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.flex-col-cc {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.flex-col-cs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.flex-col-ss {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.flex-jus {
  justify-content: flex-start !important;
}

.flex-col-sb {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.flex-row-c {
  display: flex;
  justify-content: center;
}

.h1d2rem {
  height: 1.2rem !important;
}

.h2rem {
  height: 2.6rem !important;
}

.noWrap {
  white-space: nowrap;
}

.mt-1 {
  margin-top: 1px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-3 {
  margin-top: 3px;
}

.mt-4 {
  margin-top: 4px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-6 {
  margin-top: 6px;
}

.mt-7 {
  margin-top: 7px;
}

.mt-8 {
  margin-top: 8px;
}

.mt-9 {
  margin-top: 9px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-14 {
  margin-top: 14px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-18 {
  margin-top: 18px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-22 {
  margin-top: 22px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-26 {
  margin-top: 26px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-34 {
  margin-top: 34px;
}

.mt-36 {
  margin-top: 36px;
}

.mt-38 {
  margin-top: 38px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-42 {
  margin-top: 42px;
}

.mt-44 {
  margin-top: 44px;
}

.mt-46 {
  margin-top: 46px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-1 {
  margin-bottom: 1px;
}

.mb-3 {
  margin-bottom: 3px;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-7 {
  margin-bottom: 7px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-9 {
  margin-bottom: 9px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-12 {
  margin-bottom: 0.12rem;
}

.mb-14 {
  margin-bottom: 0.14rem;
}

.mb-16 {
  margin-bottom: 0.16rem;
}

.mb-18 {
  margin-bottom: 0.18rem;
}

.mb-20 {
  margin-bottom: 0.2rem;
}

.mb-22 {
  margin-bottom: 0.22rem;
}

.mb-24 {
  margin-bottom: 0.24rem;
}

.mb-26 {
  margin-bottom: 0.26rem;
}

.mb-28 {
  margin-bottom: 0.28rem;
}

.mb-30 {
  margin-bottom: 0.3rem;
}

.mb-32 {
  margin-bottom: 0.32rem;
}

.mb-34 {
  margin-bottom: 0.34rem;
}

.mb-36 {
  margin-bottom: 0.36rem;
}

.mb-38 {
  margin-bottom: 0.38rem;
}

.mb-40 {
  margin-bottom: 0.4rem;
}

.mb-42 {
  margin-bottom: 0.42rem;
}

.mb-44 {
  margin-bottom: 0.44rem;
}

.mb-46 {
  margin-bottom: 0.46rem;
}

.mb-48 {
  margin-bottom: 0.48rem;
}

.mb-50 {
  margin-bottom: 0.5rem;
}

.mb-60 {
  margin-bottom: 0.6rem;
}

.mb-70 {
  margin-bottom: 0.7rem;
}

.mb-80 {
  margin-bottom: 0.8rem;
}

.mb-90 {
  margin-bottom: 0.9rem;
}

.mb-100 {
  margin-bottom: 1rem;
}

.ml-1 {
  margin-left: 1px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-4 {
  margin-left: 4px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-7 {
  margin-left: 7px;
}

.ml-8 {
  margin-left: 8px;
}

.ml-9 {
  margin-left: 9px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-12 {
  margin-left: 0.12rem;
}

.ml-14 {
  margin-left: 0.14rem;
}

.ml-16 {
  margin-left: 0.16rem;
}

.ml-18 {
  margin-left: 0.18rem;
}

.ml-20 {
  margin-left: 0.2rem;
}

.ml-22 {
  margin-left: 0.22rem;
}

.ml-24 {
  margin-left: 0.24rem;
}

.ml-26 {
  margin-left: 0.26rem;
}

.ml-28 {
  margin-left: 0.28rem;
}

.ml-30 {
  margin-left: 0.3rem;
}

.ml-32 {
  margin-left: 0.32rem;
}

.ml-34 {
  margin-left: 0.34rem;
}

.ml-36 {
  margin-left: 0.36rem;
}

.ml-38 {
  margin-left: 0.38rem;
}

.ml-40 {
  margin-left: 0.4rem;
}

.ml-42 {
  margin-left: 0.42rem;
}

.ml-44 {
  margin-left: 0.44rem;
}

.ml-46 {
  margin-left: 0.46rem;
}

.ml-48 {
  margin-left: 0.48rem;
}

.ml-50 {
  margin-left: 0.5rem;
}

.ml-60 {
  margin-left: 0.6rem;
}

.ml-70 {
  margin-left: 0.7rem;
}

.ml-80 {
  margin-left: 0.8rem;
}

.ml-90 {
  margin-left: 0.9rem;
}

.ml-100 {
  margin-left: 1rem;
}

.ml-b22 {
  margin-left: 22% !important;
}

.mr-1 {
  margin-right: 1px;
}

.mr-3 {
  margin-right: 3px;
}

.mr-4 {
  margin-right: 4px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-6 {
  margin-right: 6px;
}

.mr-7 {
  margin-right: 7px;
}

.mr-8 {
  margin-right: 8px;
}

.mr-9 {
  margin-right: 9px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-12 {
  margin-right: 0.12rem;
}

.mr-14 {
  margin-right: 0.14rem;
}

.mr-16 {
  margin-right: 0.16rem;
}

.mr-18 {
  margin-right: 0.18rem;
}

.mr-20 {
  margin-right: 0.2rem;
}

.mr-22 {
  margin-right: 0.22rem;
}

.mr-24 {
  margin-right: 0.24rem;
}

.mr-26 {
  margin-right: 0.26rem;
}

.mr-28 {
  margin-right: 0.28rem;
}

.mr-30 {
  margin-right: 0.3rem;
}

.mr-32 {
  margin-right: 0.32rem;
}

.mr-34 {
  margin-right: 0.34rem;
}

.mr-36 {
  margin-right: 0.36rem;
}

.mr-38 {
  margin-right: 0.38rem;
}

.mr-40 {
  margin-right: 0.4rem;
}

.mr-42 {
  margin-right: 0.42rem;
}

.mr-44 {
  margin-right: 0.44rem;
}

.mr-46 {
  margin-right: 0.46rem;
}

.mr-48 {
  margin-right: 0.48rem;
}

.mr-50 {
  margin-right: 0.5rem;
}

.mr-60 {
  margin-right: 0.6rem;
}

.mr-70 {
  margin-right: 0.7rem;
}

.mr-80 {
  margin-right: 0.8rem;
}

.mr-90 {
  margin-right: 0.9rem;
}

.mr-100 {
  margin-right: 1rem;
}

.pt-1 {
  padding-top: 1px;
}

.pt-3 {
  padding-top: 3px;
}

.pt-4 {
  padding-top: 4px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-6 {
  padding-top: 6px;
}

.pt-7 {
  padding-top: 7px;
}

.pt-8 {
  padding-top: 8px;
}

.pt-9 {
  padding-top: 9px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-12 {
  padding-top: 12px;
}

.pt-14 {
  padding-top: 14px;
}

.pt-16 {
  padding-top: 16px;
}

.pt-18 {
  padding-top: 18px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-22 {
  padding-top: 22px;
}

.pt-24 {
  padding-top: 24px;
}

.pt-26 {
  padding-top: 26px;
}

.pt-28 {
  padding-top: 28px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-32 {
  padding-top: 32px;
}

.pt-34 {
  padding-top: 34px;
}

.pt-36 {
  padding-top: 36px;
}

.pt-38 {
  padding-top: 38px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-42 {
  padding-top: 42px;
}

.pt-44 {
  padding-top: 44px;
}

.pt-46 {
  padding-top: 46px;
}

.pt-48 {
  padding-top: 48px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-1 {
  padding-bottom: 1px;
}

.pb-3 {
  padding-bottom: 3px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-7 {
  padding-bottom: 7px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pb-9 {
  padding-bottom: 9px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pb-14 {
  padding-bottom: 14px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pb-18 {
  padding-bottom: 18px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-22 {
  padding-bottom: 22px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pb-26 {
  padding-bottom: 26px;
}

.pb-28 {
  padding-bottom: 28px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pb-34 {
  padding-bottom: 34px;
}

.pb-36 {
  padding-bottom: 36px;
}

.pb-38 {
  padding-bottom: 38px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-42 {
  padding-bottom: 42px;
}

.pb-44 {
  padding-bottom: 44px;
}

.pb-46 {
  padding-bottom: 46px;
}

.pb-48 {
  padding-bottom: 48px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-1 {
  padding-left: 1px;
}

.pl-3 {
  padding-left: 3px;
}

.pl-4 {
  padding-left: 4px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-7 {
  padding-left: 7px;
}

.pl-8 {
  padding-left: 8px;
}

.pl-9 {
  padding-left: 9px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-12 {
  padding-left: 12px;
}

.pl-14 {
  padding-left: 14px;
}

.pl-16 {
  padding-left: 16px;
}

.pl-18 {
  padding-left: 18px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-22 {
  padding-left: 22px;
}

.pl-24 {
  padding-left: 24px;
}

.pl-26 {
  padding-left: 26px;
}

.pl-28 {
  padding-left: 28px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-32 {
  padding-left: 32px;
}

.pl-34 {
  padding-left: 34px;
}

.pl-36 {
  padding-left: 36px;
}

.pl-38 {
  padding-left: 38px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-42 {
  padding-left: 42px;
}

.pl-44 {
  padding-left: 44px;
}

.pl-46 {
  padding-left: 46px;
}

.pl-48 {
  padding-left: 48px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-1 {
  padding-right: 1px;
}

.pr-3 {
  padding-right: 3px;
}

.pr-4 {
  padding-right: 4px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-7 {
  padding-right: 7px;
}

.pr-8 {
  padding-right: 8px;
}

.pr-9 {
  padding-right: 9px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-12 {
  padding-right: 12px;
}

.pr-14 {
  padding-right: 14px;
}

.pr-16 {
  padding-right: 16px;
}

.pr-18 {
  padding-right: 18px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-22 {
  padding-right: 22px;
}

.pr-24 {
  padding-right: 24px;
}

.pr-26 {
  padding-right: 26px;
}

.pr-28 {
  padding-right: 28px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-32 {
  padding-right: 32px;
}

.pr-34 {
  padding-right: 34px;
}

.pr-36 {
  padding-right: 36px;
}

.pr-38 {
  padding-right: 38px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-42 {
  padding-right: 42px;
}

.pr-44 {
  padding-right: 44px;
}

.pr-46 {
  padding-right: 46px;
}

.pr-48 {
  padding-right: 48px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-100 {
  padding-right: 100px;
}

@media screen and (max-width: 1600px) {
  html {
    font-size: 80px;
  }
}

@media screen and (max-width: 1500px) {
  html {
    font-size: 70px;
  }
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 60px;
  }
}

@media screen and (max-width: 700px) {
  html {
    font-size: 50px;
  }

  p {
    font-size: 13px;
    line-height: 1.4;
  }

  small,
  span {
    font-size: 13px;
  }

  .f-80 {
    font-size: 28px;
  }

  .f-72 {
    font-size: 26px;
  }

  .f-60 {
    font-size: 24px;
  }

  .f-68 {
    font-size: 0.48rem;
  }

  .f-64 {
    font-size: 0.48rem;
  }

  .f-50 {
    font-size: 24px;
  }

  .f-48 {
    font-size: 24px;
  }

  .f-46 {
    font-size: 22px;
  }

  .f-44 {
    font-size: 22px;
  }

  .f-42 {
    font-size: 20px;
  }

  .f-40 {
    font-size: 20px;
  }

  .f-38 {
    font-size: 18px;
  }

  .f-36 {
    font-size: 18px;
  }

  .f-34 {
    font-size: 18px;
  }

  .f-32 {
    font-size: 16px;
  }

  .f-30 {
    font-size: 16px;
  }

  .f-28 {
    font-size: 16px;
  }

  .f-26 {
    font-size: 16px;
  }

  .f-24 {
    font-size: 16px;
  }

  .f-22 {
    font-size: 16px;
  }

  .f-20 {
    font-size: 16px;
  }

  .f-18 {
    font-size: 14px;
  }

  .f-16 {
    font-size: 13px;
  }

  .f-14 {
    font-size: 12px;
  }

  .f-12 {
    font-size: 12px;
  }
}

/*animate补充动画*/
@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
}

@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightSmall {
  animation-name: fadeInRightSmall;
}

@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, -30px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownSmall {
  animation-name: fadeInDownSmall;
}

@keyframes fadeOutDownSmall {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translate3d(0%, 10px, 0);
  }
}

.fadeOutDownSmall {
  animation-name: fadeOutDownSmall;
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, 30px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

.scaleIn {
  animation-name: scaleIn;
}

.alanUpEl {
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), color 0.3s var(--ease);
  opacity: 0;
  transform-origin: 0 50%;
  transform: translate3d(0, 0.25rem, 0);
}

.alanUpEl:nth-of-type(2) {
  transition-delay: 0.05s;
}

.alanUpEl:nth-of-type(3) {
  transition-delay: 0.1s;
}

.alanUpEl:nth-of-type(4) {
  transition-delay: 0.15s;
}

.alanUpEl:nth-of-type(5) {
  transition-delay: 0.2s;
}

.alanUpEl:nth-of-type(6) {
  transition-delay: 0.25s;
}

.alanUpEl.go {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.alanLeftEl {
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), width 0.6s var(--ease), color 0.3s var(--ease);
  opacity: 0;
  transform-origin: 0 50%;
  transform: translate3d(0.25rem, 0, 0) rotateY(-15deg);
  perspective: 5rem;
}

.alanLeftEl:nth-of-type(2) {
  transition-delay: 0.05s;
}

.alanLeftEl:nth-of-type(3) {
  transition-delay: 0.1s;
}

.alanLeftEl:nth-of-type(4) {
  transition-delay: 0.15s;
}

.alanLeftEl:nth-of-type(5) {
  transition-delay: 0.2s;
}

.alanLeftEl:nth-of-type(6) {
  transition-delay: 0.25s;
}

.alanLeftEl.go {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.alanRightEl {
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), color 0.3s var(--ease);
  opacity: 0;
  transform-origin: 0 50%;
  transform: translate3d(-0.25rem, 0, 0);
}

.alanRightEl:nth-of-type(2) {
  transition-delay: 0.05s;
}

.alanRightEl:nth-of-type(3) {
  transition-delay: 0.1s;
}

.alanRightEl:nth-of-type(4) {
  transition-delay: 0.15s;
}

.alanRightEl:nth-of-type(5) {
  transition-delay: 0.2s;
}

.alanRightEl:nth-of-type(6) {
  transition-delay: 0.25s;
}

.alanRightEl.go {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.alanDownEl {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), color 0.3s var(--ease);
  opacity: 0;
  transform-origin: 0 50%;
  transform: translate3d(0, -0.2rem, 0);
}

.alanDownEl:nth-of-type(2) {
  transition-delay: 0.05s;
}

.alanDownEl:nth-of-type(3) {
  transition-delay: 0.1s;
}

.alanDownEl:nth-of-type(4) {
  transition-delay: 0.15s;
}

.alanDownEl:nth-of-type(5) {
  transition-delay: 0.2s;
}

.alanDownEl:nth-of-type(6) {
  transition-delay: 0.25s;
}

.alanDownEl:nth-of-type(7) {
  transition-delay: 0.3s;
}

.alanDownEl.go {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.alanParent {
  perspective: 5rem;
}

.alanParent .alanUp {
  transition: opacity 1s var(--ease), transform 1s var(--ease), color 0.3s var(--ease), box-shadow 0.5s var(--ease), background-color 0.5s var(--ease);
  transform-origin: 0 50%;
  opacity: 0;
}

.alanParent .alanUp:nth-child(1) {
  transform: translate3d(0, 0.4rem, 0);
  transition-delay: 0s;
}

.alanParent .alanUp:nth-child(2) {
  transform: translate3d(0, 0.45rem, 0);
  transition-delay: 0.1s;
}

.alanParent .alanUp:nth-child(3) {
  transform: translate3d(0, 0.5rem, 0);
  transition-delay: 0.2s;
}

.alanParent .alanUp:nth-child(4) {
  transform: translate3d(0, 0.55rem, 0);
  transition-delay: 0.3s;
}

.alanParent .alanUp:nth-child(5) {
  transform: translate3d(0, 0.6rem, 0);
  transition-delay: 0.4s;
}

.alanParent .alanUp:nth-child(6) {
  transform: translate3d(0, 0.65rem, 0);
  transition-delay: 0.5s;
}

.alanParent .alanUp:nth-child(7) {
  transform: translate3d(0, 0.7rem, 0);
  transition-delay: 0.6s;
}

.alanParent .alanUp:nth-child(8) {
  transform: translate3d(0, 0.75rem, 0);
  transition-delay: 0.7s;
}

.alanParent .alanUp:nth-child(9) {
  transform: translate3d(0, 0.75rem, 0);
  transition-delay: 0.75s;
}

.alanParent .alanUp:nth-child(10) {
  transform: translate3d(0, 0.75rem, 0);
  transition-delay: 0.8s;
}

.alanParent .alanUp:nth-child(11) {
  transform: translate3d(0, 0.75rem, 0);
  transition-delay: 0.85s;
}

.alanParent .alanUp:nth-child(12) {
  transform: translate3d(0, 0.75rem, 0);
  transition-delay: 0.9s;
}

.alanParent .alanDown {
  transition: opacity 1s var(--ease), transform 1s var(--ease), color 0.3s var(--ease);
  transform-origin: 0 50%;
  opacity: 0;
}

.alanParent .alanDown:nth-child(1) {
  transform: translate3d(0, -0.2rem, 0);
  transition-delay: 0s;
}

.alanParent .alanDown:nth-child(2) {
  transform: translate3d(0, -0.25rem, 0);
  transition-delay: 0.1s;
}

.alanParent .alanDown:nth-child(3) {
  transform: translate3d(0, -0.3rem, 0);
  transition-delay: 0.2s;
}

.alanParent .alanDown:nth-child(4) {
  transform: translate3d(0, -0.35rem, 0);
  transition-delay: 0.3s;
}

.alanParent .alanDown:nth-child(5) {
  transform: translate3d(0, -0.4rem, 0);
  transition-delay: 0.4s;
}

.alanParent .alanDown:nth-child(6) {
  transform: translate3d(0, -0.45rem, 0);
  transition-delay: 0.5s;
}

.alanParent .alanDown:nth-child(7) {
  transform: translate3d(0, -0.5rem, 0);
  transition-delay: 0.6s;
}

.alanParent .alanLeft {
  transition: opacity 1s var(--ease), transform 1s var(--ease), width 0.6s var(--ease), color 0.3s var(--ease);
  perspective: 5rem;
  transform-origin: 0 50%;
  opacity: 0;
}

.alanParent .alanLeft:nth-child(1) {
  transform: translate3d(0.25rem, 0rem, 0) rotateY(-10deg);
  transition-delay: 0s;
}

.alanParent .alanLeft:nth-child(2) {
  transform: translate3d(0.25rem, 0rem, 0) rotateY(-10deg);
  transition-delay: 0.05s;
}

.alanParent .alanLeft:nth-child(3) {
  transform: translate3d(0.25rem, 0rem, 0) rotateY(-10deg);
  transition-delay: 0.1s;
}

.alanParent .alanLeft:nth-child(4) {
  transform: translate3d(0.25rem, 0rem, 0) rotateY(-10deg);
  transition-delay: 0.15s;
}

.alanParent .alanLeft:nth-child(5) {
  transform: translate3d(0.25rem, 0rem, 0) rotateY(-10deg);
  transition-delay: 0.2s;
}

.alanParent .alanLeft:nth-child(6) {
  transform: translate3d(0.25rem, 0rem, 0) rotateY(-10deg);
  transition-delay: 0.25s;
}

.alanParent .alanLeft:nth-child(7) {
  transform: translate3d(0.25rem, 0rem, 0) rotateY(-10deg);
  transition-delay: 0.3s;
}

.alanParent.active .alanDown,
.alanParent.go .alanDown,
.alanParent.active .alanUp,
.alanParent.go .alanUp,
.alanParent.active .alanLeft,
.alanParent.go .alanLeft {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.aniUpSmall {
  animation: fadeUpSmall 1s var(--ease);
  animation-fill-mode: both;
}

.aniUpSmall:nth-of-type(2) {
  animation-delay: 0.05s;
}

.aniUpSmall:nth-of-type(3) {
  animation-delay: 0.1s;
}

.aniUpSmall:nth-of-type(4) {
  animation-delay: 0.15s;
}

.aniUpSmall:nth-of-type(5) {
  animation-delay: 0.2s;
}

.aniUpSmall:nth-of-type(6) {
  animation-delay: 0.25s;
}

h1,
h2,
h3 {
  line-height: 1.3;
}

[data-scroll] {
  will-change: tranform;
}

.moveFn {
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.5s var(--ease);
}

.max-wid {
  width: 98%;
  margin: 0 auto;
}

.layer-mask {
  background: radial-gradient(111% 106% at 50% 0%, #FE9B4B 0%, #F47814 100%);
}

.layer-mask:hover {
  box-shadow: 0 0.15rem 0.3rem -5px rgba(254, 155, 75, 0.5);
}

.layer-search {
  border: 1px solid #BFBFBF;
  height: 0.36rem;
  border-radius: 5px;
  padding: 0 0.15rem;
}

.layer-search input {
  border: none;
  background-color: transparent;
  text-indent: 0;
}

.layer-search .sub {
  height: 0.2rem;
}

.layer-button {
  padding: 0.08rem 0.25rem;
  min-width: 1.5rem;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  position: relative;
  display: flex;
  z-index: 10;
}

.layer-button .arrow {
  height: 0.14rem;
  position: relative;
  z-index: 5;
}

.layer-button .txt {
  transition: color 0.5s var(--ease);
  position: relative;
  z-index: 2;
}

.layer-button.layer-mb {
  background: transparent;
}

.layer-button.layer-mb:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: 1;
  background: linear-gradient(112deg, #0053FF 15%, #38BBFA 109%);
  transition: opacity 0.5s var(--ease);
  opacity: 1;
}

.layer-button.layer-mb:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: 2;
  background: radial-gradient(111% 106% at 50% 0%, #FE9B4B 0%, #F47814 100%);
  transition: opacity 0.5s var(--ease);
  opacity: 0;
}

.layer-button.layer-mb .txt {
  color: #fff;
}

.layer-button.layer-wb:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: 1;
  background: linear-gradient(112deg, #0053FF 15%, #38BBFA 109%);
  box-shadow: 0px 0.1rem 0.4rem -2px rgba(0, 83, 255, 0.3);
  transition: opacity 0.5s var(--ease);
  opacity: 0;
}

.layer-button.layer-wb .txt {
  color: #333;
}

.layer-button.layer-wb.on:after,
.layer-button.layer-wb:hover:after {
  opacity: 1;
}

.layer-button.layer-wb.on .txt,
.layer-button.layer-wb:hover .txt {
  color: #fff;
}

.layer-button.layer-null {
  border: 1px solid #0053FF;
  background: transparent;
}

.layer-button.layer-null:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: 2;
  background: radial-gradient(111% 106% at 50% 0%, #FE9B4B 0%, #F47814 100%);
  transition: opacity 0.5s var(--ease);
  opacity: 0;
}

.layer-button.layer-linear {
  padding: 8px 0.35rem;
}

.layer-button.layer-linear:before {
  content: "";
  border-radius: 4px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(111deg, #0053FF 15%, #38BBFA 109%);
}

.layer-button.layer-linear:after {
  content: "";
  border-radius: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  background-color: #fff;
}

.layer-button.layer-linear .txt {
  line-height: 1;
  color: transparent;
  background: linear-gradient(111deg, #0053FF 15%, #38BBFA 109%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s var(--ease);
}

.layer-button.layer-linear:hover .txt {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.layer-box {
  border-radius: 0.1rem;
  background-color: #fff;
  padding: 0.1rem;
  box-shadow: 0px 3px 0.3rem -1px rgba(0, 62, 224, 0.2);
}

.layer-box .photo {
  border-radius: 0.1rem;
  height: 3rem;
  width: 100%;
}

.layer-box .msg {
  margin-top: -0.3rem;
  position: relative;
  z-index: 5;
  background-color: #fff;
  border-radius: 0px 0.3rem 0px 0px;
  padding: 0.4rem 0.3rem 0.4rem 0.3rem;
}

.layer-list .ok {
  width: 0.16rem;
  height: 0.16rem;
  background-color: #0053FF;
  border-radius: 2px;
  font-size: 0.38vw;
  line-height: 0.16rem;
}

.layer-list p {
  line-height: 1.4;
  width: calc(100% - .26rem);
}

.layer-pager {
  display: grid;
  gap: 8px;
  grid-auto-flow: column;
}

.layer-pager .pageDot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 4px;
  border: 1px solid #C4CDDD;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C4CDDD;
  transition: all 0.5s var(--ease);
}

.layer-pager .pageDot.on,
.layer-pager .pageDot:hover {
  color: #0053FF;
  border-color: #0053FF;
}

/*分享*/
.layer-share {
  position: relative;
}

.layer-share .layer-icon {
  text-align: center;
  cursor: pointer;
  justify-content: center;
  transition: background-color 0.5s var(--ease);
}

.layer-share .layer-icon .iconfont {
  transition: color 0.5s var(--ease);
  display: block;
}

.layer-share .layer-icon svg.icon {
  display: block;
  width: 0.32rem;
}

.layer-share .maBox {
  position: absolute;
  width: calc(100% + 1.2rem);
  left: -0.6rem;
  top: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 0.2rem, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

@media screen and (orientation: portrait) {
  .layer-share .maBox {
    width: calc(100% + 1.8rem);
    left: -0.9rem;
  }
}

.layer-share .maBox .arrow {
  width: 100%;
  height: 0.15rem;
  display: block;
  position: relative;
}

.layer-share .maBox .arrow:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent transparent #fff transparent;
  border-width: 7px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-style: solid;
}

.layer-share .maBox>img {
  width: 100%;
  display: block;
  border: 3px solid #fff;
  border-radius: 0.08rem;
  background-color: #fff;
  box-shadow: 0 -2px 8px -1px rgba(0, 0, 0, 0.12);
}

.layer-share.on .layer-icon .iconfont:not(.wc) {
  color: var(--main);
}

.layer-share.on .maBox {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.layer-share:nth-of-type(3) .layer-icon svg.icon {
  width: 0.36rem;
}

@media screen and (orientation: landscape) {
  .layer-share:hover .layer-icon {
    background-color: #0053FF !important;
  }

  .layer-share:hover .layer-icon .iconfont:not(.wc) {
    color: #fff;
  }

  .layer-share:hover .maBox {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*下拉*/
.layer-down {
  position: relative;
  padding: 0.1rem 0.24rem 0.1rem 0.16rem;
  background-color: #fff;
  border: 1px solid #BFBFBF;
  border-radius: 4px;
}

.layer-down .line {
  padding: 0 0.1rem;
  height: 80%;
  width: 1px;
  background-color: #BFBFBF;
}

.layer-down .txt {
  position: relative;
  z-index: 10;
  transition: background-color 0.8s var(--ease);
}

.layer-down .inTxt {
  border: none;
  background-color: transparent;
  width: 1.4rem;
}

.layer-down .inTxt::placeholder {
  color: #BFBFBF;
}

.layer-down .arrow {
  transform: rotate(90deg);
  height: 0.14rem;
  transform-origin: 50% 50%;
}

.layer-down:after {
  content: "";
  position: absolute;
  top: -0.1rem;
  height: 0.1rem;
  left: 0;
  width: 100%;
}

.layer-down .child {
  position: absolute;
  width: 100%;
  max-height: 3.6rem;
  left: 0;
  background-color: #fff;
  overflow: auto;
  border-radius: 4px;
  bottom: calc(100% + 4px);
  padding: 0.1rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease);
  border: 1px solid #BFBFBF;
}

.layer-down .child>li {
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20%);
  padding: 0 0.1rem;
}

.layer-down .child>li>a,
.layer-down .child>li>span {
  display: block;
  white-space: nowrap;
  line-height: 0.36rem;
  width: 100%;
  padding: 0 0.2rem 0 0.3rem;
  transition: color 0.5s var(--ease), background-color 0.5s var(--ease);
}

.layer-down .child>li>a:hover,
.layer-down .child>li>span:hover {
  color: #0053FF;
  background-color: #F2F6FD;
}

.layer-down:hover .txt {
  background-color: var(--black);
}

.layer-down:hover .txt>a {
  color: var(--main);
}

.layer-down:hover .txt>i {
  color: var(--main);
}

.layer-down:hover .child {
  opacity: 1;
  pointer-events: auto;
}

.layer-down:hover .child>li {
  opacity: 1;
  transform: none;
}

/*页面结构*/
.maxSize {
  padding: 0 2.5rem;
}

#bloc {
  overflow: hidden;
  width: 100%;
}

#bloc header {
  position: fixed;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 100;
  pointer-events: none;
}

#bloc header .poster {
  width: 100%;
  height: 0.64rem;
  padding: 0 0.64rem;
}

#bloc header .poster .layer-button {
  pointer-events: painted;
}

#bloc header .poster .close {
  height: 0.16rem;
  margin-left: 1.9rem;
  pointer-events: painted;
  transition: transform 0.5s var(--ease);
  cursor: pointer;
}

#bloc header .poster .close:hover {
  transform: rotate(90deg);
}

#bloc header .pcNav {
  height: 0.75rem;
  background-color: #fff;
  padding: 0 0 0 0.64rem;
}

#bloc header .pcNav .left {
  height: 100%;
}

#bloc header .pcNav .right {
  pointer-events: painted;
}

#bloc header .pcNav .right #menu {
  margin-left: 0.2rem;
  position: relative;
  z-index: 10;
}

#bloc header .pcNav .right #menu .line {
  display: block;
  padding-top: 2px;
  padding-bottom: 2px;
  transition: all 0.4s ease;
}

#bloc header .pcNav .right #menu .line:before {
  content: '';
  display: block;
  height: 2px;
  width: 20PX;
  background-color: var(--main);
  border-top-right-radius: 2px;
  border-bottom-left-radius: 2px;
  transition: transform 0.4s ease 0.2s, background-color 0.5s ease 0s;
}

#bloc header .pcNav .right #menu.is-opened-navi .line:nth-of-type(1) {
  transform: translate3d(0, 5px, 0);
}

#bloc header .pcNav .right #menu.is-opened-navi .line:nth-of-type(1):before {
  transform: rotate(45deg);
}

#bloc header .pcNav .right #menu.is-opened-navi .line:nth-of-type(2) {
  opacity: 0;
}

#bloc header .pcNav .right #menu.is-opened-navi .line:nth-of-type(3) {
  transform: translate3d(0, -7px, 0);
}

#bloc header .pcNav .right #menu.is-opened-navi .line:nth-of-type(3):before {
  transform: rotate(-45deg);
}

#bloc header .pcNav .logoImg {
  margin-right: 0.6rem;
  pointer-events: painted;
}

#bloc header .pcNav .logoImg>img {
  height: 0.3rem;
  display: block;
}

#bloc header .pcNav .items {
  display: grid;
  grid-template-columns: repeat(6, auto);
  height: 100%;
  position: relative;
}

#bloc header .pcNav .items .active {
  position: relative;
  color: #0053FF;
}

#bloc header .pcNav .items .active:before {
  content: "";
  position: absolute;
  width: calc(100% - .6rem);
  left: 0.3rem;
  bottom: 0;
  height: 2px;
  background-color: #0053FF;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

#bloc header .pcNav .items>a {
  pointer-events: painted;
  transition: color 0.3s var(--ease);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  position: relative;
}

#bloc header .pcNav .items>a:before {
  content: "";
  position: absolute;
  width: calc(100% - .6rem);
  left: 0.3rem;
  bottom: 0;
  height: 2px;
  background-color: #0053FF;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

#bloc header .pcNav .items>a:first-of-type {
  padding-left: 0;
}

#bloc header .pcNav .items>a:first-of-type:before {
  width: calc(100% - .3rem);
  left: 0;
}

#bloc header .pcNav .items>a:hover {
  color: #0053FF;
}

#bloc header .pcNav .items>a:hover:before {
  opacity: 1;
}

#bloc header .pcNav .items .child {
  position: absolute;
  pointer-events: none;
  top: 100%;
  left: 0;
  /* width: 71.2vw; */
  width: 100%;
}

#bloc header .pcNav .items .child .childBox {
  position: absolute;
  left: 0.3rem;
  z-index: 5;
  transform-origin: 50% 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s var(--ease);
  opacity: 0;
  transform: translate3d(0, 0.25rem, 0);
}

#bloc header .pcNav .items .child .childBox:first-of-type {
  background-color: #fff;
  width: 100%;
  display: grid;
  grid-template-columns: 100%;
}

#bloc header .pcNav .items .child .childBox .col {
  position: relative;
  overflow: hidden;
}

#bloc header .pcNav .items .child .childBox .col .navTab {
  padding: 0.12rem 0;
}

#bloc header .pcNav .items .child .childBox .col .navTab .arrow {
  height: 0.14rem;
  opacity: 0;
  transform: translate3d(0.15rem, 0, 0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

#bloc header .pcNav .items .child .childBox .col .navTab.on .arrow,
#bloc header .pcNav .items .child .childBox .col .navTab:hover .arrow {
  opacity: 1;
  transform: none;
}

#bloc header .pcNav .items .child .childBox .col:nth-of-type(1) {
  padding: 0.2rem 0.2rem 0.1rem;
}

#bloc header .pcNav .items .child .childBox .col .ip {
  position: absolute;
  bottom: 0;
  left: -0.3rem;
  width: 3rem;
}

#bloc header .pcNav .items .child .childBox .col .part {
  padding: 0.1rem 0.1rem 0.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

#bloc header .pcNav .items .child .childBox .col .part:nth-of-type(1) {
  position: relative;
}

#bloc header .pcNav .items .child .childBox .col .part .navHref {
  min-width: 1.4rem;
  margin: 0 0.3rem;
  transform-origin: 0 50%;
}

#bloc header .pcNav .items .child .childBox .col .part .navHref>a {
  display: block;
  padding: 0.05rem 0;
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), color 0.3s var(--ease);
  opacity: 0;
  transform-origin: 0 50%;
  transform: translate3d(0, 0.25rem, 0) rotateY(-5deg);
}

#bloc header .pcNav .items .child .childBox .col .part .navHref>a:first-of-type {
  margin-bottom: 0.1rem;
}

#bloc header .pcNav .items .child .childBox .col .part .navHref>a:nth-of-type(2) {
  transition-delay: 0.05s;
}

#bloc header .pcNav .items .child .childBox .col .part .navHref>a:nth-of-type(3) {
  transition-delay: 0.1s;
}

#bloc header .pcNav .items .child .childBox .col .part .navHref>a:nth-of-type(4) {
  transition-delay: 0.15s;
}

#bloc header .pcNav .items .child .childBox .col .part .navHref>a:nth-of-type(5) {
  transition-delay: 0.2s;
}

#bloc header .pcNav .items .child .childBox .col .part .navHref>a:nth-of-type(6) {
  transition-delay: 0.25s;
}

#bloc header .pcNav .items .child .childBox .col .part .navHref>a:hover {
  color: #0053FF;
}

#bloc header .pcNav .items .child .childBox>.ma {
  display: block;
  width: 8vw;
}

#bloc header .pcNav .items .child .mask {
  width: calc(100% + 100vw);
  position: absolute;
  left: -40vw;
  top: 0;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

#bloc header .pcNav .items .child.on .mask {
  opacity: 1;
  pointer-events: painted;
}

#bloc header .pcNav .items .child.on .childBox.on {
  opacity: 1;
  transform: none;
  pointer-events: painted;
}

#bloc header .pcNav .items .child.on .childBox.on .col .part.on {
  perspective: 5rem;
  pointer-events: painted;
  opacity: 1;
}

#bloc header .pcNav .items .child.on .childBox.on .col .part.on .navHref {
  opacity: 1;
  transform: none;
}

#bloc header .pcNav .items .child.on .childBox.on .col .part.on .navHref>a {
  opacity: 1;
  transform: none;
}

#bloc header .pcNav .adrBtn {
  padding: 0 0.5rem;
}

#bloc header .pcNav .loginBtn {
  background-color: #0053FF;
  height: 0.75rem;
  padding: 0 0.4rem;
}

#bloc footer .top {
  height: 0.6rem;
  padding: 0 2.5rem;
}

#bloc footer .top .close {
  margin-left: 1.4rem;
  transition: transform 0.5s var(--ease);
  cursor: pointer;
}

#bloc footer .top .close:hover {
  transform: rotate(90deg);
}

#bloc footer .mid {
  align-items: flex-start;
  padding: 0.5rem 2.5rem 0.1rem 2.5rem;
  background-color: #F2F6FA;
}

#bloc footer .mid .left {
  width: 60%;
}

#bloc footer .mid .right {
  max-width: 40%;
}

#bloc footer .mid .right .share .layer-share {
  margin-left: 0.15rem;
}

#bloc footer .mid .right .share .uicon {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background-color: #DEEEFE;
  transition: all 0.5s var(--ease);
  padding: 0.1rem;
}

#bloc footer .mid .right .share .uicon:first-of-type {
  margin-left: 0;
}

#bloc footer .mid .right .maImg {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  box-shadow: 0px 15px 0.4rem -5px rgba(51, 51, 51, 0.15);
}

#bloc footer .line {
  width: 100%;
  height: 1px;
  background-color: #C4CDDD;
  opacity: 0.5;
}

#bloc footer .btm {
  background-color: #F2F6FA;
  height: 0.6rem;
  padding: 0 2.5rem;
}

#bloc footer .other {
  padding: 0 0.65rem;
  height: 1.15rem;
  justify-content: flex-end;
  width: 100%;
  display: flex;
  align-items: center;
}

#bloc footer .other .box {
  display: grid;
  gap: 0 0.15rem;
  height: 100%;
  grid-template-columns: repeat(2, 3.65rem);
  align-content: center;
}

#bloc footer .other .box .chunk {
  background-color: #fff;
  border-radius: 4px;
  padding: 0.15rem 0.18rem;
}

#bloc footer .other .box .chunk .layer-button {
  min-width: 1rem;
  /* width: 1.05rem;
  padding-left: 0;
  padding-right: 0; */
}

#bloc .wrapper {
  padding-top: 1.39rem;
  position: relative;
  z-index: 10;
  transition: all 0.5s var(--ease);
}

#bloc .wrapper.active {
  padding-top: 0.75rem;
}

#bloc .row {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#bloc .row>.bg {
  z-index: 1;
}

#bloc .row>.inner {
  position: relative;
  z-index: 5;
}

#bloc .row1 {
  position: relative;
  width: 100%;
  max-height: 6rem;
  overflow: hidden;
}

#bloc .row1>.bg {
  z-index: 1;
}

#bloc .row1>.inner {
  position: relative;
  z-index: 5;
}

#bloc .rowQa {
  padding-top: 0.8rem;
  padding-bottom: 0.7rem;
}

#bloc .rowQa .inner {
  padding: 0 5rem;
}

#bloc .rowQa .inner .group {
  display: grid;
  gap: 0.32rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 0.48rem;
}

#bloc .rowQa .inner .group input {
  border-radius: 0.1rem;
  background: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid #ECF0FF;
  box-shadow: 0px 3px 0.14rem 0px rgba(74, 58, 255, 0.03), 0px -2px 4px 0px rgba(20, 20, 43, 0.02), 0px 0.12rem 0.24rem 0px rgba(20, 20, 43, 0.04);
  transition: border-color 0.5s var(--ease);
}

#bloc .rowQa .inner .group input:focus {
  border-color: #0053FF;
}

#bloc .rowQa .inner .layer-button {
  padding: 0.2rem 0.4rem;
}

#bloc .topRow {
  position: relative;
}

#bloc .topRow .bg>img {
  width: 100%;
}

#bloc .topRow .inner {
  padding: 0 2.5rem;
  position: absolute;
  justify-content: center;
  align-items: flex-start;
  line-height: 2;
}

#bloc .topRow .inner1 {
  width: 46%;
  padding: 0 1rem;
  position: absolute;
  justify-content: center;
  align-items: flex-start;
  line-height: 2;
}

#bloc .topRow .inner .layer-button {
  min-width: 2.26rem;
  height: 0.52rem;
}

#bloc .topRow .inner .layer-button .txt {
  white-space: nowrap;
}

#bloc .topRow .inner .btm {
  position: absolute;
  bottom: 0.5rem;
  display: grid;
  left: 0;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 0.16rem;
  padding: 0 2.5rem;
}

#bloc .topRow .inner .btm .chunk {
  border-radius: 0.1rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0.2rem 0.3rem 0.3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(0.2rem);
}

#bloc .topRow .inner .btm .chunk>img {
  width: 0.6rem;
  height: 0.6rem;
  object-fit: cover;
  border: 3px solid #fff;
  border-radius: 50%;
}

#bloc .topRow .inner .btm .chunk .msg .wc {
  transition: color 0.5s var(--ease);
}

#bloc .topRow .inner .btm .chunk.on {
  background-color: var(--main);
}

#bloc .topRow .inner .btm .chunk.on .msg .wc {
  color: #fff;
}

#bloc .rowSea {
  /*出海*/
}

#bloc .rowSea .bg .pic {
  background-position: center top;
}

#bloc .rowSea .inner {
  padding: 1.2rem 2.5rem 1rem 2.5rem;
}

#bloc .rowSea .inner .layer-topic {
  margin-bottom: 1.4rem;
}

#bloc .rowSea .inner .group {
  position: relative;
}

#bloc .rowSea .inner .group .sign {
  right: -9%;
  top: -64%;
  width: 50%;
  position: absolute;
}

#bloc .rowSea .inner .group .sign img {
  display: block;
  width: 100%;
}

#bloc .rowSea .inner .group .sign .dot {
  z-index: 4;
  position: absolute;
  width: 88%;
  left: 0;
  top: 51%;
}

#bloc .rowSea .inner .group .box {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

#bloc .rowSea .inner .group .box .col {
  position: relative;
  will-change: width;
  perspective: 5rem;
}

#bloc .rowSea .inner .group .box .col .after {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

#bloc .rowSea .inner .group .box .col .after .top {
  height: 0.8rem;
  padding: 0 0.4rem;
}

#bloc .rowSea .inner .group .box .col .after .top>img {
  height: 0.3rem;
}

#bloc .rowSea .inner .group .box .col .after .items {
  padding: 0.1rem 0.4rem;
}

#bloc .rowSea .inner .group .box .col .after .items>li {
  padding: 0 0.2rem 0 0;
  height: 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(196, 205, 221, 0.7);
}

#bloc .rowSea .inner .group .box .col .after .items>li:last-of-type {
  border: none;
}

#bloc .rowSea .inner .group .box .col .after .items>li .ok {
  width: 0.16rem;
  height: 0.16rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0053FF;
  border-radius: 2px;
  font-size: 0.38vw;
  line-height: 1;
}

#bloc .rowSea .inner .group .box .col .after .items>li p {
  line-height: 1.4;
  width: 100%;
  padding-left: 0.26rem;
}

#bloc .rowSea .inner .group .box .col .before {
  pointer-events: none;
  opacity: 0;
  display: grid;
  width: 20vw;
  z-index: 2;
  grid-template-rows: 0.8rem calc(100% - .8rem);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transform: rotateY(-20deg);
  transform-origin: 0 50%;
}

#bloc .rowSea .inner .group .box .col .before .top {
  height: 0.8rem;
  padding: 0 0.4rem;
}

#bloc .rowSea .inner .group .box .col .before .top>img {
  height: 0.18rem;
}

#bloc .rowSea .inner .group .box .col .before .mid {
  padding: 0.5rem 0.25rem;
  align-items: flex-start;
}

#bloc .rowSea .inner .group .box .col .before .mid .layer-button {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 0.48rem;
}

#bloc .rowSea .inner .group .box .col .before .mid .items>li {
  padding: 5px 0;
  align-items: flex-start;
}

#bloc .rowSea .inner .group .box .col .before .mid .items>li .iconfont {
  font-size: 0.45vw;
  margin-right: 0.1rem;
  margin-top: 1em;
}

#bloc .rowSea .inner .group .box .col .before .mid .items>li p {
  line-height: 1.4;
}

#bloc .rowSea .inner .group .box .col:nth-of-type(2n) .after {
  background: linear-gradient(148deg, rgba(0, 71, 255, 0.1) -40%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
}

#bloc .rowSea .inner .group .box .col.on {
  z-index: 2;
}

#bloc .rowSea .inner .group .box .col.on .before {
  pointer-events: painted;
  opacity: 1;
  transform: none;
}

#bloc .rowSea .sign {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

#bloc .rowTab {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
  background: #F2F6FD;
}

#bloc .rowTab .tabBox {
  border-bottom: 2px solid #C4CDDD;
}

#bloc .rowTab .tabBox .tab {
  min-width: 2rem;
  text-align: center;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.5s var(--ease), color 0.5s var(--ease);
  transform: translate3d(0, 1px, 0);
}

#bloc .rowTab .tabBox .tab.on {
  border-color: var(--main);
  color: var(--main);
}

#bloc .rowTab .group {
  display: none;
  width: 100%;
}

#bloc .rowTab .group .box {
  display: grid;
  gap: 0.3rem;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
}

#bloc .rowTab .group .box .chunk {
  padding: 0.4rem 0.2rem;
  background-color: #fff;
  border-radius: 0.1rem;
  transition: all 0.5s var(--ease);
  min-height: 0;
  /* 防止内容撑大grid item */
  min-width: 0;
  /* 防止内容撑大grid item */
  overflow: hidden;
  /* 防止内容溢出 */
}

#bloc .rowTab .group .box .chunk .img {
  width: 2.4rem;
  height: 1.7rem;
  position: relative;
}

#bloc .rowTab .group .box .chunk .img .photo {
  object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s var(--ease);
}

#bloc .rowTab .group .box .chunk .img .photo_hover {
  position: absolute;
  object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

#bloc .rowTab .group .box .chunk .msg {
  position: relative;
  width: 100%;
}

#bloc .rowTab .group .box .chunk .msg>h3 {
  color: #333;
}

#bloc .rowTab .group .box .chunk .msg>p {
  color: #777777;
}

#bloc .rowTab .group .box .chunk .msg .f-16 {
  transition: color 0.5s var(--ease);
  display: block;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

#bloc .rowTab .group .box .chunk .msg .note {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: all 0.5s var(--ease);
}

#bloc .rowTab .group .box .chunk .msg .note p {
  display: block;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

#bloc .rowTab .group .box .chunk:hover {
  background-color: var(--main);
  box-shadow: 5.43px 5.43px 13.58px 0px rgba(42, 139, 242, 0.1), 5.43px 5.43px 13.58px 0px rgba(42, 139, 242, 0.1);
}

#bloc .rowTab .group .box .chunk:hover .img .photo {
  opacity: 0;
}

#bloc .rowTab .group .box .chunk:hover .img .photo_hover {
  opacity: 1;
}

#bloc .rowTab .group .box .chunk:hover .msg .f-16 {
  color: #fff;
}

#bloc .rowTab .group .box .chunk:hover .msg .note {
  opacity: 1;
  background-color: var(--main);
}

#bloc .rowTab .group.on {
  display: block;
}

#bloc .rowService .inner {
  height: 7rem;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 0.6rem;
  position: relative;
}

#bloc .rowService .inner .box {
  width: 100%;
  position: relative;
}

#bloc .rowService .inner .box .platform {
  width: 100%;
  position: relative;
  z-index: 10;
}

#bloc .rowService .inner .box .shadow {
  position: absolute;
  z-index: 5;
  width: 25.6rem;
  max-width: 25.6rem;
  left: 50.5%;
  transform: translateX(-50%);
  top: 100%;
}

#bloc .rowService .inner .box .group {
  position: absolute;
  width: 88%;
  bottom: 2.2rem;
  left: 0;
  z-index: 10;
  right: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 0.2rem;
}

#bloc .rowService .inner .box .group .chunk {
  padding: 0.3rem 0.2rem 0.6rem 0.2rem;
  background-color: #fff;
  overflow: hidden;
  border-radius: 0.1rem;
  position: relative;
  clip-path: inset(0 0 0.08rem 0 round 0px);
  transition: all 0.6s var(--ease);
}

#bloc .rowService .inner .box .group .chunk h3 {
  padding-left: 0.3rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px dashed rgba(196, 205, 221, 0.5);
  position: relative;
  z-index: 5;
}

#bloc .rowService .inner .box .group .chunk p {
  margin-top: 0.4rem;
  padding-left: 0.3rem;
  position: relative;
  z-index: 5;
}

#bloc .rowService .inner .box .group .chunk .num {
  color: rgba(0, 83, 255, 0.1);
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  z-index: 3;
  right: -0.1em;
  bottom: 0em;
}

#bloc .rowService .inner .box .group .chunk>.mk {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}

#bloc .rowService .inner .box .group .chunk:hover {
  clip-path: inset(0 0 0 0 round 0px);
  transform: translateY(-0.3rem);
  background-color: #0053FF;
}

#bloc .rowService .inner .box .group .chunk:hover .d-gc {
  color: #fff;
}

#bloc .rowService .inner .box .group .chunk:hover .num {
  color: rgba(255, 255, 255, 0.2);
}

#bloc .rowService .inner .layer-topic {
  bottom: 0.6rem;
  position: absolute;
  height: 2.2rem;
  width: 100%;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

#bloc .rowBox .inner .group {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}

#bloc .rowBox .inner .group .box {
  border-radius: 0.1rem;
  overflow: hidden;
  background-color: var(--main);
}

#bloc .rowBox .inner .group .box .msg {
  padding: 0.2rem 0.4rem;
  position: relative;
}

#bloc .rowBox .inner .group .box .msg .icon {
  height: 0.24rem;
}

#bloc .rowBox .inner .group .box .msg .img {
  position: absolute;
  height: 1.7rem;
  right: -0.8rem;
  bottom: -0.7rem;
  z-index: -1;
}

#bloc .rowBox .inner .group .box .items {
  padding: 0.4rem 0.4rem;
  background-color: #fff;
  border-radius: 0.3rem 0.3rem 0px 0px;
  position: relative;
  z-index: 10;
  height: 100%;
}

#bloc .rowBox .inner .group .box .items .layer-list {
  margin-bottom: 0.2rem;
}

#bloc .rowBox .inner .group .box .items .layer-list:last-of-type {
  margin-bottom: 0;
}

#bloc .rowList {
  background-color: #F2F6FD;
}

#bloc .rowList .group {
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
  gap: 0.2rem;
  align-items: stretch;
}

#bloc .rowList .group .box .top {
  position: relative;
  z-index: 10;
  box-shadow: 0px 0.1rem 0.3rem -2px rgba(0, 83, 255, 0.3);
  height: 0.8rem;
  border-radius: 0.1rem 0.1rem 0 0;
}

#bloc .rowList .group .box .top:not(.pic) {
  background: linear-gradient(270deg, #0053FF 0%, rgba(0, 83, 255, 0.76) 100%);
}

#bloc .rowList .group .box .mid {
  padding: 0.6rem;
  border-radius: 0 0 0.1rem 0.1rem;
  overflow: hidden;
  background-color: #fff;
  height: calc(100% - .8rem);
}

#bloc .rowList .group .box .mid .flex-row-cs {
  align-items: flex-start;
}

#bloc .rowList .group .box .mid .line {
  width: 100%;
  height: 1px;
  background-color: #E3E6F1;
  display: block;
  margin: 0.1rem 0 0.3rem 0;
}

#bloc .rowList .group .box .mid .list {
  padding-bottom: 0.2rem;
}

#bloc .rowList .group .box .mid .list .arrow {
  height: 0.12rem;
  margin-right: 5px;
  margin-top: 0.65em;
}

#bloc .rowList .group .box .mid .list .rect {
  min-height: 0.6rem;
  width: 100%;
  text-align: center;
}

#bloc .rowList .group .box .mid .list .grid {
  display: grid;
  grid-template-columns: repeat(var(--col), auto);
  gap: 0.12rem 0.6rem;
}

#bloc .rowList .group .box .mid .list:last-of-type {
  padding-bottom: 0;
  border: none;
}

#bloc .rowList .group .box .chunk {
  overflow: hidden;
  background-color: #fff;
  border-radius: 0 0 0.1rem 0.1rem;
  height: calc(100% - .8rem);
}

#bloc .rowList .group .box .chunk .flex-row-cs {
  align-items: flex-start;
}

#bloc .rowList .group .box .chunk .line {
  width: 100%;
  height: 1px;
  background-color: #E3E6F1;
  display: block;
}

#bloc .rowList .group .box .chunk .list .rect {
  padding: 0 0.35rem;
  line-height: 1.5;
  height: 1.4rem;
  width: 100%;
  text-align: center;
}

#bloc .rowList .group .box .chunk .list:last-of-type {
  padding-bottom: 0;
  border: none;
}

#bloc .rowPhoto {
  position: relative;
}

#bloc .rowPhoto .inner {
  position: absolute;
  z-index: 12;
  width: 100%;
  left: 0;
  bottom: 0;
  top: auto;
  padding-bottom: 1.4rem;
}

#bloc .rowPhoto .inner .layer-button {
  height: 0.52rem;
}

#bloc .rowAsk {
  padding-top: 1rem;
  background-color: #F2F6FD;
}

#bloc .rowAsk .group .list {
  padding: 0 2.5rem;
  cursor: pointer;
}

#bloc .rowAsk .group .list:nth-of-type(2n+1) {
  background-color: #ECF0FF;
}

#bloc .rowAsk .group .list .top {
  height: 0.6rem;
}

#bloc .rowAsk .group .list .top .circle {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background-color: var(--main);
  box-shadow: 4px 4px 0.1rem -1px rgba(0, 83, 255, 0.4);
  transition: all 0.5s var(--ease);
}

#bloc .rowAsk .group .list .top p {
  transition: color 0.5s var(--ease);
}

#bloc .rowAsk .group .list .mid {
  align-items: flex-start;
  padding-bottom: 0.5rem;
  padding-top: 0.1rem;
  display: none;
  overflow: hidden;
}

#bloc .rowAsk .group .list .mid .circle {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
}

#bloc .rowAsk .group .list .mid p {
  width: 78%;
}

#bloc .rowAsk .group .list.on {
  background-color: var(--main);
}

#bloc .rowAsk .group .list.on .top .circle {
  background-color: #fff;
  color: var(--main);
}

#bloc .rowAsk .group .list.on .top p {
  color: #fff;
}

#bloc .rowAsk .group .list.on .mid {
  display: flex;
}

#bloc .rowChunk .inner .group {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(var(--col), 4.5rem);
  gap: 0.4rem;
  justify-content: center;
}

#bloc .rowChunk .inner .group .box {
  border-radius: 0.1rem;
  overflow: hidden;
  border: 0.08rem solid #fff;
  box-shadow: 0px 3px 0.4rem 0px rgba(0, 62, 224, 0.2);
}

#bloc .rowChunk .inner .group .box .msg {
  height: 1.3rem;
  position: relative;
}

#bloc .rowChunk .inner .group .box .msg .img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 0.12rem;
  height: calc(100% + .12rem);
  object-fit: cover;
}

#bloc .rowChunk .inner .group .box .items {
  padding: 0.3rem 0.4rem;
  background-color: #fff;
  border-radius: 0.3rem 0.3rem 0px 0px;
  position: relative;
  z-index: 10;
  height: 100%;
}

#bloc .rowChunk .inner .group .box .items .layer-list {
  margin-bottom: 0.2rem;
}

#bloc .rowChunk .inner .group .box .items .layer-list:last-of-type {
  margin-bottom: 0;
}

#bloc .rowChunk .inner .group .box.high .msg {
  height: 1.8rem;
}

#bloc .rowLogo .inner {
  align-items: center;
}

#bloc .rowLogo .inner h2 {
  text-align: center;
  width: 100%;
}

#bloc .rowLogo .inner>p {
  display: none;
}

#bloc .rowLogo .inner .group {
  display: grid;
  padding-top: 0.6rem;
  gap: 0.4rem 0.6rem;
  grid-template-columns: repeat(4, 1fr);
}

#bloc .rowLogo .inner>p {
  text-align: center;
}

#bloc .rowLogo .inner .layer-button {
  padding: 0.15rem 0.25rem;
  margin-top: 0.5rem;
}

#bloc .rowProcess {
  background-color: #F2F6FD;
}

#bloc .rowProcess .group {
  background-color: #fff;
  box-shadow: -0.2rem 0.2rem 0.5rem -3px rgba(196, 206, 221, 0.5), -0.2rem 0.2rem 0.5rem -1px rgba(255, 255, 255, 0.9);
  padding: 0.2rem 1rem 0.4rem 1rem;
  border-radius: 0.1rem;
  overflow: hidden;
}

#bloc .rowProcess .group .box {
  display: grid;
  justify-content: space-between;
  grid-auto-flow: column;
  align-items: center;
}

#bloc .rowProcess .group .box .imgBox {
  width: 1.5rem;
  position: relative;
}

#bloc .rowProcess .group .box .imgBox .img {
  width: 100%;
  display: block;
}

#bloc .rowProcess .group .box .imgBox h3 {
  position: absolute;
  top: 54%;
  width: 100%;
  left: 0;
  padding: 0 0.2rem;
}

#bloc .rowProcess .group .box .arrow {
  height: 0.14rem;
}

#bloc .rowMap .inner {
  z-index: 6;
  position: absolute;
  padding: 0 2.5rem;
  justify-content: center;
}

#bloc .rowMap .inner .img {
  width: 3.7rem;
}

#bloc .rowMap .inner .layer-button {
  height: 0.52rem;
}

#bloc .rowComment .group {
  display: grid;
  width: 100%;
  grid-auto-flow: column;
  padding-top: 0.35rem;
  padding-bottom: 0.6rem;
}

@media screen and (orientation: landscape) {
  #bloc .rowComment .group {
    gap: 0 0.2rem;
  }
}

#bloc .rowComment .group .box {
  width: 4.3rem;
}

#bloc .rowComment .group .box .chunk {
  position: relative;
  width: 100%;
  padding: 0.6rem 0.4rem 0.4rem 0.4rem;
  transition: all 0.6s var(--ease);
}

#bloc .rowComment .group .box .chunk .mask {
  border-radius: 0.1rem;
  background-color: #F2F6FD;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s var(--ease);
}

#bloc .rowComment .group .box .chunk .mask .dot {
  position: absolute;
  top: -0.22rem;
  left: 0.4rem;
  text-shadow: 0px 4px 0.1rem rgba(0, 83, 255, 0.4);
  transition: all 0.6s var(--ease);
}

#bloc .rowComment .group .box .chunk .mask .arrow {
  color: #F2F6FD;
  position: absolute;
  left: 0.2rem;
  bottom: -0.24rem;
  transition: all 0.6s var(--ease);
}

#bloc .rowComment .group .box .chunk h4 {
  position: relative;
  z-index: 4;
  transition: color 0.6s var(--ease);
}

#bloc .rowComment .group .box .chunk>p {
  color: #707C97;
  position: relative;
  z-index: 4;
  transition: color 0.6s var(--ease);
}

#bloc .rowComment .group .box .msg {
  padding-top: 0.6rem;
  height: 1rem;
  transform: translate3d(0.2rem, 0, 0);
}

#bloc .rowComment .group .box .msg .img {
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.6s var(--ease);
}

#bloc .rowComment .group .box .msg small {
  margin-left: 4px;
}

#bloc .rowComment .group .box .msg .note {
  line-height: 1;
}

#bloc .rowComment .group .box .msg .note .dot {
  width: 0.12rem;
  height: 0.12rem;
  background: rgba(42, 139, 242, 0.25);
  border-radius: 50%;
  position: relative;
  margin-right: 4px;
}

#bloc .rowComment .group .box .msg .note .dot:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background-color: #0053FF;
}

@media screen and (orientation: landscape) {
  #bloc .rowComment .group .box.on {
    width: 5rem;
  }

  #bloc .rowComment .group .box.on .chunk {
    padding: 0.6rem 0.7rem 0.4rem 0.7rem;
  }

  #bloc .rowComment .group .box.on .chunk .mask {
    background-color: #0053FF;
    height: calc(100% + .5rem);
    bottom: -0.15rem;
  }

  #bloc .rowComment .group .box.on .chunk .mask .dot {
    transform: translate3d(0, 0.5rem, 0);
    color: #fff;
    text-shadow: 0px 4px 0.1rem rgba(0, 33, 102, 0.3);
  }

  #bloc .rowComment .group .box.on .chunk .mask .arrow {
    color: #0053FF;
  }

  #bloc .rowComment .group .box.on .chunk>p,
  #bloc .rowComment .group .box.on .chunk>h4 {
    color: #fff;
  }

  #bloc .rowComment .group .box.on .msg {
    transform: translate3d(0, 0.25rem, 0);
  }

  #bloc .rowComment .group .box.on .msg .img {
    width: 1rem;
    height: 1rem;
  }
}

@media screen and (orientation: portrait) {

  #bloc .rowComment .group .box.swiper-slide-active .chunk .mask,
  #bloc .rowComment .group .box.swiper-slide-duplicate-active .chunk .mask {
    background-color: #0053FF;
  }

  #bloc .rowComment .group .box.swiper-slide-active .chunk .mask .dot,
  #bloc .rowComment .group .box.swiper-slide-duplicate-active .chunk .mask .dot {
    color: #fff;
    text-shadow: 0px 4px 0.1rem rgba(0, 33, 102, 0.3);
  }

  #bloc .rowComment .group .box.swiper-slide-active .chunk .mask .arrow,
  #bloc .rowComment .group .box.swiper-slide-duplicate-active .chunk .mask .arrow {
    color: #0053FF;
  }

  #bloc .rowComment .group .box.swiper-slide-active .chunk h4,
  #bloc .rowComment .group .box.swiper-slide-duplicate-active .chunk h4 {
    color: #fff;
  }

  #bloc .rowComment .group .box.swiper-slide-active .chunk>p,
  #bloc .rowComment .group .box.swiper-slide-duplicate-active .chunk>p {
    color: #fff;
  }
}

#bloc .rowTable .bg .pic:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0.1rem);
}

#bloc .rowTable .group {
  border-radius: 0.2rem;
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0.2rem 0.2rem 0.8rem -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(196, 205, 221, 0.5);
}

#bloc .rowTable .group .list {
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
}

#bloc .rowTable .group .list>li {
  color: rgba(51, 51, 51, 0.8);
  min-height: 0.9rem;
  padding: 0.3rem 0.15rem;
  text-align: center;
  border-top: 1px solid rgba(196, 205, 221, 0.5);
  border-left: 1px solid rgba(196, 205, 221, 0.5);
}

#bloc .rowTable .group .list>li:first-of-type {
  color: var(--main);
}

@media screen and (orientation: landscape) {
  #bloc .rowTable .group .list>li:first-of-type {
    border-left: none;
  }
}

#bloc .rowTable .group .list:first-of-type>li {
  color: var(--main);
}

@media screen and (orientation: landscape) {
  #bloc .rowTable .group .list:first-of-type>li {
    border-top: none;
  }
}

#bloc .rowTable .group .list:nth-of-type(2n) {
  background-color: #f2f6fd;
}

#bloc .rowTable .layer-button {
  padding: 0.12rem 0.25rem;
}

#bloc .rowContrast {
  padding-top: 0.8rem;
}

#bloc .rowContrast .group {
  position: relative;
}

#bloc .rowContrast .group .mask .col {
  height: 100%;
  background-color: rgba(242, 246, 250, 0.5);
}

#bloc .rowContrast .group .box {
  padding: 0.7rem 0 1rem 0;
  position: relative;
  z-index: 5;
}

#bloc .rowContrast .group .box .first {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  margin-bottom: 0.4rem;
  padding: 0 2.5rem;
}

#bloc .rowContrast .group .box .first .img {
  height: 1rem;
}

#bloc .rowContrast .group .box .list {
  height: 0.8rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(196, 205, 221, 0.5);
}

#bloc .rowContrast .group .box .list:last-of-type {
  border-bottom: none;
}

#bloc .rowContrast .group .box .list .col {
  width: 50%;
  height: 0.5rem;
  padding: 0 2.5rem;
  transition: all 0.5s var(--ease);
}

#bloc .rowContrast .group .box .list .col:nth-of-type(2) {
  justify-content: flex-end;
}

#bloc .rowContrast .group .box .list .imgBox {
  position: absolute;
  width: 2.66rem;
  height: 0.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-left: 0.45rem;
}

#bloc .rowContrast .group .box .list .imgBox .dir {
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
}

#bloc .rowContrast .group .box .list .imgBox .icon {
  position: relative;
  z-index: 5;
  height: 0.2rem;
}

#bloc .rowContrast .group .box .list .imgBox h5 {
  position: relative;
  z-index: 5;
}

@media screen and (orientation: landscape) {
  #bloc .rowContrast .group .box .list:hover .col:nth-of-type(1) {
    background-color: rgba(255, 255, 255, 0.2);
  }

  #bloc .rowContrast .group .box .list:hover .col:nth-of-type(2) {
    background-color: rgba(196, 205, 221, 0.2);
  }
}

#bloc .rowFile {
  padding-bottom: 1rem;
  background-color: #F2F6FD;
}

#bloc .rowFile .bg .sign {
  position: absolute;
  bottom: 0;
  left: 0;
}

#bloc .rowFile .group {
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
  gap: 0.3rem 0.2rem;
}

#bloc .rowFile .group .box {
  border-radius: 0.1rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: -0.2rem 0.2rem 0.6rem -2px rgba(196, 206, 221, 0.5);
}

#bloc .rowFile .group .box .top {
  height: 0.5rem;
  background-color: var(--main);
}

#bloc .rowFile .group .box .mid {
  padding: 0.2rem 0.2rem 0.2rem 0.2rem;
}

#bloc .rowFile .group .box .mid .img {
  height: 1.8rem;
  width: 100%;
  object-fit: cover;
  display: block;
}

#bloc .rowFile .group .box .mid h4 {
  height: 0.54rem;
  color: #333;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#bloc .rowLook .bg .img {
  width: 100%;
  display: block;
}

#bloc .rowLook .inner {
  position: absolute;
  padding-bottom: 1%;
}

#bloc .rowLook .inner .group {
  height: 25%;
  width: 70%;
  padding-left: 2%;
}

#bloc .rowLook .inner .group .layer-button {
  height: 100%;
  border-radius: 3rem;
  padding: 0 0.35rem;
}

/*手机导航-常规*/
nav.menu {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: painted;
}

nav.menu .items {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

nav.menu .items .content {
  padding-top: 1.5rem;
  width: 100%;
  padding-left: 6vw;
  padding-right: 6vw;
  perspective: 5rem;
}

nav.menu .items .content .appLists {
  display: block;
  text-align: left;
  margin: 0.2rem 0;
  opacity: 0;
  position: relative;
}

nav.menu .items .content .appLists .loginBtn {
  background-color: var(--main);
  border-radius: 0.1rem;
  padding: 0.3rem 0;
  color: #fff;
  text-align: center;
  margin-top: 0.6rem;
  font-size: 4vw;
}

nav.menu .items .content .appLists>a {
  display: block;
  text-align: left;
  padding: 0.2rem 0;
  line-height: 1.1;
  position: relative;
}

nav.menu .items .content .appLists>a .icon {
  position: absolute;
  height: 70%;
  right: -0.2rem;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: rotate(-90deg);
  transition: transform 0.5s var(--ease);
}

nav.menu .items .content .appLists .child {
  padding: 0.2rem 0;
  display: none;
  width: 100%;
}

nav.menu .items .content .appLists .child div.part {
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: absolute;
  left: 0;
  top: 0;
  gap: 0.3rem 0;
  transition: opacity 0.5s var(--ease);
}

nav.menu .items .content .appLists .child div.part:nth-of-type(1) {
  position: relative;
}

nav.menu .items .content .appLists .child div.part .navHref {
  min-width: 2.6rem;
  transform-origin: 0 50%;
}

nav.menu .items .content .appLists .child div.part .navHref>a {
  padding: 0.1rem 0;
  pointer-events: painted;
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), color 0.3s var(--ease);
  transform-origin: 0 50%;
}

nav.menu .items .content .appLists .child div.part .navHref>a:first-of-type {
  margin-bottom: 0.2rem;
}

nav.menu .items .content .appLists .child div.part .navHref>a:nth-of-type(2) {
  transition-delay: 0.05s;
}

nav.menu .items .content .appLists .child div.part .navHref>a:nth-of-type(3) {
  transition-delay: 0.1s;
}

nav.menu .items .content .appLists .child div.part .navHref>a:nth-of-type(4) {
  transition-delay: 0.15s;
}

nav.menu .items .content .appLists .child div.part .navHref>a:nth-of-type(5) {
  transition-delay: 0.2s;
}

nav.menu .items .content .appLists .child div.part .navHref>a:nth-of-type(6) {
  transition-delay: 0.25s;
}

nav.menu .items .content .appLists .child div.part .navHref>a:hover {
  color: #0053FF;
}

nav.menu .items .content .appLists.active>a {
  color: var(--main);
}

nav.menu .items .content .appLists.active>a .icon {
  transform: rotate(0);
}

nav.menu .shape-overlays {
  width: 300vw;
  height: 100vh;
  z-index: 99;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
}

nav.menu .shape-overlays .path {
  background-color: #EEF7FF;
  transform: translate3d(0, -100%, 0);
  transition: transform 1s var(--ease);
}

nav.menu .shape-overlays.is-opened .path {
  transform: translate3d(0, 0, 0);
}

#home .banner {
  padding: 1.2rem 2.5rem 0 2.5rem;
}

#home .banner .bg {
  overflow: hidden;
}

#home .banner .bg .photo {
  transform: scale(1.1);
}

#home .banner .bg .photo .pic {
  width: 100vw;
  clip-path: inset(0 0 0 100% round 0px);
  transition: clip-path 1.2s var(--ease);
}

#home .banner .bg .photo.on {
  z-index: 10;
  clip-path: inset(0 0 0 0 round 0px);
}

#home .banner .bg .photo.on .pic {
  clip-path: inset(0 0 0 0 round 0px);
}

#home .banner .bg .photo.in {
  z-index: 12;
}

#home .banner .bg .photo.in .pic {
  clip-path: inset(0 0 0 0 round 0px);
}

#home .banner .inner {
  padding: 0 0 0.3rem 0;
  align-items: flex-start;
  position: relative;
}

#home .banner .inner .group {
  display: flex;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}

#home .banner .inner .group h1 sup {
  background-color: #FF7400;
  padding: 2px 4px;
  border-radius: 2px;
  margin-left: 5px;
}

#home .banner .inner .group>.items {
  display: grid;
  gap: 0 0.8rem;
  align-items: start;
  grid-auto-flow: column;
}

#home .banner .inner .group>.items .count {
  line-height: 1;
}

#home .banner .inner .group>.items small {
  padding: 1px 3px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  vertical-align: baseline;
  margin-left: 0.1rem;
}

#home .banner .inner .group>.items h2 {
  margin-top: 0.1rem;
}

#home .banner .inner .group>.layer-button {
  margin: 0.4rem 0 1.2rem 0;
}

#home .banner .inner .group:first-of-type {
  position: relative;
}

#home .banner .inner .group.on {
  opacity: 1;
}

#home .banner .inner .group.on .alanLeft {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .banner .inner .group.on .alanLeftEl {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .banner .inner .btm {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  backdrop-filter: blur(0.2rem);
  padding: 0.4rem 0.3rem;
}

#home .banner .inner .btm .downBox {
  display: grid;
  gap: 0 0.2rem;
  grid-auto-flow: column;
  align-content: space-between;
  margin-right: 0.2rem;
}

#home .banner .inner .pager {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0.6rem;
}

#home .banner .inner .pager .slider-dot {
  height: 0.06rem;
  width: 0.06rem;
  margin: 0 0.1rem;
  border-radius: 0.1rem;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.5s var(--ease), width 0.5s var(--ease);
}

#home .banner .inner .pager .slider-dot.on {
  background-color: #ffffff;
  width: 0.12rem;
}

#home .banner .bannerSw {
  width: 90%;
  height: 52vw;
  margin: 0 auto;
  position: relative;
}

#home .banner .bannerSw .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  width: 100%;
  height: 100%;
}

#home .banner .bannerSw .swiper-wrapper .swiper-slide {
  position: relative;
}

#home .banner .bannerSw .swiper-wrapper .swiper-slide .photo {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  position: relative;
}

#home .banner .bannerSw .swiper-wrapper .swiper-slide .photo .pic {
  width: 100%;
  position: absolute;
  border-radius: 0.2rem;
}

#home .banner .bannerSw .swiper-wrapper .swiper-slide .group {
  display: flex;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.4rem;
  height: 100%;
}

#home .banner .bannerSw .swiper-wrapper .swiper-slide .group h1 {
  margin-bottom: 0;
}

#home .banner .bannerSw .swiper-wrapper .swiper-slide .group h1 sup {
  background-color: #FF7400;
  padding: 2px 4px;
  border-radius: 2px;
  margin-left: 5px;
}

#home .banner .bannerSw .swiper-wrapper .swiper-slide .group>.layer-button {
  margin: 0.4rem 0 1.2rem 0;
}

#home .banner .bannerSw .swiper-pagination {
  bottom: 0.4rem;
}

#home .r1 {
  background-color: #fff;
}

#home .r1 .bg {
  padding-top: 2.5rem;
}

#home .r1 .bg #r1Media {
  object-fit: cover;
  display: block;
  width: 100%;
}

#home .r1 .bg>.full {
  object-fit: cover;
}

#home .r1 .bg .ip {
  position: absolute;
  bottom: 0;
  right: 3.2rem;
  height: 1.6rem;
}

#home .r1 .inner {
  padding: 1rem 2.5rem 0.8rem 2.5rem;
}

#home .r1 .inner .mid {
  align-items: flex-start;
}

#home .r1 .inner .mid .msg {
  width: 50vw;
}

#home .r1 .inner .btm {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 0.2rem;
}

#home .r1 .inner .btm .chunk {
  border-radius: 0.1rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0.2rem 0.3rem 0.35rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(0.2rem);
}

#home .r1 .inner .btm .chunk>img {
  width: 0.65rem;
}

#home .r1 .inner .btm .chunk .msg .countFn .count {
  line-height: 1;
}

#home .r1 .inner .btm .chunk .msg .countFn small {
  vertical-align: baseline;
}

#home .r2 .inner {
  padding: 0.8rem 2.5rem 1rem 2.5rem;
}

#home .r2 .inner .group {
  display: grid;
  border-radius: 4px;
  overflow: hidden;
  grid-template-columns: 3.5rem calc(100% - 3.5rem);
  grid-template-rows: 6.4rem;
  background-color: #F5F7FF;
}

#home .r2 .inner .group .left {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  box-shadow: 2px 0px 0.4rem -8px rgba(0, 83, 255, 0.2);
}

#home .r2 .inner .group .left .box {
  background-color: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.5s var(--ease);
}

#home .r2 .inner .group .left .box .line {
  width: 8px;
  position: absolute;
  height: 100%;
  z-index: 3;
  background-color: #FF7400;
  left: 0;
  top: 0;
  opacity: 0;
}

#home .r2 .inner .group .left .box h3 {
  position: relative;
  z-index: 5;
  transition: color 0.5s var(--ease);
}

#home .r2 .inner .group .left .box>.ip {
  position: absolute;
  width: 3rem;
  bottom: 0;
  left: -0.3rem;
  opacity: 0;
  transform: translate3d(-0.2rem, 0.3rem, 0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

#home .r2 .inner .group .left .box.on {
  background-color: #0053FF;
}

#home .r2 .inner .group .left .box.on .line {
  opacity: 1;
}

#home .r2 .inner .group .left .box.on h3 {
  color: #fff;
}

#home .r2 .inner .group .left .box.on>.ip {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r2 .inner .group .left .box.on:after {
  opacity: 0;
}

#home .r2 .inner .group .left .box:after {
  content: "";
  position: absolute;
  width: calc(100% - .6rem);
  left: 0.2rem;
  bottom: 0;
  height: 1px;
  background-color: #C4CDDD;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

#home .r2 .inner .group .left .box:last-of-type:after {
  opacity: 0;
}

#home .r2 .inner .group .right .part {
  padding: 0 0.5rem 0.5rem 0.5rem;
  height: 100%;
  display: none;
  overflow-y: auto;
}

#home .r2 .inner .group .right .part .tab {
  height: 1.2rem;
  width: 100%;
  opacity: 0;
}

#home .r2 .inner .group .right .part .tab.go {
  animation: fadeUpSmall 1s var(--ease);
  animation-fill-mode: both;
  opacity: 1;
}

#home .r2 .inner .group .right .part .tab .layer-tab {
  margin-right: 0.2rem;
  position: relative;
  width: 1.8rem;
  height: 0.4rem;
  border-radius: 0.1rem;
  cursor: pointer;
  transition: all 0.5s var(--ease);
}

#home .r2 .inner .group .right .part .tab .layer-tab .imgBox {
  position: relative;
  z-index: 4;
}

#home .r2 .inner .group .right .part .tab .layer-tab .imgBox img {
  height: 0.18rem;
  display: block;
  transition: opacity 0.5s var(--ease);
}

#home .r2 .inner .group .right .part .tab .layer-tab .imgBox img.hover_ {
  position: absolute;
  bottom: 0;
  margin: auto;
  top: 0;
  opacity: 0;
}

#home .r2 .inner .group .right .part .tab .layer-tab p {
  transition: color 0.5s var(--ease);
  position: relative;
  z-index: 4;
}

#home .r2 .inner .group .right .part .tab .layer-tab:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.1rem;
  box-shadow: inset 10px 10px 20px 0px rgba(0, 83, 255, 0.1), inset -10px -10px 20px 0px rgba(240, 243, 249, 0.2);
  transition: opacity 0.5s var(--ease);
  opacity: 1;
}

#home .r2 .inner .group .right .part .tab .layer-tab:hover {
  box-shadow: 10px 10px 30px -2px rgba(0, 0, 0, 0.16);
}

#home .r2 .inner .group .right .part .tab .layer-tab:hover:after {
  opacity: 0;
}

#home .r2 .inner .group .right .part .tab .layer-tab.on {
  background: linear-gradient(103deg, #0053FF 15%, #38BBFA 109%);
  box-shadow: 10px 10px 30px 0px rgba(73, 135, 243, 0.6), -10px -10px 30px 0px #FFFFFF;
}

#home .r2 .inner .group .right .part .tab .layer-tab.on:after {
  opacity: 0;
}

#home .r2 .inner .group .right .part .tab .layer-tab.on .imgBox img {
  opacity: 0;
}

#home .r2 .inner .group .right .part .tab .layer-tab.on .imgBox img.hover_ {
  opacity: 1;
}

#home .r2 .inner .group .right .part .tab .layer-tab.on p {
  color: #fff;
}

#home .r2 .inner .group .right .part .chunk {
  height: calc(100% - 1.3rem);
  width: 100%;
  position: relative;
  display: none;
}

#home .r2 .inner .group .right .part .chunk>p {
  max-width: 7rem;
  margin-bottom: 0.4rem;
}

#home .r2 .inner .group .right .part .chunk .items {
  display: grid;
  grid-template-columns: repeat(var(--col), 2.14rem);
  justify-content: start;
  gap: 0 0.2rem;
}

#home .r2 .inner .group .right .part .chunk .items>li {
  padding: 0.18rem 0.1rem 0.4rem 0.2rem;
  background-color: #fff;
  border-radius: 4px;
}

#home .r2 .inner .group .right .part .chunk .items>li .layer-icon {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  box-shadow: 4px 10px 20px 0px rgba(0, 0, 0, 0.2);
}

#home .r2 .inner .group .right .part .chunk .items>li .layer-icon>img {
  height: 0.18rem;
}

#home .r2 .inner .group .right .part .chunk .set {
  position: absolute;
  left: 0;
  bottom: 0;
}

#home .r2 .inner .group .right .part .chunk .set .layer-button {
  width: 1.15rem;
  height: 0.46rem;
  margin-right: 0.2rem;
}

#home .r2 .inner .group .right .part .chunk.on {
  display: block;
}

#home .r2 .inner .group .right .part .chunk>.list {
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
  gap: 0 0.3rem;
  margin-bottom: 0.25rem;
  opacity: 0;
}

#home .r2 .inner .group .right .part .chunk>.list.go {
  opacity: 1;
  animation: fadeUpSmall 1s var(--ease);
  animation-fill-mode: both;
}

#home .r2 .inner .group .right .part .chunk>.list:nth-of-type(1) {
  animation-delay: 0.1s;
}

#home .r2 .inner .group .right .part .chunk>.list:nth-of-type(2) {
  animation-delay: 0.2s;
}

#home .r2 .inner .group .right .part .chunk>.list:nth-of-type(3) {
  animation-delay: 0.3s;
}

#home .r2 .inner .group .right .part .chunk>.list:last-of-type {
  margin-bottom: 0;
}

#home .r2 .inner .group .right .part .chunk>.list:last-of-type .content .btnBox .layer-button {
  min-width: 3.5rem;
}

#home .r2 .inner .group .right .part .chunk>.list .content {
  border-radius: 4px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  height: 100%;
  padding: 0.25rem 0.3rem;
  align-items: flex-start;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s var(--ease);
}

#home .r2 .inner .group .right .part .chunk>.list .content .content-left {
  width: 48%;
  height: 100%;
}

#home .r2 .inner .group .right .part .chunk>.list .content .maskPic {
  position: absolute;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

#home .r2 .inner .group .right .part .chunk>.list .content h4 {
  position: relative;
  z-index: 4;
  transition: color 0.5s var(--ease);
}

#home .r2 .inner .group .right .part .chunk>.list .content .btnBox {
  position: absolute;
  padding: 0.25rem 0;
  height: 100%;
  top: 0;
  right: 5%;
  z-index: 4;
}


#home .r2 .inner .group .right .part .chunk>.list .content:hover {
  box-shadow: 0px 0.15rem 0.4rem -2px rgba(0, 83, 255, 0.12);
  transform: translate3d(0, -0.06rem, 0);
}

#home .r2 .inner .group .right .part .chunk>.list .content:hover .maskPic {
  opacity: 1;
}

#home .r2 .inner .group .right .part .chunk>.list .content:hover h4 {
  color: #fff;
}

#home .r2 .inner .group .right .part .chunk>.list .content:hover .layer-mb:before {
  opacity: 1;
}

#home .r2 .inner .group .right .part .chunk>.list .content:hover .layer-null {
  background-color: #fff;
  border-color: transparent;
  box-shadow: 0 5px 0.15rem -2px rgba(0, 0, 0, 0.12);
}

#home .r2 .inner .group .right .part .chunk>.items {
  display: grid;
  gap: 0.3rem;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  opacity: 0;
  animation-delay: 0.1s;
}

#home .r2 .inner .group .right .part .chunk>.items.go {
  animation: fadeUpSmall 1s var(--ease);
  animation-fill-mode: both;
  opacity: 1;
}

#home .r2 .inner .group .right .part .chunk>.items .content {
  border-radius: 4px;
  position: relative;
  background-color: #fff;
  padding: 0.25rem 0.3rem;
  align-items: flex-start;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.5s var(--ease);
}

#home .r2 .inner .group .right .part .chunk>.items .content:hover {
  box-shadow: 0px 0.15rem 0.4rem -2px rgba(0, 83, 255, 0.15);
  transform: translate3d(0, -0.06rem, 0);
}

#home .r2 .inner .group .right .part .chunk>.items .content:hover .layer-mask {
  box-shadow: 0 0.15rem 0.3rem -5px rgba(254, 155, 75, 0.5);
}

#home .r2 .inner .group .right .part.on {
  display: block;
}

#home .r3 .bg .pic:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(238, 245, 255, 0.5);
  backdrop-filter: blur(0.1rem);
}

#home .r3 .inner {
  padding: 0.8rem 2.5rem 0.7rem 2.5rem;
}

#home .r3 .inner .group {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#home .r3 .inner .group .swiper {
  width: calc(100% - 3rem);
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

#home .r3 .inner .group .swiper .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  transition-timing-function: var(--ease);
}

#home .r3 .inner .group .swiper .swiper-wrapper .swiper-slide-active {
  opacity: 0;
  transform: translate3d(0, 0.4rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

#home .r3 .inner .group .swiper .swiper-wrapper .swiper-slide-prev {
  opacity: 0;
  transform: translate3d(0, 0.5rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: 0.1s;
}

#home .r3 .inner .group .swiper .swiper-wrapper .swiper-slide-next {
  opacity: 0;
  transform: translate3d(0, 0.6rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: 0.2s;
}

#home .r3 .inner .group .swiper.go .swiper-wrapper .swiper-slide-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r3 .inner .group .swiper.go .swiper-wrapper .swiper-slide-prev {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r3 .inner .group .swiper.go .swiper-wrapper .swiper-slide-next {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r3 .inner .group .set {
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  justify-content: space-between;
}

#home .r3 .inner .group .set .dot {
  background-color: #f2f6fd;
  border-radius: 50%;
  width: 0.3rem;
  height: 0.3rem;
  margin: 0 0.15rem;
  position: relative;
  transition: background-color 0.5s var(--ease);
}

#home .r3 .inner .group .set .dot .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: linear-gradient(136deg, #0053FF 14%, #38BBFA 109%);
  box-shadow: 0px 0.1rem 0.2rem -5px rgba(0, 83, 255, 0.6);
  opacity: 0;
}

#home .r3 .inner .group .set .dot.r3Prev img {
  transform: scaleX(-1);
}

#home .r3 .inner .group .set .dot img {
  height: 0.1rem;
  transition: opacity 0.5s var(--ease);
}

#home .r3 .inner .group .set .dot .arrow_hover {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#home .r3 .inner .group .set .dot:hover {
  background-color: rgba(242, 246, 253, 0);
}

#home .r3 .inner .group .set .dot:hover .mask {
  opacity: 1;
}

#home .r3 .inner .group .set .dot:hover img {
  opacity: 0;
}

#home .r3 .inner .group .set .dot:hover img.arrow_hover {
  opacity: 1;
}

#home .r4 .bg .pic {
  background-position: center top;
}

#home .r4 .inner {
  padding: 1.2rem 2.5rem 0.5rem 2.5rem;
}

#home .r4 .inner .layer-topic {
  margin-bottom: 1.4rem;
}

#home .r4 .inner .group {
  position: relative;
}

#home .r4 .inner .group .sign {
  right: -9%;
  top: -64%;
  width: 50%;
  position: absolute;
}

#home .r4 .inner .group .sign img {
  display: block;
  width: 100%;
}

#home .r4 .inner .group .sign .dot {
  z-index: 4;
  position: absolute;
  width: 88%;
  left: 0;
  top: 51%;
}

#home .r4 .inner .group .box {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

#home .r4 .inner .group .box .col {
  position: relative;
  will-change: width;
  perspective: 5rem;
}

#home .r4 .inner .group .box .col .after {
  padding: 0.3rem 0.4rem 0.4rem 0.4rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

#home .r4 .inner .group .box .col .after .top {
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(196, 205, 221, 0.7);
}

#home .r4 .inner .group .box .col .after .top img {
  height: 0.18rem;
}

#home .r4 .inner .group .box .col .after .items>li {
  padding: 0 0.2rem 0 0;
  height: 1.3rem;
  position: relative;
  border-bottom: 1px solid rgba(196, 205, 221, 0.7);
}

#home .r4 .inner .group .box .col .after .items>li .ok {
  width: 0.16rem;
  height: 0.16rem;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #0053FF;
  border-radius: 2px;
  font-size: 0.38vw;
  line-height: 1;
}

#home .r4 .inner .group .box .col .after .items>li p {
  line-height: 1.4;
  width: 100%;
  padding-left: 0.26rem;
}

#home .r4 .inner .group .box .col .before {
  pointer-events: none;
  opacity: 0;
  display: grid;
  width: 20vw;
  z-index: 2;
  grid-template-rows: 0.8rem calc(100% - .8rem);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transform: rotateY(-20deg);
  transform-origin: 0 50%;
}

#home .r4 .inner .group .box .col .before .top {
  height: 0.8rem;
  padding: 0 0.4rem;
}

#home .r4 .inner .group .box .col .before .top>img {
  height: 0.18rem;
}

#home .r4 .inner .group .box .col .before .mid {
  padding: 0.5rem 0.25rem;
  align-items: flex-start;
}

#home .r4 .inner .group .box .col .before .mid .layer-button {
  width: 1.5rem;
  min-width: 1.5rem;
  height: 0.48rem;
  display: none;
}

#home .r4 .inner .group .box .col .before .mid .items>li {
  padding: 5px 0;
  align-items: flex-start;
}

#home .r4 .inner .group .box .col .before .mid .items>li .iconfont {
  font-size: 0.45vw;
  margin-right: 0.1rem;
  margin-top: 1em;
}

#home .r4 .inner .group .box .col .before .mid .items>li p {
  line-height: 1.4;
}

#home .r4 .inner .group .box .col:nth-of-type(2n) .after {
  background: linear-gradient(148deg, rgba(0, 71, 255, 0.1) -40%, rgba(255, 255, 255, 0) 100%), #FFFFFF;
}

@media screen and (orientation: landscape) {
  #home .r4 .inner .group .box .col.on {
    z-index: 2;
  }

  #home .r4 .inner .group .box .col.on .before {
    pointer-events: painted;
    opacity: 1;
    transform: none;
  }
}

@media screen and (orientation: portrait) {
  #home .r4 .inner .group .box .col {
    z-index: 2;
  }

  #home .r4 .inner .group .box .col .before {
    pointer-events: painted;
    opacity: 1;
    transform: none;
  }
}

#home .r4 .sign {
  position: absolute;
  z-index: 10;
  pointer-events: none;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

#home .r5 {
  background: #0053FF;
}

#home .r5 .inner {
  height: 7rem;
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 0.6rem;
  position: relative;
}

#home .r5 .inner .box {
  width: 100%;
  position: relative;
}

#home .r5 .inner .box .platform {
  width: 100%;
  position: relative;
  z-index: 10;
}

#home .r5 .inner .box .shadow {
  position: absolute;
  z-index: 5;
  width: 25.6rem;
  max-width: 25.6rem;
  left: 50.5%;
  transform: translateX(-50%);
  top: 100%;
}

#home .r5 .inner .box .group {
  position: absolute;
  width: 88%;
  bottom: 2.2rem;
  left: 0;
  z-index: 10;
  right: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 0.2rem;
}

#home .r5 .inner .box .group .chunk {
  padding: 0.3rem 0.2rem 0.6rem 0.2rem;
  background-color: #fff;
  overflow: hidden;
  border-radius: 0.1rem;
  position: relative;
  clip-path: inset(0 0 0.08rem 0 round 0px);
  transition: all 0.6s var(--ease);
}

#home .r5 .inner .box .group .chunk h3 {
  padding-left: 0.3rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px dashed rgba(196, 205, 221, 0.5);
  position: relative;
  z-index: 5;
}

#home .r5 .inner .box .group .chunk p {
  margin-top: 0.4rem;
  padding-left: 0.3rem;
  position: relative;
  z-index: 5;
}

#home .r5 .inner .box .group .chunk .num {
  color: rgba(0, 83, 255, 0.1);
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  z-index: 3;
  right: -0.1em;
  bottom: 0em;
}

#home .r5 .inner .box .group .chunk>.mk {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}

#home .r5 .inner .box .group .chunk:hover {
  clip-path: inset(0 0 0 0 round 0px);
  transform: translateY(-0.3rem);
  background-color: #0053FF;
}

#home .r5 .inner .box .group .chunk:hover .d-gc {
  color: #fff;
}

#home .r5 .inner .box .group .chunk:hover .num {
  color: rgba(255, 255, 255, 0.2);
}

#home .r5 .inner .layer-topic {
  bottom: 0.6rem;
  position: absolute;
  height: 2.2rem;
  width: 100%;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

#home .r6 .inner {
  padding: 0.8rem 2.5rem 0 2.5rem;
}

#home .r6 .inner .group {
  width: 100%;
  padding-bottom: 0.7rem;
}

#home .r6 .inner .group .swiper {
  width: 100%;
}

#home .r6 .inner .group .swiper .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  transition-timing-function: var(--ease);
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide {
  cursor: pointer;
  opacity: 0;
  transform: translate3d(0, 0.8rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: 0.3s;
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box {
  width: 100%;
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .chunk {
  position: relative;
  height: 1.78rem;
  width: 100%;
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .chunk .mask {
  border-radius: 0.1rem;
  background-color: #F2F6FD;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.6s var(--ease);
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .chunk .mask .dot {
  position: absolute;
  top: -0.22rem;
  left: 0.4rem;
  text-shadow: 0px 4px 0.1rem rgba(0, 83, 255, 0.4);
  transition: all 0.6s var(--ease);
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .chunk .mask .arrow {
  color: #F2F6FD;
  position: absolute;
  left: 0.2rem;
  bottom: -0.24rem;
  transition: all 0.6s var(--ease);
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .chunk>p {
  color: #707C97;
  position: relative;
  z-index: 4;
  padding: 0 0.4rem;
  line-height: 1.6;
  transition: color 0.6s var(--ease);
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg {
  padding-top: 0.6rem;
  height: 1rem;
  transform: translate3d(0.2rem, 0, 0);
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .img {
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.6s var(--ease);
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg small {
  margin-left: 4px;
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .note {
  line-height: 1;
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .note .dot {
  width: 0.12rem;
  height: 0.12rem;
  background: rgba(42, 139, 242, 0.25);
  border-radius: 50%;
  position: relative;
  margin-right: 4px;
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .note .dot:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background-color: #0053FF;
}

@media screen and (orientation: landscape) {

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .chunk,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .chunk {
    transform: translate3d(0, -0.16rem, 0);
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .chunk .mask,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .chunk .mask {
    background-color: #0053FF;
    height: calc(100% + .2rem);
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .chunk .mask .dot,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .chunk .mask .dot {
    transform: translate3d(0, 0.24rem, 0);
    color: #fff;
    text-shadow: 0px 4px 0.1rem rgba(0, 33, 102, 0.3);
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .chunk .mask .arrow,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .chunk .mask .arrow {
    color: #0053FF;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .chunk>p,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .chunk>p {
    color: #fff;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .msg,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .msg {
    transform: translate3d(0, 0, 0);
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .msg .img,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .msg .img {
    width: 1rem;
    height: 1rem;
  }
}

@media screen and (orientation: portrait) {

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .chunk .mask,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .chunk .mask {
    background-color: #0053FF;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .chunk .mask .dot,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .chunk .mask .dot {
    color: #fff;
    text-shadow: 0px 4px 0.1rem rgba(0, 33, 102, 0.3);
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .chunk .mask .arrow,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .chunk .mask .arrow {
    color: #0053FF;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .box .chunk>p,
  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .box .chunk>p {
    color: #fff;
  }
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide-active {
  opacity: 0;
  transform: translate3d(0, 0.4rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide-prev {
  opacity: 0;
  transform: translate3d(0, 0.5rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: 0.1s;
}

#home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide-next {
  opacity: 0;
  transform: translate3d(0, 0.6rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: 0.2s;
}

#home .r6 .inner .group .swiper.go .swiper-wrapper .swiper-slide {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r6 .inner .group .swiper.go .swiper-wrapper .swiper-slide-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r6 .inner .group .swiper.go .swiper-wrapper .swiper-slide-prev {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r6 .inner .group .swiper.go .swiper-wrapper .swiper-slide-next {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r6 .inner .group .set {
  padding: 0.7rem 0;
}

#home .r6 .inner .group .set .dot {
  background-color: #f2f6fd;
  border-radius: 50%;
  width: 0.3rem;
  height: 0.3rem;
  margin: 0 0.15rem;
  position: relative;
  transition: background-color 0.5s var(--ease);
}

#home .r6 .inner .group .set .dot .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: linear-gradient(136deg, #0053FF 14%, #38BBFA 109%);
  box-shadow: 0px 0.1rem 0.2rem -5px rgba(0, 83, 255, 0.6);
  opacity: 0;
}

#home .r6 .inner .group .set .dot.r6Prev img {
  transform: scaleX(-1);
}

#home .r6 .inner .group .set .dot img {
  height: 0.1rem;
  transition: opacity 0.5s var(--ease);
}

#home .r6 .inner .group .set .dot .arrow_hover {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#home .r6 .inner .group .set .dot:hover {
  background-color: rgba(242, 246, 253, 0);
}

#home .r6 .inner .group .set .dot:hover .mask {
  opacity: 1;
}

#home .r6 .inner .group .set .dot:hover img {
  opacity: 0;
}

#home .r6 .inner .group .set .dot:hover img.arrow_hover {
  opacity: 1;
}

#home .r7 .bg .pic:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(238, 245, 255, 0.5);
  backdrop-filter: blur(0.1rem);
}

#home .r7 .inner {
  padding: 0.8rem 2.5rem 0.8rem 2.5rem;
}

#home .r7 .inner .group {
  width: 100%;
  /* overflow: hidden; */
  position: relative;
  padding-bottom: 0;
}

#home .r7 .inner .group .swiper {
  width: 100%;
  /* overflow: hidden; */
  display: block;
  margin: 0 auto;
}

#home .r7 .inner .group .swiper .swiper-wrapper {
  display: grid;
  grid-auto-flow: column;
  align-content: stretch;
  transition-timing-function: var(--ease);
}

@media screen and (orientation: landscape) {
  #home .r7 .inner .group .swiper .swiper-wrapper {
    grid-template-columns: repeat(5, 1fr);
    gap: 0 0.2rem;
  }
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box {
  width: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
  height: 100%;
  background-color: #0039ea;
  transition: all 0.6s var(--ease);
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box:hover {
  clip-path: inset(0 0 0 0 round 0px);
  transform: translateY(-0.1rem);
  background-color: #0039ea;
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .photo {
  height: 2.45rem;
  width: 100%;
  object-fit: cover;
}


#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg {
  padding: 0.1rem 0.3rem 0.2rem 0.3rem;
  position: relative;
  background-color: #0039ea;
  height: 100%;
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .sign {
  position: absolute;
  width: 100%;
  bottom: calc(100% - 1px);
  left: 0;
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg small {
  margin-left: 5px;
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .items>li {
  margin: 3px 0;
  position: relative;
  padding-left: 10px;
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .items>li .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  background-color: #fff;
  top: 7px;
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide-active {
  opacity: 0;
  transform: translate3d(0, 0.4rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide-prev {
  opacity: 0;
  transform: translate3d(0, 0.5rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: 0.1s;
}

#home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide-next {
  opacity: 0;
  transform: translate3d(0, 0.6rem, 0);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  transition-delay: 0.2s;
}

#home .r7 .inner .group .swiper.go .swiper-wrapper .swiper-slide {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r7 .inner .group .swiper.go .swiper-wrapper .swiper-slide-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r7 .inner .group .swiper.go .swiper-wrapper .swiper-slide-prev {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r7 .inner .group .swiper.go .swiper-wrapper .swiper-slide-next {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#home .r7 .inner .group .set {
  padding: 0.6rem 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  justify-content: space-between;
}

#home .r7 .inner .group .set .dot {
  background-color: #f2f6fd;
  border-radius: 50%;
  pointer-events: painted;
  width: 0.3rem;
  height: 0.3rem;
  position: relative;
  transition: background-color 0.5s var(--ease);
}

#home .r7 .inner .group .set .dot .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: linear-gradient(136deg, #0053FF 14%, #38BBFA 109%);
  box-shadow: 0px 0.1rem 0.2rem -5px rgba(0, 83, 255, 0.6);
  opacity: 0;
}

#home .r7 .inner .group .set .dot.r7Prev img {
  transform: scaleX(-1);
}

#home .r7 .inner .group .set .dot img {
  height: 0.1rem;
  transition: opacity 0.5s var(--ease);
}

#home .r7 .inner .group .set .dot .arrow_hover {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#home .r7 .inner .group .set .dot:hover {
  background-color: rgba(242, 246, 253, 0);
}

#home .r7 .inner .group .set .dot:hover .mask {
  opacity: 1;
}

#home .r7 .inner .group .set .dot:hover img {
  opacity: 0;
}

#home .r7 .inner .group .set .dot:hover img.arrow_hover {
  opacity: 1;
}

/* 弹窗样式 */
.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  max-width: 25rem;
  background-color: #fff;
  border-radius: .2rem;
  text-align: center;
  z-index: 10000;
}

.modal-title {
  margin-bottom: 0.25rem;
  color: #333;
  font-size: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title .modal-title-left {
  width: 1.25rem;
}

.qr-code-container img {
  max-width: 12.5rem;
  height: auto;
  margin: 0 auto;
}

.close-modal {
  width: 0.25rem;
  height: 0.25rem;
  background-color: #f9f9f9;
  color: #999999;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}

.close-modal:hover {
  background-color: #999999;
  color: #ffffff;
}

.rowRect {
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}

#aiPage .r1 {
  padding-top: 0.8rem;
  padding-bottom: 0.5rem;
  background-color: #F2F6FD;
}

#aiPage .r1 .inner .group {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.28rem;
}

#aiPage .r1 .inner .group .box {
  padding: 0.3rem;
  border-radius: 0.1rem;
  height: 4rem;
}

#aiPage .r1 .inner .group .box .layer-button {
  min-width: 0;
  padding: 0.08rem 0.15rem;
}

#aiPage .r1 .inner .group .box .arrow {
  height: 0.12rem;
}

#aiPage .r1 .inner .group .box:hover {
  box-shadow: 0 0.1rem 0.3rem -3px rgba(0, 0, 0, 0.12);
}

#aiPage .r2 {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
  background-color: #F2F6FD;
}

#aiPage .r2 .inner .group {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.28rem;
}

#aiPage .r2 .inner .group .box {
  background-color: #fff;
  border-radius: 0.1rem;
  padding: 0.3rem;
}

#aiPage .r2 .inner .group .box .arrow {
  padding: 4px;
  background-color: #0053FF;
  border-radius: 4px;
}

#aiPage .r2 .inner .group .box .arrow>img {
  display: block;
  height: 0.14rem;
}

#aiPage .r2 .inner .group .box .line {
  height: 1px;
  background-color: #D8D8D8;
  margin: 0.3rem 0;
  width: 100%;
}

#aiPage .r2 .inner .group .box .layer-button {
  min-width: 0;
}

#aiPage .r2 .inner .group .box .note {
  position: absolute;
  background-color: #fff;
  padding: 0 0.3rem 0.3rem 0.3rem;
  opacity: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s var(--ease);
  z-index: 6;
}

#aiPage .r2 .inner .group .box .note>img {
  height: 1.2rem;
  display: block;
  margin-bottom: 5px;
}

#aiPage .r2 .inner .group .box:hover {
  box-shadow: -0.1rem 0.1rem 0.4rem -1px rgba(196, 206, 221, 0.5);
  background-color: #e3ecff;
}

#aiPage .r3 {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

#aiPage .r3 .inner .group {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.28rem;
}

#aiPage .r3 .inner .group .box {
  border-radius: 0.1rem;
}

#aiPage .r3 .inner .group .box .msg {
  padding: 0.5rem;
}

#aiPage .r3 .inner .group .box .msg .icon {
  height: 0.24rem;
}

#aiPage .r3 .inner .group .box .items {
  padding: 0.4rem 0.3rem;
  background-color: #fff;
  border-radius: 0.3rem 0.3rem 0px 0px;
}

#aiPage .r3 .inner .group .box .items .layer-list {
  margin-bottom: 0.2rem;
}

#aiPage .r3 .inner .group .box .items .layer-list:last-of-type {
  margin-bottom: 0;
}

#aiPage .r4 {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

#aiPage .r4 .inner h2 {
  text-align: center;
  width: 100%;
}

#aiPage .r4 .inner .group {
  display: grid;
  gap: 0.4rem 0.6rem;
  grid-template-columns: repeat(4, 1fr);
}

#aiPage .r4 .inner .layer-button {
  padding: 0.15rem 0.25rem;
}

#newPage .tree {
  height: 0.66rem;
  background-color: #fff;
}

#newPage .tree .inner {
  height: 100%;
}

#newPage .tree .inner .left {
  height: 100%;
  color: #333;
}

#newPage .tree .inner .left>img {
  margin-right: 0.1rem;
}

#newPage .tree .inner .tabBox {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 0.6rem;
}

#newPage .tree .inner .tabBox .tab {
  height: 100%;
  border-bottom: 2px solid transparent;
}

#newPage .tree .inner .tabBox .tab .txt {
  color: #333;
}

#newPage .tree .inner .tabBox .tab.on {
  border-color: var(--main);
}

#newPage .tree .inner .tabBox .tab.on .txt {
  color: var(--main);
}

#newPage .newRow {
  background-color: #F2F6FD;
  padding: 1rem 0;
}

#newPage .newRow .inner .tabBox {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 0.6rem;
}

#newPage .newRow .inner .tabBox .tab {
  height: 0.8rem;
}

#newPage .newRow .inner .group .box {
  cursor: pointer;
  transition: all 0.6s var(--ease);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0 0.25rem 0.2rem;
  border-bottom: 1px solid #D8D8D8;
}

#newPage .newRow .inner .group .box>img {
  height: 1.34rem;
  object-fit: cover;
  width: 2.04rem;
  border-radius: 0.05rem;
}

#newPage .newRow .inner .group .box .line {
  height: 0.16rem;
  width: 1px;
  background-color: #999999;
  margin: 0 8px;
}

#newPage .newRow .inner .group .box .msg {
  padding: 0 0 0 0.4rem;
  width: calc(100% - 2.04rem);
}

#newPage .newRow .inner .group .box .msg .arrow {
  height: 0.14rem;
}

#newPage .newRow .inner .group .box .msg h3 {
  color: #333;
}

#newPage .newRow .inner .group .box .msg p {
  color: #666;
}

#solutionPage .r2 {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

#solutionPage .r2 .bg .pic:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(0.1rem);
}

#solutionPage .r2 .group {
  display: grid;
  gap: 0 0.35rem;
  grid-template-columns: repeat(3, 1fr);
}

#solutionPage .r2 .group .box {
  background-color: #fff;
  border-radius: 0.1rem;
  box-shadow: 0px 0.1rem 0.5rem -2px rgba(196, 206, 221, 0.3);
}

#solutionPage .r2 .group .box .top {
  width: 100%;
  height: 1.2rem;
  padding: 0 0.8rem;
  justify-content: flex-end;
}

#solutionPage .r2 .group .box .mid {
  padding: 0.6rem;
  text-align: center;
}

#solutionPage .r2 .group .box .mid .line {
  background-color: #707C97;
  height: 1px;
  width: 100%;
  margin: 0.2rem 0;
  opacity: 0.5;
}

#solutionPage .r4 {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

#solutionPage .r4 .group {
  display: grid;
}

@media screen and (orientation: landscape) {
  #solutionPage .r4 .group {
    grid-template-columns: repeat(5, 1fr);
    gap: 0 0.2rem;
  }
}

@media screen and (orientation: portrait) {
  #solutionPage .r4 .group {
    grid-auto-flow: column;
  }
}

#solutionPage .r4 .group .box {
  width: 100%;
  border-radius: 0.1rem;
  overflow: hidden;
  box-shadow: 0.1rem 0.1rem 0.4rem -2px rgba(10, 46, 119, 0.2);
  transition: all 0.6s var(--ease);
}

#solutionPage .r4 .group .box:hover {
  transform: translateY(-0.1rem);
}

#solutionPage .r4 .group .box .photo {
  height: 2.45rem;
  width: 100%;
  object-fit: cover;
}

#solutionPage .r4 .group .box .msg {
  padding: 0.3rem 0.2rem 0.4rem 0.2rem;
  position: relative;
  background-color: #0039ea;
  height: 100%;
}

#solutionPage .r4 .group .box .msg .sign {
  position: absolute;
  width: 100%;
  bottom: calc(100% - 1px);
  left: 0;
}

#solutionPage .r4 .group .box .msg small {
  margin-left: 5px;
}

#solutionPage .r4 .group .box .msg .items>li {
  margin: 3px 0;
  align-items: flex-start;
}

#solutionPage .r4 .group .box .msg .items>li .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  font-size: inherit;
  margin-right: 5px;
  margin-top: 0.68em;
  background-color: #fff;
}

#solutionPage .r4 .group .box .msg .items>li p {
  font-size: inherit;
  width: 98%;
  line-height: 1.6;
}

#aboutPage .r1 {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

#aboutPage .r1 .group {
  position: relative;
  margin: 0 0 1rem 60%;
}

#aboutPage .r1 .group1 {
  position: relative;
}

#aboutPage .r1 .group .list {
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 10;
  display: grid;
  justify-content: start;
  grid-template-columns: 1.2rem auto auto;
}

#aboutPage .r1 .group1 .list {
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 10;
  display: grid;
  justify-content: start;
  grid-template-columns: 1.2rem auto auto;
}

#aboutPage .r1 .group .list:last-of-type {
  padding-bottom: 0;
}

#aboutPage .r1 .group1 .list:last-of-type {
  padding-bottom: 0;
}

#aboutPage .r1 .group .list .year {
  display: block;
  width: 2.5rem;
  text-align: right;
  line-height: 2;
}

#aboutPage .r1 .group1 .list .year1 {
  display: block;
  width: 1.2rem;
  text-align: right;
  line-height: 2;
}

#aboutPage .r1 .group .list .icon {
  margin: 0.1rem 0.15rem 0.1rem 1.51rem;
  height: 0.2rem;
}

#aboutPage .r1 .group1 .list .icon {
  margin: 0.1rem 0.15rem;
  height: 0.2rem;
}

#aboutPage .r1 .group .list p {
  text-align: left;
}

#aboutPage .r1 .group1 .list p {
  text-align: left;
}

#aboutPage .r1 .group .line {
  width: 2px;
  height: calc(100% - .3rem);
  position: absolute;
  left: 2.78rem;
  top: 0.1rem;
  background-color: var(--main);
}

#aboutPage .r1 .group1 .line1 {
  width: 2px;
  height: calc(100% - .3rem);
  position: absolute;
  left: 1.42rem;
  top: 0.1rem;
  background-color: var(--main);
}

#aboutPage .r1 .part {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: repeat(2, 1fr);
}

#aboutPage .r1 .part .box {
  border-radius: 0.1rem;
  padding: 0 1rem;
  height: 1.5rem;
  justify-content: center;
}

#aboutPage .r2 {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
  position: relative;
}

#aboutPage .r2 .bg {
  position: absolute;
}

#aboutPage .r2 .group {
  display: grid;
  grid-template-columns: repeat(4, 1.7rem);
  gap: 0 0.6rem;
  justify-content: center;
  margin-bottom: 0;
}

#aboutPage .r2 .group .box {
  background-color: var(--main);
  height: 2.76rem;
  border-radius: 3rem;
  overflow: hidden;
}

#aboutPage .r2 .group .box .img {
  height: 0.4rem;
  display: block;
  margin: 0.74rem auto 0.2rem auto;
}

#aboutPage .r2 .group .box .circle {
  width: 100%;
  padding-bottom: 100%;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

#aboutPage .r2 .group .box .circle .ip {
  width: 80%;
  position: absolute;
  left: 0;
  bottom: 0.28rem;
  right: 0;
  margin: 0 auto;
}

#aboutPage .r2 .group .box .circle h3 {
  position: absolute;
  top: 0.35rem;
  text-align: center;
  left: 0;
  width: 100%;
}

#aboutPage .r3 {
  background-color: #F2F6FD;
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

#aboutPage .r3 .group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}

#aboutPage .r3 .group .box {
  overflow: hidden;
  background-color: #fff;
  border-radius: 0.1rem;
}

#aboutPage .r3 .group .box .top {
  box-shadow: 0px 0.1rem 0.3rem -2px rgba(0, 83, 255, 0.3);
  height: 0.8rem;
  background: linear-gradient(270deg, #0053FF 0%, rgba(0, 83, 255, 0.76) 100%);
}

#aboutPage .r3 .group .box .mid {
  padding: 0.6rem;
}

#aboutPage .r3 .group .box .mid .list {
  padding-bottom: 0.3rem;
  padding-top: 0.3rem;
  border-bottom: 1px solid #E3E6F1;
}

#aboutPage .r3 .group .box .mid .list:first-of-type {
  padding-top: 0;
}

#aboutPage .r3 .group .box .mid .list:last-of-type {
  padding-bottom: 0;
  border: none;
}

#aboutPage .r4 {
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

#aboutPage .r4 .bg .pic {
  background-position: center bottom;
  background-size: 100%;
  background-color: #f5f8ff;
}

#aboutPage .r4 .group .list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, 2.5rem);
  gap: 0 0.7rem;
  position: relative;
  margin-bottom: 0.8rem;
  align-items: end;
}

#aboutPage .r4 .group .list .img {
  position: relative;
  z-index: 10;
}

#aboutPage .r4 .group .list .img:after {
  content: attr(data-note);
  width: 100%;
  text-align: center;
  /* bottom: -0.12rem; */
  top: 95%;
  left: 0;
  font-size: 0.16rem;
  position: absolute;
}

#aboutPage .r4 .group .list .img .shu {
  height: 100%;
  display: block;
  width: 100%;
  object-fit: contain;
}

#aboutPage .r4 .group .list .land {
  position: absolute;
  width: 100%;
  top: 78%;
  left: 2.5%;
}

#aboutPage .r6 {
  position: relative;
}

#aboutPage .r6 .inner {
  position: absolute;
  height: 100%;
  z-index: 12;
  width: 100%;
  left: 0;
  top: 0;
  padding: 1rem 2.5rem;
  justify-content: center;
}

#aboutPage .r6 .inner .items {
  display: grid;
  gap: 0 0.5rem;
  align-items: start;
  grid-auto-flow: column;
}

#aboutPage .r6 .inner .items .count {
  line-height: 1;
}

#aboutPage .r6 .inner .items small {
  padding: 1px 3px;
  border-radius: 4px;
  font-weight: 600;
  vertical-align: baseline;
  margin-left: 0.1rem;
}

#aboutPage .r6 .inner .items h2 {
  margin-top: 0.1rem;
}

#HKPage .r1 .bg {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#HKPage .r1 .bg #r1Media {
  object-fit: cover;
  display: block;
  width: 100%;
}

#HKPage .r1 .bg .ip {
  position: absolute;
  bottom: 0;
  right: 3.2rem;
  height: 1.6rem;
}

#HKPage .r1 .group {
  display: grid;
  grid-template-columns: repeat(2, 5.4rem);
  gap: 0.3rem;
  justify-content: center;
}

#HKPage .r1 .group .box {
  border-radius: 0.1rem;
  background-color: #fff;
  padding: 0.3rem 0.5rem;
}

#HKPage .r1 .group .box .img {
  width: 1.2rem;
  height: 0.9rem;
  object-fit: contain;
}

#HKPage .r1 .group .box>div {
  width: calc(100% - 1.4rem);
}

#detailPage {
  background-color: #f4f4f4;
}

#detailPage .r1 {
  padding: 0.2rem 0 1.2rem 0;
}

#detailPage .r1 .inner {
  width: 66.66%;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}

#detailPage .r1 .inner .top {
  height: 0.82rem;
  width: 76%;
  margin: 0 auto;
  padding: 0 0.3rem;
  border-bottom: 1px solid #aaaaaa;
  display: grid;
  grid-auto-flow: column;
  gap: 0 0.15rem;
}

#detailPage .r1 .inner .top>a {
  color: #3d3d3d;
}

#detailPage .r1 .inner .top>a:last-of-type {
  text-decoration: underline;
}

#detailPage .r1 .inner .mid {
  width: 76%;
  padding: 0.4rem 0.3rem;
  margin: 0 auto;
}

#detailPage .r1 .inner .mid .detail {
  padding: 0.3rem 0;
  color: #3d3d3d;
}

#detailPage .r1 .inner .mid .detail * {
  font-size: inherit;
  color: inherit;
}

#detailPage .r1 .inner .mid .detail .grc {
  color: #bfbfbf;
}

#detailPage .r1 .inner .mid .detail p {
  margin-bottom: 0.2rem;
}

#detailPage .r1 .inner .mid .detail img {
  max-width: 100%;
  height: auto !important;
  margin: 0.2rem 0;
}

#detailPage .r1 .btm {
  padding-top: 0.4rem;
}

#detailPage .r1 .btm>a {
  cursor: pointer;
  color: #767676;
}

#detailPage .r1 .btm>a p {
  text-decoration: underline;
  transition: transform 0.5s var(--ease);
}

#detailPage .r1 .btm>a>img {
  height: 0.2rem;
  transition: transform 0.5s var(--ease);
}

#detailPage .r1 .btm>a:hover p {
  transform: translateX(-0.05rem);
}

#detailPage .r1 .btm>a:hover>img {
  transform: translateX(0.05rem);
}

@keyframes fadeUpSmall {
  0% {
    opacity: 0;
    transform: translateY(0.25rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeftSmall {
  0% {
    opacity: 0;
    transform: translateX(0.25rem) rotateY(-5deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}

@media screen and (orientation: landscape) {
  .app {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {
  html {
    font-size: 13.33vw;
  }

  .maxSize {
    padding: 0 5%;
  }

  .grc {
    color: #666666;
  }

  .d-gc {
    color: #333;
  }

  .tint {
    color: #666666;
  }

  p:not(.f-center) {
    text-align: justify;
  }

  .pc {
    display: none !important;
  }

  .mb-10 {
    margin-bottom: 0.1rem;
  }

  .f-200 {
    font-size: 1.8rem;
  }

  .f-68 {
    font-size: 6.4vw;
  }

  .f-48 {
    font-size: 0.44rem;
  }

  .f-46 {
    font-size: 5.2vw;
  }

  .f-40 {
    font-size: 4.8vw;
  }

  .f-38 {
    font-size: 4.8vw;
  }

  .f-30 {
    font-size: 4.2vw;
  }

  .f-28 {
    font-size: 4.2vw;
  }

  .f-26 {
    font-size: 4.2vw;
  }

  .f-24 {
    font-size: 4.2vw;
  }

  .f-22 {
    font-size: 4.2vw;
  }

  .f-20 {
    font-size: 3.7vw;
  }

  .f-18 {
    font-size: 3.7vw;
  }

  .f-16 {
    font-size: 3.4vw;
  }

  .f-14 {
    font-size: 3.4vw;
  }

  .f-12 {
    font-size: 3.2vw;
  }

  .mb-10.f-38 {
    margin-bottom: 0.3rem;
  }

  h2.f-38 {
    font-size: 0.38rem;
  }

  h2.f-38 small.f-38 {
    font-size: 0.38rem;
  }

  h2,
  h3 {
    line-height: 1.2;
  }

  .fw-500 {
    line-height: 1.2;
  }

  .layer-topic.f-center p {
    text-align: center;
  }

  .layer-button .txt {
    font-size: 12px;
  }

  .layer-box .photo {
    object-fit: cover;
    height: 3.8rem;
  }

  .rowRect {
    padding-bottom: 0.5rem;
  }

  .row .inner>h2.f-38 {
    font-size: 0.38rem;
    white-space: nowrap;
  }

  .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    transition: all 0.5s var(--ease);
  }

  .swiper-pagination .swiper-pagination-bullet-active {
    width: 10px;
    background-color: #ffffff;
  }

  .layer-search {
    height: 0.64rem;
    width: 100%;
    background-color: #fff;
    border: 1px solid #B9CDEF;
  }

  .layer-search .sub {
    height: 0.3rem;
  }

  #bloc header .poster {
    position: absolute;
    width: 100%;
    top: 1.39rem;
    height: auto;
    flex-direction: column;
    padding: 0.3rem 5%;
    align-items: flex-start;
  }

  #bloc header .poster .col:nth-of-type(1) {
    margin-bottom: 0.1rem;
  }

  #bloc header .poster .col>p {
    color: #333;
    font-size: 12px;
  }

  #bloc header .poster .layer-button {
    display: none;
  }

  #bloc header .poster .close {
    margin-left: 0.4rem;
    height: 0.24rem;
    position: absolute;
    top: 0.3rem;
    right: 5%;
  }

  #bloc header .pcNav {
    height: 1.39rem;
    background-color: #EEF7FF;
    padding: 0 5%;
    z-index: 102;
    position: relative;
  }

  #bloc header .pcNav .logoImg {
    height: 0.6rem;
    margin-right: 0.2rem;
  }

  #bloc header .pcNav .logoImg>img {
    height: 100%;
  }

  #bloc header .pcNav .right {
    width: calc(100% - .9rem);
  }

  #bloc footer .top {
    padding: 0.4rem 5%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  #bloc footer .top>.flex-row-cc {
    width: 100%;
    justify-content: flex-start;
    position: relative;
  }

  #bloc footer .top>.flex-row-cc .flex-row-cs {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  #bloc footer .top>.flex-row-cc .flex-row-cs>p {
    margin-bottom: 0.2rem;
  }

  #bloc footer .top>p {
    margin-bottom: 0.3rem;
  }

  #bloc footer .top .close {
    position: absolute;
    right: -0.1rem;
    bottom: calc(100% + .25rem);
  }

  #bloc footer .mid {
    padding: 1rem 5% 0.8rem 5%;
    flex-direction: column;
  }

  #bloc footer .mid .left {
    width: 100%;
  }

  #bloc footer .mid .left .items li {
    margin-right: 0.2rem;
  }

  #bloc footer .mid .left .items.mb-90 {
    margin-bottom: 0.8rem;
  }

  #bloc footer .mid .right {
    width: 100%;
    max-width: 100%;
  }

  #bloc footer .mid .right .flex-row-cb {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  #bloc footer .mid .right .flex-row-cb .mr-80 {
    margin-right: 0;
    margin-left: 0.3rem;
  }

  #bloc footer .mid .right .share .layer-share {
    margin-left: 0;
    margin-right: 0.4rem;
  }

  #bloc footer .mid .right .share .uicon {
    width: 0.8rem;
    height: 0.8rem;
  }

  #bloc footer .mid .right .share .uicon .f-24 {
    font-size: 5vw;
  }

  #bloc footer .line {
    display: none;
  }

  #bloc footer .btm {
    display: none;
  }

  #bloc footer .other {
    padding: 0.5rem 5%;
    height: auto;
    background-position: left;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }

  #bloc footer .other .mr-100 {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }

  #bloc footer .other .mr-100 .f-16 {
    margin-left: 0.2rem;
    font-size: 12px;
  }

  #bloc footer .other .box {
    grid-template-columns: 100%;
    gap: 0.15rem 0;
    width: 100%;
  }

  #bloc footer .other .box .chunk .layer-button {
    width: 2.2rem;
  }

  .layer-pager {
    display: flex;
    flex-wrap: wrap;
  }

  .layer-pager>p {
    margin-left: 0;
  }

  #bloc .wrapper {
    padding-top: 2.8rem;
  }

  #bloc .topRow .bg>img {
    height: 80vw;
    object-fit: cover;
  }

  #bloc #newPage .topRow .bg>img {
    height: 77vw;
  }

  #bloc .topRow .inner .layer-button {
    height: 0.6rem;
  }

  #bloc .topRow .inner>p br {
    display: none;
  }

  #bloc .topRow .inner {
    padding: 0.5rem 5%;
    width: 100% !important;
    justify-content: flex-start;
  }

  #bloc .topRow .inner .btm {
    padding: 0 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  #bloc .topRow .inner .btm .chunk .msg small {
    display: none;
  }

  #bloc .topRow .inner .btm .chunk .msg h3 {
    font-size: 3.2vw;
    white-space: nowrap;
  }

  #bloc .topRow .inner .btm .chunk {
    padding: 0.3rem 0.1rem;
    width: 29vw;
    margin: 0.5vw 0.75vw;
  }

  #bloc .topRow .inner .btm .chunk>img {
    margin-right: 5px;
  }

  #bloc .topRow .inner .btm .chunk:nth-of-type(3n+1) {
    margin-left: 0;
  }

  #bloc .topRow .inner .btm .chunk:nth-of-type(3n+3) {
    margin-right: 0;
  }

  #bloc .rowQa .inner {
    padding: 0 5%;
  }

  #bloc .rowQa .inner .group {
    grid-template-columns: 100%;
    grid-template-rows: repeat(2, 0.6rem);
  }

  #bloc .rowQa .inner .layer-button {
    padding: 0.08rem 0.25rem;
  }

  #bloc .rowSea .bg .pic {
    background-size: 100%;
    background-color: #659dfa;
  }

  #bloc .rowSea .inner {
    padding: 1rem 5%;
  }

  #bloc .rowSea .inner .layer-topic {
    align-items: center;
    margin-bottom: 2.5rem;
  }

  #bloc .rowSea .inner .layer-topic h2 {
    text-align: center;
  }

  #bloc .rowSea .inner .group .box {
    grid-template-columns: 100%;
    gap: 0.2rem 0;
    background-color: transparent;
  }

  #bloc .rowSea .inner .group .box .col {
    height: 3.8rem;
  }

  #bloc .rowSea .inner .group .box .col .after {
    width: calc(100% - 25vw);
    left: 25vw;
    padding: 0.1rem 0.3rem;
    transition: all 0.6s var(--ease);
    z-index: 10;
    position: absolute;
    top: 0;
    height: 100%;
  }

  #bloc .rowSea .inner .group .box .col .after:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../img/main/app/a2.png) !important;
    background-position: right bottom;
    background-size: cover;
    transition: opacity 0.5s var(--ease);
    opacity: 0;
  }

  #bloc .rowSea .inner .group .box .col.active .after {
    width: 100%;
    left: 0;
    background-color: rgba(0, 83, 255, 0);
    padding: 0.1rem 0.5rem;
  }

  #bloc .rowSea .inner .group .box .col.active .after .items {
    position: relative;
    z-index: 2;
    height: 100%;
  }

  #bloc .rowSea .inner .group .box .col.active .after .items>li {
    border-color: transparent;
  }

  #bloc .rowSea .inner .group .box .col.active .after .items>li p {
    color: #fff;
  }

  #bloc .rowSea .inner .group .box .col.active .after .items>li .ok {
    background-color: #fff;
    color: var(--main);
  }

  #bloc .rowSea .inner .group .box .col.active .after .top {
    opacity: 0;
  }

  #bloc .rowSea .inner .group .box .col.active .after:after {
    opacity: 1;
  }

  #bloc .rowSea .inner .group .box .col .after .top {
    background-image: url(../img/main/app/a1.png) !important;
    background-position: right bottom;
    background-size: cover;
    transition: all 0.5s var(--ease);
    z-index: 3;
    position: absolute;
    left: -25vw;
    top: 0;
    width: 25vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.4rem;
  }

  #bloc .rowSea .inner .group .box .col .after .top>img {
    height: 0.46rem;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }

  #bloc .rowSea .inner .group .box .col .after .top h3 {
    text-align: center;
  }

  #bloc .rowSea .inner .group .box .col .after .items {
    padding: 0.1rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
  }

  #bloc .rowSea .inner .group .box .col .after .items>li {
    padding: 0.2rem 0;
    height: auto;
  }

  #bloc .rowSea .inner .group .box .col .after .items>li:last-of-type {
    border-bottom: none;
  }

  #bloc .rowSea .inner .group .box .col .after .items>li p {
    color: #333;
    padding-left: 0.5rem;
  }

  #bloc .rowSea .inner .group .box .col .after .items>li .ok {
    width: 0.3rem;
    height: 0.3rem;
    font-size: 2vw;
  }

  #bloc .rowSea .sign {
    background-size: 35.5vw;
    background-position-x: 46.3%;
    background-position-y: 60.2%;
    height: 100vw;
  }

  #bloc .rowSea .inner .group .box .col .before {
    grid-template-rows: 100%;
    width: 25vw;
  }

  #bloc .rowSea .inner .group .box .col .before .mid {
    display: none;
  }

  #bloc .rowService .inner {
    padding: 1rem 5%;
    height: 82vw;
  }

  #bloc .rowService .inner .box .shadow {
    width: 180%;
  }

  #bloc .rowService .inner .box .group {
    bottom: 1.03rem;
    gap: 0 0.1rem;
  }

  #bloc .rowService .inner .box .group .chunk h3 {
    padding-left: 0;
    color: #333;
    font-size: 4vw;
  }

  #bloc .rowService .inner .box .group .chunk p {
    padding-left: 0;
    font-size: 12px;
    margin-top: 0.2rem;
    font-weight: 600;
  }

  #bloc .rowService .inner .box .group .chunk p br {
    display: none;
  }

  #bloc .rowService .inner .box .group .chunk .num {
    font-size: 10vw;
    right: 0.1em;
    bottom: 0.2em;
  }

  #bloc .rowService .inner .layer-topic {
    bottom: 0.4rem;
  }

  #bloc .rowService .inner .layer-topic .f-38 {
    font-size: 3.8vw;
    margin-bottom: 0.1rem;
  }

  #bloc .rowService .inner .layer-topic .f-20 {
    font-size: 3vw;
  }

  #bloc .rowPhoto .bg>img {
    height: 6rem;
    object-fit: cover;
  }

  #bloc .rowPhoto .inner {
    padding-bottom: 1rem;
  }

  #bloc .rowTab .group .box {
    width: 90vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  #bloc .rowTab .group .box .chunk {
    width: 48%;
    margin: 1%;
  }

  #bloc .rowTab .group .box .chunk:last-of-type {
    width: 100%;
  }

  #bloc .rowMap .bg {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #fafafa;
  }

  #bloc .rowMap .inner {
    padding: 1rem 5% 0.6rem 5%;
    justify-content: space-between;
    position: relative;
    align-items: center;
  }

  #bloc .rowMap .inner h2 {
    text-align: center;
  }

  #bloc .rowMap .inner .img {
    width: 100%;
    margin-top: 5rem;
  }

  #bloc .rowChunk .inner .group {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 0.15rem;
  }

  #bloc .rowChunk .inner .group .box .msg {
    height: 1.6rem;
  }

  #bloc .rowChunk .inner .group .box .msg .img {
    height: calc(100% + .3rem);
  }

  #bloc .rowChunk .inner .group .box h4 {
    min-height: 2.4em;
  }

  #bloc .rowChunk .inner .group .box .items {
    border-radius: 0.1rem 0.1rem 0 0;
    padding: 0.3rem 0.1rem;
  }

  #bloc .rowChunk .inner .group .box .items .layer-list p {
    width: 100%;
    font-size: 12px;
  }

  #bloc .rowChunk .inner .group .box {
    background-color: #fff;
  }

  #bloc .rowList .bg .pic {
    background-position: left bottom;
    background-size: cover;
  }

  #bloc .rowList .group {
    grid-template-columns: 100%;
  }

  #bloc .rowList .group .box .mid {
    padding: 0.6rem 0.4rem;
  }

  #bloc .rowList .group .box .mid .list .grid {
    grid-template-columns: 100%;
  }

  #bloc .rowList .group .box .mid .list .arrow {
    margin-top: 0.12rem;
  }

  #bloc .rowList .group .box .chunk .list .rect {
    padding: 0 0.5rem;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
  }

  #bloc .rowList .group .box .chunk .list .rect br {
    display: none;
  }

  #bloc .rowList .group .box .mid .list p {
    text-align: left;
  }

  #bloc .rowLogo .inner .group {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem 0.3rem;
  }

  #bloc .rowProcess .group {
    padding: 0.4rem 0.2rem;
  }

  #bloc .rowProcess .group>h3 {
    text-align: center;
  }

  #bloc .rowProcess .group .box {
    display: grid;
    grid-template-columns: 1.8rem auto 1.8rem;
    grid-auto-flow: initial;
    justify-content: space-around;
  }

  #bloc .rowProcess .group .box.col-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #bloc .rowProcess .group .box .arrow {
    margin: 0 0.2rem;
    height: 0.18rem;
  }

  #bloc .rowProcess .group .box .imgBox {
    margin: 0.3rem 0;
    width: 1.7rem;
  }

  #bloc .rowProcess .group .box .arrow:nth-of-type(2n+2) {
    display: none;
  }

  #bloc .rowProcess .group .box.col-3 .arrow:nth-of-type(2n+2) {
    display: block;
  }

  #bloc .rowProcess .group .box.col-3 .arrow:nth-of-type(3n+3) {
    display: none;
  }

  #bloc .rowProcess .group .box .imgBox h3 {
    font-size: 3vw;
    color: #333;
  }

  #bloc .rowAsk .group .list {
    padding: 0 5%;
  }

  #bloc .rowAsk .group .list .top {
    height: 1.4rem;
  }

  #bloc .rowAsk .group .list .top .circle {
    width: 0.45rem;
    height: 0.45rem;
  }

  #bloc .rowAsk .group .list .top p {
    width: calc(100% - .7rem);
  }

  #bloc .rowAsk .group .list .mid p {
    width: 100%;
  }

  #bloc .rowComment .inner {
    padding: 1rem 5%;
  }

  #bloc .rowComment .swiper .swiper-wrapper .box .chunk {
    height: 6.4rem;
  }

  #bloc .rowComment .swiper .swiper-wrapper .box .chunk .mask .arrow {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0.6rem;
  }

  #bloc .rowComment .swiper .swiper-wrapper .box .msg {
    height: 3rem;
    flex-direction: column;
    transform: none;
  }

  #bloc .rowComment .swiper .swiper-wrapper .box .msg .img {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }

  #bloc .rowComment .swiper .swiper-wrapper .box .msg h4 {
    text-align: center;
    line-height: 1.5;
  }

  #bloc .rowComment .swiper .swiper-wrapper .box .msg small {
    display: block;
    margin-left: 0;
    text-align: center;
  }

  #bloc .rowComment .swiper .swiper-wrapper .box .msg .note {
    flex-direction: column;
  }

  #bloc .rowComment .swiper .swiper-wrapper .box .msg .note .dot {
    margin: 0.1rem 0;
  }

  #bloc .rowComment .swiper .swiper-pagination {
    bottom: 0.6rem;
  }

  #bloc .rowComment .swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(42, 139, 242, 0.5);
  }

  #bloc .rowComment .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #2a8bf2;
  }

  #bloc .rowTable .group {
    margin-bottom: 0.4rem;
  }

  #bloc .rowTable .mt-50 {
    margin-top: 0.3rem;
  }

  #bloc .rowTab .group .box .chunk .msg>p {
    text-align: center;
  }

  #bloc .rowTab .group .box .chunk .msg .note p,
  #bloc .rowTab .group .box .chunk .msg .f-16 {
    white-space: normal;
  }

  #bloc .rowTab .group .box .chunk .msg .note p br,
  #bloc .rowTab .group .box .chunk .msg .f-16 br {
    display: none;
  }

  #bloc .rowTable .group .list>li {
    font-size: 2.8vw;
  }

  #bloc .rowTable .group:not(.usaTable) .list>li:first-of-type {
    border-left: none;
  }

  #bloc .rowTable .group:not(.usaTable) .list {
    grid-template-columns: 0.8fr 1fr 1fr 1fr 1.2fr;
  }

  #bloc .rowTable .group:not(.usaTable) .list>li {
    padding: 0.2rem 0.05rem;
  }

  #bloc .rowTable .appBox {
    box-shadow: 0.2rem 0.2rem 0.8rem -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(196, 205, 221, 0.5);
    border-radius: 0.2rem;
    overflow: hidden;
  }

  #bloc .rowTable .appBox .group.usaTable:first-of-type {
    border-bottom: 1px solid rgba(196, 205, 221, 0.5);
  }

  #bloc .rowTable .group.usaTable {
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }

  #bloc .rowTable .group.usaTable .list {
    background-color: #fff;
  }

  #bloc .rowTable .group.usaTable .list:first-of-type {
    background-color: #f2f6fd;
  }

  #bloc .rowTable .group.usaTable .list:first-of-type>li {
    border-left: none;
  }

  #bloc .rowTable .group.usaTable .list>li:first-of-type {
    border-top: none;
    background-color: #f2f6fd;
  }

  #bloc .rowTable .group.usaTable {
    grid-template-columns: repeat(var(--row), auto);
    display: grid;
  }

  #bloc .rowTable .group.usaTable .list {
    grid-template-columns: auto;
    grid-template-rows: 1rem 0.5fr 0.5fr 1fr 1fr 0.5fr;
  }

  #bloc .rowTable .group.usaTable .list>li:not(:first-of-type) {
    font-size: 2.8vw;
    padding: 0.2rem 0.15rem 0.2rem 0.2rem;
    min-height: 1.5rem;
  }

  #bloc .rowTable .group.usaTable .list>li.f-left {
    text-align: left;
    justify-content: flex-start;
  }

  #bloc .rowContrast .group .box .first {
    padding: 0 5%;
  }

  #bloc .rowContrast .group .box .list {
    height: 1.2rem;
  }

  #bloc .rowContrast .group .box .list .col {
    padding: 0 5%;
    width: 38%;
  }

  #bloc .rowContrast .group .box .list .col .f-16 {
    font-size: 3.2vw;
  }

  #bloc .rowContrast .group .box .list .col:nth-of-type(2) .f-16 {
    font-size: 3.2vw;
    text-align: right;
  }

  #bloc .rowContrast .group .box .list .imgBox h5 {
    font-size: 3.2vw;
  }

  #bloc .rowContrast .group .box .list .imgBox .icon {
    margin-right: 0.2rem;
  }

  #bloc .rowContrast .group .box .list .imgBox {
    width: 2.2rem;
  }

  #bloc .rowFile {
    padding-bottom: 0.5rem;
  }

  #bloc .rowFile .inner {
    padding: 1rem 5%;
  }

  #bloc .rowFile .group .box .top {
    height: 0.7rem;
  }

  #bloc .rowFile .group {
    grid-template-columns: repeat(2, 1fr);
  }

  #bloc .rowFile .group .box .mid h4 {
    height: 1rem;
  }

  #bloc .rowFile .group .box .mid .img {
    border-radius: 0.1rem;
  }

  #bloc .rowBox .bg .pic {
    background-size: 100% 100%;
  }

  #bloc .rowBox .inner .group {
    grid-template-columns: 100%;
  }

  #bloc .rowBox .inner .group .box {
    background-color: transparent;
    box-shadow: 0px 0.1rem 0.2rem -4px rgba(0, 83, 255, 0.3);
    border: 1px solid rgba(0, 83, 255, 0.3);
  }

  #bloc .rowBox .inner .group .box .msg {
    background-color: var(--main);
    padding: 0.4rem;
  }

  #bloc .rowBox .inner .group .box .items {
    border-radius: 0.1rem;
    margin-top: -0.2rem;
  }

  #bloc .rowList .group .box .mid .list>.flex-row-cs {
    flex-direction: column;
  }

  #solutionPage .r2 h2 {
    text-align: center;
  }

  #solutionPage .r2 .group {
    gap: 0 0.2rem;
  }

  #solutionPage .r2 .group .box .top {
    border-radius: 0.1rem;
    padding: 0 0.3rem 0 0;
    text-align: right;
  }

  #solutionPage .r2 .group .box .mid {
    padding: 0.5rem 0;
  }

  #solutionPage .r2 .group .box .mid .line {
    width: calc(100% - .6rem);
    margin: 0.2rem auto;
    opacity: 0.3;
  }

  #solutionPage .r2 .group .box .mid>p {
    text-align: center;
  }

  #solutionPage .r4 {
    padding-bottom: 0.5rem;
  }

  #solutionPage .r4 .bg .pic {
    background-position: left;
  }

  #solutionPage .r4 .inner {
    padding-bottom: 0.5rem;
  }

  #bankPage .topRow .inner h1 {
    color: #333;
    margin-bottom: 0;
  }

  #newPage .tree {
    height: auto !important;
  }

  #newPage .tree .inner {
    padding: 0 5%;
  }

  #newPage .tree .inner .tabBox {
    gap: 0 0.3rem;
    height: 0.9rem;
  }

  #newPage .newRow .inner .group .box {
    width: 90vw;
    padding: 0.25rem 0;
  }

  #newPage .newRow .inner .group .box>img {
    height: 1.8rem;
    width: 2.2rem;
  }

  #newPage .newRow .inner .group .box .msg p {
    font-size: 12px;
  }

  #newPage .newRow .inner .group .box .msg h3 {
    width: 100%;
  }

  #newPage .newRow .inner .group .box .msg {
    width: calc(100% - 2.2rem);
    padding-left: 0.25rem;
  }

  #detailPage .r1 {
    padding: 1rem 0;
  }

  #detailPage .r1 .inner {
    width: 90%;
  }

  #detailPage .r1 .inner .top {
    width: 90%;
    height: 1rem;
    padding: 0;
  }

  #detailPage .r1 .inner .mid {
    width: 90%;
    padding: 0.4rem 0;
  }

  #detailPage .r1 .btm>a>img {
    height: 0.3rem;
    margin-left: 0.1rem;
  }

  #aboutPage .r1 .group .list p {
    text-align: justify;
  }

  #aboutPage .r1 .group .list .year {
    line-height: 1.4;
  }

  #aboutPage .r1 .part {
    grid-template-columns: 100%;
    gap: 0.4rem 0;
  }

  #aboutPage .r1 .part .box {
    padding: 0 1rem 0 0.6rem;
  }

  #aboutPage .r2 .group {
    grid-template-columns: repeat(2, 2rem);
    gap: 0.4rem 1rem;
  }

  #aboutPage .r2 .group .box {
    height: 2.9rem;
  }

  #aboutPage .r3 .group {
    grid-template-columns: 100%;
    gap: 0.3rem 0;
  }

  #aboutPage .r4 .bg .pic {
    background-size: 100% 100%;
  }

  #aboutPage .r4 .group {
    width: 120%;
    margin-left: -5%;
  }

  #aboutPage .r4 .group .list {
    grid-template-columns: repeat(3, 2.2rem);
    gap: 0;
    padding-left: 0.3rem;
    margin-bottom: 1.6rem;
  }

  #aboutPage .r4 .group .list .land {
    left: 5.5%;
  }

  #aboutPage .r4 .group .list .img:after {
    display: none;
  }

  #aboutPage .r4 .group .list .img>span {
    position: absolute;
    bottom: -1rem;
    height: 1rem;
    line-height: 1.25;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3.2vw;
    padding: 0 5%;
    width: 100%;
    white-space: nowrap;
    text-align: center;
  }

  #aboutPage .r6 .bg>img {
    height: 12rem;
    object-fit: contain;
  }

  #aboutPage .r6 .inner {
    padding: 1rem 5%;
  }

  #aboutPage .r6 .inner .items {
    margin-top: 5rem;
    grid-auto-flow: initial;
    grid-template-columns: auto auto auto;
    gap: 0.4rem;
  }

  #HKPage .r1 .bg>.pic {
    background-size: 100%;
    background-position: center bottom;
  }

  #HKPage .r1 .group {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3rem 0.2rem;
  }

  #HKPage .r1 .group .box {
    flex-direction: column;
    padding: 0.3rem 0.2rem;
    justify-content: flex-start;
  }

  #HKPage .r1 .group .box>div {
    width: 100%;
    align-items: center;
  }

  #HKPage .r1 .group .box>div p {
    text-align: center;
    font-size: 3.2vw;
  }

  #HKPage .r1 .group .box .img {
    margin-bottom: 0.3rem;
  }

  #home .banner {
    padding: 0.4rem 0;
    background-color: #EEF7FF;
  }

  #home .banner .inner .group>.items {
    display: none;
  }

  #home .r1 {
    background-color: #EEF7FF;
    padding: 0 0.2rem;
  }

  #home .r1 .bg {
    width: calc(100% - .4rem);
    right: 0;
    margin: 0 auto;
  }

  #home .r1 .inner {
    padding: 1rem 6%;
  }

  #home .r1 .inner .mid {
    flex-direction: column;
    align-items: center;
  }

  #home .r1 .inner .mid h2 {
    margin-bottom: 0.4rem;
    text-align: center;
  }

  #home .r1 .inner .mid .msg {
    width: 100%;
    align-items: center;
  }

  #home .r1 .inner .btm {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem 0;
  }

  #home .r1 .inner .btm .chunk {
    background-color: #fff;
    justify-content: space-between;
  }

  #home .r1 .inner .btm .chunk .msg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 0.9rem);
  }

  #home .r1 .inner .btm .chunk .msg h3 {
    font-size: 4.2vw;
  }

  #home .r1 .inner .btm .chunk .msg .countFn .count {
    font-size: 5.5vw;
  }

  #home .r1 .bg .ip {
    right: 10vw;
    height: 16vw;
  }

  #home .r2 .bg .pic {
    background-size: 140% 100%;
  }

  #home .r2 .inner {
    padding: 1rem 5%;
  }

  #home .r2 .inner h2 {
    margin-bottom: 0.2rem;
  }

  #home .r2 .inner .group {
    grid-template-columns: 1rem calc(100% - 1rem);
    grid-template-rows: 13.7rem;
  }

  #home .r2 .inner .group .left .box .line {
    width: 2px;
  }

  #home .r2 .inner .group .left {
    position: relative;
    z-index: 5;
  }

  #home .r2 .inner .group .right {
    background-color: #EEF7FF;
    padding-bottom: 0.4rem;
  }

  #home .r2 .inner .group .right .part {
    padding: 0 5%;
  }

  #home .r2 .inner .group .right .part .tab {
    color: #0f1e35;
    text-align: center;
    font-size: 3.6vw;
    width: 100%;
    justify-content: center;
  }

  #home .r2 .inner .group .right .part .chunk>.list {
    grid-template-columns: 100%;
    gap: 0.2rem 0;
  }

  #home .r2 .inner .group .right .part .chunk>.list .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }

  #home .r2 .inner .group .right .part .chunk>.list .content h4 {
    margin-bottom: 0;
    padding-right: 4%;
    width: calc(100% - 2.5rem);
  }

  #home .r2 .inner .group .right .part .chunk>.list .content .layer-button {
    width: 2.5rem;
    padding: 0.08rem 0.2rem;
  }

  #home .r2 .inner .group .right .part .chunk>.list:last-of-type .content .btnBox .layer-button {
    min-width: 3.8rem;
  }

  #home .r2 .inner .group .right .part .chunk>.list:nth-of-type(1) .content:nth-of-type(1) {
    padding-bottom: 1.8rem;
  }

  #home .r2 .inner .group .right .part .chunk>.list .content .btnBox {
    height: 1.7rem;
    top: auto;
    bottom: 0.1rem;
    width: 2.5rem;
  }

  #home .r2 .inner .group .right .part .chunk>.list:last-of-type .content h4 {
    width: 100%;
  }

  #home .r2 .inner .group .right .part .chunk>.list:last-of-type .content>.layer-button {
    position: absolute;
    width: 3.8rem;
    top: 1.25rem;
    right: 0.3rem;
  }

  #home .r2 .inner .group .right .part .chunk>.list:last-of-type .content:nth-of-type(1) {
    padding-bottom: 2.5rem;
  }

  #home .r2 .inner .group .right .part .chunk>.list:last-of-type .content:nth-of-type(1) .btnBox {
    width: auto;
  }

  #home .r2 .inner .group .left .box:after {
    width: calc(100% - .3rem);
    left: 0.15rem;
  }

  #home .r2 .inner .group .right .part .chunk>.items {
    grid-template-columns: 100%;
    grid-template-rows: repeat(4, 1fr);
  }

  #home .r3 .inner {
    padding: 1rem 0;
  }

  #home .r3 .inner .group {
    padding: 0 0;
  }

  #home .r3 .inner .group .swiper {
    width: 100%;
  }

  #home .r3 .inner .group .swiper .swiper-slide {
    width: 70vw;
  }

  #home .r3 .inner .group .set {
    display: none;
  }

  #home .r4 .inner {
    padding: 1rem 5%;
  }

  #home .r4 .bg .pic {
    background-size: 100%;
    background-color: #659dfa;
  }

  #home .r4 .inner .layer-topic {
    align-items: center;
    margin-bottom: 2.3rem;
  }

  #home .r4 .inner .group .box {
    grid-template-columns: 100%;
    gap: 0.2rem 0;
    background-color: transparent;
  }

  #home .r4 .inner .group .box .col {
    height: 3.8rem;
  }

  #home .r4 .inner .group .box .col .after {
    width: calc(100% - 25vw);
    left: 25vw;
    padding: 0.1rem 0.3rem;
    transition: all 0.6s var(--ease);
    z-index: 10;
    position: absolute;
    top: 0;
    height: 100%;
  }

  #home .r4 .inner .group .box .col.active .after {
    width: 100%;
    left: 0;
    background-color: rgba(0, 83, 255, 0);
  }

  #home .r4 .inner .group .box .col.active .after .items>li {
    border-color: transparent;
  }

  #home .r4 .inner .group .box .col.active .after .items>li p {
    color: #fff;
  }

  #home .r4 .inner .group .box .col.active .after .items>li .ok {
    background-color: #fff;
    color: var(--main);
  }

  #home .r4 .inner .group .box .col.active .before .top {
    opacity: 0;
  }

  #home .r4 .inner .group .box .col .after .top {
    display: none;
  }

  #home .r4 .inner .group .box .col .after .items {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
  }

  #home .r4 .inner .group .box .col .after .items>li {
    padding: 0.2rem 0;
    height: auto;
    transition: border-color 0.5s var(--ease);
  }

  #home .r4 .inner .group .box .col .after .items>li:last-of-type {
    border-bottom: none;
  }

  #home .r4 .inner .group .box .col .after .items>li p {
    color: #333;
    padding-left: 0.5rem;
    transition: color 0.5s var(--ease);
  }

  #home .r4 .inner .group .box .col .after .items>li .ok {
    width: 0.3rem;
    height: 0.3rem;
    font-size: 2vw;
    transition: all 0.6s var(--ease);
  }

  #home .r4 .sign {
    background-size: 35.5vw;
    background-position-x: 46.3%;
    background-position-y: 60.2%;
    height: 100vw;
  }

  #home .r4 .inner .group .box .col .before {
    grid-template-rows: 100%;
    width: 25vw;
  }

  #home .r4 .inner .group .box .col .before .top {
    background-image: url(../img/main/app/a1.png) !important;
    background-position: right bottom;
    background-size: cover;
    transition: all 0.5s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.4rem;
    position: relative;
    z-index: 4;
  }

  #home .r4 .inner .group .box .col .before .top>img {
    height: 0.46rem;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }

  #home .r4 .inner .group .box .col .before .top h3 {
    text-align: center;
  }

  #home .r4 .inner .group .box .col .before .mid {
    background-position: right bottom;
    position: absolute;
    width: 90vw;
    left: 0;
    bottom: 0;
    height: 100%;
    background-size: cover;
    background-color: #0053ff;
    background-image: url(../img/main/app/a2.png) !important;
  }

  #home .r4 .inner .group .box .col .before .mid .items {
    display: none;
  }

  #home .r4 .inner .group .box .col .before .mid .layer-button {
    display: none;
  }

  #home .r5 .inner {
    padding: 0.6rem 5% 1rem 5%;
    height: 79vw;
  }

  #home .r5 .inner .box .shadow {
    width: 180%;
  }

  #home .r5 .inner .box .group {
    bottom: 1.03rem;
    gap: 0 0.1rem;
  }

  #home .r5 .inner .box .group .chunk h3 {
    padding-left: 0;
    color: #333;
    font-size: 4vw;
  }

  #home .r5 .inner .box .group .chunk p {
    padding-left: 0;
    font-size: 12px;
    margin-top: 0.2rem;
    font-weight: 600;
  }

  #home .r5 .inner .box .group .chunk p br {
    display: none;
  }

  #home .r5 .inner .box .group .chunk .num {
    font-size: 10vw;
    right: 0.1em;
    bottom: 0.2em;
  }

  #home .r5 .inner .layer-topic {
    bottom: 0.4rem;
  }

  #home .r5 .inner .layer-topic .f-38 {
    font-size: 3.8vw;
    margin-bottom: 0.1rem;
  }

  #home .r5 .inner .layer-topic .f-20 {
    font-size: 3vw;
  }

  #home .r6 .inner {
    padding: 1rem 5%;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .chunk {
    height: 4.5rem;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .chunk .mask .arrow {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0.6rem;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg {
    height: 100%;
    flex-direction: column;
    transform: none;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .img {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0;
    margin-bottom: 0.3rem;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg h4 {
    text-align: center;
    line-height: 1.5;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg small {
    display: block;
    margin-left: 0;
    text-align: center;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .note {
    flex-direction: column;
  }

  #home .r6 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .note .dot {
    margin: 0.1rem 0;
  }

  #home .r6 .inner .group .swiper .swiper-pagination {
    bottom: 0.6rem;
  }

  #home .r6 .inner .group .swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(42, 139, 242, 0.5);
  }

  #home .r6 .inner .group .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #2a8bf2;
  }

  #home .r7 .bg .pic {
    background-position: left;
  }

  #home .r7 .inner {
    padding: 1rem 5% 0.5rem 5%;
  }

  #home .r7 .inner .group .swiper {
    padding-bottom: 0.2rem;
  }

  #home .r7 .inner .group .swiper .swiper-wrapper {
    display: grid;
    grid-auto-flow: column;
  }

  #home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .photo {
    height: 3.45rem;
  }

  #home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg h3 {
    margin-bottom: 0.4rem;
  }

  #home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg .items>li .dot {
    top: 8px;
  }

  #home .r7 .inner .group .swiper .swiper-wrapper .swiper-slide .box .msg {
    padding: 0.2rem 0.3rem 0.25rem 0.3rem;
  }
}