@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: #de0a26;
}

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

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

html {
  font-size: .8333vw;
}

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: relative;
  top: 0;
  z-index: 1000;
  background: #ffffff00;
}

.sp_header {
  display: block;
  width: 100vw;
  height: 49.9479vw;
}

header nav {
  width: 100%;
  position: fixed;
  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: #262222f0;
  align-items: center;
  top: 0;
}

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 1.25vw;
  height: 100%;
  margin: 0 0;
  transition: all 0.3s;
  font-size: 1.3vw;
}

#header .menu>li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25vw;
  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: #de0a26;
  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: #de0a26;
}

#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: #de0a26;
  -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: -0.83vw;
  width: 9.17vw;
  background: #ffffff;
  transition: all 0.2s ease;
  border: .05vw solid #de0a26;
  filter: drop-shadow(.1vw .1vw .1vw rgba(0, 0, 0, 0.5));
}

#header li.menu__single ul.menu__second-level li a {
  font-size: .73vw;
  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.65vw;
  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 {
  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: 100;
}

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

#go_top:hover {
  background: #de0a26;
}

#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: 1vw;
  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;
}

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;
  }
}

#top {
  width: 100%;
  /* height: 50vw; */
  position: relative;
  scroll-margin-top: 1.6667vw;
  margin-top: -0.7vw;
  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;
}

#top .top_logo {
  width: 20.83vw;
  height: 7.97vw;
  position: absolute;
  left: 5vw;
  top: 7vw;
  z-index: 1;
  display: none;
}

#top .top_banner {
  width: 12.54vw;
  display: flex;
  margin: .83vw auto;
  z-index: 100;
  position: absolute;
  flex-direction: column;
  align-items: center;
  right: 1vw;
  top: 60%;
}

#top .top_banner li a {
  width: 12.55vw;
  height: 4.4vw;
  display: block;
  margin: 0.35vw 0;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}

#top .top_banner li a:hover {
  transform: scale(1.1);
}

#top .top_banner 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: ""
}

#top .top_banner li a:hover:before {
  animation: none;
}

#top .top_banner li a:hover:before {
  animation: appHoverShine .6s ease 1 both
}

#top .top_banner li a img {
  width: 100%;
}

.pv {
  position: absolute;
  width: 15.83vw;
  height: 9vw;
  top: 45%;
  left: 0.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  z-index: 2;
  box-shadow: .1vw .1vw .26vw .16vw #333333c2;
}

.pv a {
  display: block;
  width: 3.33vw;
  height: 3.33vw;
  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.2);
}

.pv img {
  vertical-align: top;
  width: 100%;
}

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

@keyframes rotateAnimation1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}


@keyframes rotateAnimation2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

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

.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
}

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

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

.start_btn,
.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;
}

.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_btn img,
.mainte img {
  width: 100%;
}

.sp_top_bg {
  display: none;
}

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

.hide2 {
  display: none;
}

.hide3 {
  opacity: 0;
}

#news_area:after {
  content: "";
  width: 100%;
  max-width: 49.4792vw;
  /*height: 100%;
  */
  height: 79.1146vw;
  background: url(../img/get1.png) no-repeat center top;
  background-size: 100%;
  position: absolute;
  left: 50%;
  margin-left: -53.3333vw;
  transform: translateX(0vw);
  top: -32.5vw;
  animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.8333vw);
  }
}

#news_area:before {
  content: "";
  width: 100%;
  max-width: 42.4479vw;
  height: 69.8958vw;
  background: url(../img/get2.png) no-repeat center top;
  background-size: 100%;
  position: absolute;
  right: 50%;
  margin-right: -44.1667vw;
  transform: translateX(0vw);
  top: -15vw;
  animation: gentle-float1 3s ease-in-out infinite;
}

@keyframes gentle-float1 {

  0%,
  100% {
    transform: translateY(-0.8333vw);
  }

  50% {
    transform: translateY(0vw);
  }
}

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

#news_area {
  width: 100%;
  height: 50vw;
  background-size: cover;
  z-index: 0;
  position: relative;
  padding: 4vw 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: 38.54vw;
  height: auto;
  margin: 1.04vw auto .26vw;
  overflow: hidden;
  z-index: 2;
  position: sticky;
}

#news_area #banner .swiper-slide {
  width: 38.54vw;
  height: 13.8vw;
}

#news_area #banner a {
  width: 38.54vw;
  height: 13.8vw;
  display: block;
}

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

#news_area #banner .banner-pagination {
  width: 100%;
  text-align: center;
  height: 1.25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  margin: 0.75vw 0 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: #de0a26;
}

#news_area .tips_banner {
  width: auto;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-32vw, -1vw);
  flex-direction: column;
}

#news_area .tips_banner li a {
  width: 22vw;
  height: 6.68vw;
  margin-bottom: 0.5vw;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

#news_area .tips_banner li a:hover {
  transform: scale(1.03);
}

#news_area .tips_banner 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_area .tips_banner li a:hover:before {
  animation: none;
}

#news_area .tips_banner li a:hover:before {
  animation: appHoverShine .6s ease 1 both
}

#news_area .tips_banner li a img {
  width: 100%;
}

#news_area #news_wrapper {
  margin: 0 auto;
  display: flex;
  width: 100%;
  max-width: 62.5vw;
  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, -1vw);
}

#news_area #news {
  position: relative;
  border-radius: 0;
  padding: .1vw;
  width: 38.54vw;
  max-height: 21vw;
  margin: 0 auto;
  overflow: hidden;
}

#news_area #news .news_body {
  position: relative;
  z-index: 2;
  min-height: 21vw;

}

#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%;
  color: #ffffff;
  height: 2.2vw;
  width: 6.3vw;
  font-size: 1vw;
  text-align: center;
  text-shadow: 0vw .05vw .16vw #000;
  justify-content: center;
  align-items: center;
  align-content: center;
  line-height: 2.2vw;
  vertical-align: middle;
}

#news_area #news .notice_tabs_list ul li.active {
  background: url(../img/tab_on.jpg) no-repeat center center;
  background-size: 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%;
  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;
  background: #ffffffe6;
  padding: .83vw;
  height: 19vw;
}

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

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

#news_area #news .tabs>ul>li ul li {
  display: flex !important;
  flex-direction: row;
  border-bottom: .05vw solid #182b42;
  align-items: center;
  padding: .45vw 0;
  color: #333;
}

.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: 74%;
  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: .63vw;
  white-space: nowrap;
  font-weight: normal;
}

#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;
}

#news_area #news .tabs>ul>li ul li a:hover {
  color: #b41aeb;
  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: .2vw .5vw;
  background-color: #5d3e1b;
  color: #fff;
  border-radius: 0;
  font-size: .63vw;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

#gift h1 img {
  width: 100%;
}

.gift_img {
  width: 69vw;
  margin: 0 auto;
  padding: 2vw 0 1vw;
}

.gift_img img {
  width: 100%;
}

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

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

#season h1 img {
  width: 100%;
}

#season .season_swiper {
  width: 100%;
  height: 100%;
}

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

#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: 2vw;
  display: flex;
  gap: 0;
  padding: 1.04vw;
  background-color: rgb(0 0 0 / 67%);
  z-index: 1;
}

.season_small_swiper .swiper-slide {
  width: 25% !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: 50vw;
  z-index: 0;
  position: relative;
  scroll-margin-top: 0;
  text-align: center;
  padding: 4vw 0;
  background: url(../img/pc/ranking/ranking_bg.jpg) no-repeat center center;
  background-size: 100%;
}

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

#ranking h1 img {
  width: 100%;
}

/* 切换按钮区域 */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: .52vw;
  margin-bottom: .78vw;
  flex-wrap: wrap;
}

.tab-btn {
  color: #fff;
  width: 12.76vw;
  height: 4.06vw;
  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 .52vw;
}

#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;
}

/* 禁用的默认提示选项样式 */
#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.75vw;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 .52vw #000;
  position: relative;
  margin: 0 auto;
}

.ranking-table .ranking_num {
  width: 1.5vw;
  height: 1.5vw;
  margin: 0 auto;
}

.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.5vw;
  height: 1.5vw;
}

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

.ranking-table th {
  background-color: #8b0000;
  font-size: 1.04vw;
  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;
  }
}

/* chara */
#chara {
  width: 100%;
  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;
}

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

#chara h1 img {
  width: 100%;
}

#chara .chara_img {
  margin: 0vw auto 0;
  width: 100%;
}

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

#chara .hero_img {
  /* position: sticky; */
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin-top: -1vw;
}

#chara .swiper-wrapper,
#chara .swiper-container {
  width: 100%;
  position: relative;
}

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

#chara .chara_pagination {
  width: 27vw;
  display: flex;
  justify-content: space-around;
  z-index: 10;
  position: absolute;
  left: 50%;
  transform: translateX(-30vw);
  bottom: 8vw;
  align-items: center;
}

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

#chara .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%
  }
}

#chara .chara_pagination span {
  width: 5vw;
  height: 5vw;
  margin: 0vw .2083vw 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;
}

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

#chara .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: ""
}

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

#chara .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%)
  }
}

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

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

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

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

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

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

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

#chara .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: '';
}

#feature {
  width: 100%;
  height: 47.4vw;
  z-index: 0;
  position: relative;
  padding: 4vw 0;
  scroll-margin-top: 0vw;
  background-size: cover;
}

#feature h1 {
  width: 23vw;
  height: auto;
  margin: 0vw auto .94vw;
  z-index: 100;
  position: sticky;
}

#feature h1 img {
  width: 100%;
}

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

#feature .feature-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;
}

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

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

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

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

#feature .feature_pagination {
  width: 100%;
  text-align: center;
  line-height: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  bottom: 1vw !important;
}

#feature .feature_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);
}

#feature .feature_pagination .swiper-pagination-bullet-active {
  background: #de0a26;
}

#feature .feature_pagination span {
  margin: 0 .42vw;
}

#feature .feature_pagination span:focus {
  outline: -webkit-focus-ring-color auto 0vw;
}

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

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

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

.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: 47.4vw;
  background: url(../img/pc/world/world_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 4vw 0;
  scroll-margin-top: 1.67vw;
  overflow: hidden;
}

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

#world h1 img {
  width: 100%;
}

#world .world_text {
  width: 31vw;
  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: 50vw;
  position: relative;
  padding: 4vw 0;
  scroll-margin-top: 1.67vw;
  overflow: hidden;
}

#dictionary h1 {
  width: 25.83vw;
  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;
}

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

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

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

.content_tabs {
  width: 76%;
  margin: 0 auto;
}

.content_tabs ul li ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0 2.75vw;
}

.content_tabs ul li ul li {
  width: 22vw;
  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;
}

.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: 22vw;
  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 0;
  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: 4vw;
  left: 10vw;
  /* transform: translate(-50%,-50%); */
  animation: rotateAnimation2 10s linear infinite;
}

@keyframes rotateAnimation1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

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

.spec_info {
  /* padding: 0vw 0 4vw; */
}

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

#spec h1 img {
  width: 100%;
}

.assist {
  width: 100%;
  max-width: 46.875vw;
  margin: 1.6667vw auto;
  color: #fff;
  background: rgb(0 0 0 / 45%);
  padding: 1.6667vw;
}

.assist h2 {
  font-size: 1.0417vw;
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-bottom: .8333vw;
}

#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: .85vw;
  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 .spec_voice {
  width: 54vw;
  margin: 2.08vw auto 0;
}

#spec .spec_voice img {
  width: 100%;
}

.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: 9999;
  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);
}

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

#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: unset;
  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%;
}

#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: 13vw 0 3.91vw 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;
}

#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, #de0a26 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;
}

#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:hover {
  transform: scale(1.01);
}

#individual main #news_list>#news_body li:hover a .date {
  color: #de0a26;
  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: #de0a26;
  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: #de0a26;
  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 1.67vw auto;
}

#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: #de0a26;
  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: .83vw;
}

#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: #de0a26;
}

#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: .42vw .52vw .42vw 1vw;
  margin: 0 auto 1.3vw auto;
  margin: .83vw 0;
  font-weight: 600;
  font-size: 1.04vw;
  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 .giftcode_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 .giftcode_table th,
#individual main .pagecontent .spcontain .spcontainer .page_dital .giftcode_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 .giftcode_table th {
  background-color: #8b0000;
  color:#fff;
  font-size: 1.04vw;
  font-weight: bold;
}

#individual main .pagecontent .spcontain .spcontainer .page_dital .giftcode_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: #de0a26;
  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 .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: #de0a26;
  line-height: 2vw;
  color: #fff;
  font-size: 1vw;
}

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