@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 {
  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 {
  --scale: 1;
  --f-sy: '思源宋体 CN Medium', '思源宋体cn', '宋体';
  --f-syh: '思源黑体 CN Normal', 'Microsoft YaHei';
  --f18: 0.18rem;
  --f21: 0.21rem;
  --f23: 0.23rem;
  --f25: 0.25rem;
  --f26: 0.26rem;
  --f28: 0.28rem;
  --f30: 0.3rem;
  --f32: 0.32rem;
  --f33: 0.33rem;
  --f36: 0.36rem;
  --f38: 0.38rem;
  --f40: 0.4rem;
  --f42: 0.42rem;
  --f45: 0.45rem;
  --f48: 0.48rem;
  --f52: 0.52rem;
  --f60: 0.6rem;
  --f70: 0.7rem;
  --size: calc(100vw / 25.6);
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: var(--size);
  /* font-size: 100px; */
}

/* 竖屏样式 */
/* @media (orientation: portrait) {
  html {
    font-size: var(--size);
  }
} */

/* 横屏样式 */
/* @media (orientation: landscape) {
  html {
    font-size: calc(100vh / 12.71);
  }
} */

@media screen and (max-width: 2166px) {
  html {
    /* font-size: calc(1920px / 25.6); */
    font-size: calc(85px);
  }
}

@font-face {
  font-family: 'myPretendard';
  src: url('../font/pretendard/Pretendard-Regular.otf') format('otf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'myPretendard';
  src: url('../font/pretendard/Pretendard-Bold.otf') format('otf');
  font-weight: bold;
  font-style: 600;
  font-display: swap;
}

body {
  font: 0.16rem/1.5 'Pretendard', 'myPretendard', '思源黑体 CN Normal', 'sy-hei', 'Microsoft YaHei',
    '\5FAE\8F6F\96C5\9ED1', tahoma, Arial;
  color: #525152;
}

/*滚动条美化样式*/

::-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;
  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(../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;
}

.pop .box-btn a:hover {
  filter: brightness(1.2);
}

.popTit {
  display: block;
  line-height: 1;
  margin: 0.2rem auto;
  font-weight: bold;
  text-align: center;
  font-size: 0.34rem;
}

.ind2 {
  text-indent: 1.4em;
}

.popMsg {
  width: 4.32rem;
  height: 1.6rem;
  text-align: center;
}

.popMsg .msg {
  padding: 0.2rem;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  font-size: 0.18rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* pop1  */
/* .pop1 {
  width: 9.4rem;
} */

.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::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.pop1 .rule::-webkit-scrollbar-track {
  background: url(../images/p-bar.png) no-repeat center;
  background-size: 4px 100%;
} */

/* pop2  */
.pop2 {
  width: 7.5rem;
  height: 2.5rem;
}
.pop2 .msg {
  margin: 0.35rem;
  font-size: 0.18rem;
  line-height: 1.5;
  height: 0.9rem;
  margin-bottom: 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* pop3  */
.pop3 {
  padding: 0.7rem;
  width: 9.22rem;
  height: 8rem;
}
.pop3 .poopTit {
  margin-top: 0;
  margin-bottom: 0.25;
}
.pop3 .img {
  width: 7.82rem;
  margin-bottom: 0.25rem;
}

.pop3 .form {
  overflow: hidden;
  position: relative;
  font-size: 0.18rem;
  margin-bottom: 0.2rem;
}
.pop3 .phoneBox {
  position: relative;
  width: 100%;
  height: 0.52rem;
  border: 1px solid #000;
  margin-bottom: 0.2rem;
}
.pop3 .phoneBox .label {
  position: absolute;
  width: 1.3rem;
  height: 100%;
  line-height: 0.5rem;
  color: #fff;
  text-align: center;
  background: #000;
}
.pop3 .phoneBox .inp_phone {
  width: 100%;
  height: 100%;
  padding-left: 1.5rem;
  padding-right: 0.2rem;
  border: none;
  font-size: 0.18rem;
}
.pop3 .phoneBox .inp_phone::placeholder {
  color: #aaaaaa;
}
.pop3 .checkBox {
  font-size: 0.18rem;
  line-height: 0.28rem;
}
.pop3 .checkBox li {
  position: relative;
  padding-left: 0.3rem;
  margin-bottom: 0.15rem;
}
.pop3 .checkBox .check {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 0.04rem;
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/icon-radio.png) no-repeat 50% 50% / contain;
}
.pop3 .checkBox .check.active {
  background: url(../images/icon-radio-check.png) no-repeat 50% 50% / contain;
}

.pop3 .phoneBox.err {
  border-color: #c20000;
}
.pop3 .phoneBox.err .label {
  position: absolute;
  width: 1.3rem;
  height: 100%;
  line-height: 0.5rem;
  color: #fff;
  text-align: center;
  background: #c20000;
}
.pop3 .phoneBox.err .inp_phone {
  color: #c20000;
}

.pop3 .checkBox li.err {
  color: #c20000;
}
.pop3 .checkBox li.err .check {
  background: url(../images/icon-radio-red.png) no-repeat 50% 50% / contain;
}
.pop3 .tips {
  font-size: 0.14rem;
  color: #c20000;
  margin-top: 0.2rem;
  display: none;
}
/* pop4  */
.pop4 {
  padding: 0.7rem;
  width: 9.22rem;
}
.pop4 .popTit {
  margin-top: 0.1rem;
  margin-bottom: 0.25;
}
.pop4 .desc {
  margin-bottom: 0.4rem;
  font-size: 0.18rem;
}
.pop4 .box-act {
  position: relative;
  width: 6.78rem;
  margin: 0 auto;
  justify-content: center;
}
.pop4 .box-act-btn {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.pop4 .box-act-btn a {
  width: 50%;
  height: 100%;
}
.pop4 .box-act .img {
  width: 100%;
}

/*自定义有序列表*/

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(../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 iframe {
  /* width: 100%;
  height: auto; */
  background: black;
  border: none;
}

/* 视频弹窗样式 */

/*第一部分*/
/* section  */
.sectionSub {
  position: relative;
}
.sectionZoom {
  position: static;
  height: 100%;
}
.section2,
.section6 {
  height: 100%;
}

.section {
  position: relative;
  text-align: center;
  color: #0c244e;
  min-width: 1300px;
}
.fp-scrollable {
  position: relative;
  height: 100%;
  overflow: auto;
}

/* .bgWrap {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-size: cover;
  display: flex;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
} */

.section .wrap {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  /* padding-top: 1.2rem; */
  min-height: 100vh;
}

.section1 .wrap {
  background: url(../images/p1-wrap.jpg) no-repeat 50% 0 / cover;
}
.section2 .wrap {
  background: url(../images/p2-wrap.jpg) no-repeat 50% 0 / cover;
}
.section3 .wrap {
  background: url(../images/p3-wrap.jpg) no-repeat 50% 0 / cover;
}
.section4 .wrap {
  background: url(../images/p4-wrap.jpg) no-repeat 50% 0 / cover;
}
.section5 .wrap {
  background: url(../images/p5-wrap.jpg) no-repeat 50% 0 / cover;
}
.section6 .wrap {
  background: url(../images/p6-wrap.jpg) no-repeat 50% 0 / cover;
}
.section7 .wrap {
  background: #1a1a1a;
}
.section .inWrap {
  position: relative;
  width: 13rem;
  margin: 0.8rem auto;
}

/* section1 */
.section1 .inWrap {
  height: 9.9rem;
}

.section1 .slogan {
  display: block;
  margin: 1rem 0 0 2.1rem;
  width: 9.78rem;
}
.section1 .btn-play {
  position: absolute;
  top: 4.5rem;
  left: 2.85rem;
  width: 1.66rem;
  height: 1.66rem;
  background: url(../images/btn-play.png) no-repeat 50% 50% / contain;
}
.section1 .btn-play:hover {
  background-image: url(../images/btn-play-h.png);
}
.section1 .time {
  display: flex;
  width: 6.4rem;
  height: 0.53rem;
  margin: 0.3rem auto;
  background: url(../images/p1-time.png) no-repeat 50% 0 / contain;
  justify-content: center;
  align-items: center;
  font-size: var(--f26);
}

.section1 .btn-reserve {
  display: block;
  width: 4.12rem;
  height: 1rem;
  margin: 0 auto 0.15rem;
  background: url(../images/btn-reserve.png) no-repeat 50% 0 / contain;
}
.section1 .btn-reserve:hover {
  background-image: url(../images/btn-reserve-h.png);
}
.section1 .tips {
  font-size: var(--f18);
  margin-bottom: 0.5rem;
}

.scroll {
  animation: ani-scroll 0.6s cubic-bezier(0.65, 0, 0.35, 1) infinite alternate;
  background-image: url(../images/ico_scroll.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 0.36rem;
  height: 0.33rem;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.scroll.light {
  background-image: url(../images/ico_scroll_light.png);
}
.section1 .side-r {
  width: 2.2rem;
  position: absolute;
  top: 3rem;
  right: 0.3rem;
  transform-origin: 100% 0;
}
.section1 .side-r:hover {
  transform: scale(1.2);
}

/* section2 */

.section2 .p2-tit {
  text-align: center;
  display: block;
  margin: 0 auto 0.6rem;
}
.section2 .p2-tit .tit {
  width: 7.47rem;
  margin-bottom: 0.3rem;
}

.section2 .p2-cont {
  position: relative;
  margin-bottom: 0.4rem;
}

.section2 .p2-cont .img {
  display: block;
  width: 13rem;
}

.section2 .box-help {
  position: absolute;
  top: 2.4rem;
  left: 2.65rem;
  width: 6.55rem;
  display: flex;
  justify-content: space-between;
}

.section2 .box-help a {
  width: 0.28rem;
  height: 0.28rem;
  display: block;
  background: url(../images/icon-help.png) no-repeat 50% 0 / contain;
}

.section2 .btn-reserve {
  display: block;
  width: 4.12rem;
  height: 1rem;
  margin: 0 auto 0.2rem;
  background: url(../images/btn-reserve.png) no-repeat 50% 0 / contain;
}
.section2 .btn-reserve:hover {
  background-image: url(../images/btn-reserve-h.png);
}
.section2 .notice {
  font-size: var(--f18);
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #fff;
  color: #ffffff;
}
.section2 .img-tit .layer {
  background: #bce4ff;
}
.section2 .img-tit .layer::before {
  background: url(../images/p2-triangle.png) no-repeat 50% 0 / contain;
}

/* section3 */
.section3 .wrap {
  height: 17.6rem;
  min-height: 100%;
  color: #fff;
}
.section3 .p3-tit {
  text-align: center;
  display: block;
  margin: 0rem auto 0.6rem;
}

.section3 .p3-tit .tit {
  width: 6.85rem;
  margin-bottom: 0.3rem;
}
.p3-tit .g-time span {
  background: #263051;
}

.p3-row1 {
  width: 100%;
  height: 1.3rem;
  background: #ffffff;
  font-size: 0.2rem;
  color: #111111;
  padding: 0 0.6rem;
  margin-bottom: 0.72rem;
}
.p3-row1 .case {
  height: 100%;
}
.p3-row1 .inCase {
  display: flex;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
.p3-row1 .case a {
  width: 2.5rem;
  height: 0.72rem;
  line-height: 0.72rem;
  color: #fff;
  background: url(../images/p3-btn.png) no-repeat;
}
.p3-row1 .case .code {
  font: 0.2rem / 1.5 'Pretendard', 'myPretendard';
  color: #111111;
  width: 100%;
  border: none;
  resize: none;
  overflow: hidden;
  padding-right: 0.6rem;
  word-break: break-all;
}
.p3-row2 {
  margin-bottom: 0.75rem;
}
.p3-row2 .p3-step {
  width: 13rem;
  margin-bottom: 0.25rem;
}
.p3-row2 .tips {
  font-size: 0.14rem;
  color: rgb(255 255 255 / 70%);
  padding-left: 0.28rem;
  background: url(../images/icon-tips.png) no-repeat 0 50%;
  background-size: 0.18rem;
  line-height: 0.3rem;
  text-align: left;
  display: inline-block;
}

.p3-row3 .sign-img {
  position: relative;
  background: url(../images/p3-sign.png) no-repeat;
  background-size: 100%;
  height: 3.17rem;
  width: 13.16rem;
  padding: 0 0.08rem;
}
.p3-row3 .sign-h {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: url(../images/p3-sign-h.png) no-repeat;
  background-size: 13.16rem;
}
.p3-row3 .sign-h.person1 {
  width: 2.39rem;
}
.p3-row3 .sign-h.person2 {
  width: 4.7rem;
}
.p3-row3 .sign-h.person3 {
  width: 7.01rem;
}
.p3-row3 .sign-h.person4 {
  width: 9.32rem;
}

.p3-row3 .sign-text {
  padding: 0 0.08rem;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  height: 0.78rem;
  justify-content: center;
  align-items: center;
  font-size: 0.17rem;
}
.p3-row3 .sign-text li {
  display: flex;
  height: 0.78rem;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 2.31rem;
}

.p3-row3 .sign-text li:last-child {
  position: relative;
  flex: auto;
}
.p3-row3 .sign-text .tips {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -0.38rem;
}

.p3-row3 .box-help {
  position: absolute;
  top: 1.98rem;
  left: 1.98rem;
  width: 7.2rem;
  display: flex;
  justify-content: space-between;
}

.p3-row3 .box-help a {
  width: 0.28rem;
  height: 0.28rem;
  display: block;
  background: url(../images/icon-help2.png) no-repeat 50% 0 / contain;
}
.section3 .img-tit .layer::before {
  background: url(../images/p3-triangle.png) no-repeat 50% 0 / contain;
}

/* section4  */
.section4 .wrap {
  height: 16.6rem;
  min-height: 100%;
  color: #fff;
}

.section4 .p4-tit {
  text-align: center;
  display: block;
  margin: 0rem auto 0.6rem;
}

.section4 .p4-tit .tit {
  width: 7.61rem;
  margin-bottom: 0.25rem;
}
.p4-tit .g-time {
  margin-bottom: 0.25rem;
}

.p4-tit .sub-logan {
  font-size: 0.14rem;
  margin-bottom: 0.2rem;
  opacity: 0.7;
}

.p4-tit .btn-tip {
  display: block;
  margin: 0 auto;
  width: 1.17rem;
  height: 0.25rem;
  background: url(../images/p4-tip.png) no-repeat 50% 0 / contain;
}
.p4-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p4-cont .gold-box {
  width: 100%;
  margin-bottom: 0.45rem;
}
.p4-cont .gold {
  font-size: 0.25rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4rem;
  height: 0.68rem;
  line-height: 0.68rem;
  margin: 0 auto;
  background: url(../images/p4-gold.png) no-repeat 50% 0 / contain;
}
.p4-cont .gold li {
  flex: 1;
}
.p4-cont .gold .num {
  color: #000;
}
.p4-cont .gold .num::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 0.24rem;
  height: 0.68rem;
  margin-right: 0.05rem;
  background: url(../images/icon-gold.png) no-repeat 50% 44% / contain;
}

.piecing {
  width: 6.6rem;
  height: 6.6rem;
  background: url(../images/p4-piece-end.png) no-repeat 50% 50% / contain;
}

.piece-box {
  position: relative;
  height: 6.6rem;
  background: url(../images/p4-piece-h.png) no-repeat 50% 50% / contain;
}
.piece-box li {
  position: absolute;
  transition: all 0.3s;
}
.piece-box li.end {
  opacity: 0;
  visibility: hidden;
}

.piece-box li:nth-of-type(1) {
  width: 2.3rem;
  height: 2.75rem;
  background: url(../images/p4-piece-1.png) no-repeat 0 0 / contain;
}
.piece-box li:nth-of-type(2) {
  top: 0;
  left: 1.66rem;
  width: 3.3rem;
  height: 2.24rem;
  background: url(../images/p4-piece-2.png) no-repeat 0 0 / contain;
}
.piece-box li:nth-of-type(3) {
  top: 0;
  right: 0;
  width: 2.28rem;
  height: 2.76rem;
  background: url(../images/p4-piece-3.png) no-repeat 0 0 / contain;
}
.piece-box li:nth-of-type(4) {
  top: 2.1rem;
  left: 0;
  width: 2.81rem;
  height: 2.26rem;
  background: url(../images/p4-piece-4.png) no-repeat 0 0 / contain;
}
.piece-box li:nth-of-type(5) {
  top: 1.61rem;
  left: 2.18rem;
  width: 2.25rem;
  height: 3.26rem;
  background: url(../images/p4-piece-5.png) no-repeat 0 0 / contain;
}
.piece-box li:nth-of-type(6) {
  top: 2.11rem;
  right: 0;
  width: 2.81rem;
  height: 2.24rem;
  background: url(../images/p4-piece-6.png) no-repeat 0 0 / contain;
}
.piece-box li:nth-of-type(7) {
  bottom: 0.04rem;
  left: 0;
  width: 2.27rem;
  height: 2.83rem;
  background: url(../images/p4-piece-7.png) no-repeat 0 0 / contain;
}
.piece-box li:nth-of-type(8) {
  bottom: 0.04rem;
  left: 1.65rem;
  width: 3.3rem;
  height: 2.34rem;
  background: url(../images/p4-piece-8.png) no-repeat 0 0 / contain;
}
.piece-box li:nth-of-type(9) {
  bottom: 0.04rem;
  right: 0;
  width: 2.28rem;
  height: 2.84rem;
  background: url(../images/p4-piece-9.png) no-repeat 0 0 / contain;
}

.piecing .download {
  position: absolute;
  bottom: -0.6rem;
  left: 2.5rem;
  font-size: 0.19rem;
  color: #ffffff;
  border-bottom: 1px solid #fff;
  padding-right: 0.22rem;
  background: url(../images/icon-download.png) no-repeat 100% 50% / 0.19rem;
}
.piece-text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #111111;
  font-size: 0.19rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.piece-text li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.piece-text li.end {
  opacity: 0;
  visibility: hidden;
}
.piece-text .go {
  position: absolute;
  bottom: 0.2rem;
  right: 0.15rem;
  width: 0.55rem;
  height: 0.55rem;
  background: #fff;
  line-height: 0.55rem;
  border-radius: 0.55rem;
  cursor: pointer;
  color: #000;
}
.gift-box {
  width: 6.12rem;
  height: 6.61rem;
  border: 1px solid #3f4553;
  background: #0a1228;
  border-radius: 0.05rem;
}
.gift-box ul {
  display: grid;
  flex-wrap: wrap;
  grid-template-columns: repeat(4, 1.525rem);
}
.gift-box li {
  position: relative;
  border-bottom: 1px solid #3f4553;
  border-left: 1px solid #3f4553;
  height: 3.3rem;
}
.gift-box li:first-child {
  border-left: none;
}
.gift-box li:nth-child(5) {
  border-left: none;
}

.gift-box .icon {
  position: relative;
  margin: 0.18rem auto 0;
  width: 1.38rem;
  height: 1.38rem;
  /* background: url(../images/p4-circle.png) no-repeat 0 0 / contain; */
}
.gift-box .icon.maxIcon {
  margin: 0.03rem auto;
  width: 1.5rem;
  height: 1.5rem;
}

.gift-box .icon img {
  width: 100%;
  display: block;
}
.gift-box .name {
  padding-top: 0.1rem;
  height: 1.05rem;
  font-size: 0.16rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/p4-line.png) no-repeat 0 0 / contain;
}

.gift-box a.btn {
  width: 1.28rem;
  height: 0.44rem;
  line-height: 0.44rem;
  display: block;
  margin: 0 auto;
  color: #111;
  background: url(../images/p4-btn-basic.png) no-repeat 0 0 / contain;
}
.gift-box a.btn.end {
  color: #777777;
  cursor: default;
  background-image: url(../images/p4-btn-end.png);
}
.gift-box .tag {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.14rem;
  line-height: 0.27rem;
  width: 0.61rem;
  height: 0.27rem;
  background: url(../images/p4-tag.png) no-repeat 0 0 / contain;
}
.gift-box .maxIcon .tag {
  top: 0.17rem;
  right: 0.05rem;
}

.gift-box .img-tit {
  position: absolute;
  right: 0.1rem;
  top: 1.3rem;
  width: 0.28rem;
  height: 0.28rem;
  display: block;
  background: url(../images/icon-help.png) no-repeat 50% 0 / contain;
}
.gift-box .img-tit .layer {
  background: #bce4ff;
  width: max-content;
}
.gift-box .img-tit .layer::before {
  background: url(../images/p2-triangle.png) no-repeat 50% 0 / contain;
}
/* section5 */

.section5 .wrap {
  height: 20.37rem;
  min-height: 100%;
  color: #fff;
}

.section5 .p5-tit {
  text-align: center;
  display: block;
  margin: 0rem auto 0.6rem;
}

.section5 .p5-tit .tit {
  width: 9.68rem;
  margin-bottom: 0.25rem;
}
.p5-tit .g-time {
  margin-bottom: 0.25rem;
}

.p5-tit .sub-logan {
  font-size: 0.14rem;
  margin-bottom: 0.2rem;
  opacity: 0.7;
}

.p5-tit .btn-tip {
  display: inline-block;
  margin: 0 auto;
  font-size: 0.18rem;
  color: #ffffff85;
  border-bottom: 1px solid #ffffff85;
}

.section5 .p5-writeMsg {
  text-align: left;
  height: 4.06rem;
  background: rgb(0 0 0 / 30%);
  border: 0.05rem solid rgb(0 0 0 / 50%);
  border-radius: 0.05rem;
  margin-bottom: 0.6rem;
  padding: 0.25rem 0.35rem;
}

.section5 .p5-writeMsg h2 {
  font-size: 0.19rem;
  line-height: 1;
  margin-bottom: 0.1rem;
}

.section5 .msg-input {
  margin-bottom: 0.2rem;
}
.section5 .msg-textarea {
  margin-bottom: 0.1rem;
}
.section5 .msg-input .input,
.section5 .msg-textarea .textarea {
  width: 100%;
  border: 1px solid #fff;
  background: #fff;
  font-size: 0.14rem;
  color: #000;
}

.section5 .msg-input .input {
  height: 0.57rem;
  line-height: 0.57rem;
  padding: 0 0.2rem;
}
.section5 .msg-textarea .textarea {
  padding: 0.2rem;
  height: 1.55rem;
  resize: none;
}
.section5 .msg-input .input::placeholder,
.section5 .msg-textarea .textarea::placeholder {
  font-size: 0.14rem;
  color: #aaaaaa;
}

.p5-writeMsg .msg-maxLength {
  position: absolute;
  right: 0.25rem;
  bottom: 0.2rem;
  font-size: 0.14rem;
  color: #aaaaaa;
}

.section5 .btn-reserve {
  display: block;
  width: 1.75rem;
  height: 0.55rem;
  position: absolute;
  right: 0.35rem;
  bottom: 0.15rem;
  background: url(../images/p5-btnSubmit.png) no-repeat 50% 0 / contain;
}

.section5 .btn-reserve.gay {
  cursor: default;
  background: url(../images/p5-btnSubmit-gay.png) no-repeat 50% 0 / contain;
}
.section5 .listMsg ul {
  height: 6.9rem;
  color: #000;
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between; */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 0.2rem;
}
.section5 .listMsg li {
  font-size: 0.14rem;
  text-align: justify;
  display: block;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0.35rem 0.32rem 0.7rem;
  background: url(../images/p5-li.png) no-repeat 50% 0 / contain;
  filter: drop-shadow(0 0 15px #000000b9);
}
.section5 .listMsg .author {
  position: absolute;
  right: 0.32rem;
  bottom: 0.35rem;
  font-size: 0.22rem;
  font-weight: bold;
}
.section5 .listPage {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section5 .listPage * {
  padding: 0 0.05rem;
  margin: 0 0.05rem;
  display: inline-block;
  color: #fff;
}
.listPage .prev,
.listPage .next,
.listPage .first,
.listPage .last {
  font-size: 0;
}
.listPage .first::after {
  content: '<<';
  font-size: 0.18rem;
}
.listPage .last::after {
  content: '>>';
  font-size: 0.18rem;
}
.listPage .prev::after {
  content: '<';
  font-size: 0.18rem;
}
.listPage .next::after {
  content: '>';
  font-size: 0.18rem;
}

.listPage .current:not(.prev):not(.next) {
  color: #7bbeff;
}
.listPage .pagingUl li {
  padding: 0;
  margin: 0;
}
.listPage .pagingUl a {
  width: 0.3rem;
  height: 0.3rem;
  line-height: 0.3rem;
  text-align: center;
  display: inline-block;
}
/* section6 */

.section6 .wrap {
  color: #fff;
}

.section6 .p6-tit {
  text-align: center;
  display: block;
  margin: 0rem auto 0.6rem;
}

.section6 .p6-tit .tit {
  width: 4.75rem;
}
.section6 .bottom-tip {
  width: 13.64rem;
  margin: 0 -0.32rem;
}
.p6-video {
  margin-bottom: 0.4rem;
  filter: drop-shadow(0px 0.2rem 0.4rem #192037ad);
}
.p6-video ul {
  margin-left: -0.1rem;
  width: 13.2rem;
  display: flex;
  justify-content: space-between;
}
.p6-video ul li {
  width: 6.51rem;
}
.p6-video .cover {
  display: block;
  width: 100%;
  height: 3.73rem;
}
.p6-video .btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.58rem;
  margin-top: -0.58rem;
  width: 1.17rem;
  height: 1.17rem;
  background: url(../images/btn-play2.png) no-repeat 50% 0 / contain;
}
.p6-video .vBox {
  margin-bottom: 0.12rem;
}

.section7 {
  background: #1a1a1a;
  min-height: 240px;
  padding: 60px 0;
  color: #626262;
  height: 12px;
}
.section7 .row-1 i {
  display: inline-block;
  width: 1px;
  height: 13px;
  vertical-align: middle;
  background: #484848;
}
.section7 .row-1 a {
  height: 13px;
  padding: 0 15px;
  line-height: 1;
  color: #7c7c7c;
  /* border-right: 1px solid #484848; */
}
.section7 .row-1 a:hover {
  text-decoration: underline;
}
.section7 .row-2 {
  margin: 0.2rem 0;
}
.section7 .foot-pop {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  background: #333333;
  padding: 20px;
  width: 760px;
  height: 128px;
  display: flex;
}
.foot-pop .f-icon {
  display: flex;
  justify-content: space-between;
  column-gap: 5px;
  margin-right: 17px;
}
.foot-pop .f-table {
  background: #1468b3;
  text-align: left;
  font-size: 12px;
}
.foot-pop .f-table td {
  border: 1px solid #0f4e86;
  padding: 0 10px;
  color: #ffffff;
}
.foot-pop .f-table td:nth-child(2n + 1) {
  color: #b1dbff;
}
.foot-pop .ft-close {
  position: absolute;
  right: -24px;
  top: 0;
  width: 14px;
  height: 14px;
  background: url(../images/ft-close.png) no-repeat 50% 0 / contain;
}
/* topMenu */

.topMenu {
  position: fixed;
  z-index: 100;
  height: 1.2rem;
  width: 100%;
  color: #000;
  background: transparent;
  transition: all 0.3s;
  min-width: 1300px;
}

.topMenu:hover {
  background: #0b0f1b;
  color: #fff;
}

.topMenu .logo {
  position: absolute;
  top: 0.3rem;
  left: 0.4rem;
  width: 1.57rem;
  height: 0.63rem;
  background: url(../images/top-logo-blank.png) no-repeat 50% 0 / contain;
}

.topMenu a {
  color: #000;
}

.topMenu:hover a {
  color: #fff;
}

.topMenu .menu a:hover,
.topMenu .sub-menu a:hover {
  color: #ffd200 !important;
}

.topMenu .menu {
  display: flex;
  height: 100%;
  position: absolute;
  left: 2.25rem;
  z-index: 2;
  font-size: 0.22rem;
}

.topMenu .menu li,
.topMenu .menu li a {
  width: 1.5rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* .topMenu .menu li {
  background: #0b0f1b;
  transition: all 0.3s;
}

.topMenu .menu li:hover {
  background: #3c0c16;
} */

.topMenu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgb(11 15 27 / 40%);
  z-index: 1;
  overflow: hidden;
}

.topMenu .sub-menuCon {
  position: relative;
  margin: 0 2.25rem;
  display: flex;
  text-align: center;
  font-size: 0.17rem;
  line-height: 1;
}
.topMenu .sub-menuCon dl {
  padding: 0.4rem 0;
  width: 1.5rem;
}
.topMenu .sub-menuCon dd {
  margin-bottom: 0.2rem;
}

.topMenu .sub-menuCon dd:last-child {
  margin: 0;
}
.topMenu .menu-bar {
  margin-left: 2.25rem;
  width: 1.5rem;
  height: 100%;
  position: absolute;
  top: 0rem;
  background: #3c0c16;
  opacity: 0;
}

.topMenu .subMenu-bar {
  margin-left: 2.25rem;
  width: 1.5rem;
  height: 2.85rem;
  position: absolute;
  top: 0;
  background: rgba(60, 12, 22, 0.8);
  opacity: 0;
}

.topMenu .top-more {
  position: absolute;
  right: 0.3rem;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.topMenu .loginInfo a {
  /* color: #ffcc00 !important; */
  margin: 0 0.1rem;
}
.topMenu .top-more .logout,
.topMenu .top-more .login,
.topMenu .top-more .register {
  background: url(../images/top-btn.png) no-repeat 50% 0 / contain;
  width: 1.05rem;
  height: 0.4rem;
  margin-right: 0.07rem;
  font-size: 0.16rem;
  line-height: 0.4rem;
  text-align: center;
  display: inline-block;
}
.topMenu .top-more .logout:hover,
.topMenu .top-more .login:hover,
.topMenu .top-more .register:hover {
  background-image: url(../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;
}
.topMenu .media a {
  background: url(../images/top-more.png) no-repeat;
  background-size: 2.29rem;
  width: 0.46rem;
  height: 0.32rem;
  margin: 0 0.05rem;
}

.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 .logo {
  background: url(../images/top-logo.png) no-repeat 50% 0 / contain;
}

.topMenu:hover .line,
.topMenu.hover .line {
  border-left: 1px solid #4a4a4a;
}

.topMenu:hover .media a:hover,
.topMenu.hover:hover .media a:hover {
  background-image: url(../images/top-more-h.png);
}
/* .topMenu.hover */

.topMenu.hover {
  background: #0b0f1b;
  color: #fff;
}
.topMenu.hover .logo {
  background: url(../images/top-logo.png) no-repeat 50% 0 / contain;
}
.topMenu:hover .media a,
.topMenu.hover .media a {
  background-image: url(../images/top-more-white.png);
}
.topMenu.hover a,
.topMenu.hover a {
  color: #fff;
}

/* //conmon bottom */
.btn-top {
  position: fixed;
  z-index: 10;
  right: 0.3rem;
  bottom: 1rem;
  width: 1.02rem;
  height: 1.02rem;
  background: url(../images/btn-top.png) no-repeat 50% 0 / contain;
}
.btn-top:hover {
  background: url(../images/btn-top-h.png) no-repeat 50% 0 / contain;
}
.section.none {
  display: none;
}
.shadow {
  filter: drop-shadow(1px 1px 0.1rem #000000a4);
}
.g-time span {
  background: #2c3b68;
  height: 0.46rem;
  line-height: 0.46rem;
  padding: 0 0.3rem;
  border-radius: 0.3rem;
  margin: 0 0.07rem;
  color: #fff;
  font-size: 0.19rem;
  display: inline-block;
}
.f14 {
  font-size: 0.14rem;
}
.btn-play:hover {
  transform: scale(1.1);
}

.img-tit {
  position: relative;
  z-index: 1;
}
.img-tit .layer {
  margin-top: 0.15rem;
  width: 2.1rem;
  /* width: max-content; */
  padding: 0.16rem;
  background: #ffcc00;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  color: #111111;
  font-size: 0.13rem;
  text-align: justify;
  border: 1px solid #111111;
}
.img-tit .layer::before {
  content: '';
  width: 0.18rem;
  height: 0.14rem;
  position: absolute;
  top: -0.1rem;
  left: 50%;
  margin-left: -0.09rem;
}

.img-tit:hover .layer {
  display: block;
}

.fp-scroll-mac .fp-overflow::-webkit-scrollbar-thumb {
  background-color: rgb(0 0 5);
}

.fp-scroll-mac .fp-overflow::-webkit-scrollbar {
  width: 5px;
}

@media screen and (max-width: 1920px) {
  .section1 .scroll {
    bottom: 0.2rem;
  }
}
