@charset "UTF-8";
body,
dl,
dd,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
header,
section,
article,
footer {
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body,
button,
input,
select,
textarea {
  font: 12px/1.5 tahoma, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

em,
b {
  font-style: normal;
}

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

a:hover {
  text-decoration: none;
}

img {
  border: 0;
}

button,
input,
select,
textarea {
  font-size: 100%;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

* {
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  list-style: none;
  outline: none;
}

.font_bold {
  font-family: "syht-bold";
}

.hd {
  display: block;
  font-size: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  background: #000;
  font-family: "syht-light";
}

.wrap {
  width: 1920px;
  height: 1080px;
}

.nav {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all 300ms linear;
  display: none;
}
.nav .logo {
  width: 187px;
  height: 62px;
  position: relative;
}
.nav .logo::after, .nav .logo::before {
  content: "";
  background: url(https://static.gamelunar.com/gamelunar/web202309/logo.png) no-repeat center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 300ms linear;
  filter: blur(0);
}
.nav .logo::after {
  background-image: url(https://static.gamelunar.com/gamelunar/web202309/logo1.png);
  opacity: 0;
  filter: blur(5px);
}
.nav .nav_lists {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.nav .nav_lists .nav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 94px;
  height: 100%;
  position: relative;
  margin: 0 38px;
  cursor: pointer;
}
.nav .nav_lists .nav_list span {
  transition: all 200ms linear;
  position: relative;
}
.nav .nav_lists .nav_list span::after {
  content: "";
  width: 0%;
  height: 1px;
  background: #8f2a29;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 200ms linear;
}
.nav .nav_lists .nav_list:hover span {
  color: #8f2a29;
  font-family: "syht-bold";
}
.nav .nav_lists .nav_list:hover span::after {
  width: 100%;
}
.nav .nav_lists .nav_list:hover .nav_slide_lists {
  display: block;
}
.nav .nav_lists .nav_slide_lists {
  width: 100%;
  position: absolute;
  left: 0;
  top: 78px;
  box-sizing: border-box;
  padding: 0 10px;
  background: #191919;
  display: none;
}
.nav .nav_lists .nav_slide_lists .nav_slide_list {
  font-size: 14px;
  line-height: 34px;
  transition: all 200ms linear;
}
.nav .nav_lists .nav_slide_lists .nav_slide_list:not(:last-child) {
  border-bottom: solid 1px;
}
.nav .nav_lists .nav_slide_lists .nav_slide_list:hover {
  font-family: "syht-bold";
  color: #8f2a29;
}
.nav.white {
  background: #fff;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.nav.white .logo::before {
  opacity: 0;
  filter: blur(5px);
}
.nav.white .logo::after {
  opacity: 1;
  filter: blur(0px);
}
.nav.white .nav_lists {
  color: #000;
}
.nav.white .nav_lists .nav_slide_lists {
  background: #fff;
}

.pages {
  width: 100%;
  height: 100%;
}
.pages > .swiper-wrapper > .swiper-slide {
  box-sizing: border-box;
  padding-top: 80px;
  height: 100%;
}

.scroll_bar {
  /* 垂直滚动条 */
  /* 滚动条轨道 */
  /* 滚动条滑块 */
}
.scroll_bar::-webkit-scrollbar {
  width: 6px;
}
.scroll_bar::-webkit-scrollbar-track {
  background: linear-gradient(to right, transparent, transparent 2px, rgba(143, 43, 41, 0.1) 2px, rgba(143, 43, 41, 0.1) 4px, transparent 4px, transparent 100%);
}
.scroll_bar::-webkit-scrollbar-thumb {
  background-color: #8f2a29;
  width: 6px;
  border-radius: 5px;
}

.footer {
  background: #282f3e;
  width: 100%;
  height: auto;
  color: #a9a9a9;
  font-size: 16px;
  line-height: 32px;
  padding: 30px 20%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  transition: all 300ms linear;
  transform: translateY(100%);
}
.footer.on {
  transform: translateY(0);
}
.footer .foot_toggle {
  width: 92px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  border: solid 1px;
  position: fixed;
  right: 67px;
  bottom: 105%;
  cursor: pointer;
}
.footer a {
  color: #a9a9a9;
}
.footer .foot_cont {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: solid 1px;
  margin-bottom: 20px;
}
.footer .info .logoes {
  display: flex;
  align-items: center;
}
.footer .info .foot_logo {
  height: 50px;
  margin-right: 10px;
}
.footer .info .line {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 20px;
}
.footer .info .info_lists a {
  padding: 0 10px;
  border-left: 1px solid;
  text-decoration: underline;
}
.footer .info .info_lists a:first-child {
  border: none;
}
.footer .info .info_lists a:last-child {
  padding-right: 0;
}
.footer .filings {
  width: 100%;
}
.footer .filings a {
  padding: 0 10px;
  border-left: 1px solid;
}
.footer .filings a:first-child {
  padding-left: 0;
  border: none;
}
.footer .filings img {
  margin: 0 -10px 0 10px;
}

.dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}
.dialog .dia_con {
  background-image: url(https://static.gamelunar.com/gamelunar/web202309/dia_bg.png);
  width: 1174px;
  height: 668px;
  padding: 80px 410px 80px 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.dialog .btn_close {
  background-image: url(https://static.gamelunar.com/gamelunar/web202309/btn_close.png);
  width: 32px;
  height: 32px;
  position: absolute;
  right: 210px;
  top: 10px;
  font-size: 0;
  cursor: pointer;
}
.dialog .dia_tit {
  font-size: 28px;
  color: #8f2a29;
  line-height: 28px;
  font-weight: bold;
}
.dialog .dia_tit::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background-color: #8f2a29;
  margin-top: 15px;
}
.dialog .tit1 {
  background-image: url(https://static.gamelunar.com/gamelunar/web202309/dia_tit1.png);
  width: 122px;
  height: 32px;
  font-size: 0;
  margin-bottom: 15px;
}
.dialog .tit2 {
  background-image: url(https://static.gamelunar.com/gamelunar/web202309/dia_tit2.png);
  width: 122px;
  height: 32px;
  font-size: 0;
  margin-bottom: 15px;
}
.dialog .scroll_cont {
  width: 100%;
  height: 95%;
  margin-top: 10px;
  padding-right: 10px;
  overflow: hidden auto;
}
.dialog .des_box {
  font-size: 16px;
  line-height: 30px;
  color: #000;
  margin-top: 20px;
}
.dialog .des_box .des {
  white-space: pre-line;
}
.dialog#dia_tip .des_box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #000;
  font-weight: bolder;
  padding: 0;
}

.tip_text_show {
  white-space: nowrap;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 1;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.671);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -140%);
}
.tip_text_show::after {
  content: "";
  width: 0;
  height: 0;
  border: solid #fff 5px;
  border-color: rgba(0, 0, 0, 0.5) transparent transparent;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}/*# sourceMappingURL=rest.css.map */