@charset "UTF-8";
@font-face {
  font-family: "Muli-Regular";
  src: url("./font/Muli.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Muli-Medium";
  src: url("./font/Muli.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Muli-Bold";
  src: url("./font/Muli-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Muli-ExtraBold";
  src: url("./font/Muli-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Muli-Black";
  src: url("./font/Muli-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-size: 111.1111111111px;
}
@media screen and (max-width: 1600px) {
  html {
    font-size: 6.9444444444vw;
  }
}
@media screen and (max-width: 1080px) {
  html {
    font-size: 75px;
  }
}
@media screen and (max-width: 780px) {
  html {
    font-size: 8.3333333333vw;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 50px;
  }
}

body {
  font-size: max(12px, 0.16rem);
}

html,
body {
  padding: 0;
  margin: 0;
  color: #202020;
}

html.hidden {
  overflow-y: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea,
button {
  padding: 0;
  margin: 0;
}

body {
  position: relative;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

a:link {
  text-decoration: none;
  color: inherit;
}

a:visited {
  text-decoration: none;
}

a:active {
  text-decoration: none;
  color: inherit;
}

a[href] {
  cursor: pointer;
}

img {
  max-width: 100%;
  border: 0;
  object-fit: cover;
}

button {
  outline: none;
}

.clear {
  clear: both;
}

.db {
  display: block;
}

input {
  outline: none;
  border: none;
  outline: medium;
  width: 100%;
  background: none;
  border: none;
}

input:focus {
  outline: none;
  background-color: #fff;
}

.text_clip {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text_clip_lines {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.text_clip_lines.cl2 {
  -webkit-line-clamp: 2;
}
.text_clip_lines.cl3 {
  -webkit-line-clamp: 3;
}

.animated-image {
  overflow: hidden;
}
.animated-image img,
.animated-image .image,
.animated-image .avatar {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  -webkit-transition: transform 0.5s ease-in-out;
}
.animated-image:hover img,
.animated-image:hover .image,
.animated-image:hover .avatar {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
}

.transitionLable {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 1s cubic-bezier(0.5, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0, 0.7, 0.1, 1);
  transition: opacity 1s cubic-bezier(0.5, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0, 0.7, 0.1, 1);
  transition: transform 1s cubic-bezier(0, 0.7, 0.1, 1), opacity 1s cubic-bezier(0.5, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0, 0.7, 0.1, 1), opacity 1s cubic-bezier(0.5, 0, 0.2, 1), -webkit-transform 1s cubic-bezier(0, 0.7, 0.1, 1);
  opacity: 0;
}

.transitionLable.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.transitionRight.active,
.transitionLeft.active,
.transitionUp.active {
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.transitionRight.d1,
.transitionLeft.d1,
.transitionUp.d1 {
  animation-delay: 0.2s;
}
.transitionRight.d2,
.transitionLeft.d2,
.transitionUp.d2 {
  animation-delay: 0.4s;
}
.transitionRight.d3,
.transitionLeft.d3,
.transitionUp.d3 {
  animation-delay: 0.6s;
}

@keyframes enterFromLeft {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.transitionRight {
  -webkit-transform: translateX(-1.2rem);
  transform: translateX(-1.2rem);
  opacity: 0;
}
.transitionRight.active {
  animation-name: enterFromLeft;
}

@keyframes enterFromRight {
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.transitionLeft {
  -webkit-transform: translateX(1.2rem);
  transform: translateX(1.2rem);
  opacity: 0;
}
.transitionLeft.active {
  animation-name: enterFromRight;
}

@keyframes enterFromBottom {
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
.transitionUp {
  -webkit-transform: translateY(1.2rem);
  transform: translateY(1.2rem);
  opacity: 0;
}
.transitionUp.per100 {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.transitionUp.active {
  animation-name: enterFromBottom;
}

@font-face {
  font-family: "en";
  src: url("../lib/font/Muli-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "en";
  src: url("../lib/font/Muli.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "en";
  src: url("../lib/font/Mulish-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "en";
  src: url("../lib/font/Mulish-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "en";
  src: url("../lib/font/Mulish-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "en";
  src: url("../lib/font/Mulish-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "en";
  src: url("../lib/font/Mulish-Black.ttf");
  font-weight: 900;
}
@font-face {
  font-family: "cn";
  src: local(Microsoft YaHei), local(微软雅黑), local(STXihei), local(华文细黑);
}
@font-face {
  font-family: "num";
  src: url("");
  unicode-range: U+30-39;
}
body {
  font-family: "en", "cn", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

body {
  position: relative;
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

button {
  outline: none;
}

input {
  outline: none;
  background: transparent;
  border: none;
  outline: medium;
  width: 100%;
}

input:focus {
  outline: none;
  background-color: #fff;
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
  -webkit-text-fill-color: #807c7c;
  transition: background-color 5000s ease-out 0.5s;
}

textarea {
  background: transparent;
  border: none;
}

textarea:focus {
  outline: none;
  background-color: #fff;
}

.detail .content h1 {
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
}
.detail .content h2 {
  margin-top: 0.6rem;
  margin-bottom: 0.28rem;
}
.detail .content h3 {
  margin-top: 0.4rem;
  margin-bottom: 0.25rem;
}
.detail .content h4 {
  margin-top: 0.32rem;
  margin-bottom: 0.21rem;
}
.detail .content p {
  margin-top: 0.24rem;
  margin-bottom: 0.12rem;
}
.detail .content ol > li::before {
  content: counter(list) ".";
  counter-increment: list;
  padding-right: 0.5em;
}
.detail .content ol > li > ol > li::before {
  content: "(" counter(list) ")";
}
.detail .content ol > li::marker {
  content: "";
}
.detail .content ul > li::before {
  content: "•";
  color: #de713d;
  padding-right: 0.5em;
}
.detail .content ul > li > ul > li::before {
  content: "-";
  color: inherit;
  padding-right: 0.5em;
}
.detail .content :where(ol, ul) {
  margin-top: 0.24rem;
  margin-bottom: 0.16rem;
  padding-left: 2em;
  counter-reset: list;
}
.detail .content :where(ol, ul) > li {
  position: relative;
}
.detail .content :where(ol, ul) > li::before {
  position: absolute;
  transform: translateX(-100%);
  min-width: 2em;
}

header {
  position: fixed;
  width: 100%;
  height: 1.5rem;
  display: flex;
  z-index: 20;
}
header .logo_bg {
  width: 40%;
  height: 100%;
  position: relative;
}
header .logo_bg .bg-rects {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.6rem;
  display: flex;
}
header .logo_bg .bg-rects .rect {
  background: #0E2D60;
  width: 50%;
  height: 100%;
}
header .logo_bg .bg-rects .rect:nth-child(1) {
  position: relative;
  top: 100%;
}
header .logo_bg .logo {
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 60%, 50% 100%, 0% 100%);
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  position: relative;
}
header .logo_bg .logo:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 40%;
  width: 80%;
  left: 10%;
  height: 50%;
  background: url("../images/logo.png") no-repeat center bottom/contain;
}
header .menu-wrap {
  --navBgColor: #0E2D60;
  flex: auto;
  background: var(--navBgColor);
  background-image: linear-gradient(90deg, #0E2D60 0%, #08111F 100%);
  padding: 0 0.32rem;
}
header .menu-wrap .menu {
  height: 100%;
  background: url("../images/icon_logo.png") no-repeat right center/auto 1.2rem;
}
header .menu-wrap .menu > ul {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
header .menu-wrap .menu > ul > li > a {
  transition: 0.3s all;
  font-weight: 400;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #FFFFFF;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}
header .menu-wrap .menu > ul > li > a:after {
  transition: 0.3s all;
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% + 0.16rem);
  width: 0%;
  height: 2px;
  background: #AA8320;
}
header .menu-wrap .menu > ul > li > a:hover {
  color: #AA8320;
}
header .menu-wrap .menu > ul > li > a:hover:after {
  width: 100%;
}
header .menu-wrap .menu > ul > li .subnav {
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 100%;
  height: 1.78rem;
  padding: 0.3rem 0.6rem 0.4rem 4.5rem;
  background-image: linear-gradient(90deg, #0E2D60 5.76rem, #08111F 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-0.2rem);
  transition: 0.3s all;
}
header .menu-wrap .menu > ul > li .subnav .title {
  line-height: 0.32rem;
  font-weight: 700;
  font-size: 0.32rem;
  color: #D39B0D;
}
header .menu-wrap .menu > ul > li .subnav > ul {
  margin-top: 0.3rem;
  display: flex;
  gap: 0.18rem;
}
header .menu-wrap .menu > ul > li .subnav > ul > li {
  width: 3rem;
  flex: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
header .menu-wrap .menu > ul > li .subnav > ul > li a {
  transition: 0.3s all;
  display: block;
  line-height: 0.48rem;
  font-weight: 500;
  font-size: 0.16rem;
  position: relative;
  color: rgba(255, 255, 255, 0.7019607843);
  white-space: nowrap;
}
header .menu-wrap .menu > ul > li .subnav > ul > li a:after {
  transition: 0.3s all;
  content: "";
  position: absolute;
  right: 0;
  top: calc(0.24rem - 6px);
  display: block;
  height: 1px;
  border-style: solid;
  border-width: 6px 8px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.7019607843);
  border-radius: 2px;
}
header .menu-wrap .menu > ul > li .subnav > ul > li a:hover {
  color: #D39B0D;
}
header .menu-wrap .menu > ul > li .subnav > ul > li a:hover:after {
  border-color: transparent transparent transparent #D39B0D;
}
header .menu-wrap .menu > ul > li.active > a, header .menu-wrap .menu > ul > li.current_page_item > a {
  color: #AA8320;
}
header .menu-wrap .menu > ul > li:hover .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
header .menu-wrap .mobile-menu-btn {
  display: none;
}

.floating-share {
  background: #091429;
  width: 0.6rem;
  height: 0.6rem;
  position: fixed;
  right: 0;
  top: 1.5rem;
  z-index: 19;
}
.floating-share .share-btn {
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: url("../images/icon_wechat.png") no-repeat center center/50% 50%;
}
.floating-share .popup {
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  top: 100%;
  right: 0;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.floating-share .popup .qrcode {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floating-share:hover .share-btn, .floating-share.active .share-btn {
  opacity: 1;
}
.floating-share:hover .popup, .floating-share.active .popup {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 780px) {
  header .logo_bg {
    width: 66.6666%;
  }
  header .menu-wrap {
    display: flex;
    justify-content: end;
    align-items: center;
  }
  header .menu-wrap .menu {
    position: fixed;
    z-index: 10;
    width: 66.6666%;
    right: -66.6666%;
    transition: right 0.5s;
    top: 1.5rem;
    height: calc(100% - 1.5rem);
    background: linear-gradient(90deg, #0E2D60 50%, #08111F 100%);
  }
  header .menu-wrap .menu > ul {
    padding: 0 0.5rem;
    display: block;
  }
  header .menu-wrap .menu > ul > li {
    position: relative;
  }
  header .menu-wrap .menu > ul > li .opener {
    transform: rotate(-90deg);
    transition: all 0.3s;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0.2rem;
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    background: url("../images/menu-open.png") no-repeat center/0.2rem;
  }
  header .menu-wrap .menu > ul > li > a {
    padding: 0.32rem 0;
    justify-content: start;
    height: auto;
    font-size: 0.32rem;
    line-height: 0.4rem;
  }
  header .menu-wrap .menu > ul > li > a:after {
    display: none;
  }
  header .menu-wrap .menu > ul > li .subnav {
    position: static;
    height: auto;
    padding: 0;
    background-image: none;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    max-height: 0;
    overflow: hidden;
  }
  header .menu-wrap .menu > ul > li .subnav .title {
    display: none;
  }
  header .menu-wrap .menu > ul > li .subnav > ul {
    margin-top: 0rem;
    display: block;
    padding-left: 0.2rem;
  }
  header .menu-wrap .menu > ul > li .subnav > ul > li {
    width: auto;
    flex: auto;
    border-bottom: none;
  }
  header .menu-wrap .menu > ul > li .subnav > ul > li a {
    padding: 0.16rem 0;
    font-size: 0.24rem;
    line-height: 0.4rem;
  }
  header .menu-wrap .menu > ul > li .subnav > ul > li a:after {
    display: none;
  }
  header .menu-wrap .menu > ul > li .subnav > ul > li a:hover {
    color: #D39B0D;
  }
  header .menu-wrap .menu > ul > li.active .opener {
    transform: rotate(0deg);
  }
  header .menu-wrap .menu > ul > li.active .subnav {
    max-height: 3rem;
  }
  header .menu-wrap .backdrop {
    display: none;
    position: fixed;
    width: 100%;
    top: 1.5rem;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  header .menu-wrap .mobile-menu-btn {
    cursor: pointer;
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    background: url("../images/icon_logo.png") no-repeat center/contain;
    padding: 0.25rem;
  }
  header .menu-wrap .mobile-menu-btn:before {
    content: "";
    display: block;
    width: 0.3rem;
    height: 0.3rem;
    background: url("../images/icon-menu-btn.png") no-repeat center/contain;
  }
  header .menu-wrap.show .menu {
    right: 0;
  }
  header .menu-wrap.show .backdrop {
    display: block;
  }
  .floating-share .popup {
    width: 1.2rem;
    height: 1.2rem;
  }
}
footer {
  display: flex;
  height: auto;
  background-image: linear-gradient(90deg, #0E2D60 40%, #081121 100%);
  align-items: start;
  justify-content: space-between;
  padding: 0.6rem;
  gap: 0.2rem;
}
footer .logo {
  flex: none;
  width: 2rem;
  height: 0.5rem;
  background: url("../images/logo_footer.png") no-repeat center/contain;
}
footer .footer-content .privacy {
  line-height: 16px;
  font-family: Arial;
  font-weight: Bold;
  font-size: 14px;
  color: #FFFFFF;
}
footer .footer-content .copyright {
  line-height: 20px;
  opacity: 0.7;
  font-family: Muli-Regular;
  font-size: 14px;
  color: #FFFFFF;
}
footer .follow {
  margin-top: 20px;
  padding-right: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
footer .follow .text {
  white-space: nowrap;
  line-height: 18px;
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
}
footer .follow .icons {
  gap: 0.08rem;
  display: flex;
}
footer .follow .icons .icon {
  width: 26px;
  height: 26px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  position: relative;
}
footer .follow .icons .icon.video {
  background-image: url("../images/icon_video.png");
}
footer .follow .icons .icon.wechat {
  background-image: url("../images/icon_wechat.png");
}
footer .follow .icons .icon .popup {
  padding: 10px 0;
  width: 80px;
  height: 100px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 19;
}
footer .follow .icons .icon .popup .qrcode {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
footer .follow .icons .icon:hover, footer .follow .icons .icon.active {
  opacity: 1;
}
footer .follow .icons .icon:hover .popup, footer .follow .icons .icon.active .popup {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 780px) {
  footer {
    padding: 0.6rem 0.6rem 0.2rem;
    flex-direction: column;
    gap: 0.24rem;
    align-items: center;
  }
  footer .logo {
    width: 100%;
    height: 0.78rem;
  }
  footer .footer-content {
    margin-top: 0.12rem;
  }
  footer .footer-content .privacy {
    display: block;
    text-align: center;
  }
  footer .footer-content .copyright {
    margin-top: 0.2rem;
    text-align: center;
  }
  footer .follow {
    flex-direction: column;
    padding-right: 0rem;
  }
}
:root {
  --page-lr-margin: .6rem;
}

body::-webkit-scrollbar {
  width: 0 !important;
}

.main_wrap {
  min-height: 100vh;
  background-image: linear-gradient(90deg, #0E2D60 40%, #08111F 100%);
}
.main_wrap .container-bg {
  padding-top: 1.5rem;
}
.main_wrap .banner {
  height: 4.7rem;
  background-size: cover;
  background-position: center;
  position: relative;
}
.main_wrap .banner .stair {
  height: 100%;
  display: flex;
}
.main_wrap .banner .stair .step {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
}
.main_wrap .banner .stair .step:before {
  content: "";
  display: block;
  flex: auto;
  opacity: 0.8;
  background-image: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 50%);
}
.main_wrap .banner .stair .step:after {
  content: "";
  display: block;
  background: #0F2E61;
}
.main_wrap .banner .stair .step .title-comp {
  position: absolute;
  bottom: 0.6rem;
  font-family: Muli-Black;
  font-weight: 900;
  font-size: 0.8rem;
  line-height: 0.6rem;
  color: #102F61;
  letter-spacing: 0.06rem;
  text-shadow: 0 -4px 5px rgba(255, 255, 255, 0.3215686275);
  left: 0;
}
.main_wrap .banner .stair .step:nth-child(1):after {
  height: 0rem;
}
.main_wrap .banner .stair .step:nth-child(2):after {
  height: 0.6rem;
}
.main_wrap .banner .stair .step:nth-child(2) .title-comp {
  left: 0rem;
  bottom: 0.6rem;
  padding: 0.6rem 0 0 0.7rem;
  background: url("../images/banner-redbird.png") no-repeat left top/auto 1.3rem;
}
.main_wrap .banner .stair .step:nth-child(3):after {
  height: 1.2rem;
  background-image: linear-gradient(90deg, #102E60 0%, #0D254C 100%);
}
.main_wrap .banner .stair .step:nth-child(3) .title-comp {
  right: 0.2rem;
  left: auto;
  bottom: 1.2rem;
}
.main_wrap .banner .stair .step:nth-child(4):after {
  height: 1.8rem;
  background-image: linear-gradient(90deg, #0D254C 0%, #0B1B36 100%);
}
.main_wrap .banner .stair .step:nth-child(4) .title-comp {
  left: -0.2rem;
  bottom: 1.8rem;
  padding: 0.6rem 0.08rem 0 0;
  background: url("../images/banner-cap.png") no-repeat right top/auto 1.3rem;
}
.main_wrap .banner .stair .step:nth-child(5):after {
  height: 2.4rem;
  background-image: linear-gradient(90deg, #0B1B37 0%, #091222 100%);
}
.main_wrap .banner > .page-content {
  position: absolute;
  right: 0;
  width: 40%;
  bottom: 0rem;
  z-index: 2;
  height: 1.8rem;
  text-align: right;
  padding-top: 0.4rem;
  font-size: max(0.18rem, 12px);
  color: #fff;
}
.main_wrap .side-nav {
  margin-top: 1rem;
  width: 1.8rem;
  flex: none;
  position: relative;
}
.main_wrap .side-nav ul {
  position: sticky;
  top: 2.1rem;
}
.main_wrap .side-nav ul li {
  border-left: 3px solid transparent;
  margin: 0.2rem 0;
}
.main_wrap .side-nav ul li a {
  position: relative;
  display: block;
  padding: 0.08rem 0 0.08rem 0.24rem;
  line-height: 0.28rem;
  font-weight: 500;
  font-size: 0.2rem;
  color: #BED6FF;
}
.main_wrap .side-nav ul li a:after {
  transition: 0.3s all;
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  width: 2px;
  height: 0%;
  background: #AA8320;
}
.main_wrap .side-nav ul li a:hover {
  color: #AA8320;
}
.main_wrap .side-nav ul li a:hover:after {
  height: 100%;
}
.main_wrap .side-nav ul li.active a {
  color: #AA8320;
}
.main_wrap .paging {
  margin-top: 0.6rem;
}
.main_wrap .paging .pagination {
  display: flex;
  justify-content: center;
}
.main_wrap .paging .pagination .nav-links {
  text-align: center;
}
.main_wrap .paging .pagination .nav-links .page-numbers {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(190, 214, 255, 0.4980392157);
  line-height: 28px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: rgba(190, 214, 255, 0.6901960784);
}
.main_wrap .paging .pagination .nav-links .page-numbers.prev, .main_wrap .paging .pagination .nav-links .page-numbers.next {
  position: relative;
}
.main_wrap .paging .pagination .nav-links .page-numbers.prev:before, .main_wrap .paging .pagination .nav-links .page-numbers.next:before {
  position: absolute;
  width: 7px;
  height: 7px;
  content: " ";
  display: block;
  border-style: solid;
  border-color: rgba(190, 214, 255, 0.6901960784);
  border-width: 2px;
  top: 10px;
  transform: rotate(45deg);
}
.main_wrap .paging .pagination .nav-links .page-numbers.prev:before {
  left: 11px;
  border-color: transparent transparent rgba(190, 214, 255, 0.6901960784) rgba(190, 214, 255, 0.6901960784);
}
.main_wrap .paging .pagination .nav-links .page-numbers.next:before {
  right: 11px;
  border-color: rgba(190, 214, 255, 0.6901960784) rgba(190, 214, 255, 0.6901960784) transparent transparent;
}
.main_wrap .paging .pagination .nav-links .page-numbers.current {
  border: none;
  color: #0D2348;
  background-image: conic-gradient(from 180deg at 50% 50%, rgba(136, 98, 0, 0.8) 0%, rgba(238, 171, 0, 0.8) 100%);
}

.page-content {
  max-width: 1920px;
  width: 100%;
  padding: 0 var(--page-lr-margin);
  margin: 0 auto;
}

#scrollbar {
  opacity: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
  width: 12px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.1);
  transition: opacity 0.3s ease-out;
  border-radius: 20px;
}
#scrollbar #thumb {
  width: 50%;
  margin: 0 auto;
  border-radius: 6px;
  height: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.more-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 45px;
  font-size: 20px;
  font-weight: 600;
  background-repeat: no-repeat;
  background-image: conic-gradient(from 90deg at 50% 50%, rgba(238, 171, 0, 0.9) 0%, rgba(170, 122, 0, 0.9) 100%), conic-gradient(from -90deg at 50% 50%, rgba(238, 171, 0, 0.9) 0%, rgba(170, 122, 0, 0.9) 100%);
  background-position: 0, -147px;
  transition: all 0.3s ease-in-out;
}
.more-btn .icon {
  position: absolute;
  right: 14px;
}
.more-btn:hover {
  background-position: 147px, 0;
  box-shadow: 4px 4px 20px rgba(8, 17, 33, 0.5);
}
@media screen and (max-width: 780px) {
  .more-btn {
    width: 87px;
    height: 37px;
    font-size: 12px;
    background-position: 0, -87px;
  }
  .more-btn .icon {
    right: 7px;
  }
  .more-btn:hover {
    background-position: 87px, 0;
    box-shadow: 4px 4px 20px rgba(8, 17, 33, 0.5);
  }
}

.news-list-imgtxt {
  margin-top: 1rem;
  padding-bottom: 1.9rem;
}
.news-list-imgtxt .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.43rem;
}
.news-list-imgtxt .item {
  flex: 1;
  font-size: max(0.18rem, 12px);
  color: #BED6FF;
}
.news-list-imgtxt .item:nth-child(1) {
  margin-top: 1.2rem;
}
.news-list-imgtxt .item:nth-child(2) {
  margin-top: 0.6rem;
}
.news-list-imgtxt .item:hover img {
  transform: scale(1.1);
}
.news-list-imgtxt .item .img-wrap {
  position: relative;
  height: 2.3rem;
  width: 100%;
}
.news-list-imgtxt .item .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.news-list-imgtxt .item img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.news-list-imgtxt .item .date {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0.6rem;
  text-align: center;
  font-size: 12px;
}
.news-list-imgtxt .item .date .month {
  text-transform: uppercase;
  padding: 5px 0px;
  color: #C19115;
  background-color: #062A60;
}
.news-list-imgtxt .item .date .day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.6rem;
  font-size: 0.32rem;
  line-height: 1;
  color: #0D254C;
  background-image: conic-gradient(from 180deg at 50% 50%, rgba(136, 98, 0, 0.8) 0%, rgba(238, 171, 0, 0.8) 100%);
}
.news-list-imgtxt .item .text {
  margin-top: 0.2rem;
}
.news-list-imgtxt .item .title {
  margin-bottom: 0.2rem;
  font-weight: 600;
  font-size: 1.333em;
  line-height: 1.375;
  color: #C19115;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list-imgtxt .item .desc {
  line-height: 1.666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list-imgtxt .btn {
  margin: 0.38rem auto 0;
}
@media screen and (max-width: 780px) {
  .news-list-imgtxt {
    margin-top: 50px;
    padding-bottom: 30px;
  }
  .news-list-imgtxt .list {
    gap: 30px;
  }
  .news-list-imgtxt .item {
    flex: unset;
    width: 100%;
    margin-top: 0 !important;
    font-size: 12px;
  }
  .news-list-imgtxt .item .img-wrap {
    height: 3rem;
  }
  .news-list-imgtxt .item .img-wrap .date {
    left: unset;
    bottom: unset;
    top: calc(100% - 19px + 0.2rem);
    right: 0;
    width: 38.46px;
    height: 53.85px;
    font-size: 10px;
  }
  .news-list-imgtxt .item .img-wrap .date .month {
    padding: 2px;
    background: none;
  }
  .news-list-imgtxt .item .img-wrap .date .day {
    height: 38px;
    font-size: 20px;
  }
  .news-list-imgtxt .item .img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 28.85px;
    background-image: linear-gradient(90deg, #0B2042 0%, #091223 100%);
  }
  .news-list-imgtxt .item .title {
    min-height: 40px;
    margin-bottom: 12px;
    padding-right: 66px;
  }
  .news-list-imgtxt .btn {
    margin-top: 30px;
  }
}

@media screen and (max-width: 780px) {
  .main_wrap .banner .stair .step {
    width: 33.33%;
  }
  .main_wrap .banner .stair .step .title-comp {
    font-size: 0.6rem;
    line-height: 0.44rem;
  }
  .main_wrap .banner .stair .step:nth-child(1), .main_wrap .banner .stair .step:nth-child(5) {
    display: none;
  }
  .main_wrap .banner .stair .step:nth-child(2) .title-comp {
    left: 0;
    padding: 0.6rem 0 0 0.7rem;
    background-size: auto 1.1rem;
  }
  .main_wrap .banner > .page-content {
    width: 66.66%;
    height: 1.2rem;
    padding-top: 0.2rem;
  }
  .main_wrap .side-nav {
    margin-top: 0;
    width: 100%;
    padding: 0.6rem 0rem 0rem;
  }
  .main_wrap .side-nav.float {
    padding: 0.6rem 0.6rem 0rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.168627451);
    position: fixed;
    z-index: 1;
    top: 1.5rem;
    left: 0;
    background-image: linear-gradient(90deg, #0E2D60 40%, #08111F 100%);
  }
  .main_wrap .side-nav ul {
    display: flex;
    justify-content: space-around;
  }
  .main_wrap .side-nav ul li {
    border-left: 0px;
    border-bottom: 3px solid transparent;
    width: 30%;
    padding: 0;
    margin: 0 0.2rem;
    text-align: center;
  }
  .main_wrap .side-nav ul li a:after {
    top: unset;
    bottom: 0;
    width: 0%;
    height: 2px;
  }
  .main_wrap .side-nav ul li a:hover:after {
    width: 100%;
    height: 2px;
  }
  .main_wrap .side-nav-alter {
    display: none;
  }
}
