@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 / 19.2);
}

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);
  }
} */

@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;
}

/*自定义有序列表*/

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: 1240px;
  height: 741px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.videoPop .closeVideoBtn {
  width: .6rem;
  height: .6rem;
  display: block;
  position: absolute;
  left: 50%;
  top: -.6rem;
  margin-left: -0.3rem;
  cursor: pointer;
  background: url(../images/close.png) no-repeat 100%/cover;
  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%;
  background: url(../images/video.png) no-repeat 50% 0/ cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.videoPop #video iframe {
  /* width: 100%;
  height: auto; */
  background: black;
  border: none;
  margin-bottom: 60px;
}

/* 视频弹窗样式 */

/*第一部分*/
/* section  */
.sectionSub {
  position: relative;
}

.sectionZoom {
  position: static;
  height: 100%;
}

.section2,
.section6 {
  height: 100%;
}

.section {
  position: relative;
  text-align: center;
  color: #0c244e;
  min-width: 1140px;
}

.title {
  height: 56px;
}

.fp-scrollable {
  position: relative;
  height: 100%;
  overflow: auto;
}

.section .wrap {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  /* padding-top: 1.2rem; */
}

.section1 .wrap {
  background: url(../images/page_01.jpg) no-repeat 50% 0 / cover;
  height: 26.89rem;
}

.section7 .wrap {
  background: #1a1a1a;
}

.section .inWrap {
  position: relative;
  width: 11.4rem;
  margin: 6.48rem auto 0;
}

/* section1 */
.section1 .inWrap {
  /* height: 26.89rem; */
}

.section1 .tips {
  color: #262f31;
  font-size: var(--f23);
  margin: 0.2rem 0 0.3rem;
  line-height: 1;
}

.tips p {
  margin-bottom: 13px;
}

.tips span {
  color: #111111;
  font-weight: 600;
}

/* section6 */

.p6-tit {
  text-align: center;
  display: block;
  margin: .2rem auto 0;
  height: 67px;
}

.p6-tit .tit {
  width: 5.28rem;
}

.bottom-tip {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;

}

.bottom-tip img {
  height: 3.3rem;
  width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

.p6-video {
  /* filter: drop-shadow(0px 0.2rem 0.4rem #192037ad); */
}

.p6-video .btn-play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.8rem;
  margin-top: -1.1rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/btn_play.png) no-repeat 50% 0 / contain;
}

.p6-video .vBox {
  width: 1240px;
  left: 50%;
  transform: translateX(-50%);
}

.p6-video .vBox img {
  width: 100%;
}

.qa {
  width: 11.98rem;
  height: 4.09rem;
  /* background-color: #fff; */
  display: flex;
  justify-content: center;
  flex-flow: column;
  text-align: left;
  padding: 0 1.05rem;
  color: #000;
  font-size: .21rem;
  position: relative;
  left: -.29rem;
  /* left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%); */
}

.video :nth-child(1 of .qa) {
  background: url(../images/01.png) no-repeat 0 50%/cover;
  width: 12.24rem;
  height: 4.23rem;
  
}

.video :nth-child(2 of .qa) {
  background: url(../images/02.png) no-repeat 0 50%/cover;
  margin-top: -.66rem;
}

.qa h3 {
  color: #111111;
  font-size: .55rem;
}

.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: absolute;
  z-index: 100;
  height: .9rem;
  /* width: 100%; */
  color: #000;
  background: transparent;
  transition: all 0.3s;
  width: 11.4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
}

.topMenu .logo {
  position: absolute;
  top: 0.3rem;
  width: 1.57rem;
  height: 0.63rem;
  background: url(../images/logo.png) no-repeat 50% 0 / contain;
}

.topMenu .top-more {
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}


.topMenu .media {
  display: flex;
}

.topMenu .media a {
  background: url(../images/icon.png) no-repeat;
  background-size: 2.34rem;
  width: 0.33rem;
  height: 0.27rem;
  margin: 0 0.08rem;
  transition: none;
}

.topMenu .media a.m1 {
  background-position: 0 0;
}

.topMenu .media a.m2 {
  background-position: -0.55rem 0;
}

.topMenu .media a.m3 {
  background-position: -1.05rem 0;
}

.topMenu .media a.m4 {
  background-position: -1.49rem 0;
}

.topMenu .media a.m5 {
  background-position: -2.01rem 0;
  margin-right: 0;
}

.topMenu .media a:hover {
  background-position-y: -35px;
}

.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;
}


.bottom-media {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: .45rem;
  left: 50%;
  transform: translateX(-50%);
}

.bottom-media a {
  background: url(../images/icon2.png) no-repeat;
  background-size: 1.78rem;
  width: 0.32rem;
  height: 0.24rem;
  margin: 0 0.05rem;
  transition: none;
}

.bottom-media a.m1 {
  background-position: 0 0;
}

.bottom-media a.m2 {
  background-position: -0.48rem 0;
}

.bottom-media a.m3 {
  background-position: -.96rem 0;
}

.bottom-media a.m4 {
  width: 0.33rem;
  background-position: -1.45rem 0;
}

.bottom-media a:hover {
  background-position-y: -34px;
}