@charset "utf-8";
/* CSS Document */
/*

1、宽高
2、flex布局
3、grid布局
4、梯度字体大小
5、过渡与延迟
6、背景图
7、伪元素
8、文字限行
9、图片变白和还原
10、页面适配媒体查询
11、有效宽度
12、主题颜色
13、统一间距
14、字体引入与调用
15、上导航高度与相关
16、常用简单css循环动画
17、图片形状遮罩

*/
/* 弹跳 */
@keyframes myBounce {
  0% {
    transform: translate3d(0, 0, 0);
    /* text-shadow: rgba(255, 255, 255, 0.4) 0 0 0.05em; */
  }
  100% {
    transform: translate3d(0, -0.5em, 0);
    /* text-shadow: rgba(255, 255, 255, 0.4) 0 1em 0.35em; */
  }
}
/* 旋转 */
@keyframes xuanzhuan {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* 波浪 */
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 136, 185, 0.15), 0 0 0 1vw rgba(74, 136, 185, 0.15), 0 0 0 2vw rgba(74, 136, 185, 0.15);
  }
  100% {
    box-shadow: 0 0 0 1vw rgba(74, 136, 185, 0.15), 0 0 0 2vw rgba(74, 136, 185, 0.15), 0 0 0 4vw rgba(74, 136, 185, 0);
  }
}
a,
div,
section,
p,
button,
ul,
li,
body,
html,
img,
textarea,
input {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  touch-action: pan-y;
  font-size: clamp(12px, 0.9vw, 0.9vw);
  color: #333;
  text-indent: 0;
}
@media (max-width:1024px) {
  a,
  div,
  section,
  p,
  button,
  ul,
  li,
  body,
  html,
  img,
  textarea,
  input {
    font-size: 3.8vw;
  }
}
a {
  display: block;
  text-decoration: none;
  outline: none;
}
img {
  border: 0;
  display: block;
}
body {
  margin: 0 auto;
  background-repeat: repeat;
}
ul,
li {
  list-style-type: none;
}
button {
  border: none;
  outline: none;
  background-color: transparent;
  box-sizing: content-box;
}
p {
  line-height: 2em;
}
video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hide-scrollbar .pageContentAll {
  margin-right: calc(var(--f-body-margin, 0px) + var(--f-scrollbar-compensate, 0px));
}
.wenzhang p {
  line-height: 2em;
  text-indent: 2em;
  padding: 4px 0;
}
.wenzhang p img {
  max-width: 100%;
  margin: 20px auto;
  display: block;
}
@media (max-width:1024px) {
  .wenzhang p img {
    width: 100% !important;
    height: unset !important;
  }
}
table {
  border: none;
  border-collapse: collapse;
  border: 0;
}
tr {
  border: none;
  border: 1px solid #DDD;
}
td {
  border: none;
  border: 1px solid #DDD;
}
input {
  outline: none;
  border: none;
}
.buttonLink {
  display: none;
}
.pageBox {
  max-width: 100%;
  margin: 0 auto;
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
.pageContent {
  position: relative;
  z-index: 4;
  padding: 3vw 0;
}
@media (max-width:1024px) {
  .pageContent {
    padding: 7vw 0;
  }
}
.pageContent section > .thisBox {
  padding: 3vw 0;
}
@media (max-width:1024px) {
  .pageContent section > .thisBox {
    padding: 7vw 0;
  }
}
.pageContent section > .thisBox .contentBox {
  width: 70vw;
  margin: 0 auto;
}
@media (max-width:1600px) {
  .pageContent section > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  .pageContent section > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  .pageContent section > .thisBox .contentBox {
    width: 86vw;
  }
}
.cn {
  font-family: 'cn';
}
.en {
  font-family: 'en11';
  text-transform: uppercase;
}
.imgBox img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.bgImg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.bgImg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  width: 4px;
  border-radius: 10px;
  background-color: #4A88B9;
}
::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}
.mapGoOpenBoxMask {
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.1);
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 15;
}
.mapGoOpenBoxMask.show {
  opacity: 1;
  pointer-events: auto;
}
.mapGoOpenBox {
  position: fixed;
  bottom: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 100%;
  z-index: 16;
  padding: 10vw;
  transform: translateY(100%);
  pointer-events: none;
}
.mapGoOpenBox .box {
  border-radius: 2vw;
  background-color: #4A88B9;
  width: 100%;
  padding: 1vw 3vw;
}
.mapGoOpenBox .box a {
  height: 16vw;
  margin: 2vw 0;
  border-radius: 1vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  color: #4A88B9;
  background-color: #fff;
}
.mapGoOpenBox.show {
  transform: translateY(0);
  pointer-events: auto;
}
.tongzhi {
  position: fixed;
  z-index: 1111;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.tongzhi .kuangjia {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.tongzhi .kuangjia .box {
  width: 400px;
  padding: 20px 0;
  background-color: #fff;
  box-shadow: 2px 2px 30px rgba(255, 255, 255, 0.5);
  transform: translateY(50px);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 10px;
}
@media (max-width:1024px) {
  .tongzhi .kuangjia .box {
    width: 90%;
  }
}
.tongzhi .kuangjia .box i {
  font-size: 80px;
  margin-bottom: 20px;
}
@media (max-width:1024px) {
  .tongzhi .kuangjia .box i {
    font-size: 18vw;
  }
}
.tongzhi .kuangjia .box i.icon-zhengque {
  color: #46ad75;
}
.tongzhi .kuangjia .box i.icon-cuowu {
  color: #b62c2c;
}
.tongzhi .kuangjia .box span {
  font-size: 18px;
  color: #666;
}
.tongzhi .kuangjia .box .jishi {
  margin-top: 20px;
  color: #666;
  font-size: 14px;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.tongzhi .kuangjia.on .box {
  transform: translateY(0px);
}
@font-face {
  font-family: 'cn';
  src: url('../fonts/cn/HYRunYuan-55W.woff2');
}
@font-face {
  font-family: 'en1';
  src: url('../fonts/en/AbhayaLibre-ExtraBold.ttf');
}
@font-face {
  font-family: 'en2';
  src: url('../fonts/en/Archivo-Bold.ttf');
}
@font-face {
  font-family: 'en3';
  src: url('../fonts/en/Caveat.ttf');
}
@font-face {
  font-family: 'en4';
  src: url('../fonts/en/MontserratAlternates-BlackItalic.ttf');
}
@font-face {
  font-family: 'en5';
  src: url('../fonts/en/NewBaskerville.ttf');
}
@font-face {
  font-family: 'en6';
  src: url('../fonts/en/utile.woff2');
}
@font-face {
  font-family: 'en7';
  src: url('../fonts/en/OpenSans-Light.ttf');
}
@font-face {
  font-family: 'en8';
  src: url('../fonts/en/Square721BT.ttf');
}
@font-face {
  font-family: 'en9';
  src: url('../fonts/en/D-DIN-PRO-900-Heavy.otf');
}
@font-face {
  font-family: 'en10';
  src: url('../fonts/en/NewBaskerville Italic.ttf');
}
@font-face {
  font-family: 'en11';
  src: url('../fonts/en/CormorantGaramond-Regular.ttf');
}
body {
  background-color: #FAFAFA;
}
.borBox {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.pageContentAll {
  position: relative;
}
.pageContentAll .pageContent {
  padding-bottom: 6vw;
}
@media (max-width:1024px) {
  .pageContentAll .pageContent {
    padding-bottom: 14vw;
  }
}
.unifyButton {
  margin-top: 2vw;
  width: fit-content;
}
@media (max-width:1024px) {
  .unifyButton {
    width: 100%;
  }
}
.unifyButton .unifyButtonThis {
  width: fit-content;
  border: 1px solid #ccc;
  border-radius: 3vw;
  overflow: hidden;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
@media (max-width:1024px) {
  .unifyButton .unifyButtonThis {
    width: 100%;
  }
}
.unifyButton .unifyButtonThis > .thisBox {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 0.6vw;
  padding: 0 2vw;
  height: 2.6vw;
}
@media (max-width:1024px) {
  .unifyButton .unifyButtonThis > .thisBox {
    height: 10vw;
    padding: 0 12vw;
  }
}
.unifyButton .unifyButtonThis > .thisBox .txt {
  transform: translateX(1vw);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  font-size: clamp(12px, 0.9vw, 0.9vw);
  color: #666;
  position: relative;
  z-index: 1;
  font-family: 'cn';
}
@media (max-width:1024px) {
  .unifyButton .unifyButtonThis > .thisBox .txt {
    font-size: 3.8vw;
  }
}
.unifyButton .unifyButtonThis > .thisBox i {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  transform: translateX(-1vw);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  opacity: 0;
  position: relative;
  z-index: 1;
}
@media (max-width:1024px) {
  .unifyButton .unifyButtonThis > .thisBox i {
    font-size: 4.6vw;
  }
}
.unifyButton .unifyButtonThis > .thisBox::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 0;
  right: 0;
  border-radius: 3vw;
}
@media (min-width:1024px) {
  .unifyButton .unifyButtonThis:hover {
    border-color: transparent;
  }
  .unifyButton .unifyButtonThis:hover > .thisBox .txt {
    transform: translateX(0);
    color: #fff;
  }
  .unifyButton .unifyButtonThis:hover > .thisBox i {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
  }
  .unifyButton .unifyButtonThis:hover > .thisBox::after {
    left: 0;
    width: 100%;
  }
}
@media (max-width:1024px) {
  .unifyButton .unifyButtonThis {
    border-color: transparent;
  }
  .unifyButton .unifyButtonThis > .thisBox .txt {
    transform: translateX(0);
    color: #fff;
  }
  .unifyButton .unifyButtonThis > .thisBox i {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
  }
  .unifyButton .unifyButtonThis > .thisBox::after {
    left: 0;
    width: 100%;
  }
}
.unifyButton.white .unifyButtonThis > .thisBox .txt {
  color: #fff;
}
.unifyButton.white .unifyButtonThis > .thisBox .ico i {
  color: #fff;
}
.listBotomInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  margin-top: 4vw;
  opacity: 0.7;
  pointer-events: none;
  font-family: 'cn';
}
.fenye {
  margin-top: 5vw;
}
.fenye .fenyeThis > .thisBox .box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1024px) {
  .fenye .fenyeThis > .thisBox .box {
    gap: 4vw;
  }
}
.fenye .fenyeThis > .thisBox .box .page_numbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1024px) {
  .fenye .fenyeThis > .thisBox .box .page_numbar {
    gap: 4vw;
  }
}
.fenye .fenyeThis > .thisBox .box a {
  width: 2.4vw;
  height: 2.4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  font-family: 'en11';
  text-transform: uppercase;
  font-size: clamp(12px, 1.1vw, 1.1vw);
  border: 1px solid #ddd;
}
@media (max-width:1024px) {
  .fenye .fenyeThis > .thisBox .box a {
    font-size: 4.2vw;
  }
}
@media (max-width:1024px) {
  .fenye .fenyeThis > .thisBox .box a {
    width: 10vw;
    height: 10vw;
  }
}
.fenye .fenyeThis > .thisBox .box a:hover {
  background-color: rgba(74, 136, 185, 0.1);
}
.fenye .fenyeThis > .thisBox .box a.page-num-current {
  background-color: #4A88B9;
  color: #fff;
}
.swiperControl .navigation .navigationThis {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
.swiperControl .navigation .navigationThis .btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  z-index: 2;
  width: 2.4vw;
  height: 2.4vw;
  border-radius: 50%;
  cursor: pointer;
  background-color: #4A88B9;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.swiperControl .navigation .navigationThis .btn .ico {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  transition-duration: 0.5s;
  width: 2vw;
  height: 100%;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
@media (max-width:1024px) {
  .swiperControl .navigation .navigationThis .btn .ico {
    width: 6vw;
  }
}
.swiperControl .navigation .navigationThis .btn .ico i {
  color: #fff;
  font-size: clamp(12px, 1.3vw, 1.3vw);
}
@media (max-width:1024px) {
  .swiperControl .navigation .navigationThis .btn .ico i {
    font-size: 4.6vw;
  }
}
.swiperControl .navigation .navigationThis .btn:hover {
  transform: scale(0.9);
}
.swiperControl .navigation.posi .btn {
  position: absolute;
  z-index: 1;
  top: calc(50% - 1.2vw);
}
.swiperControl .navigation.posi .btn.prev {
  left: 4vw;
}
.swiperControl .navigation.posi .btn.next {
  right: 4vw;
}
.swiperControl .navigation.white .navigationThis .btn {
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.swiperControl .navigation.white .navigationThis .btn i {
  color: rgba(255, 255, 255, 0.7);
}
.swiperControl .navigation.white .navigationThis .btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.swiperControl .navigation.white .navigationThis .btn:hover i {
  color: #fff;
}
.swiperControl .pagination .paginationThis .swiper-pagination-bullet {
  width: 1.6vw;
  height: 0.2vw;
  border-radius: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.swiperControl .pagination .paginationThis .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #4A88B9;
  width: 3vw;
}
.swiperControl .pagination.posi .paginationThis {
  width: fit-content;
  position: absolute;
  bottom: 1vw;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.swiperControl .pagination.posi .paginationThis .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.9);
}
.swiperControl .pagination.posi .paginationThis .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
}
.ani_txt {
  position: relative;
}
.ani_txt .initTxt {
  overflow: hidden;
}
.ani_txt .initTxt div {
  font-family: 'cn';
}
.ani_txt .initTxt.initTxt div {
  will-change: transform;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  transition-property: color;
}
.ani_txt .initTxt.hovTxt {
  position: absolute;
  top: 0;
}
.ani_txt .initTxt.hovTxt div {
  color: #4A88B9;
  will-change: transform;
}
.unifyTitle {
  width: 70vw;
  margin: 0 auto;
  margin-bottom: 4vw;
}
@media (max-width:1600px) {
  .unifyTitle {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  .unifyTitle {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  .unifyTitle {
    width: 86vw;
  }
}
.unifyTitle .unifyTitleThis > .thisBox {
  padding: 0;
}
.unifyTitle .unifyTitleThis > .thisBox > .contentBox {
  padding-left: 1vw;
  border-left: 4px solid #4A88B9;
}
.unifyTitle .unifyTitleThis > .thisBox > .contentBox .en {
  font-size: clamp(12px, 1.2vw, 1.2vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1em;
  text-transform: capitalize;
}
@media (max-width:1024px) {
  .unifyTitle .unifyTitleThis > .thisBox > .contentBox .en {
    font-size: 4.4vw;
  }
}
.unifyTitle .unifyTitleThis > .thisBox > .contentBox .cn {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  font-family: 'cn';
  line-height: 1em;
}
@media (max-width:1024px) {
  .unifyTitle .unifyTitleThis > .thisBox > .contentBox .cn {
    font-size: 4.6vw;
  }
}
.topNav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 100%;
  height: 5vw;
  padding: 0 4vw;
  padding-top: 1vw;
}
@media (max-width:1600px) {
  .topNav {
    height: 5vw;
  }
}
@media (max-width:1300px) {
  .topNav {
    height: 5vw;
  }
}
@media (max-width:1024px) {
  .topNav {
    height: 14vw;
  }
}
.topNav .topNavThis {
  position: relative;
  width: 100%;
  height: 100%;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  border-radius: 6vw;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}
.topNav .topNavThis .thisBox {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
.topNav .topNavThis .thisBox .logoBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  height: 100%;
  padding: 0 3vw;
}
@media (max-width:1024px) {
  .topNav .topNavThis .thisBox .logoBox {
    width: 40vw;
  }
}
.topNav .topNavThis .thisBox .logoBox .logo {
  width: 100%;
  height: 70%;
  object-fit: contain;
}
.topNav .topNavThis .thisBox .navBar {
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  height: 100%;
}
@media (max-width:1024px) {
  .topNav .topNavThis .thisBox .navBar {
    display: none;
  }
}
.topNav .topNavThis .thisBox .navBar .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  height: 100%;
}
.topNav .topNavThis .thisBox .navBar .ul .li {
  padding: 0 1.4vw;
  height: 100%;
  position: relative;
}
.topNav .topNavThis .thisBox .navBar .ul .li .a1 {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.topNav .topNavThis .thisBox .navBar .ul .li .a1 .txt {
  font-size: clamp(12px, 0.9vw, 0.9vw);
  color: #1C5290;
  font-family: 'cn';
}
@media (max-width:1024px) {
  .topNav .topNavThis .thisBox .navBar .ul .li .a1 .txt {
    font-size: 3.8vw;
  }
}
.topNav .topNavThis .thisBox .navBar .ul .li .a1:hover .txt {
  color: #7EC9E6;
}
.topNav .topNavThis .thisBox .navBar .ul .li .twoNav {
  position: absolute;
  top: 100%;
  padding-top: 1vw;
  width: 20vw;
  left: calc(50% - 10vw);
  pointer-events: none;
}
.topNav .topNavThis .thisBox .navBar .ul .li .twoNav .twoNavBox {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(2vw);
  padding: 1.6vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
.topNav .topNavThis .thisBox .navBar .ul .li .twoNav .twoNavBox .navName .en {
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(12px, 1vw, 1vw);
}
@media (max-width:1024px) {
  .topNav .topNavThis .thisBox .navBar .ul .li .twoNav .twoNavBox .navName .en {
    font-size: 4vw;
  }
}
.topNav .topNavThis .thisBox .navBar .ul .li .twoNav .twoNavBox .imgBox {
  width: 100%;
  height: 6vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.topNav .topNavThis .thisBox .navBar .ul .li .twoNav .twoNavBox .ul2 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1vw;
}
.topNav .topNavThis .thisBox .navBar .ul .li .twoNav .twoNavBox .ul2 .li2 .a2 .txt {
  font-family: 'cn';
  color: #1C5290;
}
.topNav .topNavThis .thisBox .navBar .ul .li .twoNav .twoNavBox .ul2 .li2 .a2:hover .txt {
  color: #7EC9E6;
  text-decoration: underline;
}
.topNav .topNavThis .thisBox .navBar .ul .li:hover .twoNav {
  pointer-events: auto;
}
.topNav .topNavThis .thisBox .navBar .ul .li:hover .twoNav .twoNavBox {
  opacity: 1;
  transform: translateY(0);
}
.topNav .topNavThis .thisBox .navBar .ul .li:hover::before {
  background-color: #4A88B9;
}
.topNav .topNavThis .thisBox .navRight {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  height: 100%;
  padding-right: 2vw;
}
.topNav .topNavThis .thisBox .navRight .openBtn {
  position: relative;
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  will-change: transform;
}
.topNav .topNavThis .thisBox .navRight .openBtn .menuBtn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  padding: 3px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(126, 201, 230, 0.6);
}
.topNav .topNavThis .thisBox .navRight .openBtn .menuBtn .ul {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1C5290;
  width: 44px;
  height: 44px;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1300px) {
  .topNav .topNavThis .thisBox .navRight .openBtn .menuBtn .ul {
    width: 30px;
    height: 30px;
  }
}
.topNav .topNavThis .thisBox .navRight .openBtn .menuBtn .ul .li {
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  transition-duration: 0.8s;
  transition-property: background-color;
  display: block;
}
@media (max-width:1300px) {
  .topNav .topNavThis .thisBox .navRight .openBtn .menuBtn .ul .li {
    width: 15px;
    height: 1px;
  }
}
.topNav .topNavThis .thisBox .navRight .openBtn .menuBtn .ul .li:nth-child(1) {
  margin-bottom: 5px;
}
.topNav .topNavThis .thisBox .navRight .openBtn .menuBtn .ul .li:nth-child(3) {
  margin-top: 5px;
}
.topNav .topNavThis .thisBox .navRight .openBtn .menuBtn .txt {
  color: #fff;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.topNav .topNavThis .thisBox .navRight .openBtn:hover {
  transform: scale(0.9);
}
.topNav.scrollShow .topNavThis {
  background-color: rgba(255, 255, 255, 0.4);
}
.openNav {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  padding-right: 2vw;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  padding-top: 0.5vw;
  transform: translateY(-101%);
}
.openNav .openNavThis {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 20vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 3px;
}
.openNav .openNavThis .openNavBar {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
  overflow: auto;
  padding: 2vw;
  padding-top: 4vw;
}
.openNav .openNavThis .openNavBar .ul1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
.openNav .openNavThis .openNavBar .ul1 .li1 {
  position: relative;
  border-bottom: 1px dashed #ccc;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .a1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
  height: 3vw;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .a1 .txt {
  font-family: 'cn';
  color: #fff;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  font-size: clamp(12px, 1.1vw, 1.1vw);
}
@media (max-width:1024px) {
  .openNav .openNavThis .openNavBar .ul1 .li1 .a1 .txt {
    font-size: 4.2vw;
  }
}
.openNav .openNavThis .openNavBar .ul1 .li1 .a1:hover .txt {
  text-decoration: underline;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .openTwoBtn {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  width: 2vw;
  height: 2vw;
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0.5vw;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  border: 1px solid #fff;
  background-color: transparent;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .openTwoBtn i {
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  color: #fff;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .twoNav {
  width: 100%;
  display: none;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .twoNav .ul2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  padding-bottom: 1vw;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .twoNav .ul2 .li2 {
  padding-left: 1vw;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .twoNav .ul2 .li2 .a2 {
  height: 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .twoNav .ul2 .li2 .a2 .txt {
  color: #fff;
}
.openNav .openNavThis .openNavBar .ul1 .li1 .twoNav .ul2 .li2 .a2:hover .txt {
  text-decoration: underline;
}
.openNav .openNavThis .openNavBar .ul1 .li1.toggle .a1 .txt {
  color: #7EC9E6;
}
.openNav .openNavThis .openNavBar .ul1 .li1.toggle .openTwoBtn {
  background-color: #7EC9E6;
  border-color: #7EC9E6;
  transform: rotate(180deg);
}
.openNav .closeBtn {
  position: absolute;
  right: 1vw;
  top: 1vw;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.openNav .closeBtn .menuBtn {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  padding: 3px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(126, 201, 230, 0.6);
  background-color: #fff;
}
.openNav .closeBtn .menuBtn .ul {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1C5290;
  width: 44px;
  height: 44px;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1300px) {
  .openNav .closeBtn .menuBtn .ul {
    width: 30px;
    height: 30px;
  }
}
.openNav .closeBtn .menuBtn .ul .li {
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
  transition-duration: 0.8s;
  transition-property: background-color;
  display: block;
}
@media (max-width:1300px) {
  .openNav .closeBtn .menuBtn .ul .li {
    width: 15px;
    height: 1px;
  }
}
.openNav .closeBtn .menuBtn .ul .li:nth-child(1) {
  margin-bottom: 5px;
}
.openNav .closeBtn .menuBtn .ul .li:nth-child(3) {
  margin-top: 5px;
}
.openNav .closeBtn .menuBtn .txt {
  color: #fff;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
.openNav .closeBtn .menuBtn .ul .li:nth-child(1) {
  margin-bottom: 0;
  transform: translateY(1px) rotate(45deg);
}
.openNav .closeBtn .menuBtn .ul .li:nth-child(2) {
  display: none;
}
.openNav .closeBtn .menuBtn .ul .li:nth-child(3) {
  margin-top: 0;
  transform: translateY(-1px) rotate(-45deg);
}
.openNav .closeBtn:hover {
  transform: scale(0.9);
}
.openNav.openNavShow {
  transform: translateY(0);
}
.mianbao {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
.mianbao i {
  display: block;
  margin: 0 0.5vw;
}
.mianbao a {
  font-size: clamp(12px, 0.9vw, 0.9vw);
}
@media (max-width:1024px) {
  .mianbao a {
    font-size: 3.8vw;
  }
}
.mianbao a:hover {
  color: #4A88B9;
  text-decoration: underline;
}
.txtMask {
  overflow: hidden;
}
.txtMask div {
  will-change: transform;
}
.shan_txt div {
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.foot {
  position: relative;
  z-index: 4;
}
.foot .footThis {
  position: relative;
}
.foot .footThis > .thisBox {
  position: relative;
  z-index: 1;
}
.foot .footThis > .thisBox .footTopInfo {
  margin-top: -4vw;
  position: absolute;
}
.foot .footThis > .thisBox .footTopInfo .goSort {
  width: 35vw;
  height: 12vw;
  background-color: #fff;
  border-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.foot .footThis > .thisBox .footTopInfo .goSort .left .cn {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .footTopInfo .goSort .left .cn {
    font-size: 4.6vw;
  }
}
.foot .footThis > .thisBox .footTopInfo .goSort .xian {
  height: 3vw;
  width: 1px;
  background-color: #ddd;
  margin: 0 3vw;
}
.foot .footThis > .thisBox .footTopInfo .goSort .right .txt {
  font-family: 'cn';
  font-size: clamp(12px, 1vw, 1vw);
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .footTopInfo .goSort .right .txt {
    font-size: 4vw;
  }
}
.foot .footThis > .thisBox .contentBox {
  width: 70vw;
  margin: 0 auto;
  padding-top: 5vw;
}
@media (max-width:1600px) {
  .foot .footThis > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  .foot .footThis > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .contentBox {
    width: 86vw;
  }
}
.foot .footThis > .thisBox .contentBox .contact {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: unset;
  gap: 1vw;
}
.foot .footThis > .thisBox .contentBox .contact .oneBox {
  width: 20vw;
  height: 3vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  padding: 0 1vw;
  gap: 2vw;
}
.foot .footThis > .thisBox .contentBox .contact .oneBox .ico {
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.foot .footThis > .thisBox .contentBox .contact .oneBox:nth-child(1) {
  background-color: #fff;
}
.foot .footThis > .thisBox .contentBox .contact .oneBox:nth-child(2) {
  background-color: #7EC9E6;
  cursor: pointer;
}
.foot .footThis > .thisBox .contentBox .footNavBar {
  margin-top: 8vw;
  padding-top: 2vw;
  padding-bottom: 3vw;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
}
.foot .footThis > .thisBox .contentBox .footNavBar .ul1 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
}
.foot .footThis > .thisBox .contentBox .footNavBar .ul1 .li1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.foot .footThis > .thisBox .contentBox .footNavBar .ul1 .li1 .a1 .txt {
  font-family: 'cn';
  font-size: clamp(12px, 1vw, 1vw);
  color: #fff;
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .contentBox .footNavBar .ul1 .li1 .a1 .txt {
    font-size: 4vw;
  }
}
.foot .footThis > .thisBox .contentBox .footNavBar .ul1 .li1 .a1:hover .txt {
  text-decoration: underline;
}
.foot .footThis > .thisBox .contentBox .footNavBar .ul1 .li1 .twoNav {
  margin-top: 2vw;
}
.foot .footThis > .thisBox .contentBox .footNavBar .ul1 .li1 .twoNav .ul2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 0.6vw;
}
.foot .footThis > .thisBox .contentBox .footNavBar .ul1 .li1 .twoNav .ul2 .li2 .a2 .txt {
  font-family: 'cn';
  font-size: clamp(12px, 0.8vw, 0.8vw);
  color: #fff;
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .contentBox .footNavBar .ul1 .li1 .twoNav .ul2 .li2 .a2 .txt {
    font-size: 3.6vw;
  }
}
.foot .footThis > .thisBox .contentBox .footNavBar .ul1 .li1 .twoNav .ul2 .li2 .a2:hover .txt {
  text-decoration: underline;
}
.foot .footThis > .thisBox .contentBox .footUnder {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
  gap: 2vw;
}
.foot .footThis > .thisBox .contentBox .footUnder .left {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 2vw;
}
.foot .footThis > .thisBox .contentBox .footUnder .left .txt {
  line-height: 2.5em;
  color: #fff;
}
.foot .footThis > .thisBox .contentBox .footUnder .right {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 2vw;
  padding-bottom: 2vw;
}
.foot .footThis > .thisBox .contentBox .footUnder .right .erweima .ul {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: unset;
  gap: 1vw;
}
.foot .footThis > .thisBox .contentBox .footUnder .right .erweima .ul .li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 0.6vw;
}
.foot .footThis > .thisBox .contentBox .footUnder .right .erweima .ul .li .imgBox {
  width: 8vw;
  height: 8vw;
}
.foot .footThis > .thisBox .contentBox .footUnder .right .erweima .ul .li .title {
  font-size: clamp(12px, 0.8vw, 0.8vw);
  color: #fff;
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .contentBox .footUnder .right .erweima .ul .li .title {
    font-size: 3.6vw;
  }
}
.foot .footThis > .thisBox .footBottomInfo {
  width: 100%;
  padding: 1vw 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.foot .footThis > .thisBox .footBottomInfo * {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .footBottomInfo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
    margin-top: 8vw;
    padding: 6vw 0;
  }
}
.foot .footThis > .thisBox .footBottomInfo * {
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .footBottomInfo * {
    font-size: 3.4vw;
  }
}
.foot .footThis > .thisBox .footBottomInfo a:hover {
  color: #4A88B9;
}
.foot .footThis > .thisBox .footBottomInfo > .thisBox {
  padding: 1vw 0;
  width: 70vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
@media (max-width:1600px) {
  .foot .footThis > .thisBox .footBottomInfo > .thisBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  .foot .footThis > .thisBox .footBottomInfo > .thisBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .footBottomInfo > .thisBox {
    width: 86vw;
  }
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .footBottomInfo > .thisBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
    gap: 4vw;
  }
}
.foot .footThis > .thisBox .footBottomInfo > .thisBox .infoLeft {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .footBottomInfo > .thisBox .infoLeft {
    gap: 4vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
  }
}
.foot .footThis > .thisBox .footBottomInfo > .thisBox .infoLeft > div .lbt {
  word-break: keep-all;
}
.foot .footThis > .thisBox .footBottomInfo > .thisBox .infoLeft .beian {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.foot .footThis > .thisBox .footBottomInfo > .thisBox .infoLeft .beian a {
  text-decoration: underline;
}
.foot .footThis > .thisBox .footBottomInfo > .thisBox .infoLeft .gabeian {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.foot .footThis > .thisBox .footBottomInfo > .thisBox .infoLeft .gabeian a {
  text-decoration: underline;
}
.foot .footThis > .thisBox .footBottomInfo > .thisBox .infoLeft .banquan {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  .foot .footThis > .thisBox .footBottomInfo > .thisBox .infoLeft .banquan {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
  }
}
.foot .footThis > .thisBox .footBottomInfo > .thisBox .infoRight .jishuzhichi {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
.foot .footThis .bgImg img {
  filter: grayscale(0.7);
}
.foot .footThis .bgImg::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 49, 68, 0.3);
}
.twoPageBox .pageContentAll .twoBanner .bannerThis {
  position: relative;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox {
  position: relative;
  z-index: 1;
  padding: 0.4vw;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .sortImg {
  width: 100%;
  height: 26vw;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .sortImg .imgBox {
  position: relative;
  width: 100%;
  height: 100%;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .sortImg .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .sortImg .imgBox::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 49, 68, 0.3);
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox {
  position: absolute;
  left: 0;
  bottom: 2vw;
  width: 100%;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao {
  width: 70vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1600px) {
  .twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  .twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  .twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao {
    width: 86vw;
  }
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao .xian {
  background-color: #1C5290;
  width: 2vw;
  height: 0.2vw;
  margin-bottom: 1vw;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao .text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 0.5vw;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao .text .zimu {
  color: #1C5290;
  font-size: clamp(12px, 5.3vw, 5.3vw);
  font-family: 'en11';
  text-transform: uppercase;
  margin-left: -0.2vw;
}
@media (max-width:1024px) {
  .twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao .text .zimu {
    font-size: 12.6vw;
  }
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao .text .rightText .name {
  color: #fff;
  font-size: clamp(12px, 1.7vw, 1.7vw);
  font-family: 'cn';
}
@media (max-width:1024px) {
  .twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao .text .rightText .name {
    font-size: 5.4vw;
  }
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao .text .rightText .subname {
  color: #fff;
  font-size: clamp(12px, 1.7vw, 1.7vw);
  font-family: 'en11';
  text-transform: uppercase;
}
@media (max-width:1024px) {
  .twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .textBox .youxiao .text .rightText .subname {
    font-size: 5.4vw;
  }
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .downIcon {
  position: absolute;
  right: 2vw;
  bottom: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  width: 8vw;
  height: 8vw;
}
.twoPageBox .pageContentAll .twoBanner .bannerThis > .thisBox .contentBox .downIcon .quan {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  animation: xuanzhuan 40s linear 0s infinite normal;
}
.twoPageBox .pageContentAll .detalBanner > .thisBox {
  height: 20vw;
  width: 100%;
}
.twoPageBox .pageContentAll .detalBanner > .thisBox > .contentBox {
  position: relative;
  width: 100%;
  height: 100%;
}
.twoPageBox .pageContentAll .detalBanner > .thisBox > .contentBox .imgBox {
  width: 100%;
  height: 100%;
}
.twoPageBox .pageContentAll .detalBanner > .thisBox > .contentBox .posiBox {
  position: absolute;
  left: 12%;
  bottom: 6vw;
}
.twoPageBox .pageContentAll .detalBanner > .thisBox > .contentBox .posiBox .goBack {
  border: 1px solid #fff;
  height: 2.4vw;
  padding: 0 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
  border-radius: 1.2vw;
}
.twoPageBox .pageContentAll .detalBanner > .thisBox > .contentBox .posiBox .goBack .ico i {
  color: #fff;
}
.twoPageBox .pageContentAll .detalBanner > .thisBox > .contentBox .posiBox .goBack .txt {
  color: #fff;
}
.twoPageBox .pageContentAll .sortNav {
  position: relative;
  z-index: 1;
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox {
  width: 70vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1600px) {
  .twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  .twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  .twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox {
    width: 86vw;
  }
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox {
  width: 100%;
  height: 6vw;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  gap: 4vw;
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl .li {
  height: 100%;
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl .li .aBox {
  position: relative;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 3vw;
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl .li .aBox .txt div {
  font-size: clamp(12px, 0.9vw, 0.9vw);
}
@media (max-width:1024px) {
  .twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl .li .aBox .txt div {
    font-size: 3.8vw;
  }
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl .li .aBox .txt .hovTxt div {
  color: #4A88B9;
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl .li .aBox::after {
  content: '';
  position: absolute;
  display: block;
  bottom: -1px;
  background-color: #4A88B9;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 100%;
  height: 1px;
  transform: scaleX(0);
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl .li:hover .aBox::after {
  transform: scaleX(1);
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl .li.on .aBox .txt div {
  color: #4A88B9;
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .navUl .li.on .aBox::after {
  transform: scaleX(1);
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .nameBox .txt span:nth-child(1) {
  font-family: 'en11';
  text-transform: uppercase;
  font-size: clamp(12px, 2.7vw, 2.7vw);
  text-transform: capitalize;
  padding-right: 1vw;
}
@media (max-width:1024px) {
  .twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .nameBox .txt span:nth-child(1) {
    font-size: 7.4vw;
  }
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .nameBox .txt span:nth-child(2) {
  padding-left: 1vw;
  font-family: 'cn';
  font-size: clamp(12px, 1.1vw, 1.1vw);
}
@media (max-width:1024px) {
  .twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .navBox .nameBox .txt span:nth-child(2) {
    font-size: 4.2vw;
  }
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .mianbao {
  margin-top: 1vw;
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .mianbao * {
  font-size: clamp(12px, 0.8vw, 0.8vw);
  opacity: 0.8;
}
@media (max-width:1024px) {
  .twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .mianbao * {
    font-size: 3.6vw;
  }
}
.twoPageBox .pageContentAll .sortNav .sortNavThis > .thisBox .contentBox .mianbao *:hover {
  opacity: 1;
}
.fiexdRight {
  position: fixed;
  z-index: 5;
  right: 1vw;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  opacity: 0;
  pointer-events: none;
  bottom: 4vw;
  transform: translateX(100%);
}
.fiexdRight > .thisBox {
  backdrop-filter: blur(10px);
}
.fiexdRight > .thisBox .contentBox {
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.8vw;
  padding: 1vw 0;
}
.fiexdRight > .thisBox .contentBox .ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  .fiexdRight > .thisBox .contentBox .ul {
    gap: 2vw;
  }
}
.fiexdRight > .thisBox .contentBox .ul .li {
  position: relative;
  cursor: pointer;
  width: 100%;
}
.fiexdRight > .thisBox .contentBox .ul .li .box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 0.6vw;
  padding: 1vw 0.4vw;
}
.fiexdRight > .thisBox .contentBox .ul .li .box .ico {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.fiexdRight > .thisBox .contentBox .ul .li .box .ico i {
  position: relative;
  z-index: 1;
  font-size: clamp(12px, 1.5vw, 1.5vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  .fiexdRight > .thisBox .contentBox .ul .li .box .ico i {
    font-size: 5vw;
  }
}
.fiexdRight > .thisBox .contentBox .ul .li .box .txt {
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  .fiexdRight > .thisBox .contentBox .ul .li .box .txt {
    font-size: 3.4vw;
  }
}
.fiexdRight > .thisBox .contentBox .ul .li .hovBox {
  position: absolute;
  right: 150%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-1vw);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  top: 0;
  border-radius: 1vw;
  padding: 2vw;
  background-color: #fff;
}
.fiexdRight > .thisBox .contentBox .ul .li .hovBox .imgBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  width: 6vw;
  height: 6vw;
}
.fiexdRight > .thisBox .contentBox .ul .li .hovBox .miaoshu {
  width: max-content;
  font-size: clamp(12px, 1.1vw, 1.1vw);
  font-weight: bold;
}
@media (max-width:1024px) {
  .fiexdRight > .thisBox .contentBox .ul .li .hovBox .miaoshu {
    font-size: 4.2vw;
  }
}
.fiexdRight > .thisBox .contentBox .ul .li:hover .box {
  background-color: #4A88B9;
}
.fiexdRight > .thisBox .contentBox .ul .li:hover .box .ico i {
  background: -webkit-linear-gradient(180deg, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fiexdRight > .thisBox .contentBox .ul .li:hover .box .txt {
  color: #fff;
}
.fiexdRight > .thisBox .contentBox .ul .li:hover .hovBox {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.fiexdRight.scrollShow {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.changePageMoveBox {
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.changePageMoveBox .logo {
  position: relative;
  z-index: 1;
  width: 16vw;
  height: 16vw;
  border-radius: 50%;
}
.changePageMoveBox .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}
.changePageMoveBox .box {
  position: relative;
  width: 120%;
  height: 100%;
  transform: rotate(30deg);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
.changePageMoveBox .box .mask {
  width: 50%;
  height: 200%;
  background-color: #000;
}
.changePageMoveBox .box .mask.mask1 {
  position: relative;
  right: -1px;
}
.changePageMoveBox .box .mask.mask2 {
  position: relative;
  left: -1px;
}
.changePageMoveBox .logo {
  position: absolute;
  left: calc(50% - 8vw);
  top: calc(50% - 8vw);
}
.mouseCursor {
  pointer-events: none;
  position: fixed;
}
.mouseCursor .dianBox {
  opacity: 0.5;
  position: relative;
}
.mouseCursor .dianBox .dian {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0;
  left: 0;
}
.mouseCursor .dianBox .dian > div {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  border: 1px solid #4A88B9;
}
.mouseCursor .dianBox .kuoQuan {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.mouseCursor .dianBox .kuoQuan > div {
  border-radius: 50%;
  width: 8vw;
  height: 8vw;
  background-color: rgba(74, 136, 185, 0.1);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  transform: scale(0);
}
.mouseCursor.hoverA .dianBox .dian > div {
  transform: scale(0);
}
.mouseCursor.hoverA .dianBox .kuoQuan > div {
  transform: scale(1);
}
.mouseCursorPoint {
  pointer-events: none;
  position: fixed;
}
.mouseCursorPoint > div {
  background-color: #4A88B9;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 0.8vw;
  height: 0.8vw;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.mouseCursorPoint.hoverA > div {
  opacity: 0;
}
#index_page .pageContentAll .inxBanner > .thisBox {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .inxBanner > .thisBox {
    height: 100vw;
  }
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox {
  position: relative;
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout {
  position: relative;
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl {
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul {
  position: relative;
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li .box {
  position: relative;
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li .box .listHideImg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li .box .listHideImg > div {
  height: 100%;
  flex: 1;
  overflow: hidden;
  clip-path: inset(0 0 calc(var(--progress) * 100%) 0);
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li .box .listHideImg > div img {
  position: relative;
  height: 100%;
  width: 100vw;
  object-fit: cover;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li .box .listHideImg > div:nth-child(1) img {
  left: 0;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li .box .listHideImg > div:nth-child(2) img {
  left: -25vw;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li .box .listHideImg > div:nth-child(3) img {
  left: -50vw;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li .box .listHideImg > div:nth-child(4) img {
  left: -75vw;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl .ul .li.on {
  pointer-events: auto;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .imgUl::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(74, 136, 185, 0.2);
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl {
  position: absolute;
  top: 20vw;
  left: 16vw;
  width: 30vw;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl {
    width: 80vw;
    top: 48vw;
    left: 8vw;
  }
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul {
  position: relative;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul .li {
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul .li .subtitle,
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul .li .subtitle div {
  font-family: 'en11';
  text-transform: uppercase;
  font-size: clamp(12px, 1.3vw, 1.3vw);
  letter-spacing: 0.1em;
  color: #4A88B9;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul .li .subtitle,
  #index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul .li .subtitle div {
    font-size: 4.6vw;
  }
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul .li .miaoshu {
  margin-top: 1vw;
  font-family: 'en11';
  text-transform: uppercase;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul .li .miaoshu .t {
  font-size: clamp(12px, 1.7vw, 1.7vw);
  color: #fff;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul .li .miaoshu .t {
    font-size: 5.4vw;
  }
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .bannerCout .textUl .ul .li.on {
  opacity: 1;
  pointer-events: auto;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .scrollDown {
  position: absolute;
  z-index: 2;
  left: 16vw;
  bottom: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .inxBanner > .thisBox > .contentBox .scrollDown {
    display: none;
  }
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .scrollDown .txt {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: clamp(12px, 0.8vw, 0.8vw);
  font-family: 'en11';
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .inxBanner > .thisBox > .contentBox .scrollDown .txt {
    font-size: 3.6vw;
  }
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .scrollDown .mouse {
  border-radius: 2vw;
  width: 1.2vw;
  height: 2vw;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .scrollDown .mouse div {
  width: 0.3vw;
  height: 0.6vw;
  border-radius: 2vw;
  background-color: #fff;
  animation: mouseMove 1.5s ease-in-out infinite;
}
@keyframes mouseMove {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(50%);
    opacity: 0;
  }
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .swiperControl .pagination {
  position: absolute;
  bottom: 2vw;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .swiperControl .pagination .dotUl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .swiperControl .pagination .dotUl .dot {
  cursor: pointer;
  width: 1vw;
  height: 1vw;
  border-radius: 50%;
  background-color: #1C5290;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
#index_page .pageContentAll .inxBanner > .thisBox > .contentBox .swiperControl .pagination .dotUl .dot.on {
  background-color: #7EC9E6;
}
#index_page .pageContentAll .pageContent {
  padding-bottom: 0;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  width: 100%;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .sortTitle {
  margin-bottom: 2vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .sortTitle .en {
  font-size: clamp(12px, 2.3vw, 2.3vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .sortTitle .en {
    font-size: 6.6vw;
  }
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .sortTitle .cn {
  font-size: clamp(12px, 1.7vw, 1.7vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .sortTitle .cn {
    font-size: 5.4vw;
  }
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox {
  width: 50vw;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li {
  width: 100%;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li .aBox {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  padding: 1.2vw 2vw;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li .aBox .date {
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'en8';
  font-weight: bold;
  text-transform: uppercase;
  width: 8vw;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li .aBox .textBox {
  width: calc(100% - 8vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 0.5vw;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li .aBox .textBox .topTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  gap: 1vw;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li .aBox .textBox .topTitle .sortOf {
  padding: 0.2vw 0.7vw;
  border-radius: 4px;
  color: #fff;
  font-size: clamp(12px, 0.7vw, 0.7vw);
  background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li .aBox .textBox .topTitle .sortOf {
    font-size: 3.4vw;
  }
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li .aBox .textBox .topTitle .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
#index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li .aBox .textBox .description {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6em;
  font-size: clamp(12px, 0.8vw, 0.8vw);
  opacity: 0.7;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNotice > .thisBox .contentBox .coutBox .ul .li .aBox .textBox .description {
    font-size: 3.6vw;
  }
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: unset;
  width: 100%;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .sortTitle {
  position: absolute;
  left: 10vw;
  top: 0;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .sortTitle .en {
  width: 20vw;
  font-size: clamp(12px, 2.1vw, 2.1vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .sortTitle .en {
    font-size: 6.2vw;
  }
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .sortTitle .cn {
  font-size: clamp(12px, 1.1vw, 1.1vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .sortTitle .cn {
    font-size: 4.2vw;
  }
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .imgBoxAll {
  width: 50%;
  position: absolute;
  left: 0;
  z-index: 2;
  top: 0;
  height: 100%;
  padding: 10vw 0;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .imgBoxAll .box {
  overflow: hidden;
  border-radius: 2vw;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .imgBoxAll .box .imgBox {
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll {
  width: 58%;
  background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
  padding: 8vw 14vw;
  padding-left: 16vw;
  border-radius: 2vw;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .miaoshu {
  text-align: center;
  line-height: 2em;
  font-family: 'cn';
  font-size: clamp(12px, 1.5vw, 1.5vw);
  color: #fff;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .miaoshu {
    font-size: 5vw;
  }
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .content {
  text-align: center;
  margin-top: 6vw;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .content p {
  color: #fff;
  font-size: clamp(12px, 0.8vw, 0.8vw);
  opacity: 0.9;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .content p {
    font-size: 3.6vw;
  }
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li {
  width: 8vw;
  position: relative;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li .value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li .value .shuju {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  position: relative;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li .value .shuju .num {
  font-family: 'en8';
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(12px, 1.7vw, 1.7vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li .value .shuju .num {
    font-size: 5.4vw;
  }
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li .value .shuju .danwei {
  position: absolute;
  left: 100%;
  color: #fff;
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li .value .shuju .danwei {
    font-size: 3.4vw;
  }
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li .value .title {
  color: #fff;
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li .value .title {
    font-size: 3.4vw;
  }
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li::after {
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  height: 1.4vw;
  width: 1px;
  background-color: #fff;
  opacity: 0.6;
  right: 0;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .dataBox .ul .li:last-child::after {
  display: none;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .logo {
  margin-top: 4vw;
  height: 8vw;
  width: 60%;
}
#index_page .pageContentAll .pageContent .inxAbout > .thisBox .contentBox .textBoxAll .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#index_page .pageContentAll .pageContent .inxSortlink {
  position: relative;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox {
  position: relative;
  z-index: 2;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox .sortTitle {
  position: absolute;
  left: 10vw;
  top: 0;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox .sortTitle .en {
  width: 20vw;
  font-size: clamp(12px, 2.1vw, 2.1vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxSortlink > .thisBox .sortTitle .en {
    font-size: 6.2vw;
  }
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox .sortTitle .cn {
  font-size: clamp(12px, 1.1vw, 1.1vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxSortlink > .thisBox .sortTitle .cn {
    font-size: 4.2vw;
  }
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox {
  position: relative;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 4vw;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox {
  border: 1px solid #4A88B9;
  width: 24vw;
  height: 24vw;
  padding: 1vw;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox .kBox {
  border: 1px solid #4A88B9;
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox .kBox .box {
  position: relative;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox .kBox .box .imgBox {
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox .kBox .box .textBox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox .kBox .box .textBox .subtitle {
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'en11';
  text-transform: uppercase;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox .kBox .box .textBox .xian {
  background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
  margin: 1vw 0;
  width: 2vw;
  height: 1px;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox .kBox .box .textBox .title {
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(12px, 1.5vw, 1.5vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox .kBox .box .textBox .title {
    font-size: 5vw;
  }
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox:hover .kBox .box {
  background-color: #fafafa;
}
#index_page .pageContentAll .pageContent .inxSortlink > .thisBox > .contentBox .ulBox .ul .li .aBox:hover .kBox .box .imgBox {
  opacity: 0.5;
}
#index_page .pageContentAll .pageContent .inxSortlink #waveLine {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
  height: 100%!important;
}
#index_page .pageContentAll .pageContent .inxSortlink #waveLine canvas {
  height: 100%!important;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox .firstImgSwiper {
  width: 100%;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox .firstImgSwiper .swiper {
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox .firstImgSwiper .swiper .swiper-slide {
  width: 70vw;
  height: 30vw;
  border-radius: 2vw;
  overflow: hidden;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox .firstImgSwiper .swiper .swiper-slide .imgBox {
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle {
  padding: 3vw 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .sortTitle {
  top: 0;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .sortTitle .en {
  width: 20vw;
  font-size: clamp(12px, 2.1vw, 2.1vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .sortTitle .en {
    font-size: 6.2vw;
  }
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .sortTitle .cn {
  font-size: clamp(12px, 1.1vw, 1.1vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .sortTitle .cn {
    font-size: 4.2vw;
  }
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .miaoshu {
  line-height: 2em;
  padding-left: 2vw;
  border-left: 1px solid rgba(74, 136, 185, 0.6);
  font-family: 'cn';
  font-size: clamp(12px, 1.1vw, 1.1vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .miaoshu {
    font-size: 4.2vw;
  }
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .moreA {
  position: relative;
  background-color: #4A88B9;
  width: 8vw;
  height: 8vw;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .moreA .txt {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .moreA .txt .en {
  color: #fff;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .moreA .txt .cn {
  color: #fff;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .moreA .point {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform-origin: 50% 50%;
  border-radius: 50%;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  transform: scale(0.05);
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .moreA:hover .txt .en {
  transform: translateY(0.5em);
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .moreA:hover .txt .cn {
  transform: translateY(-0.5em);
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .topTitle .moreA:hover .point {
  transform: scale(1);
  background-color: #1C5290;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li {
  padding: 4vw 0;
  border-bottom: 1px solid rgba(74, 136, 185, 0.3);
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box {
  width: 100%;
  height: 22vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox {
  width: calc(100% - 50%);
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .titleBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  gap: 2vw;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .titleBox .num {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  padding-bottom: 0.6vw;
  font-family: 'en8';
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid #4A88B9;
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .titleBox .num {
    font-size: 4.6vw;
  }
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .titleBox .title {
  font-size: clamp(12px, 1.5vw, 1.5vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .titleBox .title {
    font-size: 5vw;
  }
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .tags {
  margin-top: 1vw;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .tags .tagsUl {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1vw;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .tags .tagsUl .tagsLi {
  background-color: rgba(74, 136, 185, 0.8);
  padding: 0.2vw 1vw;
  border-radius: 2vw;
  color: #fff;
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .tags .tagsUl .tagsLi {
    font-size: 3.4vw;
  }
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .miaoshu {
  margin-top: 2vw;
  line-height: 2em;
  padding-left: 2vw;
  border-left: 1px solid rgba(74, 136, 185, 0.3);
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .coutBox .unifyButton {
  margin-top: 4vw;
}
#index_page .pageContentAll .pageContent .inxProduct > .thisBox > .contentBox .ulBox .ul .li .box .imgBox {
  border-radius: 1vw;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 1;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox {
  padding-bottom: 0;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox .inxHisTitle {
  position: relative;
  padding-bottom: 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1.5vw;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox .inxHisTitle .en {
  position: relative;
  z-index: 1;
  font-size: clamp(12px, 4.7vw, 4.7vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxHIstory .thisBox .inxHisTitle .en {
    font-size: 11.4vw;
  }
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox .inxHisTitle .en .one {
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox .inxHisTitle .en .two {
  color: #666;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox .inxHisTitle .cn {
  font-size: clamp(12px, 1.5vw, 1.5vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxHIstory .thisBox .inxHisTitle .cn {
    font-size: 5vw;
  }
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox .inxHisTitle::after {
  width: 100%;
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  height: 74%;
  background-color: rgba(0, 0, 0, 0.05);
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .imgBoxAll {
  width: 50%;
  height: 100vh;
  padding: 5vw 6vw;
  position: relative;
  overflow: hidden;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .imgBoxAll .bgImgBox {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.1);
  filter: blur(20px);
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .imgBoxAll .bgImgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .imgBoxAll .imgBox {
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox {
  width: 50%;
  height: 100%;
  background-color: #fff;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li {
  padding: 3vw;
  border-bottom: 1px solid #ddd;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li .yearBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li .yearBox .year {
  font-size: clamp(12px, 1.5vw, 1.5vw);
  font-family: 'en8';
  font-weight: bold;
  text-transform: uppercase;
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li .yearBox .year {
    font-size: 5vw;
  }
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li .yearBox .subname {
  font-family: 'en11';
  text-transform: uppercase;
  font-size: clamp(12px, 0.7vw, 0.7vw);
  color: #d12222;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li .yearBox .subname {
    font-size: 3.4vw;
  }
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li .textBox {
  margin-top: 3vw;
  padding: 0 8vw 0 6vw;
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li .textBox .subtitle {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  font-family: 'cn';
  margin-bottom: 1vw;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li .textBox .subtitle {
    font-size: 4.6vw;
  }
}
#index_page .pageContentAll .pageContent .inxHIstory .thisBox > .contentBox .coutBox .ul .li:last-child {
  border-bottom: none;
}
#index_page .pageContentAll .pageContent .inxNews {
  position: relative;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox {
  padding-top: 6vw;
  padding-bottom: 12vw;
  position: relative;
  z-index: 1;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox {
    padding-top: 14vw;
  }
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox {
    padding-bottom: 28vw;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox {
  width: 70vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1600px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox {
    width: 86vw;
  }
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
    gap: 6vw;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText {
  width: 20vw;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText {
    width: 100%;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .sortTitle .en {
  font-size: clamp(12px, 1.9vw, 1.9vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .sortTitle .en {
    font-size: 5.8vw;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .sortTitle .cout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
  margin-bottom: 4vw;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .sortTitle .cout .sortname {
  font-size: clamp(12px, 2.3vw, 2.3vw);
  font-family: 'cn';
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .sortTitle .cout .sortname {
    font-size: 6.6vw;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .tabsBox .ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .tabsBox .ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: unset;
    gap: 2vw;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .tabsBox .ul .li {
  width: 10vw;
  height: 2.4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border: 1px solid #aaa;
  cursor: pointer;
  border-radius: 4vw;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .tabsBox .ul .li {
    width: 24vw;
    height: 8vw;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .tabsBox .ul .li:hover {
  background-color: rgba(74, 136, 185, 0.1);
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .tabsBox .ul .li.on {
  background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
  border: none;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .leftText .tabsBox .ul .li.on .title {
  color: #fff;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox {
  height: 100%;
  width: calc(100% - 20vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox {
    width: 100%;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox {
  width: 100%;
  height: 100%;
  position: relative;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox {
  position: absolute;
  width: 100%;
  top: 0;
  pointer-events: none;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 2vw;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li {
  opacity: 0;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  width: 100%;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox {
  padding: 1vw;
  width: 100%;
  height: 10vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .date {
  font-size: clamp(12px, 0.9vw, 0.9vw);
  font-family: 'en8';
  font-weight: bold;
  text-transform: uppercase;
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .date {
    font-size: 3.8vw;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .imgBox {
  will-change: transform;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 12vw;
  height: 100%;
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .imgBox {
    width: 25vw;
    height: 16vw;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .imgBox img {
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .textBox {
  padding-left: 2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  width: calc(100% - 14vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .textBox {
    width: calc(100% - 25vw);
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .textBox .title {
  margin: 1vw 0 0.5vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  font-size: clamp(12px, 1.1vw, 1.1vw);
}
@media (max-width:1024px) {
  #index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .textBox .title {
    font-size: 4.2vw;
  }
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox .textBox .miaoshu {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  opacity: 0.7;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox:hover {
  transform: translateX(2vw);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .ul .li .aBox:hover .textBox .title {
  color: #4A88B9;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox .unifyButton {
  opacity: 0;
}
#index_page .pageContentAll .pageContent .inxNews > .thisBox > .contentBox .rightBox .coutsBox .changeBox.on {
  pointer-events: auto;
}
#index_page .pageContentAll .pageContent .inxNews .bgVideo {
  pointer-events: none;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  opacity: 0.2;
  transform: rotateY(180deg);
}
#index_page .pageContentAll .pageContent .inxNews .bgVideo #bgVideoCanvas {
  height: 100%;
  width: 75vw;
}
#index_page .websiteOpen {
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#index_page .websiteOpen .coutBox {
  margin-top: -4vw;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 2vw;
}
#index_page .websiteOpen .coutBox .logo {
  width: 10vw;
  height: 10vw;
  opacity: 0;
}
#index_page .websiteOpen .coutBox .logo img {
  width: 100%;
  height: 100%;
}
#index_page .websiteOpen .coutBox .txt {
  opacity: 0;
}
#index_page .websiteOpen .coutBox .txt div {
  font-size: clamp(12px, 2.3vw, 2.3vw);
  font-family: 'cn';
  opacity: 0;
}
@media (max-width:1024px) {
  #index_page .websiteOpen .coutBox .txt div {
    font-size: 6.6vw;
  }
}
#index_page .websiteOpen .coutBox .joinBtn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  opacity: 0;
  margin-top: 4vw;
  width: 10vw;
  height: 3vw;
  cursor: pointer;
  border: 1px solid #666;
}
#news_page .pageContentAll .pageContent .newsList > .thisBox {
  padding-top: 0;
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 2vw;
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li {
  opacity: 0;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  width: 100%;
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox {
  padding: 1vw;
  width: 100%;
  height: 10vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .date {
  font-size: clamp(12px, 0.9vw, 0.9vw);
  font-family: 'en8';
  font-weight: bold;
  text-transform: uppercase;
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .date {
    font-size: 3.8vw;
  }
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .imgBox {
  will-change: transform;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 12vw;
  height: 100%;
}
@media (max-width:1024px) {
  #news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .imgBox {
    width: 25vw;
    height: 16vw;
  }
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .imgBox img {
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .textBox {
  padding-left: 2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  width: calc(100% - 14vw);
}
@media (max-width:1024px) {
  #news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .textBox {
    width: calc(100% - 25vw);
  }
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .textBox .title {
  margin: 1vw 0 0.5vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  font-size: clamp(12px, 1.1vw, 1.1vw);
}
@media (max-width:1024px) {
  #news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .textBox .title {
    font-size: 4.2vw;
  }
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox .textBox .miaoshu {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  opacity: 0.7;
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox:hover {
  transform: translateX(2vw);
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
}
#news_page .pageContentAll .pageContent .newsList > .thisBox > .contentBox .ul .li .aBox:hover .textBox .title {
  color: #4A88B9;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul > li {
  width: calc(100% / 3 - (3 - 1) * 2vw / 3);
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box {
  position: relative;
  background-color: #f3f3f3;
  padding: 2vw 3vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 2vw;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics {
  position: relative;
  height: 13vw;
  width: 100%;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .swiper {
  width: 100%;
  height: 100%;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .swiper .aBox {
  width: 100%;
  height: 100%;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .swiper .aBox .imgBox {
  width: 100%;
  height: 100%;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .swiper .aBox .imgBox img {
  object-fit: contain;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .swiper .aBox:hover {
  transform: scale(0.9);
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .navigation > div {
  cursor: pointer;
  position: absolute;
  width: 2.2vw;
  height: 2.2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 50%;
  top: 50%;
  z-index: 1;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  border: 1px solid #999;
  will-change: transform;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .navigation > div i {
  color: #333;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .navigation > div.prevBtn {
  left: -2.4vw;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .navigation > div.nextBtn {
  right: -2.4vw;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .navigation > div:hover {
  transform: scale(0.9);
  border-color: #4A88B9;
  background-color: #4A88B9;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .pics .navigation > div:hover i {
  color: #fff;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .textBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .textBox .title {
  font-family: 'cn';
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .textBox .miaoshuBtn {
  font-size: clamp(12px, 0.9vw, 0.9vw);
  font-family: 'cn';
  color: #4A88B9;
  cursor: pointer;
  margin-top: 1vw;
}
@media (max-width:1024px) {
  #honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .textBox .miaoshuBtn {
    font-size: 3.8vw;
  }
}
#honor_page .pageContentAll .pageContent .honorList > .thisBox > .contentBox .ul .li .box .textBox .miaoshu {
  display: none;
}
#product_page .pageContentAll .pageContent .productList > .thisBox {
  padding-top: 0;
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li {
  padding: 4vw 0;
  border-bottom: 1px solid rgba(74, 136, 185, 0.3);
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box {
  width: 100%;
  height: 22vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox {
  width: calc(100% - 50%);
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .titleBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  gap: 2vw;
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .titleBox .num {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  padding-bottom: 0.6vw;
  font-family: 'en8';
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid #4A88B9;
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .titleBox .num {
    font-size: 4.6vw;
  }
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .titleBox .title {
  font-size: clamp(12px, 1.5vw, 1.5vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .titleBox .title {
    font-size: 5vw;
  }
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .tags {
  margin-top: 1vw;
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .tags .tagsUl {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1vw;
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .tags .tagsUl .tagsLi {
  background-color: rgba(74, 136, 185, 0.8);
  padding: 0.2vw 1vw;
  border-radius: 2vw;
  color: #fff;
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .tags .tagsUl .tagsLi {
    font-size: 3.4vw;
  }
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .miaoshu {
  margin-top: 2vw;
  line-height: 2em;
  padding-left: 2vw;
  border-left: 1px solid rgba(74, 136, 185, 0.3);
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .coutBox .unifyButton {
  margin-top: 4vw;
}
#product_page .pageContentAll .pageContent .productList > .thisBox > .contentBox .ul .li .box .imgBox {
  border-radius: 1vw;
  overflow: hidden;
  height: 100%;
  aspect-ratio: 1;
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: unset;
  }
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .leftBox {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .leftBox {
    width: 100%;
    padding-top: 20vw;
    height: 40%;
  }
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .leftBox .imgBox {
  width: 30vw;
  height: 30vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width:1024px) {
  #product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .leftBox .imgBox {
    width: 50vw;
    height: 50vw;
  }
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox {
  width: calc(100% - 50%);
  width: 50%;
  height: 100%;
  padding-left: 6vw;
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .titleBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  gap: 2vw;
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .titleBox .num {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  padding-bottom: 0.6vw;
  font-family: 'en8';
  font-weight: bold;
  text-transform: uppercase;
  border-bottom: 1px solid #4A88B9;
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .titleBox .num {
    font-size: 4.6vw;
  }
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .titleBox .title {
  font-size: clamp(12px, 1.5vw, 1.5vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .titleBox .title {
    font-size: 5vw;
  }
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .tags {
  margin-top: 1vw;
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .tags .tagsUl {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1vw;
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .tags .tagsUl .tagsLi {
  background-color: rgba(74, 136, 185, 0.8);
  padding: 0.2vw 1vw;
  border-radius: 2vw;
  color: #fff;
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .tags .tagsUl .tagsLi {
    font-size: 3.4vw;
  }
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .miaoshu {
  margin-top: 2vw;
  line-height: 2em;
  padding-left: 2vw;
  border-left: 1px solid rgba(74, 136, 185, 0.3);
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .unifyButton {
  margin-top: 4vw;
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .titleBox .title {
  font-size: clamp(12px, 2.3vw, 2.3vw);
  margin-bottom: 3vw;
}
@media (max-width:1024px) {
  #product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .titleBox .title {
    font-size: 6.6vw;
  }
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .buyLink {
  margin-top: 3vw;
  border: 1px solid #4A88B9;
  padding: 0.6vw 2vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  color: #4A88B9;
  width: fit-content;
  background-color: transparent;
  cursor: pointer;
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .detailBoxAll .rightBox .buyLink:hover {
  background-color: rgba(74, 136, 185, 0.1);
}
#product_detail_page .pageContentAll .pageContent .productDetail > .thisBox > .contentBox .wenzhang {
  margin-top: 6vw;
  padding: 3vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
#about_page .pageContentAll .pageContent .introduce > .thisBox {
  padding: 3vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .introduce > .thisBox {
    padding: 7vw 0;
  }
}
#about_page .pageContentAll .pageContent .introduce > .thisBox .topName {
  font-size: clamp(12px, 1.7vw, 1.7vw);
  font-family: 'cn';
  padding-bottom: 1vw;
  border-bottom: 1px solid #ccc;
  margin-bottom: 6vw;
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .introduce > .thisBox .topName {
    font-size: 5.4vw;
  }
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: unset;
  padding: 4vw 0;
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .swiperBox {
  width: 60%;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .swiperBox .swiper {
  width: 100%;
  height: 100%;
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .swiperBox .swiper .swiper-slide .imgBox {
  width: 100%;
  height: 100%;
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .textBox {
  position: relative;
  z-index: 1;
  width: 50%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  padding: 3vw 0;
  padding-left: 5vw;
  background-color: rgba(250, 250, 250, 0.5);
  backdrop-filter: blur(20px);
  padding-right: 15%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 2vw;
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .textBox .miaoshu {
  text-align: left;
  gap: 1vw;
  line-height: 2em;
  font-size: clamp(12px, 1.3vw, 1.3vw);
  font-family: 'cn';
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .textBox .miaoshu {
    font-size: 4.6vw;
  }
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .textBox .content {
  text-align: justify;
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .textBox .content p {
  font-size: clamp(12px, 0.8vw, 0.8vw);
  text-indent: 2em;
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .textBox .content p {
    font-size: 3.6vw;
  }
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .textBox .logo {
  align-self: flex-start;
  height: 4vw;
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .textBox .logo img {
  height: 100%;
}
#about_page .pageContentAll .pageContent .introduce > .thisBox > .contentBox .textBox .unifyButton {
  align-self: flex-end;
}
#about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .topName {
  margin-bottom: 3vw;
}
#about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .topName .subname {
  font-size: clamp(12px, 2.1vw, 2.1vw);
  font-family: 'en11';
  text-transform: uppercase;
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .topName .subname {
    font-size: 6.2vw;
  }
}
#about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .topName .name {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  font-family: 'cn';
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .topName .name {
    font-size: 4.6vw;
  }
}
#about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .coutBox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
#about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .coutBox .textBox {
  padding-right: 8vw;
  width: 55%;
}
#about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .coutBox .textBox .content {
  text-align: justify;
}
#about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .coutBox .textBox .content p {
  font-size: clamp(12px, 0.9vw, 0.9vw);
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .coutBox .textBox .content p {
    font-size: 3.8vw;
  }
}
#about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .coutBox .imgBoxAll {
  width: 45%;
}
#about_page .pageContentAll .pageContent .culture > .thisBox > .contentBox .coutBox .imgBoxAll .imgBox {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 20vw;
}
#about_page .pageContentAll .pageContent .history > .thisBox {
  padding: 3vw 0;
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .history > .thisBox {
    padding: 7vw 0;
  }
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox {
  position: relative;
  width: 70vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1600px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox {
    width: 86vw;
  }
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox {
  width: 100%;
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li {
    width: 80vw;
  }
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .xian {
  width: 4vw;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: unset;
  gap: 1vw;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05);
  padding: 3vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box {
    padding: 6vw;
  }
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .titleBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .titleBox .title {
  font-size: clamp(12px, 2.1vw, 2.1vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'en8';
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .titleBox .title {
    font-size: 6.2vw;
  }
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .titleBox .subtitle {
  font-size: clamp(12px, 1.1vw, 1.1vw);
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .titleBox .subtitle {
    font-size: 4.2vw;
  }
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .content {
  line-height: 2em;
  font-size: clamp(12px, 0.8vw, 0.8vw);
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .content {
    font-size: 3.6vw;
  }
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .more {
  margin-top: 1vw;
  height: 1.6vw;
  padding: 0 1.4vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  border-radius: 4px;
  background-color: #4A88B9;
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .more {
    font-size: 3.4vw;
  }
}
@media (max-width:1024px) {
  #about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .more {
    margin-top: 4vw;
    height: 10vw;
    padding: 0 15vw;
  }
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li .box .more .txt {
  color: #fff;
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li::before {
  top: 0;
  content: '';
  position: absolute;
  display: block;
  width: 9px;
  height: 9px;
  background-color: #4A88B9;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li:nth-child(2n+1) {
  align-self: flex-start;
  flex-direction: row-reverse;
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li:nth-child(2n+1)::before {
  right: -5px;
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li:nth-child(2n) {
  align-self: flex-end;
}
#about_page .pageContentAll .pageContent .history > .thisBox > .contentBox .coutBox .ul .li:nth-child(2n)::before {
  left: -4px;
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox {
  padding-bottom: 3vw;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .contInfo > .thisBox {
    padding-bottom: 7vw;
  }
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox {
  width: 70vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1600px) {
  #contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  #contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox {
    width: 86vw;
  }
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .leftBox {
  width: 25%;
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .leftBox .imgBox {
  width: 100%;
  height: 28vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .rightBox {
  width: 75%;
  padding-left: 10vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .rightBox .oneBox {
  padding: 1vw 0;
  width: 100%;
  border-bottom: 1px dotted #999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .rightBox .oneBox .left {
  width: 30%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  gap: 1vw;
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .rightBox .oneBox .left .ico {
  width: 2vw;
  height: 2vw;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .rightBox .oneBox .left .ico i {
  color: #fff;
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .rightBox .oneBox .left .title {
  font-size: clamp(12px, 0.8vw, 0.8vw);
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .rightBox .oneBox .left .title {
    font-size: 3.6vw;
  }
}
#contact_page .pageContentAll .pageContent .contInfo > .thisBox > .contentBox .rightBox .oneBox .textBox {
  width: 70%;
}
#contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox {
  background-color: rgba(74, 136, 185, 0.05);
  padding: 3vw 0;
}
#contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0vw;
  }
  #contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul > li {
    width: calc(100% / 2 - (2 - 1) * 0vw / 2);
  }
}
#contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li {
  padding: 1vw 0;
  border-right: 1px dashed var(--fontCor10);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li {
    padding: 6vw 0;
    flex: unset;
  }
}
#contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box .ico {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box .ico i {
  font-size: clamp(12px, 1.7vw, 1.7vw);
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box .ico i {
    font-size: 5.4vw;
  }
}
#contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box .onlineMore {
  margin-top: 1vw;
  padding: 0.6vw 2vw;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box .onlineMore {
    margin-top: 3vw;
    padding: 2vw 6vw;
  }
}
@media (min-width:1024px) {
  #contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box .onlineMore:hover {
    background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
    border: none;
  }
  #contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box .onlineMore:hover .txt {
    color: #fff;
  }
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box .onlineMore {
    background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
    border: none;
  }
  #contact_page .pageContentAll .pageContent .onlineShop > .thisBox > .contentBox .ul .li .box .onlineMore .txt {
    color: #fff;
  }
}
#contact_page .pageContentAll .pageContent .message {
  position: relative;
}
#contact_page .pageContentAll .pageContent .message > .thisBox {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-top: 3vw;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox {
    padding-top: 7vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox {
  width: 70vw;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1600px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox {
    width: 86vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .leftTxt {
  width: 30%;
  padding-right: 4vw;
  font-size: clamp(12px, 0.7vw, 0.7vw);
  line-height: 2em;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .leftTxt {
    font-size: 3.4vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan {
  width: 70%;
  padding: 2vw 5vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(74, 136, 185, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan .biaodanName {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  background: -webkit-linear-gradient(180deg, #7ec9e6, #1c5290);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'cn';
  border-bottom: 1px solid #4A88B9;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan .biaodanName {
    font-size: 4.6vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  width: 100%;
  padding: 1vw 0;
  border-bottom: 1px solid rgba(74, 136, 185, 0.1);
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox {
    margin-bottom: 6vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .bdTitle {
  position: relative;
  display: block;
  width: 8vw;
  font-size: clamp(12px, 0.9vw, 0.9vw);
  font-family: 'cn';
  margin-bottom: 1vw;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .bdTitle {
    font-size: 3.8vw;
  }
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .bdTitle {
    width: 26vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .input {
  position: relative;
  width: 100%;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .input input {
  width: 100%;
  background-color: transparent;
  height: 100%;
  padding-left: 2vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  font-size: clamp(12px, 0.7vw, 0.7vw);
  height: 3vw;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .input input {
    font-size: 3.4vw;
  }
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .input input {
    padding-left: 4vw;
  }
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .input input {
    height: 12vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .input textarea {
  width: 100%;
  background-color: transparent;
  height: 100%;
  padding-left: 2vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  font-size: clamp(12px, 0.7vw, 0.7vw);
  height: 6vw;
  resize: vertical;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .input textarea {
    font-size: 3.4vw;
  }
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .input textarea {
    padding-left: 4vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.textarea {
  width: 100%;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.textarea .input textarea {
  height: 6vw;
  font-family: auto;
  padding: 1vw 2vw;
  width: 100%;
  outline: none;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.textarea .input textarea {
    padding: 4vw;
    height: 40vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.yanzhengma .input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.yanzhengma .yanz {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.yanzhengma .yanz {
    width: 26vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.yanzhengma .yanz img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.must .bdTitle::after {
  content: '*';
  position: absolute;
  color: red;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .tianxieInfo {
  position: absolute;
  left: 0;
  top: 110%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .tianxieInfo .txt {
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .tianxieInfo .txt {
    font-size: 3.4vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .tianxieInfo i {
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox .tianxieInfo i {
    font-size: 3.4vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.zhengque .tianxieInfo i {
  color: green;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.zhengque .tianxieInfo .txt {
  color: green;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.cuowu .tianxieInfo i {
  color: red;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .inputBox.cuowu .tianxieInfo .txt {
  color: red;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .button {
  margin: 0 auto;
  margin-top: 2vw;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .button .submit {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
  height: 3vw;
  padding: 0 2vw;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(74, 136, 185, 0.4);
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .button .submit {
    width: 100%;
    height: 14vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .button .submit .txt {
  color: #fff;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  font-family: 'cn';
  font-size: clamp(12px, 0.8vw, 0.8vw);
}
@media (max-width:1024px) {
  #contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .button .submit .txt {
    font-size: 3.6vw;
  }
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .button .submit i {
  color: #4A88B9;
  transition-duration: 0.3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
  color: #fff;
}
#contact_page .pageContentAll .pageContent .message > .thisBox > .contentBox .biaodan form .button .submit:hover {
  background: -webkit-linear-gradient(-180deg, #7ec9e6, #1c5290);
}
#news_detail_page .pageContentAll .pageContent {
  padding-top: 0;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
  border-radius: 20px;
  background-color: #fff;
  padding: 4vw;
  width: 70vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1600px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
    width: 86vw;
  }
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
    width: 90%;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll {
  padding-right: 6vw;
  width: calc(100% - 20vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll {
    padding-right: 0;
    width: 100%;
    gap: 3vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .lujing {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  opacity: 0.5;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .lujing * {
  font-size: clamp(12px, 0.7vw, 0.7vw);
  margin: 0 0.4vw;
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .lujing * {
    font-size: 3.4vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .wenzhangName {
  font-size: clamp(12px, 1.7vw, 1.7vw);
  font-family: 'cn';
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .wenzhangName {
    font-size: 5.4vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .date {
  font-size: clamp(12px, 1vw, 1vw);
  font-family: 'cn';
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .date {
    font-size: 4vw;
  }
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .date {
    font-size: 5vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .xian {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 1vw 0;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .detailContentBox .wenzhang {
  width: 100%;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .detailContentBox .wenzhang p {
  font-size: clamp(12px, 0.9vw, 0.9vw);
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .detailContentBox .wenzhang p {
    font-size: 3.8vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink {
  border-top: 1px dashed #999;
  padding-top: 1vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink {
    padding-top: 4vw;
    gap: 6vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 0.5vw;
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox {
    gap: 3vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox .link {
  font-size: clamp(12px, 1vw, 1vw);
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox .link {
    font-size: 4vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox .link:hover {
  text-decoration: underline;
  color: #4A88B9;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 4vw;
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout {
    display: none;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .titleBiaoti {
  width: 100%;
  font-size: clamp(12px, 1.3vw, 1.3vw);
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .titleBiaoti {
    font-size: 4.6vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews {
  width: 20vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  width: 100%;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul .li {
  padding: 1.4vw 0;
  border-bottom: 1px solid #ddd;
  width: 100%;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul .li .aBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  height: 6vw;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul .li .aBox .imgBox {
  width: 40%;
  height: 100%;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul .li .aBox .textBox {
  padding-left: 1vw;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul .li .aBox .textBox .title {
  font-size: clamp(12px, 0.9vw, 0.9vw);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul .li .aBox .textBox .title {
    font-size: 3.8vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul .li .aBox .textBox .date {
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul .li .aBox .textBox .date {
    font-size: 3.4vw;
  }
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .hotNews .ul .li .aBox:hover .textBox .title {
  color: #4A88B9;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .contact {
  width: 100%;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .contact .cout {
  margin-top: 1vw;
  background-color: rgba(74, 136, 185, 0.05);
  padding: 2vw;
  border-radius: 1vw;
}
#news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .contact .cout .txt {
  font-size: clamp(12px, 1.1vw, 1.1vw);
}
@media (max-width:1024px) {
  #news_detail_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .rightCout .contact .cout .txt {
    font-size: 4.2vw;
  }
}
#wenzhang_page .pageContentAll .pageContent {
  padding-top: 0;
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
  border-radius: 20px;
  background-color: #fff;
  padding: 4vw;
  width: 70vw;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1600px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
    width: 86vw;
  }
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox {
    width: 90%;
  }
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll {
    padding-right: 0;
    width: 100%;
    gap: 3vw;
  }
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .lujing {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  opacity: 0.5;
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .lujing * {
  font-size: clamp(12px, 0.7vw, 0.7vw);
  margin: 0 0.4vw;
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .lujing * {
    font-size: 3.4vw;
  }
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .wenzhangName {
  font-size: clamp(12px, 1.7vw, 1.7vw);
  font-family: 'cn';
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .wenzhangName {
    font-size: 5.4vw;
  }
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .date {
  font-size: clamp(12px, 1vw, 1vw);
  font-family: 'cn';
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .date {
    font-size: 4vw;
  }
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .date {
    font-size: 5vw;
  }
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .xian {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 1vw 0;
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .detailContentBox .wenzhang {
  width: 100%;
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .detailContentBox .wenzhang p {
  font-size: clamp(12px, 0.9vw, 0.9vw);
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .detailContentBox .wenzhang p {
    font-size: 3.8vw;
  }
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink {
  border-top: 1px dashed #999;
  padding-top: 1vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink {
    padding-top: 4vw;
    gap: 6vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: unset;
  }
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 0.5vw;
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox {
    gap: 3vw;
  }
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox .link {
  font-size: clamp(12px, 1vw, 1vw);
}
@media (max-width:1024px) {
  #wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox .link {
    font-size: 4vw;
  }
}
#wenzhang_page .pageContentAll .pageContent .wenzhangBox > .thisBox .contentBox .newsCoutAll .moreLink .moreBox .link:hover {
  text-decoration: underline;
  color: #4A88B9;
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox {
  width: 70vw;
  margin: 0 auto;
}
@media (max-width:1600px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox {
    width: 86vw;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li {
  width: 100%;
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox {
  padding: 2vw 4vw;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
  background-color: #f3f3f3;
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox {
    padding: 6vw;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-column-gap: 3vw;
  width: 90%;
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2vw;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox .boxLi {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1.3vw;
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox .boxLi {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: unset;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox .boxLi .bdTitle {
  color: #666;
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox .boxLi .bdTitle {
    margin-right: 4vw;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox .boxLi .cout {
  font-size: clamp(12px, 1vw, 1vw);
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox .boxLi .cout {
    font-size: 4vw;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox .boxLi:first-child .cout {
  color: #4A88B9;
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox .boxLi:last-child {
  margin-left: 3vw;
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .leftBox .boxLi:last-child {
    margin-left: 0;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .rightBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
  gap: 4vw;
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .rightBox .ico {
  position: relative;
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .rightBox .ico {
    width: 8vw;
    height: 8vw;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .rightBox .ico span {
  width: 1.2vw;
  position: absolute;
  border-bottom: 2px solid #4A88B9;
  left: calc(50% - 0.5vw - 1px);
  top: calc(50% - 1px);
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.56, -0.01, 0.04, 1);
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .rightBox .ico span {
    width: 4vw;
    left: calc(50% - 2vw);
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox .rightBox .ico span:nth-child(2) {
  transform: rotate(90deg);
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox.on .rightBox .ico span:nth-child(1) {
  transform: rotate(180deg);
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .hengBox.on .rightBox .ico span:nth-child(2) {
  transform: rotate(360deg);
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .recruitDetailBox {
  overflow: hidden;
  height: 0;
  position: relative;
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .recruitDetailBox .detailContentBox {
  width: 100%;
  background-color: #f3f3f3;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 1px solid #ddd;
  border-left: none;
  border-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
  padding: 4vw;
  padding-top: 2vw;
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .recruitDetailBox .detailContentBox .bbtt {
  position: relative;
  font-size: clamp(12px, 1.2vw, 1.2vw);
  font-weight: bold;
  width: 100%;
  padding-left: 1vw;
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .recruitDetailBox .detailContentBox .bbtt {
    font-size: 4.4vw;
  }
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .recruitDetailBox .detailContentBox .bbtt {
    padding-left: 4vw;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .recruitDetailBox .detailContentBox .bbtt::before {
  left: 0;
  content: '';
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  width: 0.3vw;
  height: 1.4vw;
  border-radius: 1vw;
  background-color: #4A88B9;
}
@media (max-width:1024px) {
  #recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .recruitDetailBox .detailContentBox .bbtt::before {
    width: 1vw;
    height: 5vw;
  }
}
#recruit_page .pageContentAll .pageContent .recruitList > .thisBox .contentBox .ul .li .recruitDetailBox .detailContentBox .wenzhang {
  width: 100%;
  line-height: 2em;
}
#building_page .building {
  height: 20vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  font-family: 'cn';
  font-size: clamp(12px, 2.7vw, 2.7vw);
}
@media (max-width:1024px) {
  #building_page .building {
    font-size: 7.4vw;
  }
}
#investment_page .pageContentAll .pageContent .titleBox {
  width: 70vw;
  margin: 0 auto;
  margin-bottom: 2vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
@media (max-width:1600px) {
  #investment_page .pageContentAll .pageContent .titleBox {
    width: 70vw;
  }
}
@media (max-width:1300px) {
  #investment_page .pageContentAll .pageContent .titleBox {
    width: 70vw;
  }
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .titleBox {
    width: 86vw;
  }
}
#investment_page .pageContentAll .pageContent .titleBox .def1 {
  font-size: clamp(12px, 1.2vw, 1.2vw);
  color: #4A88B9;
  font-family: 'cn';
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .titleBox .def1 {
    font-size: 4.4vw;
  }
}
#investment_page .pageContentAll .pageContent .titleBox .def2 {
  width: 40vw;
  line-height: 1.5em;
  font-size: clamp(12px, 0.8vw, 0.8vw);
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .titleBox .def2 {
    font-size: 3.6vw;
  }
}
#investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
#investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li {
  width: 24%;
}
#investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box {
  position: relative;
  border-radius: 2vw;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  padding: 2vw;
  background-color: #4A88B9;
  padding-top: 4vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .num {
  position: absolute;
  left: 2vw;
  top: 2vw;
}
#investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .num .e {
  color: #7EC9E6;
  font-family: 'en11';
  text-transform: uppercase;
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .num .e {
    font-size: 3.4vw;
  }
}
#investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .num .t {
  font-size: clamp(12px, 1.9vw, 1.9vw);
  color: #fff;
  font-family: 'en11';
  text-transform: uppercase;
  line-height: 1em;
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .num .t {
    font-size: 5.8vw;
  }
}
#investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .imgBox {
  width: 100%;
  height: 9vw;
}
#investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .title {
  color: #fff;
  font-family: 'cn';
  font-size: clamp(12px, 1vw, 1vw);
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .title {
    font-size: 4vw;
  }
}
#investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .miaoshu {
  color: #fff;
  line-height: 2em;
  font-size: clamp(12px, 0.7vw, 0.7vw);
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .youshi > .thisBox > .contentBox .ul .li .box .miaoshu {
    font-size: 3.4vw;
  }
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 2vw;
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li {
  width: 100%;
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
  height: 16vw;
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box .numBox {
  left: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  background-color: #4A88B9;
  margin-bottom: 2vw;
  width: 6vw;
  height: 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  top: 50%;
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box .numBox .point {
  font-family: 'en11';
  text-transform: uppercase;
  color: #fff;
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box .numBox .num {
  font-family: 'en11';
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(12px, 2.7vw, 2.7vw);
  line-height: 1em;
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box .numBox .num {
    font-size: 7.4vw;
  }
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box .textBox {
  padding-left: 6vw;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: unset;
  gap: 1vw;
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box .textBox .title .txt {
  font-size: clamp(12px, 1.7vw, 1.7vw);
  font-family: 'cn';
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box .textBox .title .txt {
    font-size: 5.4vw;
  }
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box .textBox .miaoshu {
  line-height: 2em;
}
#investment_page .pageContentAll .pageContent .team > .thisBox > .contentBox .ul .li .box .imgBox {
  width: 40%;
  height: 100%;
}
#investment_page .pageContentAll .pageContent .zhengce > .thisBox > .contentBox .ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  gap: 2vw;
}
#investment_page .pageContentAll .pageContent .zhengce > .thisBox > .contentBox .ul .li {
  width: 100%;
}
#investment_page .pageContentAll .pageContent .zhengce > .thisBox > .contentBox .ul .li .box .title {
  padding-bottom: 0.6vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: unset;
  gap: 1vw;
}
#investment_page .pageContentAll .pageContent .zhengce > .thisBox > .contentBox .ul .li .box .title .fk {
  width: 1.5vw;
  height: 1.5vw;
  position: relative;
  background-color: #4A88B9;
}
#investment_page .pageContentAll .pageContent .zhengce > .thisBox > .contentBox .ul .li .box .title .fk::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #1C5290;
}
#investment_page .pageContentAll .pageContent .zhengce > .thisBox > .contentBox .ul .li .box .title .txt {
  font-size: clamp(12px, 1.3vw, 1.3vw);
  font-family: 'cn';
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .zhengce > .thisBox > .contentBox .ul .li .box .title .txt {
    font-size: 4.6vw;
  }
}
#investment_page .pageContentAll .pageContent .zhengce > .thisBox > .contentBox .ul .li .box .miaoshu {
  margin-top: 1vw;
  line-height: 2em;
  padding-left: 2vw;
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .moshi .ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: unset;
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .moshi .ul .li {
  width: 30%;
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .moshi .ul .li .box {
  width: 100%;
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .moshi .ul .li .box .imgBox {
  height: 12vw;
  width: 100%;
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .moshi .ul .li .box .title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: unset;
  background-color: #4A88B9;
  height: 3vw;
  font-family: 'cn';
  color: #fff;
  font-size: clamp(12px, 0.9vw, 0.9vw);
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .moshi .ul .li .box .title {
    font-size: 3.8vw;
  }
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .moshi .ul .li .box .miaoshu {
  background-color: #fff;
  font-size: clamp(12px, 0.8vw, 0.8vw);
  padding: 1vw 2vw;
  line-height: 2em;
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .moshi .ul .li .box .miaoshu {
    font-size: 3.6vw;
  }
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .lianxi {
  margin-top: 3vw;
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .lianxi .ul {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: unset;
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .lianxi .ul .li {
  width: 24%;
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .lianxi .ul .li .box {
  border-radius: 1vw;
  overflow: hidden;
  background-color: #4A88B9;
  width: 100%;
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .lianxi .ul .li .box .title {
  padding: 1vw 2vw;
  color: #7EC9E6;
  font-family: 'cn';
  font-size: clamp(12px, 1vw, 1vw);
  background-color: #1C5290;
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .lianxi .ul .li .box .title {
    font-size: 4vw;
  }
}
#investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .lianxi .ul .li .box .miaoshu {
  padding: 2vw;
  line-height: 2em;
  color: #fff;
  font-size: clamp(12px, 0.8vw, 0.8vw);
}
@media (max-width:1024px) {
  #investment_page .pageContentAll .pageContent .fangshi > .thisBox > .contentBox .lianxi .ul .li .box .miaoshu {
    font-size: 3.6vw;
  }
}
