@charset "utf-8";

/* CSS Document */

/*edit:wangshuo
@ update: 2019-01-24 */

html,
body,
div,
span,
object,
embed,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
cite,
code,
del,
dfn,
em,
img,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
article {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: none;
}

ul,
li,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

i,
em,
cite,
dfn {
  font-style: normal;
}

.clearfix:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.alignL {
  text-align: left;
}

.alignC {
  text-align: center;
}

.alignR {
  text-align: right;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.none,
.pop.none {
  display: none;
}

.block {
  display: block;
}

.overf {
  overflow: hidden;
}

.center {
  margin: 0 auto;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.trs3 {
  transition: all 0.3s;
}

:focus,
a {
  outline: none;
  outline-style: none;
  -moz-outline-style: none;
  transition: all 0.3s;
}

a:visited,
a:link {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  text-decoration: none;
}

ol li {
  list-style-type: decimal;
  list-style-position: inside;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
input::-webkit-inner-spin-button {
  display: none;
}
:root {
  --size: calc(100vw / 25.6);
  --stage-width: 25.6rem;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: var(--size);
}

@media screen and (max-width: 1920px) {
  html {
    font-size: 75px;
    /* font-size: 100px; */
  }
}

@font-face {
  font-family: 'Roboto';
  src: url('../font/Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../font/Roboto-SemiBold.ttf') format('truetype');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url('../font/Oswald-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  font:
    0.16rem/1.5 'Roboto',
    '思源黑体 CN Normal',
    'sy-hei',
    'Microsoft YaHei',
    '\5FAE\8F6F\96C5\9ED1',
    tahoma,
    Arial;
  color: #525152;
  overflow: hidden;
}

html,
body,
#app {
  width: 100%;
  height: 100%;
}

.act-main,
.act-section {
  width: 100%;
}

.act-section {
  position: relative;
  min-height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.act-p1 {
  background-image: url(../pc-images/p1-wrap.jpg);
}

.act-p2 {
  background-image: url(../pc-images/p2-wrap.jpg?v1);
}

.section-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

.act-p1 .section-inner {
  align-items: flex-start;
}

.act-p2 .section-inner {
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
  box-sizing: border-box;
}

.section-content {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0.2rem, 0);
  transition:
    opacity 0.45s,
    transform 0.45s,
    visibility 0.45s;
}

.act-section.is-entered .section-content,
.act-section.active .section-content,
.act-section.act-p1 .section-content,
.act-section.act-p2 .section-content {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .section-content {
    transition-duration: 1ms;
    transform: none;
  }
}

/*滚动条美化样式*/

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #242222;
}

/* animation */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

.fadeIn.paused {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ani-scroll {
  0% {
    transform: translate3d(0, 5%, 0);
  }

  to {
    transform: translate3d(0, -5%, 0);
  }
}
/* pop */

.alert-bg {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
}
.pop {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  color: #111111;
  font-size: 0.16rem;
  background: #fff;
}

.pop:before {
  content: '';
  display: table;
  height: 0;
  clear: both;
  visibility: hidden;
}

.pop .close-pop {
  position: absolute;
  z-index: 10;
  width: 0.43rem;
  height: 0.43rem;
  display: block;
  top: 0.1rem;
  right: 0.1rem;
  background: url(../pc-images/close-pop.png) no-repeat 50% 50% / 0.23rem;
}

.pop .box-btn {
  font-size: 0;
  text-align: center;
}

.pop .box-btn a {
  text-align: center;
  font-size: 0.18rem;
  line-height: 0.5rem;
  display: inline-block;
  min-width: 2.1rem;
  height: 0.5rem;
  margin: 0 0.1rem;
  background: #111111;
  background-size: 100% 100%;
  color: #f6f9ff;
  transition: all 0.3s;
}

.popTit {
  display: block;
  line-height: 1;
  margin: 0.2rem auto;
  font-weight: bold;
  text-align: center;
  font-size: 0.34rem;
}

.popTit,
.pop2-tit {
  font-family: 'Oswald', sans-serif;
}

.ind2 {
  text-indent: 1.4em;
}

.popMsg {
  z-index: 2100;
  width: 6.8rem;
  min-height: 2.4rem;
  padding: 0.6rem 0.5rem;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 0.12rem 0.4rem rgba(0, 0, 0, 0.35);
}

.popMsg .cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 1.2rem;
}

.popMsg .popTit {
  margin: 0.3rem 0 0.2rem;
  color: #111;
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.popMsg .popTit:empty {
  display: none;
}

.popMsg-desc {
  color: #111;
  font-size: 0.24rem;
  line-height: 1.5;
}

.pop .mb10 {
  margin-bottom: 0.1rem;
}
.pop .red {
  color: #c20000;
}
.pop .u {
  text-decoration: underline;
}
/* pop1  */
.pop1 {
  width: 6.8rem;
}

.pop1 .inPop {
  margin: 0.6rem 0.65rem;
  line-height: 1.8;
  height: 84%;
  overflow: hidden;
}

.pop1 .rule-ul {
  padding-left: 1.5em;
}
.pop1 .rule-ul li {
  list-style: outside;
}
.pop1 .rule-ul li::marker {
  font-size: 8px;
}

/* .pop1 .rule::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.pop1 .rule::-webkit-scrollbar-track {
  background: url(../pc-images/p-bar.png) no-repeat center;
  background-size: 4px 100%;
} */

/* pop2 — pre-registration */
.pop2 {
  width: 8.72rem;
  padding: 0.9rem 0.55rem 0.6rem;
  box-sizing: border-box;
}

.pop2-tit {
  margin: 0 0 0.28rem;
  color: #111;
  font-size: 0.55rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.pop2-rewards {
  width: 7.62rem;
  margin: 0 auto 0.32rem;
}

.pop2-rewards img {
  display: block;
  width: 7.62rem;
  height: auto;
}

.pop2-form {
  width: 7.62rem;
  margin: 0 auto;
}

.pop2-email {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin-bottom: 0.18rem;
}

.pop2-email .inp-local,
.pop2-email .inp-domain {
  height: 0.52rem;
  border: 1px solid #000;
  box-sizing: border-box;
  color: #111;
  font-size: 0.18rem;
}

.pop2-email .inp-local {
  flex: 1;
  min-width: 0;
  padding: 0 0.16rem;
}

.pop2-email .email-at {
  flex: 0 0 auto;
  color: #111;
  font-size: 0.2rem;
  line-height: 1;
}

.pop2-email .inp-domain {
  width: 3.6rem;
  padding: 0 0.36rem 0 0.12rem;
  color: #111;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 0.12rem center / 0.12rem 0.08rem;
  appearance: none;
}

/* 未选时与 E-mail account placeholder 同色；选中后为黑色 */
.pop2-email .inp-domain.is-empty {
  color: #757575;
}

.pop2-email .inp-domain option {
  color: #111;
}

.pop2-email .inp-domain option[value=''] {
  color: #757575;
}

.pop2-agree {
  margin: 0;
  padding: 0;
  color: #111;
  font-size: 0.16rem;
  line-height: 1.5;
  list-style: none;
}

.pop2-agree li {
  margin: 0 0 0.1rem;
  padding: 0;
}

.pop2-agree a {
  color: #0c43b7;
  text-decoration: underline;
}

.pop2-check {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  cursor: pointer;
  user-select: none;
}

.pop2-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pop2-check-icon {
  flex: 0 0 0.2rem;
  width: 0.2rem;
  height: 0.2rem;
  margin-top: 0.04rem;
  background: url(../pc-images/icon-radio.png) no-repeat center / contain;
}

.pop2-check input:checked + .pop2-check-icon {
  background-image: url(../pc-images/icon-radio-check.png);
}

.pop2-check.is-error {
  color: #c20000;
}

.pop2-check.is-error .pop2-check-icon {
  background-image: url(../pc-images/icon-radio-red.png);
}

.pop2-check.is-error a {
  color: #0c43b7;
}

.pop2-check span {
  flex: 1;
  min-width: 0;
}

.pop2 .box-btn {
  margin-top: 0.28rem;
}

.pop2 .box-btn .btn-submit {
  width: 2.1rem;
  min-width: 2.1rem;
  height: 0.5rem;
  line-height: 0.5rem;
  background: #000;
  color: #fff;
  font-size: 0.18rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pop2 .box-btn .btn-submit.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.pop2 .box-btn .btn-submit:hover {
  filter: brightness(1.15);
}

/*自定义有序列表*/

ol {
  padding-left: 1.5em;
}

ol > li {
  list-style: decimal;
  list-style-position: outside;
}

/* 视频弹窗样式 */

.videoPop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
  background: rgba(0, 0, 0, 0.9);
}

.videoPop .inVideoPop {
  width: 1320px;
  height: 743px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.videoPop .closeVideoBtn {
  width: 78px;
  height: 78px;
  display: block;
  position: absolute;
  right: -90px;
  top: 0px;
  cursor: pointer;
  background: url(../pc-images/close.png) no-repeat;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  z-index: 99;
}

.videoPop .closeVideoBtn:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.videoPop #video {
  position: relative;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.videoPop #video video {
  width: 100%;
  height: auto;
  background: black;
}

/*第一部分*/

/* section  */
.sectionSub {
  position: relative;
}
.section {
  position: relative;
  text-align: center;
  color: #0c244e;
  min-width: 1300px;
}
.fp-scrollable {
  position: relative;
  height: 100%;
  overflow: auto;
}

#fullpage,
.fp-overflow,
.fp-scrollable {
  touch-action: pan-y;
}

/* act-p1 */
.act-p1 .section-content {
  position: relative;
  width: 100%;
  max-width: var(--stage-width);
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.act-p1 .slogan {
  display: block;
  margin: 2rem auto 0;
  width: 9.37rem;
  height: 3.22rem;
}

.act-p1 .p1-desc {
  margin: 0rem auto 0.25rem;
  max-width: 7.6rem;
  color: #fff;
  font-size: 0.22rem;
  line-height: 1.55;
  text-align: center;
}
.act-p1 .box-btn {
  width: auto;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.act-p1 .box-btn-row1 {
  display: flex;
  justify-content: center;
  width: 100%;
}
.act-p1 .box-btn-row1 .btn-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 0.9rem;
  background: url(../pc-images/p1-btn.png) no-repeat 50% 0 / 2.4rem 0.9rem;
  color: #fff;
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.act-p1 .box-btn-row1 .btn-reserve:hover {
  background-image: url(../pc-images/p1-btn-h.png);
}

.scroll {
  animation: ani-scroll 0.6s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
  background-image: url(../pc-images/ico_scroll.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 0.28rem 0.25rem;
  width: 0.28rem;
  height: 0.25rem;
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  pointer-events: none;
}

/* act-p2 */

.act-p2 .section-content {
  width: 14.28rem;
  height: auto;
  min-height: auto;
  margin: 0 auto;
  color: #fff;
}

.act-p2 .p2-tit {
  text-align: center;
  display: block;
  margin: 0 auto 0.28rem;
  font-size: 0;
}

.act-p2 .p2-tit .tit {
  display: block;
  width: 14.28rem;
  height: 0.86rem;
  margin: 0 auto;
}

.p2-progress {
  display: flex;
  align-items: center;
  width: 13rem;
  margin: 0 auto 0.18rem;
}

.p2-line-box {
  flex: 1;
  min-width: 0;
}

.p2-line-bar {
  position: relative;
  width: 100%;
  height: 0.2rem;
}

.p2-line-bar .line-bg {
  display: block;
  width: 13rem;
  height: 0.2rem;
}

.line-active-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--p2-line-progress, 40%);
  height: 0.2rem;
  overflow: hidden;
}

.p2-line-bar .line-active {
  display: block;
  width: 13rem;
  max-width: none;
  height: 0.2rem;
}

.p2-cards {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 13rem;
  margin: 0 auto;
}

.p2-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 2.61rem;
  height: 3.12rem;
  flex-shrink: 0;
  text-align: center;
  margin-left: -1px;
}

.p2-card .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 0.7rem;
  margin: 0;
  padding-top: 0;
  flex-shrink: 0;
  font-size: 0.3rem;
  line-height: 1;
  font-weight: 700;
  gap: 0.06rem;
}

.p2-card .num span {
  background: linear-gradient(0deg, #ffdc8d 0%, #ffdc8d 50%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p2-card .num .card-user {
  flex: 0 0 0.18rem;
  width: 0.18rem;
  height: 0.18rem;
  background: url(../pc-images/p2-icon-user.png) no-repeat 50% 50% / 0.18rem 0.18rem;
}

.p2-card .card-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  width: 2.61rem;
  height: 3.04rem;
  margin: 0 auto;
  padding-bottom: 0.14rem;
  background: url(../pc-images/p2-card-base.png) no-repeat 50% 0 / 2.61rem 3.04rem;
}

.p2-card .card-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  padding-top: 0.3rem;
}

.p2-card .card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.88rem;
  height: 0.88rem;
  margin: 0 auto 0.12rem;
}

.p2-card.unlocked .card-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.p2-card .unlocked-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 2.18rem;
  height: 1.64rem;
  margin: -0.82rem 0 0 -1.09rem;
  display: block;
  object-fit: contain;
}

.p2-card.active .card-frame {
  width: 2.6rem;
  height: 3.12rem;
  padding-top: 0.08rem;
  padding-bottom: 0.16rem;
  background-image: url(../pc-images/p2-card-active.png);
  background-size: 2.6rem 3.12rem;
}

.p2-card .reward {
  display: block;
  width: 0.88rem;
  height: 0.88rem;
  object-fit: contain;
}

.p2-card.active .card-frame,
.p2-card .card-body {
  overflow: visible;
}

.p2-card .btn-help {
  position: absolute;
  right: -0.08rem;
  bottom: -0.08rem;
  z-index: 4;
  width: 0.28rem;
  height: 0.28rem;
  background: url(../pc-images/icon-help.png) no-repeat 50% 0 / 0.28rem 0.28rem;
  font-size: 0;
}

.p2-card .name {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 0.08rem 0.04rem;
  color: #fff;
  font-size: 0.2rem;
  line-height: 1.25;
  text-align: center;
  flex-shrink: 0;
}

.p2-card .name p {
  margin: 0;
  line-height: 1.25;
}

.act-p2 .btn-help.img-tit .layer {
  width: auto;
  height: auto;
  display: none;
  position: absolute;
  top: calc(100% + 0.08rem);
  bottom: auto;
  right: 50%;
  left: auto;
  margin: 0;
  padding: 0.1rem;
  transform: translate3d(50%, 0, 0);
  font-size: 0;
  text-align: center;
  z-index: 10;
  outline: 1px solid #000;
  background: #ffcc00;
}

.act-p2 .btn-help.img-tit .layer::before {
  content: '';
  position: absolute;
  top: -0.09rem;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -0.09rem;
  border: 0 solid transparent;
  border-left-width: 0.09rem;
  border-right-width: 0.09rem;
  border-bottom: 0.1rem solid #ffcc00;
  background: none;
}

.act-p2 .btn-help.img-tit.is-open .layer {
  display: block;
}

.act-p2 .btn-help.img-tit.is-open {
  filter: none;
}

@media (hover: hover) {
  .act-p2 .btn-help.img-tit:hover .layer {
    display: block;
  }

  .act-p2 .btn-help.img-tit:hover {
    filter: none;
  }
}

.act-p2 .btn-help.img-tit .layer .preview {
  display: block;
  width: 1.78rem;
  height: 1.38rem;
}

.p2-terms {
  width: 13.36rem;
  margin: 0.28rem auto 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.19rem;
  line-height: 1.77;
  text-align: left;
}

.p2-terms .terms-tit {
  margin-bottom: 0.12rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.24rem;
  font-weight: 600;
}

.p2-terms ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.p2-terms li {
  position: relative;
  margin-bottom: 0.04rem;
  padding-left: 0.12rem;
  list-style: none;
}

.p2-terms li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}

.act-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  height: 100px;
  min-height: 100px;
  padding: 0;
  color: #666;
}

.act-footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.act-footer .footer-logo {
  display: block;
  width: 1.97rem;
  height: 0.16rem;
  flex-shrink: 0;
}

.act-footer .footer-copy {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

/* topMenu */

.topMenu {
  position: fixed;
  z-index: 100;
  width: 100%;
  color: #fff;
  background: transparent;
  transition: all 0.3s;
}

.topMenu .logo {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  width: 1.57rem;
  height: 0.62rem;
  background: url(../pc-images/top-logo.png) no-repeat 0 0 / 1.57rem 0.62rem;
}

.topMenu .menu {
  position: fixed;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-family: 'Oswald';
  font-size: 0.24rem;
  text-transform: uppercase;
  /* filter: drop-shadow(0px 1px 5px #666); */
}
.topMenu .menu li {
  margin-bottom: 0.42rem;
}
.topMenu .menu li:last-child {
  margin-bottom: 0;
}

.topMenu .menu li a {
  height: 0.55rem;
  display: block;
  font-family: 'Oswald';
  font-weight: bold;
}

.topMenu .menu a {
  color: #c0bbba;
  background: url(../pc-images/icon-menu.png) no-repeat 0 50% / 0.33rem 0.33rem;
  padding-left: 0.42rem;
  line-height: 0.55rem;
}

.topMenu .menu li.active a {
  color: #ffe66f;
  font-weight: bold;
  background: url(../pc-images/icon-menu-h.png) no-repeat 0 50% / 0.33rem 0.33rem;
}

.topMenu .menu::before {
  content: '';
  width: 1px;
  height: calc(100% - 0.55rem);
  position: absolute;
  top: 0.275rem;
  left: 0.165rem;
  background: #c99f62;
  opacity: 0.3;
}

.topMenu .top-more {
  position: absolute;
  right: 0.3rem;
  height: 1.2rem;
  display: flex;
  justify-content: end;
  align-items: center;
}
.topMenu .loginInfo a {
  color: #ffcc00 !important;
  margin: 0 0.1rem;
}

.topMenu .top-more .login,
.topMenu .top-more .register {
  background: url(../pc-images/top-btn.png) no-repeat 50% 0 / 1.04rem 0.4rem;
  width: 1.04rem;
  height: 0.4rem;
  margin-right: 0.07rem;
  font-size: 0.16rem;
  line-height: 0.4rem;
  text-align: center;
}

.topMenu .top-more .login:hover,
.topMenu .top-more .register:hover {
  background-image: url(../pc-images/top-btn-h.png);
}

.topMenu .line {
  margin-left: 0.3rem;
  height: 0.24rem;
  border-left: 1px solid #11111150;
}

.topMenu .media {
  padding-left: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.topMenu .media a {
  display: block;
  flex: 0 0 0.46rem;
  width: 0.46rem;
  height: 0.32rem;
  background: url(../pc-images/top-more.png) no-repeat;
  background-size: 2.27rem 0.28rem;
  font-size: 0;
}

.topMenu .media a.m1 {
  background-position: 0.08rem 0;
}

.topMenu .media a.m2 {
  background-position: -0.42rem 0;
}

.topMenu .media a.m3 {
  background-position: -0.86rem 0;
}

.topMenu .media a.m4 {
  background-position: -1.38rem 0;
}

.topMenu .media a.m5 {
  background-position: -1.9rem 0;
}

.topMenu:hover .media a:hover,
.topMenu .media a:hover {
  background-image: url(../pc-images/top-more-h.png);
}

.fp-scroll-mac .fp-overflow::-webkit-scrollbar-thumb {
  background-color: rgb(0 0 5);
}

.fp-scroll-mac .fp-overflow::-webkit-scrollbar {
  width: 5px;
}

.section a:hover {
  filter: brightness(1.2);
}

/* 20260128 */
.alert-bg2 {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1999;
  display: none;
}
.Reconfirm {
  z-index: 2000;
}
