@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);
  /* --size: calc(100vw / 26.8); */
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: var(--size);
}

@media screen and (max-width: 1920px) {
  html {
    /* font-size: calc(1920px / 25.6); */
    font-size: 75px;
  }
}
/* @media screen and (max-width: 750px) {
  html {
    font-size: calc(100vw / 7.5);
  }
} */

@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;
}

.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;
  /* z-index: 1111;
  box-shadow: 1px 1px 20px #dddddd; */
}

.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;
}
.pop .mb10 {
  margin-bottom: 0.1rem;
}
.pop .red {
  color: #c20000;
}
.pop .u {
  text-decoration: underline;
}
/* 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-ul li::marker {
  font-size: 8px;
}

/* .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;
}
.pop3 .popTit {
  margin-top: 0.1rem;
  margin-bottom: 0.25;
}
.pop3 .desc {
  text-align: center;
  margin-bottom: 0.4rem;
  font-size: 0.18rem;
}
.pop3 .tab {
  height: 0.42rem;
  margin-bottom: 0.42rem;
  position: relative;
  margin-left: -0.7rem;
  width: 9.22rem;
  padding: 0 0.7rem;
  border-bottom: 2px solid #ccc;
  display: flex;
}
.pop3 .tab a {
  color: #aaaaaa;
  font-size: 0.24rem;
  line-height: 0.3rem;
  display: inline-block;
  flex: auto;
  text-align: center;
  height: 0.44rem;
  transition: none;
}
.pop3 .tab a.active {
  color: #000;
  border-bottom: 6px solid #000;
}

.pop3 .form {
  overflow: hidden;
  position: relative;
  font-size: 0.18rem;
  margin-bottom: 0.2rem;
}
.pop3 .inpBox {
  position: relative;
  width: 100%;
  height: 0.52rem;
  border: 1px solid #000;
  margin-bottom: 0.2rem;
}
.pop3 .inpBox .label {
  position: absolute;
  right: 0;
  width: 1.3rem;
  height: 100%;
  line-height: 0.5rem;
  color: #fff;
  text-align: center;
  background: #000;
}

.pop3 .inpBox .inp {
  width: 100%;
  height: 100%;
  padding-left: 0.2rem;
  padding-right: 2.3rem;
  border: none;
  font-size: 0.18rem;
}
.pop3 .inpBox.joinCheck {
  margin-bottom: 0;
}
.pop3 .inpBox.joinCheck .label {
  width: 2rem;
}
.pop3 .inpBox.joinCheck .inp {
  padding-right: 2.2rem;
}

.pop3 .inpBox .inp::placeholder {
  color: #aaaaaa;
}
.pop3 .inpBox .time {
  position: absolute;
  right: 1.3rem;
  width: 0.8rem;
  color: #c20000;
  font-size: 0.18rem;
  line-height: 0.5rem;
  text-align: center;
}

.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 .checkBox p {
  display: inline-block;
}
.pop3 .checkBox .more {
  position: absolute;
  right: 0;
  text-decoration: underline;
  color: #111111;
}
.pop3 .inpBox.err {
  border-color: #c20000;
}
.pop3 .inpBox.err .label {
  position: absolute;
  width: 1.3rem;
  height: 100%;
  line-height: 0.5rem;
  color: #fff;
  text-align: center;
  background: #c20000;
}
.pop3 .inpBox.err .inp {
  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;
}

.pop3 .box-btn .disable,
.pop3 .inpBox .disable {
  background: #d8d8d8;
  color: #777777;
  cursor: default;
}

/* 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: 4.38rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pop4 .box-act a {
  width: 2.1rem;
  height: 0.5rem;
  line-height: 0.5rem;
  border: 1px solid #000;
  font-size: 0.18rem;
  color: #000;
  margin-bottom: 0.18rem;
}

/* .pop4 .box-act a:first-child {
  width: 100%;
  background: #000;
  color: #ffffff;
} */

/* pop5  */
.pop5 {
  padding: 0.7rem 0.4rem;
}
.pop5 .popTit {
  margin-top: 0.1rem;
  margin-bottom: 0.25;
}
.pop5 .desc {
  margin-bottom: 0.4rem;
  font-size: 0.18rem;
  text-align: center;
}
.pop5 .box-btn a {
  width: 1.6rem;
  min-width: auto;
}
/*自定义有序列表*/

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 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;
}

/* .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; */
}

.section1 .wrap {
  background: url(../images/p1-wrap.jpg) no-repeat 50% 50% / cover;
}
.section2 .wrap {
  background: url(../images/p2-wrap.jpg) no-repeat 50% 50% / cover;
}
.section3 .wrap {
  background: url(../images/p3-wrap.jpg) no-repeat 50% 50% / cover;
}

.section7 .wrap {
  background: #1a1a1a;
}
.section .inWrap {
  position: relative;
  width: 13rem;
}

/* section1 */
.section1 .inWrap {
  height: 10.5rem;
  transform: scale(0.9);
  margin:0 auto 1.4rem auto;
}

.section1 .slogan {
  display: block;
  margin: 0 auto;
  width: 9.29rem;
}
.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 .box-btn {
  /* position: absolute;
  top: 3.6rem;
  left: 0;
  right: 0; */
  width: 4.25rem;
  height: 1.78rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section1 .box-btn a {
  background: url(../images/p1-btn.png) no-repeat 50% 0;
  background-size: 4.23rem;
  font-size: 0;
}
.section1 .box-btn a:hover {
  filter: none;
}

.section1 .box-btn a:nth-child(1) {
  display: block;
  width: 3rem;
  height: 0.95rem;
  margin: 0 auto 0.2rem;
}

.section1 .box-btn a:nth-child(2) {
  display: inline-block;
  width: 2.2rem;
  height: 0.65rem;
  background-position: 0 100%;
}
.section1 .box-btn a:nth-child(3) {
  display: inline-block;
  width: 1.95rem;
  height: 0.65rem;
  background-position: 100% 100%;
}

.topMenu .menu.s1-style li.active a {
  color: rgb(179, 130, 65);
}

.topMenu .menu.s1-style::before {
  background: rgb(27, 33, 20);
}

.topMenu .menu.s1-style a {
  color: rgb(27, 33, 20);
  background: url(../images/icon-menu-s1.png) no-repeat 6.5% 50% / 0.15rem;
  padding-left: 0.55rem;
  line-height: 0.55rem;
}

.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.28rem;
  height: 0.25rem;
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  pointer-events: none;
}

/* section2 */
.section2 .inWrap {
  height: 11.8rem;
}
.section2 .p2-tit .tit {
  width: 7.77rem;
  margin-top: 0.3rem;
  /* margin-bottom: 0.25rem; */
}
.section2 .p2-tit {
  text-align: center;
  display: block;
  margin: 0 auto 0.4rem;
  font-size: 0;
}

.section2 .p2-cont {
  position: relative;
  margin-bottom: 0.25rem;
}

.section2 .p2-cont .img {
  display: block;
  width: 7.47rem;
  margin: 0 auto;
}

.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: 3.38rem;
  height: 0.8rem;
  margin: 0 auto 0.2rem;
  background: url(../images/p2-btn.png) no-repeat 50% 0 / contain;
}

.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 .inWrap {
  height: 9rem;
  color: #fff;
}

.section3 .p3-tit {
  text-align: center;
  display: block;
  margin: 0rem auto 0.4rem;
  font-size: 0;
}

.section3 .p3-tit .tit {
  width: 4.75rem;
}
.section3 .bottom-tip {
  width: 13.64rem;
  margin: 0 -0.32rem;
}
.p3-video {
  width: 12.34rem;
  height: 7.09rem;
  /* margin-bottom: 0.4rem; */
  /* filter: drop-shadow(0px 0.2rem 0.4rem #192037ad); */
}

.p3-video .cover {
  display: block;
  width: 12.34rem;
  height: 7.09rem;
}
.p3-video .btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.75rem;
  margin-top: -0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/btn-play.png) no-repeat 50% 0 / contain;
}

.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: 660px;
  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: #ae1e46;
  text-align: left;
  font-size: 12px;
  width: 455px;
}
.foot-pop .f-table td {
  border: 1px solid #821735;
  padding: 0 10px;
  color: #ffffff;
}
.foot-pop .f-table td:nth-child(2n + 1) {
  color: #ffb0c6;
}
.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;
  width: 100%;
  color: #fff;
  background: transparent;
  transition: all 0.3s;
}

.topMenu .logo {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  width: 2.74rem;
  height: 1.1rem;
  background: url(../images/top-logo.png) no-repeat 0 0 / contain;
}

.topMenu .menu {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 0.22rem;
}
.topMenu .menu li {
  margin-bottom: 0.5rem;
}
.topMenu .menu li:last-child {
  margin-bottom: 0;
}

.topMenu .menu li a {
  height: 0.55rem;
  display: block;
  font-family: 'Pretendard';
}

.topMenu .menu a {
  color: #e4d2ae;
  background: url(../images/icon-menu.png) no-repeat 0 50% / 0.36rem;
  padding-left: 0.55rem;
  line-height: 0.55rem;
}

.topMenu .menu li.active a {
  color: #c99f62;
  font-weight: bold;
  background: url(../images/icon-menu-h.png) no-repeat 0 50% / 0.36rem;
}

.topMenu .menu::before {
  content: '';
  width: 1px;
  height: calc(100% - 0.55rem);
  position: absolute;
  top: 0.28rem;
  left: 0.17rem;
  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(../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;
}

.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.4rem;
  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.53rem 0;
}
.topMenu .media a.m4 {
  background-position: -1.2rem 0;
}
.topMenu .media a.m5 {
  background-position: -1.85rem 0;
}

.topMenu .media a.white-icon {
  background-image: url(../images/top-more-white.png);
}

/* //conmon bottom */
.btn-top {
  position: fixed;
  z-index: 10;
  right: 0.3rem;
  bottom: 1rem;
  width: 1.02rem;
  height: 1.02rem;
}

.section.none {
  display: none;
}
.shadow {
  filter: drop-shadow(1px 1px 0.1rem #000000a4);
}
.g-time span {
  background: #3c565b;
  height: 0.46rem;
  line-height: 0.46rem;
  padding: 0 0.3rem;
  border-radius: 0.3rem;
  margin: 0 0.1rem;
  color: #fff;
  font-size: 0.18rem;
  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;
}

.section a:hover {
  filter: brightness(1.2);
}

/* 20260128 */
.alert-bg2 {
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1999;
  display: none;
}
.Reconfirm {
  z-index: 2000;
}
