:root {
  --gradient-1: -webkit-linear-gradient(-45deg, #8503af, #c72777);
  --item-border: 1.5px solid #8b1a71;
  --item-bg-color: #590842;
  --btn-border: 1.5px solid #ff3cad;
}
body {
  text-rendering: optimizeLegibility;
  background-color: #0a0812;
  color: #E7E6E7;
  position: relative;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 1px;
}
body.page-body {
  display: grid;
  grid-template-columns: minmax(0, 1024px) 270px;
  justify-content: center;
  gap: 120px;
  padding: 0 60px;
}
@media screen and (max-width: 1440px) {
  body.page-body {
    gap: 60px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-body {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 15px;
  }
}
body.page-body .main-body {
  max-width: 1024px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  body.page-body .main-body {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-body .main-footer {
    padding: 0;
  }
}
.page-bg {
  position: absolute !important;
  top: 80px;
  right: 0;
  height: 60vh;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .page-bg {
    top: 126px;
  }
}
.page-banner {
  position: absolute;
  top: 80px;
  right: 0;
  height: 60vh;
  aspect-ratio: 64 / 29;
}
.page-banner .banner-img {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease;
  z-index: 0;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .page-banner .banner-img {
    width: 140%;
    height: auto;
    right: -10%;
  }
}
.page-banner .banner-img.visible {
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .page-banner {
    height: auto;
    top: 126px;
    width: 100%;
  }
}
.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .main-header {
    padding: 10px 15px;
  }
}
.main-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-bottom: var(--btn-border);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
.main-header .nav-sec {
  position: relative;
  z-index: 999;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec {
    height: 100%;
    flex-wrap: wrap;
  }
}
.main-header .nav-sec .logo-sec {
  display: flex;
  align-items: center;
  z-index: 1000;
}
.main-header .nav-sec .logo-sec .logo-svg {
  width: 72px;
  height: 72px;
  transform: rotateY(180deg) rotate(20deg);
}
@media screen and (max-width: 768px) {
  .main-header .nav-sec .logo-sec .logo-svg {
    width: 48px;
    height: 48px;
  }
}
.main-header .nav-sec .logo-sec .title {
  transform: translateX(-35px);
  font-size: 20px;
  color: #FFF;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.4;
  text-align-last: justify;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .logo-sec .title {
    font-size: 15px;
    line-height: 15px;
    padding-bottom: 3px;
  }
}
.main-header .nav-sec .logo-sec .title .title-sub {
  font-size: 13px;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .logo-sec .title .title-sub {
    font-size: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .logo-sec:after {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    left: -15px;
    width: 100vw;
    height: 64px;
    border-bottom: var(--btn-border);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    pointer-events: none;
    transform: translateY(-100%);
  }
}
.main-header .nav-sec .base {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  height: 100%;
}
@media screen and (max-width: 1600px) {
  .main-header .nav-sec .base {
    gap: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .main-header .nav-sec .base {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #07090e;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 999;
    transform: translateY(-100%);
    flex-direction: column;
    padding: 100px 15vw 30px;
    justify-content: flex-start;
    gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base {
    padding: 80px 20px 30px;
  }
}
.main-header .nav-sec .base .link-parent {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .main-header .nav-sec .base .link-parent {
    padding: 20px 3vw;
  }
}
@media screen and (max-width: 1025px) {
  .main-header .nav-sec .base .link-parent {
    padding: 12px 6px;
  }
}
@media screen and (max-width: 1440px) {
  .main-header .nav-sec .base .link-parent {
    height: fit-content;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .main-header .nav-sec .base .link-parent:first-child .dropdown-menu .drop-li .dropmenu-text {
    flex-direction: column;
  }
  .main-header .nav-sec .base .link-parent.expand-show .base-link .title-toggle .bars:first-child {
    opacity: 0;
    transform: rotate(180deg);
  }
  .main-header .nav-sec .base .link-parent.expand-show .base-link .title-toggle .bars:last-child {
    opacity: 1;
    transform: rotate(360deg);
  }
  .main-header .nav-sec .base .link-parent.expand-show .dropdown-menu {
    max-height: 1000px;
    pointer-events: auto;
    margin-top: 20px;
  }
}
.main-header .nav-sec .base .link-parent .base-link {
  color: #fff;
  width: 100%;
  height: 100%;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}
.main-header .nav-sec .base .link-parent .base-link i {
  margin-left: 4px;
  font-size: 12px;
  font-weight: 700;
}
.main-header .nav-sec .base .link-parent .base-link i.front {
  margin-left: 0;
  margin-right: 8px;
}
@media screen and (max-width: 1440px) {
  .main-header .nav-sec .base .link-parent .base-link {
    justify-content: space-between;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base .link-parent .base-link {
    font-size: 14px;
  }
}
.main-header .nav-sec .base .link-parent .base-link .title-toggle {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (min-width: 1441px) {
  .main-header .nav-sec .base .link-parent .base-link .title-toggle {
    display: none;
  }
}
.main-header .nav-sec .base .link-parent .base-link .title-toggle .bars {
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #FFF;
  transition: all 0.5s;
  border-radius: 6px;
}
.main-header .nav-sec .base .link-parent .base-link .title-toggle .bars:first-child {
  opacity: 1;
  transform: rotate(0deg);
}
.main-header .nav-sec .base .link-parent .base-link .title-toggle .bars:last-child {
  opacity: 1;
  transform: rotate(90deg);
}
.main-header .nav-sec .base .link-parent .base-link .title-toggle.toggle-off .bars:first-child {
  opacity: 1;
  transform: rotate(180deg);
}
.main-header .nav-sec .base .link-parent .base-link .title-toggle.toggle-off .bars:last-child {
  transform: rotate(270deg);
}
@media screen and (max-width: 1440px) {
  .main-header .nav-sec .base .link-parent .base-link .downarrow {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  .main-header .nav-sec .base .link-parent .base-link .marrow {
    display: none;
  }
}
.main-header .nav-sec .base .link-parent .base-link:hover {
  color: var(--main-color);
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base .link-parent .base-link:hover {
    color: #fff;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu {
  opacity: 0;
  transform: translate(-50%, -30px);
  transition: opacity 0.35s cubic-bezier(0.26, 0.06, 0, 1), padding 0.35s cubic-bezier(0.26, 0.06, 0, 1), transform 1s cubic-bezier(0.18, 0.06, 0.23, 1), max-height 0.6s cubic-bezier(0.18, 0.06, 0.23, 1);
  position: absolute;
  left: 50%;
  top: 70px;
  z-index: 1;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: #161623;
  padding: 20px;
  display: grid;
  pointer-events: none;
  grid-template-columns: repeat(3, 1fr);
  width: 500px;
  gap: 10px;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1025px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1440px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu {
    opacity: 1;
    width: 100%;
    box-shadow: unset;
    background-color: unset;
    position: relative;
    left: 0;
    top: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transform: unset;
    margin-top: 0;
    transition: all 0.6s cubic-bezier(0.18, 0.06, 0.23, 1);
    gap: 6px;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .drop-li {
  transition: all 0.6s cubic-bezier(0.18, 0.06, 0.23, 1);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 6px;
  background-color: var(--item-bg-color);
  border: var(--item-border);
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .drop-li {
    padding: 4px;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .drop-li .drop-item {
  position: relative;
  width: 100%;
  display: block;
}
.main-header .nav-sec .base .link-parent .dropdown-menu .drop-li .drop-item .dropmenu-text {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .drop-li .drop-item .dropmenu-text {
    font-size: 14px;
    gap: 0;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .drop-li .drop-item .dropmenu-text .count {
  font-size: 14px;
  font-weight: 700;
  border-radius: 99px;
  letter-spacing: 0;
  padding: 0 10px;
  background-image: var(--gradient-1);
  border: var(--btn-border);
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .drop-li .drop-item .dropmenu-text .count {
    line-height: 1.3;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .drop-li .drop-item .dropmenu-text i {
  transition: all 0.6s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .drop-li .drop-item .dropmenu-text i {
    font-size: 12px;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .drop-li .drop-item .clubs-pic {
  border-radius: 4px;
  transition: all 1.2s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 1025px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .drop-li:hover {
    background-color: #880c65;
    border: 1.5px solid #b62294;
  }
  .main-header .nav-sec .base .link-parent .dropdown-menu .drop-li:hover > a {
    color: var(--main-color);
  }
  .main-header .nav-sec .base .link-parent .dropdown-menu .drop-li:hover .drop-item i {
    transform: translateX(10px);
  }
  .main-header .nav-sec .base .link-parent .dropdown-menu .drop-li:hover .clubs-pic {
    transform: scale(1.2);
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec {
  display: flex;
  flex-direction: column;
  padding: 20px 10px;
  width: 100%;
  gap: 30px;
  align-items: center;
  margin-top: 0;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec {
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .btn-box {
  display: flex;
  flex-direction: column;
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .btn-text {
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .btn-text {
    font-size: 14px;
    letter-spacing: 0.03rem;
    font-weight: 500;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .btn-sub {
  font-size: 12px;
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .btn-sub {
    font-size: 10px;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  height: 48px;
  min-width: 160px;
  margin-top: 4px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .button {
    width: 100%;
    min-width: 100%;
    height: 40px;
    margin-top: 4px;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .button i {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .button i {
    font-size: 24px;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .button .btn-num {
  font-weight: 700;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: -0.03rem;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .button .btn-num {
    font-size: 15px;
  }
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .code .qrcode {
  position: relative;
  width: 80px;
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .code .qrcode img {
  width: 100%;
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .code .qrcode::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  mix-blend-mode: darken;
  background-image: var(--gradient-1);
  pointer-events: none;
}
.main-header .nav-sec .base .link-parent .dropdown-menu .btn-sec .code .qrname {
  font-size: 12px;
  font-weight: 500;
  color: #c32479;
}
@media screen and (min-width: 1441px) {
  .main-header .nav-sec .base .link-parent:hover .base-link {
    color: var(--main-color);
  }
  .main-header .nav-sec .base .link-parent:hover .dropdown-menu {
    pointer-events: auto;
    opacity: 1;
    transform: translate(-50%, 0);
    transition: opacity 0.5s cubic-bezier(0.26, 0.06, 0, 1), padding 0.35s cubic-bezier(0.26, 0.06, 0, 1), transform 0.6s cubic-bezier(0.47, 0.16, 0.24, 1);
  }
}
.main-header .nav-sec .base .contact-box {
  opacity: 1;
  pointer-events: auto;
  flex-wrap: wrap;
  margin-top: auto;
  justify-content: center;
  padding-top: 30px;
  margin-right: 0;
  padding-right: 0;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .main-header .nav-sec .base .contact-box {
    width: 60%;
  }
}
@media screen and (min-width: 1441px) {
  .main-header .nav-sec .base .contact-box {
    display: none;
  }
}
.main-header .nav-sec .base .contact-box .contact-link {
  flex-basis: calc(50% - 5px);
}
.main-header .nav-sec .base .contact-box .contact-link .btn-text {
  font-size: 14px;
  line-height: 1;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .main-header .nav-sec .base .contact-box .contact-link .btn-text {
    font-size: 15px;
  }
}
.main-header .nav-sec .base .contact-box .contact-link .btn-sub {
  font-size: 12px;
  margin-bottom: 4px;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .main-header .nav-sec .base .contact-box .contact-link .btn-sub {
    font-size: 13px;
  }
}
.main-header .nav-sec .base .contact-box .contact-link .button {
  padding: 0;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .main-header .nav-sec .base .contact-box .contact-link .button {
    font-size: 16px;
  }
}
.main-header .nav-sec .base .contact-box .qrcode {
  display: block;
  width: 80px;
  pointer-events: none;
}
.main-header .nav-sec .contact-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 30px;
  margin-right: auto;
}
@media screen and (max-width: 1600px) {
  .main-header .nav-sec .contact-box {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .contact-box {
    order: 6;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
  }
}
.main-header .nav-sec .contact-box .contact-link {
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .contact-box .contact-link {
    flex: 1;
  }
}
.main-header .nav-sec .contact-box .contact-link .btn-text {
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .main-header .nav-sec .contact-box .contact-link .btn-text {
    font-size: 13px;
  }
}
.main-header .nav-sec .contact-box .contact-link .button {
  padding: 0 20px;
  letter-spacing: 0;
  gap: 6px;
  height: 36px;
}
@media screen and (max-width: 1600px) {
  .main-header .nav-sec .contact-box .contact-link .button {
    font-size: 14px;
  }
}
@media screen and (max-width: 1600px) {
  .main-header .nav-sec .contact-box .contact-link .button {
    padding: 0 14px;
  }
}
.main-header .nav-sec .contact-box .contact-link .button .lineicon {
  font-size: 24px;
}
.main-header .nav-sec .contact-box .qrcode {
  position: relative;
  width: 60px;
  padding: 2px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: top left;
}
@media screen and (max-width: 1600px) {
  .main-header .nav-sec .contact-box .qrcode {
    display: none;
  }
}
.main-header .nav-sec .contact-box .qrcode:after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  mix-blend-mode: plus-lighter;
  background-image: var(--gradient-1);
  pointer-events: none;
  z-index: -1;
}
.main-header .nav-sec .contact-box .qrcode:hover {
  cursor: none;
  transform: scale(2);
}
.main-header .menu-btn {
  width: 60px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1000;
  padding-left: 30px;
}
@media screen and (min-width: 1441px) {
  .main-header .menu-btn {
    display: none;
  }
}
.main-header .menu-btn .toggle {
  position: relative;
  width: 22px;
  cursor: pointer;
  margin-bottom: 4px;
  display: block;
  height: calc(4px * 3 + 3px * 2);
}
.main-header .menu-btn .toggle .bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  border-radius: calc(4px / 2);
  background: #ffffff;
  color: inherit;
  opacity: 1;
  transition: none 0.35s cubic-bezier(0.5, -0.35, 0.35, 1.5) 0s;
}
.main-header .menu-btn .toggle .bar.bar--top {
  bottom: calc(50% + 3px + 4px/2);
  transition-property: bottom,transform;
  transition-delay: calc(0s + 0.35s), 0s;
}
.main-header .menu-btn .toggle .bar.bar--middle {
  top: calc(50% - 3px/2);
  transition-property: opacity;
  transition-delay: calc(0s + 0.35s);
}
.main-header .menu-btn .toggle .bar.bar--bottom {
  top: calc(50% + 3px + 4px/2);
  transition-property: top,transform;
  transition-delay: calc(0s + 0.35s), 0s;
}
.main-header .menu-btn .menu-text {
  line-height: 1;
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}
.main-header .menu-btn.show-open .toggle .bar--top {
  bottom: calc(50% - 2.5px/2);
  transform: rotate(135deg);
  transition-delay: 0s, calc(0s + 0.35s);
}
.main-header .menu-btn.show-open .toggle .bar--middle {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: calc(0s + 0.35s);
}
.main-header .menu-btn.show-open .toggle .bar--bottom {
  top: calc(50% - 2.5px/2);
  transform: rotate(225deg);
  transition-delay: 0s, calc(0s + 0.35s);
}
.main-header.mmenu-show .nav-sec .logo-sec:after {
  transform: translateY(0);
}
.main-header.mmenu-show .nav-sec .base {
  transform: translateY(0);
}
.main-header.mmenu-show .menu-btn .toggle .bar--top {
  bottom: calc(50% - 2.5px/2);
  transform: rotate(135deg);
  transition-delay: 0s, calc(0s + 0.35s);
}
.main-header.mmenu-show .menu-btn .toggle .bar--middle {
  opacity: 0;
  transition-duration: 0s;
  transition-delay: calc(0s + 0.35s);
}
.main-header.mmenu-show .menu-btn .toggle .bar--bottom {
  top: calc(50% - 2.5px/2);
  transform: rotate(225deg);
  transition-delay: 0s, calc(0s + 0.35s);
}
.main-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 1024px) {
  .main-body {
    padding: 0 15px;
  }
}
.page-hero {
  width: 100%;
  height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .page-hero {
    height: auto;
    margin-bottom: 30px;
    padding-top: 35vh;
  }
}
.page-hero .page-title {
  font-size: 44px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .page-hero .page-title {
    font-size: 26px;
  }
}
.page-hero .normal-text {
  width: 60%;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1024px) {
  .page-hero .normal-text {
    font-size: 12px;
    width: 100%;
    margin-bottom: 8px;
  }
}
.page-hero .go-desc {
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .page-hero .go-desc {
    font-size: 13px;
  }
}
.page-hero .go-desc:hover {
  color: #FFF;
}
.breadcrumb {
  width: 100%;
  overflow: hidden;
  display: flex;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    font-size: 12px;
    max-width: 300px;
  }
}
.breadcrumb li {
  flex: 0 0 auto;
  white-space: nowrap;
}
.breadcrumb li:after {
  content: ">";
  padding: 0 8px;
}
.breadcrumb li.active {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  color: var(--main-color);
}
.breadcrumb li.active::after {
  content: "";
}
.main-footer {
  width: 100%;
  position: relative;
  z-index: 22;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 0 40px;
}
@media screen and (max-width: 1024px) {
  .main-footer {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 15px;
  }
}
.main-footer .adult,
.main-footer .copyright {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  color: #b8babc;
  font-size: 14px;
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .main-footer .adult,
  .main-footer .copyright {
    font-size: 11px;
    padding: 0 20px;
    margin: 0 0 20px;
  }
}
.main-footer .adult {
  margin: 60px 0 0;
}
.main-footer .copyright {
  margin: 0 0 20px;
}
.main-footer .btn-sec {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 80px 0;
}
@media screen and (max-width: 1024px) {
  .main-footer .btn-sec {
    margin: 30px 0;
  }
}
.main-footer .qrcode {
  position: relative;
  width: 120px;
  border-radius: 10px;
  overflow: hidden;
  justify-self: end;
}
.main-footer .qrcode::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  mix-blend-mode: darken;
  background-image: var(--gradient-1);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .main-footer .qrcode {
    margin: 0 auto;
  }
}
.share {
  flex: 1.4;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .share {
    flex-direction: column;
    text-align: center;
  }
}
.share .sharetext-box {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .share .sharetext-box {
    margin-bottom: 10px;
  }
}
.share .sharetext-box .sharetext {
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
}
.share .sharetext-box .sharetext2 {
  font-size: 12px;
  font-weight: 500;
}
.share .social {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .share .social {
    margin-left: 30px;
  }
}
.share .social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 10px;
  border-radius: 8px;
  padding: 8px;
  color: #e30187;
  transition: all 0.3s ease-in-out;
  font-size: 24px;
  cursor: pointer;
}
.share .social .social-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px;
  transform: scale(1.2);
}
.head-title {
  width: fit-content;
  font-weight: 700;
  color: transparent;
  background-image: linear-gradient(to right, #ff9d9d 45%, #fc4eb5);
  background-clip: text;
  -webkit-background-clip: text;
}
.btn-sec {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .btn-sec {
    width: 100%;
    gap: 10px;
  }
}
.btn-sec .btn-box {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .btn-sec .btn-box {
    flex: 1;
  }
}
.btn-sec .btn-text {
  font-size: 18px;
  font-weight: 700;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .btn-sec .btn-text {
    font-size: 15px;
    line-height: 1;
  }
}
.btn-sec .btn-sub {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .btn-sec .btn-sub {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.btn-sec .button {
  width: 260px;
  height: 64px;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .btn-sec .button {
    width: 100%;
    min-width: 100%;
    height: 40px;
    font-size: 15px;
  }
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 99px;
  background-image: var(--gradient-1);
  border: var(--btn-border);
  transition-duration: 0.3s;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .button {
    letter-spacing: 0;
    gap: 6px;
    font-size: 15px;
  }
}
.button .lineicon {
  font-size: 32px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .button .lineicon {
    font-size: 24px;
  }
}
.button .arrowicon {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .button .arrowicon {
    font-size: 14px;
  }
}
.button:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
  transform: scale(1.05);
}
.sec {
  width: 100%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 200px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .sec {
    margin-bottom: 80px;
  }
}
.sec .sec-title {
  font-size: 44px;
  line-height: 1.3;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .sec .sec-title {
    font-size: 24px;
    margin-bottom: 4px;
  }
}
.sec .sec-sub {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  width: 75%;
  margin: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .sec .sec-sub {
    font-size: 13px;
    width: 100%;
    padding: 0 15px;
    margin-bottom: 10px;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.clubs {
  container-type: inline-size;
}
.clubs .clubs-list {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, 1fr);
}
@container (max-width: 1280px) {
  .clubs .clubs-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@container (max-width: 1080px) {
  .clubs .clubs-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .clubs .clubs-list {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .clubs .clubs-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.clubs .clubs-list .clubs-item {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 10px;
  background-color: var(--item-bg-color);
  transition: all 0.3s;
  border: var(--item-border);
}
@media screen and (max-width: 1024px) {
  .clubs .clubs-list .clubs-item {
    border-radius: 14px;
    padding: 6px;
  }
}
.clubs .clubs-list .clubs-item:hover {
  background-color: #7e0b5e;
}
.clubs .clubs-list .clubs-item:hover .clubcover img {
  transform: scale(1.05);
}
.clubs .clubs-list .clubs-item .clubcover {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .clubs .clubs-list .clubs-item .clubcover {
    border-radius: 8px;
  }
}
.clubs .clubs-list .clubs-item .clubcover .cover-text {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  font-weight: 500;
  text-align: center;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.clubs .clubs-list .clubs-item .clubcover .cover-text .cover-title {
  font-size: 20px;
  padding: 4px 30px;
  margin: auto;
  margin-bottom: 6px;
  width: fit-content;
  gap: 6px;
}
@media screen and (max-width: 1024px) {
  .clubs .clubs-list .clubs-item .clubcover .cover-text .cover-title {
    font-size: 16px;
    padding: 2px 20px;
    margin-bottom: 0;
  }
}
.clubs .clubs-list .clubs-item .clubcover .cover-text .cover-sub {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .clubs .clubs-list .clubs-item .clubcover .cover-text .cover-sub {
    font-size: 11px;
  }
}
.clubs .clubs-list .clubs-item .clubcover .cover-text .cover-sub .num {
  text-decoration: 2px underline dashed #FFF;
  text-underline-offset: 5px;
  letter-spacing: 0;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .clubs .clubs-list .clubs-item .clubcover .cover-text .cover-sub .num {
    font-size: 16px;
  }
}
.clubs .clubs-list .clubs-item .clubcover img {
  transition: transform 1s ease;
}
.clubs .clubs-list .clubs-item .redcard-title {
  margin: 12px 0px 4px;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .clubs .clubs-list .clubs-item .redcard-title {
    font-size: 11px;
    margin: 8px 0px 2px;
  }
}
.clubs .clubs-list .clubs-item .avatar {
  display: flex;
  margin-top: 2px;
}
.clubs .clubs-list .clubs-item .avatar .avatar-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #FFF;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
.clubs .clubs-list .clubs-item .avatar .avatar-item:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 1024px) {
  .clubs .clubs-list .clubs-item .avatar .avatar-item {
    width: 32px;
    height: 32px;
    border: 1.5px solid #FFF;
  }
}
.clubs .clubs-list .clubs-item .avatar .avatar-item:not(:first-child) {
  margin-left: -8px;
}
@media screen and (max-width: 1024px) {
  .clubs .clubs-list .clubs-item .avatar .avatar-item:not(:first-child) {
    margin-left: -5px;
  }
}
.clubs .clubs-list .clubs-item .avatar .avatar-item img {
  width: 100%;
}
.how {
  max-width: 1200px;
}
@media screen and (max-width: 1024px) {
  .how {
    overflow: hidden;
  }
}
.how .step-main {
  width: 100%;
  margin: 0 auto 100px;
}
@media screen and (max-width: 1024px) {
  .how .step-main {
    margin: 0 auto 50px;
  }
}
.how .step-main .step {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .how .step-main .step {
    padding: 15vw 0;
  }
}
.how .step-main .step:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .how .step-main .step:nth-child(even) {
    text-align: end;
  }
}
@media screen and (max-width: 1024px) {
  .how .step-main .step:nth-child(even) .step-pic {
    left: -15px;
  }
}
@media screen and (max-width: 1024px) {
  .how .step-main .step:nth-child(odd) .step-pic {
    right: -15px;
  }
}
@media screen and (min-width: 1025px) {
  .how .step-main .step .step-content,
  .how .step-main .step .step-pic {
    flex: 1;
  }
}
.how .step-main .step .step-content {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .how .step-main .step .step-content {
    width: 70%;
  }
}
.how .step-main .step .step-content .step-title {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .how .step-main .step .step-content .step-title {
    font-size: 20px;
  }
}
.how .step-main .step .step-content .step-num {
  font-size: 320px;
  opacity: 1;
  transform: skewX(-10deg) rotate(0.7deg);
  line-height: 1;
  font-family: 'font2';
  color: transparent;
  text-stroke: 5px #e30187;
  -webkit-text-stroke: 5px #e30187;
}
@media screen and (max-width: 1024px) {
  .how .step-main .step .step-content .step-num {
    font-size: 120px;
    text-stroke: 3px #e30187;
    -webkit-text-stroke: 3px #e30187;
  }
}
.how .step-main .step .step-content .step-sub {
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .how .step-main .step .step-content .step-sub {
    font-size: 13px;
    text-align: left;
  }
}
.how .step-main .step .step-pic {
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .how .step-main .step .step-pic {
    position: absolute;
    top: 0;
    width: 70%;
    z-index: -1;
  }
}
.how .step-main .stepline {
  font-size: 160px;
  position: absolute;
  color: #e30187;
  z-index: 1;
  transform-origin: center;
}
@media screen and (max-width: 1400px) {
  .how .step-main .stepline {
    font-size: 140px;
  }
}
@media screen and (max-width: 1024px) {
  .how .step-main .stepline {
    font-size: 80px;
  }
}
.how .step-main .step1line {
  left: 40%;
  top: 80%;
}
@media screen and (max-width: 1024px) {
  .how .step-main .step1line {
    left: 50%;
    top: 86%;
  }
}
.how .step-main .step2line {
  left: 30%;
  top: 90%;
  transform: rotateY(180deg);
}
@media screen and (max-width: 1024px) {
  .how .step-main .step2line {
    left: 26%;
    top: 90%;
  }
}
.how .step-main .step3line {
  left: 40%;
  top: 90%;
}
@media screen and (max-width: 1024px) {
  .how .step-main .step3line {
    top: 85%;
    left: 55%;
  }
}
.how .step-main .step4line {
  left: 50%;
  top: 80%;
  transform: rotate(80deg);
}
@media screen and (max-width: 1024px) {
  .how .step-main .step4line {
    top: 82%;
    left: unset;
    transform: rotate(-8deg) scaleX(-1);
    right: -15px;
  }
}
.how .button {
  width: 400px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .how .button {
    width: fit-content;
    font-size: 15px;
    padding: 0 20px;
  }
}
.page-content h2 {
  width: fit-content;
  font-weight: 700;
  color: transparent;
  background-image: linear-gradient(to right, #ff9d9d 45%, #fc4eb5);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 28px;
}
@media screen and (max-width: 1024px) {
  .page-content h2 {
    font-size: 20px;
  }
}
.page-content h2,
.page-content h3,
.page-content h4 {
  margin: 40px 0 20px;
}
@media screen and (max-width: 1024px) {
  .page-content h2,
  .page-content h3,
  .page-content h4 {
    margin: 30px 0 10px;
  }
}
.page-content p {
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .page-content p {
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .faq {
    padding: 0 15px;
  }
}
.faq .button {
  width: 400px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .faq .button {
    width: fit-content;
    font-size: 15px;
    padding: 0 20px;
  }
}
.faq-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  max-width: 1024px;
  margin: auto;
  transition: all 0.3s;
}
.faq-item:last-of-type {
  margin-bottom: 60px;
}
.faq-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.faq-item[open] .question-card .title-toggle .bars:first-child {
  opacity: 0;
  transform: rotate(0deg);
}
.faq-item[open] .question-card .title-toggle .bars:last-child {
  transform: rotate(0deg);
}
.faq-item.open .question-card .title-toggle .bars:first-child {
  opacity: 0;
  transform: rotate(0deg);
}
.faq-item.open .question-card .title-toggle .bars:last-child {
  transform: rotate(0deg);
}
.faq-item.open .answer-card {
  opacity: 1;
}
.faq-item .question-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
}
@media screen and (max-width: 1024px) {
  .faq-item .question-card {
    padding: 6px 15px;
    align-items: flex-start;
  }
}
.faq-item .question-card .title-toggle {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.faq-item .question-card .title-toggle .bars {
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #FFF;
  transition: all 0.3s;
  border-radius: 6px;
}
.faq-item .question-card .title-toggle .bars:first-child {
  opacity: 1;
  transform: rotate(-180deg);
}
.faq-item .question-card .title-toggle .bars:last-child {
  transform: rotate(-270deg);
}
.faq-item .question-card .title-toggle:hover {
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}
.faq-item .answer-card {
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 10px 30px;
  transition: all 0.6s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .faq-item .answer-card {
    padding: 10px 15px 20px;
  }
}
.faq-item .chat-box {
  display: flex;
  font-weight: 700;
}
.faq-item .chat-box .avatar {
  font-size: 32px;
  line-height: 1;
}
.faq-item .chat-box .chat-content .name {
  font-size: 12px;
  margin: 0 0 2px 18px;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .faq-item .chat-box .chat-content .name {
    font-size: 10px;
    margin: 0 0 2px 8px;
  }
}
.faq-item .chat-box .chat-content .chat-content-text {
  position: relative;
  z-index: 1;
  background-color: #222b32;
  padding: 6px 16px;
  border-radius: 14px;
  margin-left: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .faq-item .chat-box .chat-content .chat-content-text {
    margin-left: 8px;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 10px;
  }
}
.faq-item .chat-box .chat-content .chat-content-text:after {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 0;
  height: 0;
  border: 18px solid transparent;
  border-right-color: #222b32;
  border-left: 0;
  border-top: 0;
  margin-top: -14px;
  margin-left: -10px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .faq-item .chat-box .chat-content .chat-content-text:after {
    margin-top: -12px;
    margin-left: -5px;
  }
}
.faq-item .chat-box.answer {
  flex-direction: row-reverse;
}
.faq-item .chat-box.answer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #393939;
}
.faq-item .chat-box.answer .chat-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.faq-item .chat-box.answer .chat-content .name {
  margin: 0 8px 2px 0;
}
.faq-item .chat-box.answer .chat-content .chat-content-text {
  background-color: #26bc4e;
  margin-right: 18px;
  color: #001c00;
  margin-bottom: 6px;
  max-width: 80%;
}
@media screen and (max-width: 768px) {
  .faq-item .chat-box.answer .chat-content .chat-content-text {
    margin-right: 8px;
  }
}
.faq-item .chat-box.answer .chat-content .chat-content-text::after {
  left: unset;
  right: 0;
  border: 18px solid transparent;
  border-left-color: #26bc4e;
  border-top: 0;
  border-right: 0;
  margin-left: unset;
  margin-right: -10px;
}
@media screen and (max-width: 768px) {
  .faq-item .chat-box.answer .chat-content .chat-content-text::after {
    margin-right: -5px;
  }
}
.news-list {
  width: 100%;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.news-list .news-item {
  background-color: var(--item-bg-color);
  border: var(--item-border);
  padding: 16px;
  cursor: pointer;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 1024px) {
  .news-list .news-item {
    width: 80%;
    padding: 8px;
  }
  .news-list .news-item:nth-child(even) {
    margin-left: auto;
  }
}
.news-list .news-item .img-wrapper {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 2;
}
@media screen and (max-width: 768px) {
  .news-list .news-item .img-wrapper {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }
}
.news-list .news-item .img-wrapper img {
  width: 100%;
  height: 100%;
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.news-list .news-item .news-title {
  font-size: 18px;
  padding: 16px 16px 10px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .news-list .news-item .news-title {
    font-size: 14px;
    padding: 10px;
  }
}
.news-list .news-item .news-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 16px 16px;
}
@media screen and (max-width: 1024px) {
  .news-list .news-item .news-sub {
    font-size: 12px;
    padding: 0 10px 10px;
  }
}
.news-list .news-item:hover .img-wrapper img {
  transform: scale(1.06);
}
.product-list {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1460px) {
  .product-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
.product-item {
  width: 100%;
  max-width: 270px;
  height: fit-content;
  overflow: hidden;
  padding: 10px;
  display: flex;
  gap: 12px;
  flex-direction: column;
  transition: all 0.3s;
  border-radius: 16px;
  background-color: var(--item-bg-color);
  border: var(--item-border);
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .product-item {
    padding: 6px;
  }
}
.product-item.bg-loaded {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
.product-item.loaded .pic img {
  opacity: 1;
}
.product-item.loaded .pic .name,
.product-item.loaded .pic .body {
  filter: blur(0);
  transition: filter 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.product-item .pic {
  width: 100%;
  position: relative;
  aspect-ratio: 5 / 6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .product-item .pic {
    border-radius: 12px;
  }
}
.product-item .pic img {
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 0;
  position: relative;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.product-item .pic .name {
  position: absolute;
  font-family: var(--font-family);
  font-size: 32px;
  font-weight: 500;
  z-index: 2;
  filter: blur(5px);
}
@media screen and (max-width: 1024px) {
  .product-item .pic .name {
    font-size: 22px;
  }
}
.product-item .pic .name.top-left {
  top: 5%;
  left: 5%;
  transform: rotate(-16deg);
}
.product-item .pic .name.top-right {
  top: 5%;
  right: 5%;
  transform: rotate(16deg);
}
.product-item .pic .name.middle-left {
  top: 45%;
  left: 5%;
  transform: rotate(-16deg);
}
.product-item .pic .name.middle-right {
  top: 45%;
  right: 5%;
  transform: rotate(16deg);
}
.product-item .pic .name.bottom-left {
  bottom: 5%;
  left: 5%;
  transform: rotate(-16deg);
}
.product-item .pic .name.bottom-right {
  bottom: 5%;
  right: 5%;
  transform: rotate(16deg);
}
.product-item .pic .name.name-style-1 {
  text-stroke: 6px #000000;
  -webkit-text-stroke: 6px #000000;
  /* text-shadow: 0 0 15px #ff48a7; */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .name.name-style-1 {
    text-stroke: 4px #000000;
    -webkit-text-stroke: 4px #000000;
    /* text-shadow: 0 0 4px rgba(217,21,153,0.2); */
  }
}
.product-item .pic .name.name-style-1:after {
  content: "";
  width: calc(100% + 20px);
  height: 50%;
  display: block;
  background-color: #fddb00;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 6px;
}
.product-item .pic .name.name-style-1:before {
  content: attr(data-name);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #FFF;
}
.product-item .pic .name.name-style-2 {
  text-stroke: 6px #68beff;
  -webkit-text-stroke: 6px #68beff;
  /* text-shadow: 0 0 15px #ff48a7; */
  /* &::after{
                    content: "";
                    width: calc(100% + 20px);
                    height: 25px;
                    display: block;
                    background-color: rgb(253, 219, 0);
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: -1;
                    border-radius: 6px;
                } */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .name.name-style-2 {
    text-stroke: 4px #68beff;
    -webkit-text-stroke: 4px #68beff;
    /* text-shadow: 0 0 4px rgba(217,21,153,0.2); */
  }
}
.product-item .pic .name.name-style-2:before {
  content: attr(data-name);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #FFF;
}
.product-item .pic .name.name-style-3 {
  text-stroke: 4px #94231a;
  -webkit-text-stroke: 4px #94231a;
  text-shadow: 4px 4px 1px #94231a;
  /* &::after{
                    content: "";
                    width: calc(100% + 20px);
                    height: 25px;
                    display: block;
                    background-color: rgb(253, 219, 0);
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: -1;
                    border-radius: 6px;
                } */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .name.name-style-3 {
    text-stroke: 4px #94231a;
    -webkit-text-stroke: 4px #94231a;
    text-shadow: 3px 3px 1px #94231a;
  }
}
.product-item .pic .name.name-style-3:before {
  content: attr(data-name);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #f8e1da;
}
.product-item .pic .name.name-style-4 {
  text-stroke: 6px #000000;
  -webkit-text-stroke: 6px #000000;
  /* text-shadow: 4px 4px 1px #94231a; */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .name.name-style-4 {
    text-stroke: 4px #000000;
    -webkit-text-stroke: 4px #000000;
    /* text-shadow: 3px 3px 1px #94231a; */
  }
}
.product-item .pic .name.name-style-4::after {
  content: "";
  width: calc(100% + 20px);
  height: 50%;
  display: block;
  background-color: #fd7200;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 6px;
}
.product-item .pic .name.name-style-4:before {
  content: attr(data-name);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #ffffff;
}
.product-item .pic .name.name-style-5 {
  text-stroke: 4px #1472ff;
  -webkit-text-stroke: 4px #1472ff;
  /* text-shadow: 4px 4px 1px #94231a; */
  /* &::after{
                    content: "";
                    width: calc(100% + 20px);
                    height: 25px;
                    display: block;
                    background-color: rgb(253, 114, 0);
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: -1;
                    border-radius: 6px;
                } */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .name.name-style-5 {
    text-stroke: 4px #1472ff;
    -webkit-text-stroke: 4px #1472ff;
    /* text-shadow: 3px 3px 1px #94231a; */
  }
}
.product-item .pic .name.name-style-5:before {
  content: attr(data-name);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #ffffff;
  z-index: 1;
}
.product-item .pic .name.name-style-5:after {
  content: attr(data-name);
  position: absolute;
  z-index: -1;
  text-stroke: 10px #69beff;
  -webkit-text-stroke: 10px #69beff;
  color: #69beff;
  top: 0;
  left: 0;
}
.product-item .pic .name.name-style-6 {
  text-stroke: 6px #ffffff;
  -webkit-text-stroke: 6px #ffffff;
  /* text-shadow: 4px 4px 1px #94231a; */
  /* &::after{
                    content: "";
                    width: calc(100% + 20px);
                    height: 25px;
                    display: block;
                    background-color: rgb(253, 114, 0);
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: -1;
                    border-radius: 6px;
                } */
  /* &:after{
                    content: attr(data-name);
                    position: absolute;
                    z-index: -1;
                    text-stroke: 10px #69beff;
                    -webkit-text-stroke: 10px #69beff;
                    color: #69beff;
                    top: 0;
                    left: 0;
                } */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .name.name-style-6 {
    text-stroke: 4px #ffffff;
    -webkit-text-stroke: 4px #ffffff;
    /* text-shadow: 3px 3px 1px #94231a; */
  }
}
.product-item .pic .name.name-style-6:before {
  content: attr(data-name);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #3c9d42;
  z-index: 1;
}
.product-item .pic .body {
  position: absolute;
  font-family: var(--font-family);
  font-size: 20px;
  font-weight: 500;
  z-index: 2;
  filter: blur(5px);
}
@media screen and (max-width: 1024px) {
  .product-item .pic .body {
    font-size: 14px;
  }
}
.product-item .pic .body.top-left {
  top: 7%;
  left: 7%;
  transform: rotate(-16deg);
}
.product-item .pic .body.top-right {
  top: 7%;
  right: 7%;
  transform: rotate(16deg);
}
.product-item .pic .body.middle-left {
  top: 45%;
  left: 7%;
  transform: rotate(-16deg);
}
.product-item .pic .body.middle-right {
  top: 45%;
  right: 7%;
  transform: rotate(16deg);
}
.product-item .pic .body.bottom-left {
  bottom: 7%;
  left: 7%;
  transform: rotate(-16deg);
}
.product-item .pic .body.bottom-right {
  bottom: 7%;
  right: 7%;
  transform: rotate(16deg);
}
.product-item .pic .body.body-style-1 {
  text-stroke: 6px #000000;
  -webkit-text-stroke: 6px #000000;
  /* text-shadow: 0 0 15px #ff48a7; */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .body.body-style-1 {
    text-stroke: 4px #000000;
    -webkit-text-stroke: 4px #000000;
    /* text-shadow: 0 0 4px rgba(217,21,153,0.2); */
  }
}
.product-item .pic .body.body-style-1:after {
  content: "";
  width: calc(100% + 20px);
  height: 25%;
  display: block;
  background-color: #fddb00;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 6px;
}
.product-item .pic .body.body-style-1:before {
  content: attr(data-body);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #FFF;
}
.product-item .pic .body.body-style-2 {
  text-stroke: 6px #68beff;
  -webkit-text-stroke: 6px #68beff;
  /* text-shadow: 0 0 15px #ff48a7; */
  /* &::after{
                    content: "";
                    width: calc(100% + 20px);
                    height: 15px;
                    display: block;
                    background-color: rgb(253, 219, 0);
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: -1;
                    border-radius: 6px;
                } */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .body.body-style-2 {
    text-stroke: 4px #68beff;
    -webkit-text-stroke: 4px #68beff;
    /* text-shadow: 0 0 4px rgba(217,21,153,0.2); */
  }
}
.product-item .pic .body.body-style-2:before {
  content: attr(data-body);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #FFF;
}
.product-item .pic .body.body-style-3 {
  text-stroke: 4px #94231a;
  -webkit-text-stroke: 4px #94231a;
  text-shadow: 3px 3px 1px #94231a;
  /* &::after{
                    content: "";
                    width: calc(100% + 20px);
                    height: 25px;
                    display: block;
                    background-color: rgb(253, 219, 0);
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: -1;
                    border-radius: 6px;
                } */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .body.body-style-3 {
    text-stroke: 4px #94231a;
    -webkit-text-stroke: 4px #94231a;
    text-shadow: 2px 2px 1px #94231a;
  }
}
.product-item .pic .body.body-style-3:before {
  content: attr(data-body);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #f8e1da;
}
.product-item .pic .body.body-style-4 {
  text-stroke: 6px #000000;
  -webkit-text-stroke: 6px #000000;
  /* text-shadow: 4px 4px 1px #94231a; */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .body.body-style-4 {
    text-stroke: 4px #000000;
    -webkit-text-stroke: 4px #000000;
    /* text-shadow: 3px 3px 1px #94231a; */
  }
}
.product-item .pic .body.body-style-4::after {
  content: "";
  width: calc(100% + 20px);
  height: 25%;
  display: block;
  background-color: #fd7200;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 4px;
}
.product-item .pic .body.body-style-4:before {
  content: attr(data-body);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #ffffff;
}
.product-item .pic .body.body-style-5 {
  text-stroke: 4px #1472ff;
  -webkit-text-stroke: 4px #1472ff;
  /* text-shadow: 4px 4px 1px #94231a; */
  /* &::after{
                    content: "";
                    width: calc(100% + 20px);
                    height: 25px;
                    display: block;
                    background-color: rgb(253, 114, 0);
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: -1;
                    border-radius: 6px;
                } */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .body.body-style-5 {
    text-stroke: 4px #1472ff;
    -webkit-text-stroke: 4px #1472ff;
    /* text-shadow: 3px 3px 1px #94231a; */
  }
}
.product-item .pic .body.body-style-5:before {
  content: attr(data-body);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #ffffff;
  z-index: 1;
}
.product-item .pic .body.body-style-5:after {
  content: attr(data-body);
  position: absolute;
  z-index: -1;
  text-stroke: 10px #69beff;
  -webkit-text-stroke: 10px #69beff;
  color: #69beff;
  top: 0;
  left: 0;
}
.product-item .pic .body.body-style-6 {
  text-stroke: 6px #ffffff;
  -webkit-text-stroke: 6px #ffffff;
  /* text-shadow: 4px 4px 1px #94231a; */
  /* &::after{
                    content: "";
                    width: calc(100% + 20px);
                    height: 25px;
                    display: block;
                    background-color: rgb(253, 114, 0);
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    z-index: -1;
                    border-radius: 6px;
                } */
  /* &:after{
                    content: attr(data-name);
                    position: absolute;
                    z-index: -1;
                    text-stroke: 10px #69beff;
                    -webkit-text-stroke: 10px #69beff;
                    color: #69beff;
                    top: 0;
                    left: 0;
                } */
}
@media screen and (max-width: 1024px) {
  .product-item .pic .body.body-style-6 {
    text-stroke: 4px #ffffff;
    -webkit-text-stroke: 4px #ffffff;
    /* text-shadow: 3px 3px 1px #94231a; */
  }
}
.product-item .pic .body.body-style-6:before {
  content: attr(data-body);
  position: absolute;
  -webkit-text-stroke: 0;
  color: #3c9d42;
  z-index: 1;
}
.product-item .pic video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.product-item .label {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .product-item .label {
    margin-bottom: 10px;
    gap: 3px;
  }
}
.product-item .label .label-item {
  font-size: 12px;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  line-height: 12px;
  padding: 5px 6px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  -webkit-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .product-item .label .label-item {
    font-size: 11px;
    padding: 3px 4px;
  }
}
.product-item .price-sec {
  display: flex;
  justify-content: space-between;
  padding-left: 8px;
  gap: 10px;
  margin-top: auto;
}
@media screen and (max-width: 1024px) {
  .product-item .price-sec {
    gap: 6px;
  }
}
.product-item .price-sec .price-card {
  position: relative;
  display: inline-block;
  transform: rotate(-5deg);
  transform-origin: left bottom;
}
.product-item .price-sec .price-card .price {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 3;
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: 52px;
  height: 34px;
  border-radius: 4px;
  background-color: #ca1296;
}
@media screen and (max-width: 1024px) {
  .product-item .price-sec .price-card .price {
    gap: 0;
    font-size: 13px;
    width: 44px;
    height: 30px;
    letter-spacing: -0.5px;
  }
}
.product-item .price-sec .price-card .twd {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .product-item .price-sec .price-card .twd {
    letter-spacing: 0;
    font-size: 9px;
  }
}
.product-item .price-sec .price-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-10deg);
  background-color: #9b0e73;
  transform-origin: left bottom;
  border-radius: 4px;
  z-index: 2;
}
.product-item .price-sec .price-card.red-card .price {
  background-color: #ce0202;
}
.product-item .price-sec .price-card.red-card:before {
  background-color: #b50202;
}
.product-item .price-sec .price-card.red-card:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(-20deg);
  background-color: #9b0202;
  transform-origin: left bottom;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .product-item .price-sec .price-card.red-card:after {
    width: 40px;
    height: 30px;
  }
}
.product-item .price-sec .button {
  gap: 6px;
  padding: 0;
  height: 32px;
  font-size: 13px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .product-item .price-sec .button {
    height: 28px;
    font-size: 12px;
    gap: 4px;
  }
}
.product-item .price-sec .button .lineicon {
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  .product-item .price-sec .button .lineicon {
    font-size: 18px;
  }
}
.page-recommend {
  position: relative;
  z-index: 2;
  margin-top: 55vh;
  max-width: 270px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .page-recommend {
    margin-top: 0;
    max-width: 100%;
  }
}
.page-recommend .page-recommend-title {
  margin: 0 auto 10px;
  font-size: 26px;
  position: sticky;
  top: 90px;
}
@media screen and (max-width: 1024px) {
  .page-recommend .page-recommend-title {
    margin: 0 auto 10px;
    position: relative;
    top: 0;
  }
}
.page-recommend .recommend-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  position: sticky;
  top: 141.59px;
}
@media screen and (max-width: 1024px) {
  .page-recommend .recommend-list {
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    top: 0;
  }
}
.page-list-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .page-list-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.page-list-box.recruit {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .page-list-box.recruit {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-list-box.recruit .re-text {
  position: absolute;
  top: 50%;
  left: 30px;
  width: 50%;
  transform: translateY(-50%);
  color: #FFF;
}
.page-list-box.recruit .re-text .re-title {
  font-size: 22px;
  margin-bottom: 6px;
}
.page-list-box.recruit .re-text .re-sub {
  font-size: 13px;
  margin-bottom: 0;
}
.page-list-box .page-list-item {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 10px;
  background-color: var(--item-bg-color);
  transition: all 0.3s;
  border: var(--item-border);
}
.page-list-box .page-list-item img {
  border-radius: 10px;
  overflow: hidden;
}
