@charset "UTF-8";

/* 簡易リセットCSS */
/* 强制嵌入字体，不依赖系统 */
@font-face {
  font-family: 'MyCustomKai';
  src: url('../fonts/A-OTF-KaishoMCBK1Pro-DeBold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* 全局只使用这个嵌入字体，不写任何兜底 */
body {
  font-family: 'MyCustomKai';
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light-text: #a90016;
}

h1 {
  margin: 0;
  padding: 0;
  font-size: .8333vw;
}

li,
ul {
  margin: 0;
  padding: 0;
  list-style: none inside;
}

html {
  font-size: 13.3333vw;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  position: relative;
  width: 100%;
  color: var(--color_text);
  font-size: .8333vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  background: url(../img/pc/news_bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* 导航栏 */
header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff00;
}

.sp_header {
  display: block;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* object-position: center; */
  /* margin: 0 auto; */ /* 绝对居中核心 */
  /* position: relative; */
  /* left: 50%; */
  /* transform: translateX(-50%); */ /* 终极强制居中 */
}

header nav {
  width: 100%;
  position: sticky;
  transition: 0.3s;
  height: 4.17vw;
  display: -webkit-box;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  display: flex;
  background: #262222f0;
  align-items: center;
  top: 0;
  z-index: 10;
}

header nav:after {
  content: "";
  width: 100%;
  height: 2.34vw;
  position: absolute;
  top: 0;
  left: 0;
}

#header #menu_wrap {
  display: flex;
  justify-content: center;
  height: 3.65vw;
  z-index: 10;
}

#header .menu {
  width: auto;
  position: relative;
  display: flex;
  justify-content: center;
  /* margin-right: 2.6vw; */
}

#header .menu>li {
  display: flex;
  align-items: center;
  padding: 0vw 3vw;
  height: 100%;
  margin: 0 0;
  transition: all 0.3s;
  font-size: 1.3vw;
}

#header .menu>li.sp_sns {
  display: none;
}

#header .menu>li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.3vw;
  position: relative;
}

#header .menu li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0.2vw;
  background: var(--light-text);
  bottom: -0.26vw;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .25s ease-in-out
}

#header .menu li a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top
}

#header .menu li a:hover {
  color: #a90016;
  font-weight: bold;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#header .menu>li.menu_title {
  display: none;
}

#header .menu>li .menu>li a:hover {
  color: #a90016;
}

#header ul.menu__second-level {
  visibility: hidden;
  /* opacity: 0; */
  z-index: 1;
}

#header ul.menu__second-level li {
  text-indent: 0;
  text-align: center;
  line-height: 1.67vw;
  height: 2.08vw;
}

#header ul.menu__second-level li:hover {
  background: #a90016;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#header ul.menu__second-level li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 0vw;
  background: var(--light-text);
  bottom: -0.05vw;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .25s ease-in-out
}

#header .menu>li.menu__single {
  position: relative;
}

#header li.menu__single ul.menu__second-level {
  position: absolute;
  top: 0vw;
  left: 50%;
  transform: translateX(-50%);
  width: 9.17vw;
  background: #ffffff;
  transition: all 0.2s ease;
  border: .05vw solid #a90016;
  filter: drop-shadow(.1vw .1vw .1vw rgba(0, 0, 0, 0.5));
}

#header li.menu__single ul.menu__second-level li a {
  font-size: 0.87vw;
  color: #3a3231;
  white-space: nowrap;
}

#header li.menu__single ul.menu__second-level li:hover a {
  color: #ffffff;
  font-weight: bolder;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#header li.menu__single:hover ul.menu__second-level {
  top: 3.91vw;
  visibility: visible;
  opacity: 1;
}

#header .menu_open {
  display: none;
}

#header .sns {
  width: auto;
  height: 3.13vw;
  display: flex;
  align-items: center;
  position: absolute;
  right: 3vw;
  z-index: 10;
  justify-content: flex-end;
}

#header .sns a {
  width: 2.08vw;
  height: 2.08vw;
  border-radius: .42vw;
  margin: 0 .42vw;
  box-sizing: border-box;
  padding: 0.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

#header .sns a:hover {
  transform: scale(1.1);
}

#header .sns a.x {
  background: #000;
  padding: .25vw;
}

#header .sns a.youtobe {
  background: #ff0000;
}

#header .sns a.discord {
  background: #5460e8;
}

#header .sns a.line {
  background: #00c854;
}

#header .sns a.facebook {
  background: #007ffe;
}

.top_icon,
.menu,
.menu_open {
  display: none;
}

/* footer */
footer {
  background: #ffffff;
  height: 8.3333vw;
  bottom: 0;
  width: 100%;
  z-index: 101;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  font-family: Avenir, Helvetica, Arial, sans-serif;
  font-weight: 100;
}

footer .company_info {
  padding: 1.5625vw;
  position: relative;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .company_info img {
  width: 9.6875vw;
  height: 3.5938vw;
}

footer .company_info div {
  margin: 0vw 0vw 0vw 2.0833vw;
}

footer .company_info ul {
  margin-bottom: 0vw;
  font-size: .8333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

footer .company_info ul li {
  margin: 0 .2604vw;
  padding-left: .2604vw;
  border-left: .0521vw solid #cccccc;
}

footer .company_info ul li a {
  color: #000;
  text-decoration: none;
  font-weight: normal;
  font-family: 'Noto Sans JP', sans-serif;
}

footer .company_info ul li a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

footer .company_info ul li:first-child {
  border: none;
  padding-left: 0vw;
  margin: 0 .5208vw 0 0;
}

footer p {
  width: 100%;
  text-align: center;
  margin: .4167vw 0 0;
  color: #000;
  font-size: .7292vw;
}
/* 返回顶部 */
#go_top {
  width: 4vw;
  height: 2vw;
  fill: #ffffff;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #000000;
  border-radius: 0.5vw 0.5vw 0 0;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

#go_top svg {
  width: 2vw;
  height: 2vw;
  fill: #fff;
}

#go_top:hover {
  background: #a90016;
}

#go_top.is-visible {
  -webkit-transform: translateX(0);
  transform: translateX(-1vw);
}

#go_top.is-hidden {
  -webkit-transform: translateX(110%) !important;
  transform: translateX(110%) !important
}

#go_top img {
  width: 100%;
}

/* 浮岛 */
.flout {
  width: 15.63vw;
  height: 15.63vw;
  position: fixed;
  left: 0;
  bottom: 9vw;
  z-index: 1000;
}

.flout a img {
  width: 100%;
}

.flbanner:hover>.flclose {
  display: flex;
}

.flout .flclose {
  width: 1.5vw;
  height: 1.5vw;
  position: absolute;
  left: 0.5vw;
  top: 0.5vw;
  background: #000000c2;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.1vw solid #fff;
  border-radius: 1vw;
  cursor: pointer;
  line-height: 1.5vw;
  display: none;
  font-family: "nitalago-ruika", sans-serif;
}

/* 漂浮粒子 */
canvas {
  display: block;
  opacity: 0.5;
  display: none;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -2;
  display: none;
}

/* Google Fonts読み込み */
/* スライダー全体 */
.vertical-slider {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #2d2c41;
}

/* スライド */
.vertical-slider__slide {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: .8333vw;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  color: #fff;
  z-index: -3;
}

.vertical-slider__slide>section {
  position: relative;
  z-index: 10;
}

/* SP時の文字サイズ調整 */
@media (max-width: 599px) {
  .vertical-slider__slide {
    font-size: 16vw;
  }
}

/* 顶部logo */
#top_logo {
  width: 15vw;
  height: auto;
  position: fixed;
  left: 3vw;
  top: 2vw;
  z-index: 1000;
  display: block;
  transition: top 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#top_logo.scroll {
    top: 0;
}

#top_logo img {
  width: 100%;
}

/* 头部 */
#top {
  width: 100%;
  height: 100%;
  min-height: 47.4vw;
  position: relative;
  scroll-margin-top: 1.6667vw;
  margin-top: -4vw;
  overflow: hidden;
}

#top .sp_video {
  display: none;
}

#top .pc_video {
  position: absolute;
  left: 0vw;
  top: 0vw;
  height: auto;
  width: 100vw;
  z-index: 0;
  display: none;
}

.pv {
  position: absolute;
  width: 5vw;
  height: 5vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 3vw);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  z-index: 1000;
  background-clip: padding-box;
  z-index: 1;
}

.pv a {
  display: block;
  width: 3vw;
  height: 3vw;
  z-index: 5;
  left: 50%;
  top: 50%;
  background: url(../img/pv.png) no-repeat;
  background-size: 100%;
  transition: transform 0.5s ease;
}

.pv a:hover {
  transform: scale(1.1);
}

.pv img {
  vertical-align: top;
  width: 100%;
  width: 5vw;
  height: 5vw;
  position: absolute;
  left: 50%;
  top: 50%;
}

.pv_bg {
  animation: rotateAnimation2 10s linear infinite;
}

@keyframes rotateAnimation1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}


@keyframes rotateAnimation2 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.pv .video-box {
  position: absolute;
  content: "";
  width: 12.55vw;
  height: 8vw;
  left: 0;
  background: #000000;
  top: 0;
  z-index: 1;
  border: 0.2vw solid #fff;
}

.pv .video-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: -webkit-linear-gradient(right, transparent .1vw, #fff .1vw), -webkit-linear-gradient(transparent .1vw, #000 .1vw);
  background-image: linear-gradient(-90deg, transparent .1vw, #fff .1vw), linear-gradient(transparent .1vw, #000 .1vw);
  background-position: .1vw 0;
  background-size: .21vw .21vw;
  mix-blend-mode: darken;
  will-change: mix-blend-mode;
  z-index: 1
}

.pv .video-box .vedio {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.pv #player {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.top_bg2 {
  /* display: none; */
}


/* H5 按钮 */
.start_btn,.start_pre,.start_pre_off,
.mainte {
  width: 22vw;
  height: 6vw;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 14vw);
  transition: transform 0.5s ease;
  z-index: 6;
}

.start_btn {
  background: url(../img/pc/start.png) no-repeat center center;
  background-size: 100%;
  transition: transform 0.3s ease-out;
}

.start_pre {
  background: url(../img/pc/start_pre.png) no-repeat center center;
  background-size: 100%;
}

.start_pre_off {
  background: url(../img/pc/start_pre_off.png) no-repeat center center;
  background-size: 100%;
}

.mainte {
  background: url(../img/pc/maintenance.png) no-repeat center center;
  background-size: 100%;
}

.start_btn:hover {
  background: url(../img/pc/start_on.png) no-repeat center center;
  background-size: 100%;
  transform: translate(-50%, 14.25vw);
  cursor: pointer;
}
.start_pre:hover {
  background: url(../img/pc/start_pre_on.png) no-repeat center center;
  background-size: 100%;
  transform: translate(-50%, 14.25vw);
  cursor: pointer;
}

.start_btn img,
.start_pre img,
.start_pre_off img,
.mainte img {
  width: 100%;
}

/* APP上线按钮 */

.app_gamestart {
  width: 32.9vw;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  /* right: auto; */
  bottom: 8vh;
  transform: translateX(-50%);
  z-index: 1;
  background: #ffffff69;
  padding: .5208vw;
  display: flex;
  align-items: center;
}
.qr{
  width: 5vw;
  margin-right: 1vw;
}
.app_gamestart_wrapper {
  text-align: right;
  background: url(../img/app_qr.png) no-repeat left top;
  background-size: 100%;
  width: 32vw;
  height: 7.1354vw;
}

.app_gamestart_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 3.4vw 0 0 7.8vw;
}

.app_gamestart_item {
  height: 3.5vw;
  width: 11.5vw;
  transition: transform 0.3s;
  overflow:hidden;
  position:relative;
}
.app_gamestart_item:hover {
    transform:scale(1.05);
}

.app_gamestart_item img{
  width:100%;
}


.app_gamestart_item:nth-of-type(1) {
  margin: 0vw .5208vw 0vw 0;
}

.app_start_pre_lmg {
  width: 100%;
}

.app_gamestart_item:after {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  content: "";
  /* background: linear-gradient(120deg, #ffffff00, #ffffff00, hsl(0deg 0% 100% / 30%), #ffffff00, #ffffff00); */
  background: linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.4) 100%);
  transform: skewX(-25deg);
  transition: all .5s;
  -webkit-animation: sg 1s linear infinite;
  animation: sg 1.5s linear infinite;
  display:none;
}

@-webkit-keyframes sg {
  0% {
    left: -100%
  }

  to {
    left: 100%
  }
}

@keyframes sg {
  0% {
    left: -100%
  }

  to {
    left: 100%
  }
}

/* APP 事前按钮 */
.app_start_pre {
  width: 29.7917vw;
  height: 10.4167vw;
  margin: 0 auto;
  z-index: 100;
  background: url(../img/app_pre_bg.png) no-repeat center center;
  background-size: 100%;
  padding: 0.6vw;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,10vw);
  justify-content: center;
}

.qr {
  width: 5vw;
  margin-right: 1vw;
}

.app_start_pre_wrapper {
  text-align: right;
  width: 20.6146vw;
  height: 7.1354vw;
}

.app_start_pre_qr_img {
  width: 100%;
}

.app_start_pre_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: .5208vw 0 0;
  justify-content: center;
}

.app_start_pre_item1 {
  height: 3.125vw;
  width: 10vw;
  transition: transform 0.3s;
  overflow: hidden;
  position: relative;
}

.app_start_pre_item1:hover {
  transform: scale(1.02);
}


.app_start_pre_item1:nth-of-type(1) {
  margin: 0vw .5208vw 0vw 0;
}

.app_start_pre_lmg {
  width: 100%;
  height: 3.125vw;
}

.app_start_pre_item1:after {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .4) 100%);
  transform: skewX(-25deg);
  transition: all .5s;
  -webkit-animation: sg 1s linear infinite;
  animation: sg 1.5s linear infinite;
}

@-webkit-keyframes sg {
  0% {
    left: -100%
  }

  to {
    left: 100%
  }
}

@keyframes sg {
  0% {
    left: -100%
  }

  to {
    left: 100%
  }
}

.app_start_pre_mailform_pc form {
  display: flex;
  border: .1vw solid #000;
  border-radius: .35vw;
  overflow: hidden;
}

.app_start_pre_mailform {
  background: #fff;
  color: #000;
  text-align: left;
  height: 3.125vw;
  width: 15.25vw;
  border: none;
  outline: none;
  padding: 0 0 0 .5208vw;
  font-size: 0.9vw;
  font-weight: 500;
}

.app_start_pre_mailbtn {
  display: inline-block;
  background: linear-gradient(0deg, #f38787, #8a0000);
  color: #ffffff;
  width: 5.2083vw;
  height: 3.125vw;
  font-size: .8333vw;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  white-space: normal;
  transition: transform 0.3s;
}

.app_start_pre_mailbtn:hover {
  background: linear-gradient(0deg, #8a0000, #f38787);
  border-top: 0.1vw solid #ffffff;
}

/* DMM EXE 上线按钮 */
#dmm_btn {
    position: absolute;
    width: 31.25vw;
    height: 11.35vw;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 9vw);
    background: url(../img/dmm_top_links_bg.png) no-repeat;
    background-size: 100%;
    border-radius: .52vw;
    display: flex;
    align-items: flex-start;
    padding: 1vw;
    z-index: 1;
}

@media screen and (max-height: 700px) {
    #dmm_btn {
        transform: translate(-50%, 0vw) scale(0.8);
        transform-origin: bottom;
        bottom: 1.3vw;
    }
}

#dmm_btn .top_links_l {
    padding-top: 2.19vw;
}

#dmm_btn .start {
    display: flex;
}

#dmm_btn .start a {
    display: block;
    width: auto;
    height: 100%;
}

#dmm_btn .start img {
    /* display: block; */
    /* width: 100%; */
    /* height: 100%; */
}

#dmm_btn .start_sp {
    display: none;
}

#dmm_btn .start_btn1,
#dmm_btn .start_btn2,
#dmm_btn .start_btn_ed,
#dmm_btn .start_btn4 {
    width: auto;
    height: 3.17vw;
    z-index: 100;
    display: flex;
    margin: 0 .42vw 0 0;
    background: none;
    border: 0;
    position: relative;
    overflow: hidden;
}

#dmm_btn .start button:after {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%;
    content: "";
    /* background: linear-gradient(120deg, #ffffff00, #ffffff00, hsl(0deg 0% 100% / 30%), #ffffff00, #ffffff00); */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .4) 100%);
    transform: skewX(-25deg);
    transition: all .5s;
    -webkit-animation: sg 1s linear infinite;
    animation: sg 1.5s linear infinite;
    z-index: 100;
}

#dmm_btn .start_btn img,
#dmm_btn .start_btn2 img,
#dmm_btn .start_btn_ed img {
    width: 100%;
    height: 100%;
}

#dmm_btn .head_lule_box {
    display: flex;
    padding: .94vw 0vw 0 0;
    line-height: 2 !important;
    color: #000000 !important;
    text-align: left !important;
    text-decoration: none !important;
    font-size: .65vw !important;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif !important;
}

#dmm_btn .lule_box_l {
    padding: 0 0.5vw 0 0;
    display: flex;
    flex-direction: column;
}

#dmm_btn .lule_box_r {
    display: flex;
    flex-direction: column;
}

#dmm_btn .head_lule_box a {
    color: #ff0133;
    font-weight: 600;
}

#dmm_btn .head_lule_box span {
    padding: .26vw;
    display: flex;
}

#dmm_btn .head_lule_box span label {
    display: flex;
    line-height: 0;
    align-items: center;
}

#dmm_btn .head_lule_box input {
    vertical-align: middle;
    accent-color: #fe1644;
}

#dmm_btn .flout {
    bottom: 7vw;
}

/* DMM 事前游戏按钮 */
#dmm_pre_btn:before {
  /* content: ''; */
  width: 23.63vw;
  height: 4vw;
  background: url(../img/title_pre.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(12vw, 5.5vw);
  z-index: 1000;
  animation: none;
}
#dmm_pre_btn .start_sp {
  display: none;
}

#dmm_pre_btn .start_pc {
  width: 29.7917vw;
  height: 10.4167vw;
  background: url(../img/app_pre_bg.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 33vw;
  display: flex;
  flex-direction: column;
  padding: 1.5vw;
  justify-content: center;
  z-index: 666;
}

#dmm_pre_btn .left_area {
  width: 100%;
}

#dmm_pre_btn .pc_title {
  width: 70%;
  display: block;
  position: absolute;
  top: -1.6667vw;
  left: 50%;
  transform: translateX(-50%);
}

#dmm_pre_btn .pc_btn {
  display: flex;
  align-items: flex-start;
  gap: 1vw;
}

#dmm_pre_btn .pc_btn button {
  background: none;
  border: 0;
  outline: none;
  cursor: pointer;
  overflow:hidden;
  transition: transform .2s linear;
}

#dmm_pre_btn .pc_btn button img{
  width:100%;
}

#dmm_pre_btn .pc_btn button:hover:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .6) 100%);
  transform: skewX(-25deg);
  content: ""
}

#dmm_pre_btn .pc_btn button:hover {
  transform: scale(0.97);
}

#dmm_pre_btn .pc_btn button:hover:before {
  animation: appHoverShine .9s ease 1 both
}

@keyframes appHoverShine {
  0% {
    transform: skewX(-25deg) translateX(0)
  }

  100% {
    transform: skewX(-25deg) translateX(400%)
  }
}

#dmm_pre_btn.pc_btn button .start_btn1 {
  width: 11.5833vw;
  height: 3.625vw;
}

#dmm_pre_btn.pc_btn button .start_btn2 {
  width: 11.3021vw;
  height: 3.625vw;
}

#dmm_pre_btn.pc_btn button img {
  width: 100%;
}

#dmm_pre_btn #pre_registration_form {
  display: flex;
  flex-direction: column;
}

#dmm_pre_btn #pre_registration_form span {
  font-size: 0.65vw;
}

#dmm_pre_btn #pre_registration_form span input {
  vertical-align: middle;
  margin-right: .2vw;
  width: .7292vw;
  height: .7292vw;
  margin-top: -0.2vw;
}

#dmm_pre_btn .head_lule_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: .65vw !important;
}

#dmm_pre_btn .head_lule_box_left,
#dmm_pre_btn .head_lule_box_right {
  width: 50%;
  padding: .2083vw .625vw 0vw 0.85vw;
  line-height: 1 !important;
  color: #000000 !important;
  text-align: left !important;
  text-decoration: none !important;
  display: flex;
  flex-wrap: wrap;
}

#dmm_pre_btn .head_lule_box_right {
  padding: .4vw .625vw 0vw 0.7vw;
}

#dmm_pre_btn .head_lule_box_left {
  margin-top: -1.2vw;
}

#dmm_pre_btn .head_lule_box_left span,
#dmm_pre_btn .head_lule_box_right span {
  line-height: 0;
  display: block;
  height: 1vw;
}
#dmm_pre_btn .head_lule_box .specification {
  margin: -0.25vw auto 0;
}

#dmm_pre_btn .head_lule_box .title_policy {
  margin-right: .4167vw;
}

#dmm_pre_btn .head_lule_box .title_policy a {
  color: #ff0000;
}

@media screen and (max-width: 768px) {
  #dmm_pre_btn .head_lule_box_left {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: .4167vw .5208vw;
    line-height: 2 !important;
    color: #000000 !important;
    font-weight: 600;
    text-align: center !important;
    text-decoration: none !important;
    font-size: 2.4vw !important;
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif !important;
  }
}

#dmm_pre_btn .head_lule_box_left span {
  display: flex;
  align-items: center;
}

#dmm_pre_btn .head_lule_box_left input,
#dmm_pre_btn .head_lule_box_right input {
  vertical-align: middle;
  margin-right: .2vw;
  width: .7292vw;
  height: .7292vw;
  margin-top: -0.2vw;
}

.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.2);
}

.hide2 {
  display: none;
}

.hide3 {
  opacity: 0;
}


/* pick banner */
#pickup {
  width: 100%;
  height: auto !important;
  z-index: 0;
  position: relative;
  scroll-margin-top: 0;
  text-align: center;
  margin: 0 auto;
}

#pickup h1 {
  width: 25.83vw;
  height: auto;
  z-index: 100;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 4vw;
  display: none;
}

#pickup h1 img {
  width: 100%;
}

#pickup ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  width: 100%;
}

#pickup img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 外层滑动容器 */
.pickup-slider-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 52.08vw; */
  overflow: hidden;
  margin: 0 auto;
}

/* 列表核心样式 */
.pickup-list {
  display: flex;
  gap: .83vw;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.pickup-list li {
  box-sizing: border-box;
  margin: 0;
  flex-shrink: 0;
  max-width: 24vw;
}

/* 1 个项目：全屏 */
.pickup-list:has(li:nth-child(1):last-child) li {
  width: 100%;
  max-width: 100%;
}

/* 2、3、4 个：宽度自适应 + 横向居中 + 不换行 + 不滚动 */
.pickup-list:has(li:nth-child(2)):not(:has(li:nth-child(4))) li {
  width: auto;
  max-width: 100%;
  flex: 0 1 auto;
}

/* 5 个及以上：开启滑动模式 */
.pickup-list:has(li:nth-child(4)) {
  justify-content: flex-start;
  width: max-content;
}

/* 左右箭头 */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.08vw;
  height: 2.08vw;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: .94vw;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: none;
}

.prev-arrow {
  left: 0.52vw;
  background: url(../img/arrow_l.png) no-repeat center center/cover;
}

.next-arrow {
  right: .52vw;
  background: url(../img/arrow_r.png) no-repeat center center/cover;
}

/* ≥5个才显示箭头 */
.pickup-slider-wrapper:has(.pickup-list li:nth-child(5)) .slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*=============================== news =============================  */

#news_area {
  width: 100%;
  height: auto !important;
  background-size: cover;
  z-index: 0;
  position: relative;
  padding: 4.5vw 0;
}

#news_area h1 {
  width: 25.83vw;
  margin: 0vw auto 1.67vw;
  z-index: 100;
  position: sticky;
  display: none;
}

#news_area h1 img {
  width: 100%;
}

#news_area #banner {
  background: transparent;
  width: 100%;
  max-width: 52.08vw;
  height: auto;
  margin: 0vw auto;
  overflow: hidden;
  z-index: 2;
  position: sticky;
}

#news_area #banner .swiper-slide {
  width: 52.08vw;
  height: 21.35vw;
}

#news_area #banner a {
  width: 52.08vw;
  height: 21.35vw;
  display: block;
  overflow: hidden;
}

#news_area #banner img {
  display: block;
  width: 100%;
}

#news_area #banner .banner-pagination {
  width: 100%;
  text-align: center;
  height: 1.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin: 0.75vw 0;
}

#news_area #banner .banner-pagination .swiper-pagination-clickable,
#news_area #banner .banner-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #ffffff;
  width: 1vw;
  height: 1vw;
  box-shadow: none;
  border: 0.2vw solid #000;
  border-radius: 0;
  transform: rotate(45deg);
  margin: 0.35vw;
}

#news_area #banner .banner-pagination .swiper-pagination-bullet-active {
  background: #a90016;
}
.news_area1 .news_module{
  width:100%;
  max-width:66.67vw;
  height: 100%;
  margin:0 auto;
  display:flex;
}

.news_area1 .component {
  width: auto;
  display: flex;
  z-index: 100;
  flex-direction: column;
  max-width: 13.02vw;
  gap: .52vw;
  margin-right: 1.04vw;
  flex-wrap: nowrap;
}

.news_area1 .component li a {
  width: 13.02vw;
  height: 5.94vw;
  /* margin-bottom: 0.5vw; */
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
  line-height: 1;
}

.news_area1 .component li a:hover {
  transform: scale(1.03);
}

.news_area1 .component li a:hover:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .6) 100%);
  transform: skewX(-25deg);
  content: ""
}

.news_area1 .component li a:hover:before {
  animation: none;
}

.news_area1 .component li a:hover:before {
  animation: appHoverShine .6s ease 1 both
}

.news_area1 .component li a img {
  width: 100%;
}

.news_area1 #news_wrapper {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 66.67vw;
  background-size: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  z-index: 2;
  /* position: absolute; */
  /* top: 50%; */
  left: 50%;
  /* transform: translate(-20vw, -4vw); */
}

#news_area #news {
  position: relative;
  border-radius: 0;
  width: 100%;
  height: 100%;
  max-height: 25.36vw;
  margin: 0 auto;
  overflow: hidden;
}

#news_area #news .news_body {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 25.36vw;
  max-height: 25.36vw;
  background: #fff;
  padding: 1.04vw;
}

#news_area #news .news_body .notice_tabs_list {
  display: flex;
  align-items: flex-start;
  /* height: 2.55vw; */
  border-radius: 0;
}

#news_area #news .notice_tabs_list ul {
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: .83vw;
  cursor: pointer;
}

#news_area #news .notice_tabs_list ul li {
  display: flex;
  background: url(../img/tab.jpg) no-repeat center center;
  background-size: 100% 100%;
  color: #ffffff;
  height: 100%;
  max-height: 2.24vw;
  width: 100%;
  font-size: 1vw;
  text-align: center;
  text-shadow: 0vw .05vw .16vw #000;
  justify-content: center;
  align-items: center;
  align-content: center;
  line-height: 3vw;
  vertical-align: middle;
  margin: .52vw;
  padding: 0 0 0.25vw 0;
}

#news_area #news .notice_tabs_list ul li.active {
  background: url(../img/tab_on.jpg) no-repeat center center;
  background-size: 100% 100%;
  color: #ffffff;
  text-shadow: 0 0.1vw 0.1vw #000000;
}

#news_area #news .notice_tabs_list ul li:hover {
  background: url(../img/tab_on.jpg) no-repeat center center;
  background-size: 100% 100%;
  color: #ffffff;
  text-shadow: 0 .1vw .1vw #000000;
}

#news_area #news .notice_tabs_list ul li:nth-of-type(5) {
  margin-right: 0;
}

#news_area #news .tabs {
  flex: 1;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  height: 100%;
}

#news_area #news .tabs>ul>li {
  position: relative;
  display: none;
  overflow: hidden;
  width: 100%;
  padding: 0 0;
  height: 20vw;
}

#news_area #news .tabs>ul>li ul {
  margin-bottom: 1.04vw;
  overflow: hidden;
  height: 16.5vw;
}

#news_area #news .tabs>ul>li ul li {
  display: flex !important;
  flex-direction: row;
  border-bottom: .05vw solid #182b42;
  align-items: center;
  padding: .73vw;
  color: #333;
  font-family: Avenir, Helvetica, Arial, sans-serif;
}

.icon {
  display: inline-block;
  background-size: cover;
  width: 5.21vw;
  height: 1.25vw;
  margin: 0 .42vw 0 0;
  aspect-ratio: 4/1;
  transform-origin: 0 50%;
}

.ic_type22 {
  background: #fff url(../img/label_event.png) no-repeat center center/cover;
}

.ic_type21 {
  background: #fff url(../img/label_notice.png) no-repeat center center/cover;
}

.ic_type23 {
  background: #fff url(../img/label_update.png) no-repeat center center/cover;
}

.ic_type24 {
  background: #fff url(../img/label_maintenance.png) no-repeat center center/cover;
}

.ic_type26,
.ic_type218 {
  background: #fff url(../img/label_tips.png) no-repeat center center/cover;
}

#news_area #news .tabs>ul>li ul li:nth-child(n+7) {
  display: none;
}

#news_area #news .tabs>ul>li ul li .t1 {
  width: 80%;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .94vw;
}

#news_area #news .tabs>ul>li ul li .t3 {
  color: #333;
  font-size: .83vw;
  white-space: nowrap;
  font-weight: normal;
  font-weight: 600;
}

#news_area #news .tabs>ul>li ul li a {
  color: #333;
  text-decoration: none;
  width: 14.06vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

#news_area #news .tabs>ul>li ul li a:hover {
  color: #a90016;
  font-weight: bold;
}

#news_area #news .morebtn {
  width: 100%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#news_area #news .morebtn a {
  display: inline-block;
  padding: .3vw 1vw;
  background-color: #5d3e1b;
  color: #fff;
  border-radius: 0;
  font-size: .75vw;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#news_area #news .morebtn a:hover {
  background-color: #a90016;
  color: #ffffff;
}

#news_area .activity {
  width: 60vw;
  width: 100%;
  background: #00000075;
  /* height: 7vw; */
  display: flex;
  margin: 0 auto;
  justify-content: center;
  padding: 0.5vw 0;
  margin-top: 27vw;
}

#news_area .activity li {
  margin: 0 0.5vw;
}
/* Yahoo Mobage 新闻区域 */
.news_area2 .news_module{
  width:100%;
  max-width: 52.08vw;
  height: 100%;
  margin:0 auto;
  display:flex;
  flex-direction: column;
}

.news_area2 .container{
  width:100%;
  max-width:66.52vw;
  display:flex;
  margin:0 auto;
  justify-content: center;
}

.news_area2 .component {
  width: auto;
  display: flex;
  z-index: 100;
  flex-direction: column;
  max-width: 13.02vw;
  gap: .52vw;
  margin-right: 1.04vw;
  flex-wrap: nowrap;
}

.news_area2 .component li a {
  width: 13.02vw;
  height: 5.94vw;
  /* margin-bottom: 0.5vw; */
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
  line-height: 1;
}

.news_area2 .component li a:hover {
  transform: scale(1.03);
}

.news_area2 .component li a:hover:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .6) 100%);
  transform: skewX(-25deg);
  content: ""
}

.news_area2 .component li a:hover:before {
  animation: none;
}

.news_area2 .component li a:hover:before {
  animation: appHoverShine .6s ease 1 both
}

.news_area2 .component li a img {
  width: 100%;
}

.news_area2 #news_wrapper {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 52.08vw;
  background-size: 100%;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  align-content: center;
  z-index: 2;
  /* position: absolute; */
  /* top: 50%; */
  left: 50%;
  /* transform: translate(-20vw, -4vw); */
}

#rewards {
  width: 100%;
  height: 50vw;
  z-index: 0;
  position: relative;
  padding: 3vw 0 3vw;
  scroll-margin-top: 4vw;
  /* background: url(../img/pc/rewards/rewards_bg.jpg) no-repeat center center; */
  /* background-size: cover; */
}

#rewards:before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/pc/rewards/hero.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -26;
}

#rewards h1 {
 width: 16vw;
  height: auto;
  margin: 0 auto;
  z-index: 100;
  position: sticky;
  margin: 0vw auto .9375vw;
  z-index: 100;
  position: relative;
}

#rewards h1:after {
  /* content: ''; */
  width: 35.78vw;
  height: 2.24vw;
  background: url(../img/rewards_text.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 5vw);
  z-index: -26;
}

#rewards h1 img {
  width: 100%;
}

#rewards .rewards_wrapper {
  width: 42vw;
  height: auto;
  margin: 11vw auto 0vw;
  z-index: 1;
  position: sticky;
  transform: translateX(-3vw);
}

#rewards .rewards_wrapper p {
  font-size: 0.8vw;
  color: #ffffff;
  text-align: right;
  margin-top: 1vw;
  font-weight: 600;
  display: none;
}

#rewards .rewards_wrapper ul {
  width: 100%;
  display: flex;
}

#rewards .rewards_wrapper ul li {
  width: 9.48vw;
  height: 33.18vw;
  margin: 0 .35vw;
}

#rewards .rewards_wrapper ul li:hover {
  transform: scale(1.05);
  transition: transform 0.5s ease;
  cursor: pointer;
}

#rewards .rewards_wrapper ul li:not(:hover) {
  transform: scale(1);
  transition: transform 0.5s ease;
  cursor: pointer;
}

#rewards .rewards_wrapper img {
  width: 100%;
}

/* 赛季 */
#season {
  width: 100%;
  height: 100%;
  min-height: 47.4vw;
  z-index: 0;
  position: relative;
  scroll-margin-top: 0;
  text-align: center;
  padding: 4.5vw 0;
  overflow: hidden;
}

#season h1 {
  width: 16vw;
  height: auto;
  z-index: 100;
  position: sticky;
  margin: 0 auto;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  /* top: 4vw; */
}

#season h1 img {
  width: 100%;
}

#season .season_swiper {
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
}

#season .season_swiper .swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#season .season_swiper .swiper-slide a{
  width: 100%;
  height: 100%;
}

#season .season_swiper .swiper-slide img {
  /* display: block; */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#season .season_small_swiper {
  box-sizing: border-box;
  padding: .52vw 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4.5vw;
  display: flex;
  gap: .52vw;
  padding: 1vw;
  background-color: rgb(0 0 0 / 67%);
  z-index: 1;
}

.season_small_swiper .swiper-slide {
  width: 20% !important;
  position: relative;
  overflow: hidden;
  margin: 0 0.5vw;
  border: 0.25vw solid #adadad;
  line-height: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  flex: 1;
}

.season_small_swiper .swiper-slide img {
  width: 100%;
}

.season_small_swiper .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #00000073;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.season_small_swiper .swiper-slide-thumb-active:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.season_small_swiper .swiper-slide:hover {
  transform: scale(1.05);
}

.season_small_swiper .swiper-slide-thumb-active {
  box-shadow: 0 0 .78vw rgb(0 0 0);
  border: 0.25vw solid #f03;
}

/* ranking */
#ranking {
  width: 100%;
  height: 100%;
  min-height: 47.4vw;
  z-index: 0;
  position: relative;
  scroll-margin-top: 0;
  text-align: center;
  padding: 4.5vw 0;
  background: url(../img/pc/ranking/ranking_bg.jpg) no-repeat center center;
  background-size: cover;
}

#ranking h1 {
  width: 16vw;
  height: auto;
  margin: 0vw auto 0vw;
  z-index: 100;
  position: sticky;
}

#ranking h1 img {
  width: 100%;
}

/* 切换按钮区域 */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: .68vw;
  margin-bottom: .78vw;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 66.7vw;
  margin: 0 auto .5vw;
}

.tab-btn {
  color: #fff;
  width: 12.76vw;
  height: 3.13vw;
  font-size: 1.25vw;
  cursor: pointer;
  transition: all 0.3s ease;
  background: none;
  background: url(../img/pc/ranking/ranking_tab.png) no-repeat center center;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: .05vw .1vw .1vw #000;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}

.tab-btn:hover {
  transform: scale(1.05);
}

.tab-btn:hover:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .6) 100%);
  transform: skewX(-25deg);
  content: ""
}

.tab-btn:hover:before {
  animation: none;
}

.tab-btn:hover:before {
  animation: appHoverShine .6s ease 1 both
}

.tab-btn.active {
  color: #ffd700;
  background: url(../img/pc/ranking/ranking_tab_on.png) no-repeat center center;
  background-size: 100%;
}


/* 服务器选择 - 核心修改样式 */
.server-select {
  color: #fff;
  font-size: .94vw;
  margin-bottom: .52vw;
  display: flex;
  align-items: center;
  gap: .52vw;
  width: 100%;
  max-width: 66.7vw;
  margin: 0 auto .5vw;
}

#serverSelect {
  background-color: #333;
  color: #fff;
  border: .05vw solid #c8102e;
  padding: .36vw .57vw;
  border-radius: .21vw;
  /* 隐藏浏览器默认下拉箭头，统一视觉 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23fff' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .42vw center;
  padding-right: 1.3vw;
  min-width: 7.81vw;
  outline: none;
  font-size: 1vw;
}

/* 禁用的默认提示选项样式 */
#serverSelect option[disabled] {
  color: #999;
}

/* 表格容器 */
.table-container {
  overflow: hidden;
}

.ranking-table {
  width: 100%;
  border-collapse: collapse;
  display: none;
}

.ranking-table.active {
  display: table;
  width: 100%;
  max-width: 66.7vw;
  margin: 0 auto;
  animation: fadeIn 0.5s ease-in-out;
  background: #000000ad;
}

/* 表格样式 */
.ranking-table th,
.ranking-table td {
  border: .05vw solid #c8102e;
  /* padding: .52vw; */
  height: 2.5vw;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 .52vw #000;
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
}

.ranking-table .ranking_num {
  width: 1.5vw;
  height: 1.5vw;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.ranking-table .ranking_num.first {
  width: 2vw;
  height: 2vw;
}

.ranking-table .ranking_num.second {
  width: 1.8vw;
  height: 1.8vw;
}

.ranking-table .ranking_num.third {
  width: 1.6vw;
  height: 1.6vw;
}

.ranking-table .power {
  width: 1.5vw;
  height: 1.5vw;
  vertical-align: middle;
  margin-right: 0.5vw;
  line-height: 1;
}

.ranking-table th {
  background-color: #8b0000;
  font-size: 1vw;
  font-weight: bold;
}

.ranking-table tr:nth-child(even) {
  background-color: rgb(163 163 163 / 20%);
}

.ranking-table tr:hover {
  background-color: rgba(200, 16, 46, 0.3);
}

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 角色介绍版式1 */
.chara1 {
  width: 100%;
  height: 100%;
  min-height: 47.4vw;
  z-index: 0;
  position: relative;
  scroll-margin-top: 0;
  background: url(../img/pc/chara/chara_bg.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
  padding: 4.5vw 0;
}

.chara1 h1 {
  width: 16vw;
  height: auto;
  margin: 0 auto;
  z-index: 100;
  position: sticky;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  /* top: 4vw; */
}

.chara1 h1 img {
  width: 100%;
}

.chara1 .chara_img {
  margin: 0vw auto 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.chara1 .hero_info {
  position: absolute;
  z-index: 11;
  right: 13%;
  top: 50%;
  width: 40.39vw;
  height: 25.6563vw;
  transform: translateY(-50%);
  display: none;
}

.chara1 .hero_img {
  position: sticky;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.chara1 .swiper-wrapper,
.chara1 .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.chara1 .swiper-slide {
  position: relative;
  line-height: 0;
  width: 100%;
  height: 100%;
  /* height: calc(var(--vh, 1vh) * 100); */
}

.chara1 .chara_pagination {
  width: 28vw;
  display: flex;
  justify-content: space-around;
  z-index: 10;
  position: absolute;
  left: 50%;
  transform: translate(-50%, .8333vw);
  bottom: 6vw;
  align-items: center;
}

.chara1 .chara_pagination .swiper-pagination-bullet-active {
  filter: grayscale(0%);
  overflow: hidden;
  border: 0.25vw solid #f03;
}

.chara1 .chara_pagination .swiper-pagination-bullet-active:after {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  content: "";
  background: linear-gradient(120deg, #ffffff00, #ffffff00, hsl(0deg 0% 100% / 30%), #ffffff00, #ffffff00);
  transition: all .5s;
  -webkit-animation: sg 1s linear infinite;
  animation: sg 1.5s linear infinite;
}

@-webkit-keyframes sg {
  0% {
    left: -100%
  }

  to {
    left: 100%
  }
}

@keyframes sg {
  0% {
    left: -100%
  }

  to {
    left: 100%
  }
}

.chara1 .chara_pagination span {
  width: 5.21vw;
  height: 5.21vw;
  margin: 0 !important;
  opacity: 1;
  font-size: 0;
  background-size: 100% !important;
  filter: grayscale(100%);
  border-radius: 0;
  transition: transform .1s linear, opacity .1s linear;
  overflow: hidden;
}

.chara1 .chara_pagination span:hover {
  filter: grayscale(0);
  transform: scale(0.95);
}

.chara1 .chara_pagination span:hover:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .4) 100%);
  transform: skewX(-25deg);
  content: ""
}

.chara1 .chara_pagination .swiper-pagination-bullet-active:hover:before {
  animation: none;
}

.chara1 .chara_pagination span:hover:before {
  animation: appHoverShine .6s ease 1 both
}

@keyframes appHoverShine {
  0% {
    transform: skewX(-25deg) translateX(0)
  }

  100% {
    transform: skewX(-25deg) translateX(400%)
  }
}

.chara1 .chara_pagination span:nth-child(1) {
  background: url(../img/pc/chara/c1.png) no-repeat center;
}

.chara1 .chara_pagination span:nth-child(2) {
  background: url(../img/pc/chara/c2.png) no-repeat center;
}

.chara1 .chara_pagination span:nth-child(3) {
  background: url(../img/pc/chara/c3.png) no-repeat center;
}

.chara1 .chara_pagination span:nth-child(4) {
  background: url(../img/pc/chara/c4.png) no-repeat center;
}

.chara1 .chara_pagination span:nth-child(5) {
  background: url(../img/pc/chara/c5.png) no-repeat center;
}

.chara1 .prev,
.chara1 .next {
  position: absolute;
  width: .7vw !important;
  height: .6417vw !important;
  top: 50%;
}

.chara1 .prev {
  background: url(../img/arrow_l.png) no-repeat !important;
  background-size: 100% !important;
  left: 50% !important;
  transform: translateX(-5.6667vw);
}

.chara1 .next {
  background: url(../img/arrow_r.png) no-repeat !important;
  background-size: cover !important;
  left: auto;
  right: 50%;
  transform: translateX(5.6667vw);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '';
}

/* 角色介绍模板2 */

.chara2 {
  width: 100%;
  height: auto;
  min-height: 47.4vw;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  background: #ebeff4 url(../img/pc/chara/chara_bg.jpg) no-repeat center center;
  background-size: cover;
}


.chara2 .team-slider {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: row-reverse;
  line-height: 0;
}

.chara2 .team-slider .team_wrap {
  width: 80%;
  max-width: 79.58vw;
}

.chara2 .team-slider .team_wrap .team-slide {
  width: 80%;
  max-width: 79.58vw;
  height: 47.4vw;
  position: relative;
  opacity: 0;
  /* background: #ebeff4 url(../img/pc/repeat_bg.png) center right; */
  /* background-size: 125%; */
}

.chara2 .team-slider .team_wrap .team-slide.swiper-slide-active {
  z-index: 1;
}

.chara2 .team-slider .team_page {
  width: 20%;
  /* height: 47.4vw; */
  display: flex;
  position: static;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .52vw;
}

.chara2 .team-slider .team_page span {
  width: 16.35vw !important;
  height: 6.77vw !important;
  border-radius: 0.5vw;
  background: none;
  opacity: 1;
  /* margin: 0.5vw 0; */
  position: relative;
  overflow: hidden;
  transition: transform .2s linear;
}

.chara2 .team-slider .team_page span:nth-child(1) {
  background: url(../img/pc/chara2/team1.png);
  background-size: 100%;
}

.chara2 .team-slider .team_page span:nth-child(2) {
  background: url(../img/pc/chara2/team2.png);
  background-size: 100%;
}

.chara2 .team-slider .team_page span:nth-child(3) {
  background: url(../img/pc/chara2/team3.png);
  background-size: 100%;
}

.chara2 .team-slider .team_page span:nth-child(4) {
  background: url(../img/pc/chara2/team4.png);
  background-size: 100%;
}

.chara2 .team-slider .team_page span:hover:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .6) 100%);
  transform: skewX(-25deg);
  content: ""
}

.chara2 .team-slider .team_page span:hover {
  transform: scale(0.95);
}

.chara2 .team-slider .team_page span:hover:before {
  animation: none;
}

.chara2 .team-slider .team_page span:hover:before {
  animation: appHoverShine .6s ease 1 both
}

@keyframes appHoverShine {
  0% {
    transform: skewX(-25deg) translateX(0)
  }

  100% {
    transform: skewX(-25deg) translateX(400%)
  }
}

.chara2 .team-slider .team_page span:nth-child(1):hover {
  background-image: url(../img/pc/chara2/team1_on.png);
}

.chara2 .team-slider .team_page span:nth-child(2):hover {
  background-image: url(../img/pc/chara2/team2_on.png);
}

.chara2 .team-slider .team_page span:nth-child(3):hover {
  background-image: url(../img/pc/chara2/team3_on.png);
}

.chara2 .team-slider .team_page span:nth-child(4):hover {
  background-image: url(../img/pc/chara2/team4_on.png);
}

.chara2 .team-slider .team_page span:nth-child(1).swiper-pagination-bullet-active {
  background-image: url(../img/pc/chara2/team1_on.png);
}

.chara2 .team-slider .team_page span:nth-child(2).swiper-pagination-bullet-active {
  background-image: url(../img/pc/chara2/team2_on.png);
}

.chara2 .team-slider .team_page span:nth-child(3).swiper-pagination-bullet-active {
  background-image: url(../img/pc/chara2/team3_on.png);
}

.chara2 .team-slider .team_page span:nth-child(4).swiper-pagination-bullet-active {
  background-image: url(../img/pc/chara2/team4_on.png);
}

.chara2 .team1_info .fire-pagination {
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(4vw);
  bottom: 2vw;
  transition: transform 0.5s ease;
}

.chara2 .team1_info .fire-slider .move_left {
  left: 0;
  transform: translateX(1vw);
}

.chara2 .team1_info .fire-pagination span {
  width: 6.35vw !important;
  height: 6.35vw !important;
  border-radius: 0.75vw;
  border: 0.3vw solid #79347b;
  opacity: 1;
  background: #fff;
}

.chara2 .team1_info .fire-pagination span:hover {
  border: 0.3vw solid #bb00bf;
}

.chara2 .team1_info .fire-pagination span.swiper-pagination-bullet-active {
  border: 0.3vw solid #bb00bf;
}

.chara2 .fire-pagination span:nth-child(1) {
  background: url(../img/pc/chara/icon_hero_1.jpg) center center no-repeat #fff;
  background-size: 100%;
}

.chara2 .fire-pagination span:nth-child(2) {
  background: url(../img/pc/chara/icon_hero_2.jpg) center center no-repeat #fff;
  background-size: 100%;
}

.chara2 .fire-pagination span:nth-child(3) {
  background: url(../img/pc/chara/icon_hero_3.jpg) center center no-repeat #fff;
  background-size: 100%;
}

.chara2 .fire-pagination span:nth-child(4) {
  background: url(../img/pc/chara/icon_hero_4.jpg) center center no-repeat #fff;
  background-size: 100%;
}

.chara2 .fire-pagination span:nth-child(5) {
  background: url(../img/pc/chara/icon_hero_5.jpg) center center no-repeat #fff;
  background-size: 100%;
}


.is-hidden {
  /* opacity: 0; */
  display: none;
  height: 0;
  margin: 0;
}

.is-visible {
  /* opacity: 1; */
  display: block;
  z-index: 1;
}

.chara2 .team_bg img {
  width: 100%;
  height: auto;
}

.hero_info {
  width: 100%;
  max-width: 79.58vw;
  height: 47.4vw;
  position: relative;
}

.hero_info::before {
  position: absolute;
  right: 3vw;
  content: "";
  width: 19.79vw;
  height: 4.06vw;
  background: url(../img/chara_title.png) no-repeat;
  background-size: 100%;
  top: 5vw;
  z-index: 0;
  display: none;
}

.hero_list1::after {
  position: absolute;
  right: 1vw;
  content: "";
  width: 25.42vw;
  height: 24.95vw;
  background: url(../img/pc/chara/team1_logo.png) no-repeat;
  background-size: 100%;
  top: 11vw;
  z-index: -1;
  opacity: 0.3;
}

.hero_list2::after {
  position: absolute;
  right: 1vw;
  content: "";
  width: 25.42vw;
  height: 24.95vw;
  background: url(../img/pc/chara/team2_logo.png) no-repeat;
  background-size: 100%;
  top: 11vw;
  z-index: -1;
  opacity: 0.3;
}

.hero_list3::after {
  position: absolute;
  right: 1vw;
  content: "";
  width: 25.42vw;
  height: 24.95vw;
  background: url(../img/pc/chara/team3_logo.png) no-repeat;
  background-size: 100%;
  top: 11vw;
  z-index: -1;
  opacity: 0.3;
}

.hero_list4::after {
  position: absolute;
  right: 1vw;
  content: "";
  width: 25.42vw;
  height: 24.95vw;
  background: url(../img/pc/chara/team4_logo.png) no-repeat;
  background-size: 100%;
  top: 11vw;
  z-index: -1;
  opacity: 0.3;
}

.chara_area {
  position: relative;
  width: 79.58vw;
  height: 47.4vw;
  color: #1e1e1e;
  z-index: 9;
}

.chara_area .pic_chara {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  right: 0;
  z-index: -1;
}

.chara_area .pic_chara img {
  width: 100%;
}

.thumbnails_btn {
  display: flex;
  margin: .83vw auto 0;
  padding: 0;
  justify-content: center;
  position: absolute;
  bottom: 6vw;
  left: 5vw;
  transform: translateX(0vw);
  transition: transform .05s ease-in-out;
}

.move {
  right: unset;
  left: 5vw;
}

.thumbnails_btn .thumbnail {
  width: 5.21vw;
  height: 5.21vw;
  overflow: hidden;
  list-style: none;
  margin: 0 0.3vw;
  cursor: pointer;
  border: 0.3vw solid #79347b;
  border-radius: 0.5vw;
  transition: all 0.3s;
  position: relative;
}

.thumbnails_btn .thumbnail:hover {
  border: 0.3vw solid #bb00bf;
  transform: scale(.95)
}

.thumbnails_btn .thumbnail:hover:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .6) 100%);
  transform: skewX(-25deg);
  content: ""
}

.thumbnails_btn .thumbnail:hover:before {
  animation: none;
}

.thumbnails_btn .thumbnail:hover:before {
  animation: appHoverShine .6s ease 1 both
}

@keyframes appHoverShine {
  0% {
    transform: skewX(-25deg) translateX(0)
  }

  100% {
    transform: skewX(-25deg) translateX(400%)
  }
}

.thumbnails_btn .is-active {
  border: 0.3vw solid #bb00bf;
}

.thumbnails_btn .thumbnail img {
  width: 100%;
  height: auto;
}

/* 横版游戏特征 */
.feature1 {
  width: 100%;
  height: 100%;
  min-height: 47.4vw;
  z-index: 0;
  position: relative;
  padding: 4.5vw 0;
  scroll-margin-top: 0vw;
  background-size: cover;
}

.feature1 h1 {
  width: 16vw;
  height: auto;
  margin: 0vw auto;
  z-index: 100;
  position: sticky;
}

.feature1 h1 img {
  width: 100%;
}

.feature1 .feature1-slider {
  position: relative;
  z-index: 2;
  max-width: 100vw;
  margin: 2vw auto 0 auto;
  padding: 0 0 4vw 0 !important;
  filter: drop-shadow(.16vw .16vw .16vw rgba(0, 0, 0, 0.3));
}

.feature1 .feature1-slider .swiper-slide {
  width: 51.04vw;
  max-width: 51.04vw;
  margin: 0 auto;
  overflow: hidden;
  transition: 0.7s;
  transform: scale(0.8);
  border: 0.3vw solid #fff;
  line-height: 0;
}

.feature1 .feature1-slider .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #00000073;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.feature1 .feature1-slider .swiper-slide img {
  width: 100%;
  max-width: 51.04vw;
}

.feature1 .feature1-slider .swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.feature1 .feature1-slider .swiper-slide-active:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #00000000;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.feature1 .feature1_pagination {
  width: 100%;
  text-align: center;
  line-height: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  bottom: 1vw !important;
  gap: .52vw;
}

.feature1 .feature1_pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #ffffff;
  width: 1vw;
  height: 1vw;
  box-shadow: none;
  border: 0.2vw solid #000;
  border-radius: 0;
  transform: rotate(45deg);
}

.feature1 .feature1_pagination .swiper-pagination-bullet-active {
  background: #a90016;
}

.feature1 .feature1_pagination span {
  margin: 0 .42vw;
}

.feature1 .feature1_pagination span:focus {
  outline: -webkit-focus-ring-color auto 0vw;
}

.feature1 .prev,
.feature1 .next {
  position: absolute;
  width: 3vw !important;
  height: 3vw !important;
  top: 42%;
  z-index: 100;
  cursor: pointer;
}

.feature1 .prev {
  background: url(../img/arrow_l.png) no-repeat !important;
  background-size: 100% !important;
  left: 50% !important;
  transform: translateX(-29vw);
}

.feature1 .next {
  background: url(../img/arrow_r.png) no-repeat !important;
  background-size: cover !important;
  left: auto;
  right: 50%;
  transform: translateX(29vw);
}

/* 竖版游戏特征 */
.feature2 {
  width: 100%;
  /* height: auto; */
  /* min-height: 47.4vw; */
  z-index: 0;
  position: relative;
  padding: 4.5vw 0;
  scroll-margin-top: 0vw;
  background: #ffffff7a;
  background-size: cover;
}

.feature2 h1 {
  width: 16vw;
  height: auto;
  margin: 0vw auto;
  z-index: 100;
  position: sticky;
}

.feature2 h1 img {
  width: 100%;
}

.feature2 .feature2-slider {
  height: auto;
  width: 100%;
  max-width: 52.08vw;
}

.feature2 .feature2-slider .swiper-slide {
   padding: 1vw 0;
   background-position: center;
   background-size: cover;
   width: 100%;
   width: 16.71vw;
   height: max-content;
}

.feature2 .feature2-slider .swiper-slide:before {
  content: "";
  display: block;
  width: 100%;
  /* height: auto; */
  /* background: #00000073; */
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.feature2 .feature2-slider .swiper-slide img {
  width: 100%;
  line-height: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 78vh;
}

.feature2 .feature2-slider .swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(0.85);
}

.feature2 .feature2-slider .swiper-slide-active:before {
  content: "";
  display: block;
  width: 100%;
  /* height: auto; */
  background: #00000000;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.feature2 .feature2_pagination {
  width: 100%;
  text-align: center;
  line-height: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* position: absolute; */
  /* bottom: 0vw; */
}

.feature2 .feature2_pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #ffffff;
  width: 1vw;
  height: 1vw;
  box-shadow: none;
  border: 0.2vw solid #000;
  border-radius: 0;
  transform: rotate(45deg);
}

.feature2 .feature2_pagination .swiper-pagination-bullet-active {
  background: #a90016;
}

.feature2 .feature2_pagination span {
  margin: 0 .42vw;
}

.feature2 .feature2_pagination span:focus {
  outline: -webkit-focus-ring-color auto 0vw;
}

.feature2 .prev,
.feature2 .next {
  position: absolute;
  width: 3vw !important;
  height: 3vw !important;
  top: 50%;
  z-index: 100;
  cursor: pointer;
}

.feature2 .prev {
  background: url(../img/arrow_l.png) no-repeat !important;
  background-size: 100% !important;
  left: 50% !important;
  transform: translateX(-33vw);
}

.feature2 .next {
  background: url(../img/arrow_r.png) no-repeat !important;
  background-size: cover !important;
  left: auto;
  right: 50%;
  transform: translateX(33vw);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: '';
}

#world {
  width: 100%;
  height: 100%;
  min-height: 47.4vw;
  background: url(../img/pc/world/world_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 4.5vw 0;
  scroll-margin-top: 0;
  overflow: hidden;
}

#world h1 {
  width: 16vw;
  height: auto;
  margin: 0vw auto;
  z-index: 100;
  position: sticky;
}

#world h1 img {
  width: 100%;
}

#world .world_text {
  width: 33.5vw;
  display: block;
  margin: 0 auto;
  transform: translate(10vw, 0.5vw);
  z-index: 1;
  position: sticky;
}

#world .world_text img {
  width: 100%;
}

#dictionary {
  width: 100%;
  height: 100%;
  min-height: 47.4vw;
  position: relative;
  padding: 4vw 0;
  scroll-margin-top: 1.67vw;
  overflow: hidden;
  background: #0000006b;
}

#dictionary h1 {
  width: 16vw;
  height: auto;
  margin: 0vw auto 1vw;
  z-index: 100;
  position: sticky;
}

#dictionary h1 img {
  width: 100%;
}

.dictionary_tab ul {
  width: 35vw;
  height: 3.55vw;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  border-radius: 2vw;
  overflow: hidden;
  margin: 0 auto 1vw;
  border: 0.4vw double #fff;
}

.dictionary_tab ul li {
  font-size: 1vw;
  background: #ffffff;
  color: #000000;
  width: 12vw;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  padding: 0.5vw 0;
  position: relative;
  flex: 1;
  cursor: pointer;
}

.dictionary_tab ul li:hover {
  color: #a90016;
  font-weight: 600;
  border: 0;
}

.dictionary_tab ul li.active:before {
  color: #a90016;
  font-weight: 600;
  border: 0;
}

.dictionary_tab ul li.active {
  background: linear-gradient(45deg, #a90016, transparent);
  color: #fff;
  font-weight: 600;
}

.content_tabs {
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}

.content_tabs ul li ul {
  width: 100%;
  max-width: 66.67vw;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  /* padding: 0 2.75vw; */
  gap: 1.04vw;
}

.content_tabs ul li ul li {
  width: 32.2%;
  /* height: 12.75vw; */
  /* margin: .75vw; */
  overflow: hidden;
  transition: transform 0.6s ease;
  position: relative;
  box-sizing: border-box;
  box-shadow: .21vw .16vw .21vw 0vw #333333b3;
  line-height: 1;
}

.content_tabs ul li ul li.anima_none:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #000000b3;
  position: absolute;
  z-index: 1;
  display: none;
}

.content_tabs ul li ul li.content_li a:hover {
  transform: scale(1.1);
}

.content_tabs ul li ul li a img {
  width: 100%;
}

.content_tabs ul li ul li a {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  transition: transform 0.6s ease;
}

.content_tabs ul li ul li a span {
  font-size: 1.5vw;
  font-weight: 900;
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: none;
}

.content_tabs ul li ul li.content_li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.5),
      transparent);
  transform: skewX(-20deg);
  z-index: 1;
}

.content_tabs ul li ul li.content_li a:hover::before {
  animation: scan 1s ease;
}

@keyframes scan {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

.content_tabs ul li ul li a.sp_wall,
.content_tabs ul li ul li a.sp_cale {
  display: none;
}

.more_wall {
  /* position: relative; */
  display: block;
  width: 14vw;
  height: 3.6vw;
  /* overflow: hidden; */
  margin: 0.5vw auto;
  /* font-weight: 600; */
  color: #310505;
  background: url('../img/more_btn.png') no-repeat;
  background-size: 100%;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2vw;
  transition: transform 0.6s ease;
}

.more_wall:hover {
  transform: scale(1.05);
}


.content_tabs ul li ul li img {
  width: 100%;
  border: 0.5vw solid #fff;
  transition: transform 0.5s ease;
}

.content_li a svg {
  position: absolute;
  width: 4vw;
  fill: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: rotateAnimation2 10s linear infinite;
}

@keyframes rotateAnimation1 {
  from {
    transform:translate(-50%,-50%) rotate(0deg);
  }

  to {
    transform:translate(-50%,-50%) rotate(-360deg);
  }
}

#movie {
  width: 100%;
  height: 100%;
  /* min-height: 47.4vw; */
  /* background: url(../img/pc/world/world_bg.jpg) no-repeat center center; */
  /* background-size: cover; */
  position: relative;
  padding: 4.5vw 0;
  scroll-margin-top: 1.67vw;
  overflow: hidden;
  background: #ffffff6e;
}

#movie h1 {
  width: 16vw;
  height: auto;
  margin: 0vw auto;
  z-index: 100;
  position: sticky;
}

#movie h1 img {
  width: 100%;
}

.movie_info {
  position: relative;
  width: 100%;
  max-width: 52.08vw;
  height: 29.32vw;
  margin: 2vw auto 0;
  border: 0.5vw solid #fff;
  box-shadow: .21vw .16vw .21vw 0vw #333333b3;
  background: #000 url(../img/pv_bg2.jpg) no-repeat center center;
  background-size: 100%;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%,-40%); */
}

.movie_info .video-box,
.movie_info #player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#x {
  width: 100%;
  height: 100%;
  /* min-height: 47.4vw; */
  /* background: url(../img/pc/world/world_bg.jpg) no-repeat center center; */
  /* background-size: cover; */
  position: relative;
  padding: 4.5vw 0;
  scroll-margin-top: 1.67vw;
  overflow: hidden;
}

#x h1 {
  width: 16vw;
  height: auto;
  margin: 0vw auto;
  z-index: 100;
  position: sticky;
}

#x h1 img {
  width: 100%;
}

#x .twitter_info {
  width: 100%;
  max-width: 52.08vw;
  height: 29.32vw;
  background: #fff;
  margin: 2vw auto 0;
  padding: 1vw;
  box-shadow: .21vw .16vw .21vw 0vw #333333b3;
  border: 0.25vw solid #000000;
}

#x .twitter_info .twitter-timeline {
  font-size: 0.9vw;
  color: #000;
}

#special {
  width: 100%;
  height: 100%;
  /* background: url(../img/pc/special/special_bg.jpg) no-repeat center center; */
  /* background-size: cover; */
  position: relative;
  padding: 4vw 0;
  scroll-margin-top: 1.67vw;
  overflow: hidden;
  background: #00000070;
}

#special h1 {
  width: 16vw;
  height: auto;
  margin: 0vw auto 1vw;
  z-index: 100;
  position: sticky;
  display: none;
}

#special h1 img {
  width: 100%;
}

#special .special_info {
  width: 100%;
  max-width: 40vw;
  /* height: 30vw; */
  margin: 0 auto;
  /* position: absolute; */
  /* left: 50%; */
  top: 50%;
  /* transform: translate(-9%, -40%); */
}

#special .special_info img {
  width: 100%;
}

#spec {
  width: 100%;
  height: auto !important;
  background: url(../img/spec_bg.jpg);
  background-size: 5vw 4.8958vw;
  padding: 3.4375vw 0;
  scroll-margin-top: 1.6667vw;
  z-index: 6;
  position: sticky;
}

#spec h1 {
  width: 5.7167vw;
  height: .8333vw;
  margin: 1vw auto .1667vw;
  z-index: 100;
  position: sticky;
}

#spec h1 img {
  width: 100%;
}

#spec .spec_inner {
  width: 100%;
  max-width: 46.875vw;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
}

#spec .spec_inner img {
  display: block;
  width: 11.6vw;
  margin-right: 1vw;
}

#spec .spec_inner .spec_table {
  font-size: .9vw;
  border-collapse: separate;
  border-spacing: .2083vw;
  color: #000000;
  width: 100%;
}

#spec .spec_inner .spec_table th {
  padding: .2604vw;
  width: 20%;
  text-align: center;
  margin-right: .1563vw;
  vertical-align: middle;
  background-color: rgb(255 255 255);
  font-weight: 600;
  font-size: 0.8vw;
}

#spec .spec_inner .spec_table td {
  vertical-align: middle;
  padding: 0 1em;
  background-color: rgb(255 255 255);
  font-weight: 600;
  width: 80%;
  line-height: 1;
}

#spec .spec_inner .spec_table td span {
  font-size: 82%;
}

#spec .notice {
  line-height: 1.75;
  font-size: 0.835vw;
  display: block;
  margin: 2.6042vw auto 0;
  width: 100%;
  background: #000000e6;
  max-width: 46.875vw;
  padding: 1.5vw;
  color: #ffffff;
  border: .0521vw solid #fff;
}

#spec .notice span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.3vw;
  color: #ffffff;
  margin-bottom: 0.5vw;
}

.hide4 {
  display: none;
}

.x-button {
  display: block;
  position: fixed;
  right: -3.13vw;
  top: 40%;
  height: auto;
  padding: 1.25vw .63vw;
  background: #000;
  border-radius: .42vw 0 0 .42vw;
  cursor: pointer;
  z-index: 100;
  transform: translateY(-50%);
  transition: right .5s ease-out;
  border-left: .1vw solid #fff;
  border-top: .1vw solid #fff;
  border-bottom: .1vw solid #fff;
}

.x-button>svg {
  width: 1.04vw;
  height: auto;
  fill: #fff;
  transition: .25s ease-in-out
}

.x-button:hover {
  right: 0
}

.x-button:hover>svg {
  transform: scale(1.05);
}

/* yamadagame 浮岛 */
.ym_home{
  width: 10vw;
  height: 10vw;
  background:url(../img/ym_home.png) no-repeat,center center;
  background-size:100%;
  position:fixed;
  right: 0.5vw;
  bottom: 5vw;
  cursor:pointer;
  transition: all .3s cubic-bezier(0.4, 0, 1, 1);
  z-index: 1000;
}
.ym_home:hover{
  transform:scale(1.05);
}

/* 底部导航 */
.footer_float {
  position: fixed;
  display: flex;
  background: #7c1b1b;
  background-size: contain;
  z-index: 1000;
  bottom: 0;
  width: 100%;
  height: 4.17vw;
  /* border-top: .16vw solid #000; */
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  display: none;
  /* transition: .25s ease-in-out; */
}

.footer_float .footer_regist_area {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 999;
  width: min(71.1vw, 71.04vw);
}

.footer_float .footer_list_item {
  margin-bottom: .83vw;
}

.footer_float .footer_qr {
  width: 10vw;
  /* height: 6vw; */
  position: absolute;
  bottom: 0.3vw;
  left: 2vw;
  /* filter: drop-shadow(.16vw .16vw .16vw rgb(0, 0, 0)); */
  /* -webkit-filter: drop-shadow(.16vw .16vw .16vw rgb(0, 0, 0)); */
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 50;
}

.footer_float .footer_qr img{
  width:100%;
  max-width: 5.5vw;
  border: 0.25vw solid #781a1a;
}

.footer_float .footer_qr span{
  line-height:1;
  color:#fff;
  font-size: 0.7vw;
  text-align: center;
  font-weight: 400;
}

.footer_float .regist_right {
  width: 20vw;
  height: 3vw;
  display: block;
  background: url(../img/download.png);
  background-size: 75%;
  background-position: left;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 3vw;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}

.footer_float .regist_right .arrow_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20%;
}

.footer_float .regist_right .arrow_area .arrow {
  width: 1vw;
  height: 1vw;
  background-color: #ffffff;
  background: url(../img/regist_arrow.png) no-repeat center center;
  background-size: 100%;
  -webkit-mask-size: cover;
  -webkit-animation: move 1.3s infinite;
  animation: move 1.3s infinite;
  margin: 0 .16vw;
}

.footer_float .regist_right .arrow:nth-child(2) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.footer_float .regist_right .arrow:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes move {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(0vw);
    transform: translateX(0vw);
  }
}

@keyframes move {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(0vw);
    transform: translateX(0vw);
  }
}

.footer_float .footer_list {
  display: flex;
  grid-template-columns: repeat(6, auto);
}

.footer_float .footer_list_item {
  margin: 0 .53vw;
  display: flex;
  /* height: 4vw; */
  /* width: 12vw; */
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: .5vw;
  align-items: center;
  transition: transform 0.5s ease;
  z-index: 6;
}

/* h5 按钮1 */
.footer_float a.footer_start_btn {
  background: url(../img/pc/start.png) no-repeat center center;
  background-size: 100%;
  width: 12vw;
  height: 4vw;
  display: block;
} 

/* ios 按钮2 */
.footer_float a.footer_ios{
  background: url(../img/start_ios.png) no-repeat center center;
  background-size: 100%;
  width: 10vw;
  height: 3vw;
  display: block;
}

/* googel 按钮3 */
.footer_float a.footer_google {
  background: url(../img/start_google.png) no-repeat center center;
  background-size: 100%;
  width: 10vw;
  height: 3vw;
  display: block;
}
/* 维护按钮 4 */
.footer_float a.footer_mainte {
   width: 12vw;
  height: 4vw;
  display: block;
  background: url(../img/pc/maintenance.png) no-repeat center center;
  background-size: 100%;
}
/* 事前注册按钮 5 */
.footer_float a.footer_start_pre {
   width: 12vw;
  height: 4vw;
  display: block;
  background: url(../img/pc/start_pre.png) no-repeat center center;
  background-size: 100%;
}
/* 事前完了按钮 6 */
.footer_float .footer_list_item a.footer_start_pre_off {
   width: 12vw;
  height: 4vw;
  display: block;
  background: url(../img/pc/start_pre_off.png) no-repeat center center;
  background-size: 100%;
}

.footer_float .footer_list_item a {
  line-height: 0;
}

.footer_float .footer_start_btn:hover,.footer_float .footer_start_pre:hover,.footer_float .footer_ios:hover,.footer_float .footer_google:hover {
  transform: scale(1.05);
}

.footer_float .footer_list_item:nth-of-type(4) {
  display: none;
}


.footer_float .footer_list_img {
  width: 100%;
}

/* APP 事前预约 */
.p-top__float__list {
  display: flex;
  grid-template-columns: repeat(6, auto);
}

.p-top__float__item {
  margin: 0 .5208vw;
  display: flex;
  height: 3vw;
  width: 10vw;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 0.5vw;
}

.p-top__float__item :after {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  /* content: ""; */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .4) 100%);
  transform: skewX(-25deg);
  transition: all .5s;
  -webkit-animation: sg 1s linear infinite;
  animation: sg 1.5s linear infinite;
}

.p-top__float__item:hover {
  transform: scale(1.05);
}

.p-top__float__item:nth-of-type(4) {
  display: none;
}

.p-top__float__link {
}

.p-top__float__img {
  width: 100%;
  height: 3vw;
}

.p-top__float__mailformwrapper {
  width: 21vw;
  margin: 0 .5vw;
  border: 0.15vw solid #fff;
  border-radius: .35vw;
}

.p-top__float__mailformwrapper form {
  display: flex;
  border-radius: .2vw;
  overflow: hidden;
}

.p-top__float__mailform {
  width: 15vw;
  background: #fff;
  color: #000;
  text-align: left;
  height: 3vw;
  padding: 0 0vw 0 .7813vw;
  border: none;
  outline: none;
  font-size: .9375vw;
}

.p-top__float__mailform::placeholder {
  font-size: .8333vw;
}

.p-top__float__mailbtn {
  display: inline-block;
  background: linear-gradient(0deg, #f38787, #8a0000);
  color: #fff;
  padding: 0 .42vw;
  width: 7vw;
  font-size: .9375vw;
  font-weight: 600;
  height: 3vw;
  border: none;
  outline: none;
  cursor: pointer;
}

.p-top__float__mailbtn:hover {
  background: linear-gradient(0deg, #8a0000, #f38787);
}

/* DMM EXE 预注册footer */
#foot_link .dmm_pre_foot_btn {
  width: auto;
  height: 3.25vw;
  display: flex;
  margin: 0 .0833vw;
  z-index: 50;
}

#foot_link .dmm_pre_foot_btn a {
  margin: 0 .4167vw;
  overflow:hidden;
  transition: transform .2s linear;
  border-radius:0.6vw;
}

#foot_link .dmm_pre_foot_btn button{
  width: auto;
  height: 3.25vw;
  margin: 0 .4167vw;
  overflow:hidden;
  transition: transform .2s linear;
  border-radius:0.6vw;
  outline:none;
  background:none;
  border:0;
  display: block;
}
#foot_link .dmm_pre_foot_btn button img{
  width:100%;
  height: 3.25vw;
}

#foot_link .dmm_pre_foot_btn a:hover,#foot_link .dmm_pre_foot_btn button:hover {
  transform: scale(0.97);
}

#foot_link .dmm_pre_foot_btn a:hover:before,#foot_link .dmm_pre_foot_btn button:hover:before {
  animation: appHoverShine .9s ease 1 both
}

#foot_link .dmm_pre_foot_btn a img {
  width: 100%;
  height: 100%;
}

/* DMM EXE 上线footer */
#foot_link .dmm_foot_btn {
    width: 23vw;
    height: 4vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#foot_link .dmm_foot_btn button {
    transition: all 0.2s;
    outline: none;
    border: none;
    cursor: pointer;
}

#foot_link .dmm_foot_btn button:hover {
    transform: scale(1.05);
}

#foot_link .start_btn1,
#foot_link .start_btn2,
#foot_link .start_btn_ed,
#foot_link .start_btn4 {
    width: auto;
    height: 3.33vw;
    z-index: 100;
    display: flex;
    background: none;
    border-radius: 0.5vw;
    position: relative;
    overflow: hidden;
    align-items: center;
}

#foot_link .start_btn4{
  display:none;
}

.footer_float .rolling {
  background: url(../img/footer_bg.png) center;
  background-size: 100%;
  height: 4.17vw;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: scroll 60s infinite linear;
  animation: scroll 60s infinite linear;
  z-index: 25;
}

@-webkit-keyframes scroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100vw 0;
  }
}

@keyframes scroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100vw 0;
  }
}

/* mobage sp 底部 */

.mbga_wrapper {
  position: fixed;
  z-index: 999;
  bottom: 0;
  width: 100%;
  height: auto;
  margin: 0 0%;
  filter: drop-shadow(-0.26vw 0vw .52vw rgba(0, 0, 0, 0.33));
  background-color: #333333;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  font-size: 1.46vw;
}

#mbga_game_start {
  display: flex;
  justify-content: space-around;
  padding: 0.5vw 0;
  font-size: .63vw;
  color: #fff;
  text-shadow: 0vw 0vw .16vw #441300;
  border-bottom: .05vw solid #fff;
}

#mbga_game_start a {
  color: #ff0023;
}


#mbga_game_start .new_start,
#mbga_game_start .id_start {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto .52vw;
}

#mbga_game_start .new_start img,
#mbga_game_start .id_start img {
  width: min(26.56vw, 100%);
}

#mbga_login_start {
  margin: 0 auto;
  /*display: flex;
  flex-direction: column;
  align-items: center;*/
}

#mbga_game_start p {
  margin: .26vw !important;
  padding: 0;
  font-size: 1.25vw;
}

#gamestart_link_mbgasp {
  display: block;
  text-align: center;
  padding: 3% 0;
  border-bottom: .05vw solid #fff;
}

#float {
  background: #000000;
  z-index: 10000;
}

#float ul {
  display: flex;
  justify-content: space-around;
}

#float ul li {
  padding: 0.5vw 0;
  font-size: 1.25vw;
}

#float ul li a {
  color: #ffffffb8;
  text-decoration: underline;
}

/* 完了页面 */
body#finish {
  min-width: 7.5vw;
  background-image: none;
  background-color: #fff;
}

body#finish #wrapper {
  background-image: none !important;
}

body#finish footer {
  position: static;
}

.finish {
  background-image: none !important;
}

#finish_body {
  min-width: 7.5vw;
  height: 47.5vw;
  width: 100%;
  /* background: url(../img/pc/finish.jpg) no-repeat center top; */
  /* background-size: cover; */
}
.dmm_web{
  max-width:66.67vw;
  margin: 0 auto;
}

#finish_body img{
  width:100%;
}

body#finish .finish .return {
  position: absolute;
  width: 19vw;
  height: 6vw;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.5s ease;
  bottom: 10vw;
  background: url(../img/return.png) no-repeat center center;
  background-size: 100%;
}

body#finish .finish .return:hover {
  transform: translateX(-50%) scale(1.02);
}

/* 底部信息固定在底部 */
.footer {
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: .52vw;
  font-size: .73vw;
  width: 100%;
  position: relative;
  min-height: 3.13vw;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 1.5vw;
}

.footer a {
  color: #000000;
  text-decoration: none;
  margin: 0 .52vw;
  cursor: pointer;
  font-size: 0.85vw;
}

.footer a:hover {
  color: #0090ff;
  text-decoration: underline
}

.footer p {
  margin: 0.5vw 0;
}

/* 利用規約 Popup 样式 */
.terms-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 1.04vw;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  border-radius: 0;
  z-index: 1000;
}

.terms-popup .close-btn {
  position: absolute;
  top: .52vw;
  right: .52vw;
  cursor: pointer;
  font-size: 1.04vw;
}

/* 背景遮罩 */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

#termsPopup {
  background-color: #000;
  color: #fff;
  padding: 5%;
  margin: 0vh auto;
  width: 100%;
  height: 100%;
  overflow: auto;
}

#termsPopup p {
  margin-bottom: 1em;
}

#termsPopup h3 {
  border-bottom: .0521vw solid #fff;
  margin-bottom: 1em;
  font-size: 1.25vw;
  line-height: 3;
}

#termsPopup h4 {
  margin: 1% 0%;
  padding: .5208vw;
  line-height: 1.6;
  border: .0521vw solid #fff;
  font-size: 1.25vw;
}


/*----------------------------------------------------------------------
          2nd page
----------------------------------------------------------------------*/
input:focus {
  outline: none;
}

.second_page{
  background:#fff;
}

#individual {
  background-image: url(../img/pc/bg3.jpg);
  background-attachment: fixed;
  background-color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: calc(var(--vh, 1vh) * 85);
}

.footer_hide {
  position: relative;
  background: #fff;
}

#individual::-webkit-scrollbar {
  width: 0vw;
}

#individuall::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: .26vw;
}

#individual::-webkit-scrollbar-thumb {
  background-color: #625c53;
  border-radius: .26vw;
}

#individual::-webkit-scrollbar-thumb:hover {
  background-color: #65472d;
}

#individual header {
  background-image: none;
  height: 3.65vw;
  width: 100%;
  z-index: 100;
  text-align: center;
  padding: 0;
  margin: 0 0 -13.02vw 0;
}

#individual header #header {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 0;
}

#individual header #header nav {
  width: 100%;
  position: relative;
  transition: 0.3s;
  height: 3.65vw;
  display: -webkit-box;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  display: flex;
  background-size: 100%;
  background: #262222f0;
}

#individual main {
  padding: 0;
}

#individual main .logo {
  width: 12%;
  margin: 0 auto;
  position: fixed;
  top: .52vw;
  z-index: 11;
  left: 9%;
  line-height: 0;
}

#individual main .logo img {
  width: 100%;
}

#individual main #news_list {
  width: 45.83vw;
  margin: 0 auto;
  padding: 2vw 0;
}

#individual main #news_list .back_btn a {
  margin: .78vw auto 0;
  text-align: center;
  display: flex;
  width: 5.73vw;
  color: #fff;
  padding: .26vw .52vw;
  background: linear-gradient(to top, #4e1319 0%, #d80a25 100%);
  text-decoration: none;
  font-size: .83vw;
  border-radius: .26vw;
  justify-content: center;
  align-items: center;
}

#individual main #news_list .back_btn a:hover {
  background: linear-gradient(to top, #a90016 0%, #4c040d 100%);
}

#individual main #news_list #genre {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* margin: 1.04vw auto; */
}

#individual main #news_list #genre li {
  -webkit-filter: drop-shadow(.16vw .16vw .16vw rgba(0, 0, 0, 0.5));
  filter: drop-shadow(.16vw .16vw .16vw rgba(0, 0, 0, 0.5));
  font-weight: bold;
  text-align: center;
  border-radius: .26vw;
  margin: .52vw;
  font-size: .94vw;
}

#individual main #news_list #genre li a {
  background: linear-gradient(to top, #4e1319 0%, #d80a25 100%);
  border-radius: .26vw;
  padding: .52vw .26vw;
  width: 6.25vw;
  display: block;
  color: #ffffff;
  text-decoration: none;
}

#individual main #news_list #genre li.active a {
  color: #fff;
  background: linear-gradient(to top, #794211 0%, #ff9b29 100%);
}

#individual main #news_list #genre li a:hover {
  color: #fff;
  background: linear-gradient(to top, #3b220c 0%, #e39134 100%);
}

#individual main #news_list>#news_body {
  margin-top: 1.56vw;
  font-family: Avenir, Helvetica, Arial, sans-serif;
}

#individual main #news_list>#news_body>li:before,
#individual main #news_list>#news_body>li:after {
  content: " ";
  display: block;
  position: absolute;
}

#individual main #news_list>#news_body li ul li {
  font-size: .94vw;
  width: 100%;
  background: #ffffffc9;
  filter: drop-shadow(.16vw .16vw .16vw rgba(0, 0, 0, 0.3));
  padding: .78vw;
  margin-bottom: 1.04vw;
  transition: 0.5s ease;
}

#individual main #news_list>#news_body li a {
  display: -webkit-box;
  display: -ms-flexbox;
  text-decoration: none;
  color: #000000;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#individual main #news_list>#news_body li a .min_banner img {
  width: 13.02vw;
  margin-right: 1.04vw;
}

#individual main #news_list>#news_body li a .icon {
  -ms-flex-preferred-size: 7.81vw;
  flex-basis: 7.81vw;
  width: 7.81vw;
  height: 4.64vw;
  background-size: contain;
  text-indent: -1000%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

#individual main #news_list>#news_body li a .icon .ic_type21 {
  background: url(../img/info.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type22 {
  background: url(../img/event.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type23 {
  background: url(../img/update.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type24 {
  background: url(../img/mainte.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type26,
#individual main #news_list>#news_body li a .icon .ic_type218 {
  background: url(../img/tips.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type219 {
  background: url(../img/general.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .icon .ic_type220 {
  background: url(../img/guide.png) no-repeat;
  background-size: 100%;
  display: block;
  width: 100%;
  height: 100%;
}

#individual main #news_list>#news_body li a .date {
  padding: .26vw .26vw .26vw .78vw;
  line-height: 1.25vw;
  /* font-weight: bold; */
}

#individual main #news_list>#news_body li ul li:hover {
  transform: scale(1.01);
}

#individual main #news_list>#news_body li ul li:hover a .date {
  color: #a90016;
  font-weight: 900;
}

#individual main #news_list>#news_body li a .date span {
  vertical-align: middle;
  font-size: 1.04vw;
  font-weight: 600;
}

#individual main #news_list .sppagination {
  margin: .42vw auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#individual main #news_list .sppagination a,
#individual main #news_list .sppagination b {
  margin: 0 .52vw;
  -webkit-filter: drop-shadow(.16vw .16vw .16vw rgba(0, 0, 0, 0.5));
  filter: drop-shadow(.16vw .16vw .16vw rgba(0, 0, 0, 0.5));
  border-radius: .26vw;
  background-color: #ffffff;
  color: #1c0d0a;
  display: block;
  text-align: center;
  line-height: 2.08vw;
  width: 2.08vw;
  height: 2.08vw;
  border: .05vw solid #182b42;
}

#individual main #news_list .sppagination a {
  text-decoration: none;
  color: #1c0d0a;
}

#individual main #news_list .sppagination a:hover,
#individual main #news_list .sppagination b:hover {
  background-color: #a90016;
  color: #fff;
}

#individual main .pagecontent {
  margin: 0 0 0 0;
  box-shadow: 0 0 0 0 #fff;
}

#individual main .pagecontent .subtitle {
  margin-bottom: 0vw;
  filter: drop-shadow(.05vw 0vw .05vw #fff) drop-shadow(-0.05vw 0vw .05vw #fff) drop-shadow(0vw .05vw .05vw #fff) drop-shadow(0vw -0.05vw .05vw #fff);
  padding: 1.04vw 0 .52vw .26vw;
  font-size: .83vw;
}

#individual main .pagecontent .subtitle .sp_page_right_top {
  color: #000;
}

#individual main .pagecontent .subtitle .sp_page_right_top .subpagenav a {
  color: #a5061b;
  text-decoration: none;
}

#individual main .pagecontent .subtitle .sp_page_right_top .subpagenav a:hover {
  color: #a90016;
  text-decoration: none;
}

#individual main .pagecontent .spcontain {
  position: relative;
  font-size: .73vw;
  width: 100%;
  background: #ffffffc9;
  -webkit-filter: drop-shadow(.16vw .16vw .16vw rgba(0, 0, 0, 0.3));
  filter: drop-shadow(.16vw .16vw .16vw rgba(0, 0, 0, 0.3));
  padding: 0 2.08vw;
  margin: .78vw auto 4.67vw auto;
  /* font-family: Avenir, Helvetica, Arial, sans-serif; */
}

#individual main .pagecontent .spcontain .spcontainer {
  padding: 2.08vw 0;
  z-index: 2;
  position: relative;
}

#individual main .pagecontent .spcontain .spcontainer .page_tit {
  margin-bottom: .1vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_tit h3 {
  color: #a90016;
  padding: .21vw .52vw;
  border-width: 0 0 .05vw 0;
  border-color: #3a3231;
  border-style: solid;
  margin: 0 auto 1.3vw auto;
  margin-bottom: 0vw;
  font-weight: 600;
  font-size: 1.25vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_tit .pages_date {
  display: block;
  color: #333;
  text-align: right;
  font-size: .73vw;
  margin-top: .52vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital {
  color: #333;
  margin: 1.25vw 0;
  font-size: .9vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body {
  width: 100%;
  font-size: .78vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body li {
  width: 100%;
  padding: 1vw 0vw;
  border-bottom: .05vw solid #000000;
  margin: .36vw 0;
  cursor: default;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body a {
  text-decoration: none;
  color: #000000;
  width: 100%;
  display: block;
  line-height: 0;
  cursor: default;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body a:hover .title {
  color: #a90016;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body .title {
  float: left;
  font-size: 0.85vw;
  cursor: pointer;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital #news_body .days {
  float: right;
  font-size: 0.65vw
}

#individual main .pagecontent .spcontain .spcontainer .page_dital::-webkit-scrollbar {
  width: .26vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: .26vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital::-webkit-scrollbar-thumb {
  background-color: #01347f;
  border-radius: .26vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital::-webkit-scrollbar-thumb:hover {
  background-color: #01347f;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital p {
  margin-bottom: 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital strong {
  font-weight: 900;
  color: #de112c;
  font-size: .8vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb tr table tr td strong {
  font-weight: 900;
  color: #de112c;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital h2 {
  font-size: 1.04vw !important;
  margin: .52vw 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital h3 {
  color: #ffffff;
  padding: 0.35vw 0vw 0.35vw 1vw;
  margin: .5vw 0;
  font-weight: 600;
  font-size: 1.1vw;
  background: url(../img/tit_bg.png) no-repeat center center;
  background-size: 100%;
  border-radius: .42vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital img {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1.04vw;
}

/* 内容页通用表格样式 */
#individual main .pagecontent .spcontain .spcontainer .page_dital table {
  width: 100%;
  border-collapse: collapse;
  display: table;
  margin: 0 auto;
  animation: fadeIn 0.5s ease-in-out;
  background: #ffffffad;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table th,
#individual main .pagecontent .spcontain .spcontainer .page_dital table td {
  border: .05vw solid #c8102e;
  /* height: 2.75vw; */
  text-align: center;
  color: #000000;
  position: relative;
  margin: 0 auto;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table th {
  /* background-color: #8b0000; */
  font-size: 1.04vw;
  font-weight: bold;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital table tr:nth-child(even) {
  background-color: rgb(255 143 143 / 20%);
}


/* 激活码表格 */
#individual main .pagecontent .spcontain .spcontainer .page_dital .pickupcode_table {
  width: 100%;
  border-collapse: collapse;
  display: table;
  max-width: 66.7vw;
  margin: 0 auto;
  animation: fadeIn 0.5s ease-in-out;
  background: #ffffffad;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .pickupcode_table th,
#individual main .pagecontent .spcontain .spcontainer .page_dital .pickupcode_table td {
  border: .05vw solid #c8102e;
  height: 2.75vw;
  text-align: center;
  color: #000000;
  position: relative;
  margin: 0 auto;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .pickupcode_table th {
  background-color: #8b0000;
  color: #fff;
  font-size: 1.04vw;
  font-weight: bold;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .pickupcode_table tr:nth-child(even) {
  background-color: rgb(255 143 143 / 20%);
}

/* 客服表格 */
#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb {
  width: 100%;
  border-collapse: collapse;
  display: table;
  margin: 0 auto;
  animation: fadeIn 0.5s ease-in-out;
  background: #ffffffad;
  box-sizing: border-box;
  margin: 1vw 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb th,
#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb td {
  border: .05vw solid #c8102e;
  text-align: center;
  color: #000000;
  position: relative;
  margin: 0 auto;
  padding: 0.5vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb td {
  text-align: left;
  font-size: 0.8vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb input,
#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb select {
  width: 50%;
  padding: 0.25vw;
  outline: none;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb textarea {
  width: 100%;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb th {
  /* background-color: #8b0000; */
  color: #000000;
  font-size: 0.8vw;
  padding: 0.5vw;
  white-space: nowrap;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb tr:nth-child(even) {
  background-color: rgb(255 143 143 / 20%);
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb .form_img img {
  width: 100%;
  max-width: 15vw;
}



#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb table {
  width: 100%;
  border-collapse: collapse;
  display: table;
  margin: 0 auto;
  animation: fadeIn 0.5s ease-in-out;
  background: #ffffffad;
  box-sizing: border-box;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb table th,
#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb table td {
  border: .05vw solid #c8102e;
  text-align: center;
  color: #000000;
  position: relative;
  margin: 0 auto;
  padding: 0.5vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb table td {
  text-align: left;
  font-size: 0.8vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .cateBox_tb table th {
  /* background-color: #8b0000; */
  color: #000000;
  font-size: 1vw;
  padding: 0.5vw;
  white-space: nowrap;
  width: 25%;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .faq_block {
  border-radius: .31vw;
  background: linear-gradient(to top, #4e1319 0%, #d80a25 100%);
  margin: 0 0 .52vw 0;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .q {
  display: inline-block;
  width: 100%;
  padding: .52vw;
  color: #fff;
  border-bottom: .1vw solid #ffffff;
  font-weight: 600;
  font-size: .85vw;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .a {
  color: #3a3231;
  padding: .52vw;
  border-radius: 0vw 0vw .25vw .25vw;
  display: flex;
  background-color: #ffd9d9;
  border-top: .05vw solid #ffffff;
}

#individual main .pagecontent .spcontain .spcontainer .back_btn a {
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 7.29vw;
  background-color: #e4dbba;
  color: #000;
  padding: .52vw;
  text-decoration: none;
  border-radius: .1vw;
}

#individual main .pagecontent .spcontain .spcontainer .back_btn a:hover {
  color: #01347f;
}

#individual .page_nav {
  display: flex;
  justify-content: center;
  margin: 1.3vw auto;
}

#individual .page_nav li {
  filter: drop-shadow(.16vw .16vw .16vw rgba(0, 0, 0, 0.1));
  margin: 0 .26vw;
}

#individual .page_nav li a {
  background: #e4dbba;
  color: #000;
  border-radius: .21vw;
  text-decoration: none;
  padding: .26vw .52vw;
  height: 100%;
  width: 100%;
  display: inline-block;
}

#individual .page_nav li a:hover {
  color: #01347f;
}

#individual footer {
  background: #ffffff;
  height: 6.25vw;
  bottom: 0;
  width: 100%;
  z-index: 101;
  transition: 0.3s;
  color: #fff;
}

#individual footer .company_info {
  padding: .52vw 0 0 0vw;
  position: relative;
  display: flex !important;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

#individual footer .company_info img {
  width: 9.69vw;
  height: 3.59vw;
}

#individual footer .company_info div {
  margin: 0vw 0vw 0vw 2.08vw;
}

#individual footer .company_info ul {
  margin-bottom: 0vw;
  font-size: .63vw;
  display: flex;
  justify-content: center;
}

#individual footer .company_info ul li {
  margin: 0 .26vw;
  padding-left: .26vw;
  border-left: .05vw solid #000;
}

#individual footer .company_info ul li:first-child {
  border: none;
  padding-left: 0vw;
  margin: 0 .26vw 0 0;
}

#individual footer .company_info ul li a {
  color: #000;
  text-decoration: none;

}

#individual footer p {
  width: 100%;
  text-align: center;
  margin: .05vw 0 0 0;
  color: #747474;
}

.contact main #news_list {
  padding-top: 2.6vw;
}

.contact main #news_list #genre {
  display: none !important;
}

.cateBox_bx .submit_button {
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 5.21vw;
  background: linear-gradient(to top, #4e1319 0%, #d80a25 100%);
  color: #fff;
  border: none;
  padding: .52vw;
  text-decoration: none;
  margin-top: 1.04vw auto;
  border-radius: .26vw;
  font-size: 1vw;
}

.cateBox_bx .submit_button:focus {
  border: 0;
  border-bottom: .1vw solid #fff;
  outline: none;
  filter: drop-shadow(.05vw .05vw .16vw rgba(0, 0, 0, 0));
}

.formbt {
  display: flex;
  justify-content: center;
  width: 13.02vw;
  margin: 1.04vw auto 0 auto;
}

.back_button,
.return_button {
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 5.21vw;
  background: linear-gradient(to top, #1a1a1a 0%, #6a6a6a 100%);
  color: #fff;
  border: none;
  padding: .52vw;
  text-decoration: none;
  border-radius: .26vw;
}

.send_button {
  margin: 0 auto;
  text-align: center;
  display: block;
  width: 5.21vw;
  background: linear-gradient(to top, #4e1319 0%, #d80a25 100%);
  color: #fff;
  border: none;
  padding: .52vw;
  text-decoration: none;
  border-radius: .26vw;
}

.guide_title {
  padding: .42vw;
  margin: 0 auto 1.25vw auto;
}

.guide_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: left;
}

.guide_list li {
  text-align: center;
  width: 30%;
  border: .15vw solid #6b1613;
  border-radius: .21vw;
  margin: 1%;
  overflow: hidden;
}

.guide_list li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 3%;
  transition: 0.5s ease;
  color: #3a3231;
  font-size: .85vw;
  font-weight: 500;
}

.guide_list li a:hover {
  background: #6b1613;
  color: #fff;
}

.guide_list::after {
  content: "";
  display: block;
  width: 32%;
}

.guide_list::before {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}

.page_dital .wall_content {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.img_wrapper {
  width: 45%;
}

.img_wrapper a {
  width: 100%;
  border: 0.3vw solid #fff;
  box-shadow: 0vw .1vw .16vw .05vw #333333a3;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
  position: relative;
  display: block;
  margin-bottom: 1vw;
  transition: all 0.3s;
}

.img_wrapper a svg {
  width: 4vw;
  height: 4vw;
  position: absolute;
  left: 50%;
  top: 50%;
  /* transform:translate(-50%,-50%); */
  animation: rotateAnimation2 10s linear infinite;
}

@keyframes rotateAnimation2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.img_wrapper a img {
  width: 100%;
  margin-bottom: 0 !important;
}

.img_wrapper .img_area {
  width: 100%;
  border: 0.3vw solid #fff;
  box-shadow: 0vw .1vw .16vw .05vw #333333a3;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
}

.img_wrapper .img_area img {
  width: 100%;
  transition: all 0.3s;
  margin-bottom: 0 !important;
}

.img_wrapper .img_area img:hover {
  transform: scale(1.1);
}

.img_contain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1vw 0;
}

.img_contain a {
  width: 9vw;
  height: 2vw;
  text-align: center;
  text-decoration: none;
  background: #a90016;
  line-height: 2vw;
  color: #fff;
  font-size: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0.15vw solid #fff;
}

.img_contain a:hover {
  background: #910c05;
}