/**
 * Entry of basic styles
 */
html {
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
}
.video-close-btn > img,.ilus-close-btn > img,.close-more-div > img{
  transition: transform 0.4s ease-in-out;
}
.video-close-btn:hover > img,.ilus-close-btn:hover > img,.close-more-div:hover > img{
  transform: rotate(360deg);
}
a {
  text-decoration: none;
}
input,
button,
textarea {
  color: inherit;
  font: inherit;
}
a:focus,
input:focus,
button:focus,
textarea:focus,
[class*='van-']:focus {
  outline: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-div {
  width: 100%;
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: '微软雅黑';
}
h4 {
  line-height: 40px;
}
@media (min-width: 350px) {
  header {
    width: 100%;
    padding-top: 20px;
  }
  .tophead {
    margin: 10px auto;
    width: 900px;
  }
  .tophead img {
    display: inline-block;
    width: 100px;
  }
  header nav {
    margin: 0 auto;
    width: 900px;
  }
  nav {
    font-size: 0;
    padding: 5px 8px;
    background-color: dodgerblue;
    border-radius: 7px;
  }
  nav li {
    display: inline-block;
    margin-left: 10px;
    padding: 3px 8px 6px 8px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    border-radius: 3px;
    cursor: pointer;
  }
  nav li:hover {
    background: white;
    text-decoration: none;
    color: steelblue;
  }
  .first {
    background: white;
    color: steelblue;
  }
  .wrap {
    width: 900px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .ad {
    margin: 5px 0;
  }
  .ad img {
    width: 100%;
  }
  .content {
    border: 1px lightgray solid;
    border-radius: 3px;
    padding: 5px;
  }
  .conHead {
    font-size: 15px;
    color: steelblue;
    font-weight: 600;
    background-color: #f1fdff;
  }
  #tips {
    font-size: 15px;
    color: steelblue;
    font-weight: 600;
  }
  .content p {
    padding: 2px 10px;
    font-size: 14px;
    text-indent: 2em;
  }
}
html {
  width: 100%;
  /* min-width: 992px; */
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* 隐藏滚动条，保持滚动效果 */
/* Firefox 64 */
/* IE 11 */
html {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  position: relative;
}
/* 防止弹框弹出，页面滚动到顶部 */
.van-overflow-hidden {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}
img {
  -webkit-user-drag: none;
}
@media screen and (min-width: 2560px) {
  .role-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left {
    left: 24%;
  }
  .role-des-div .swiper-container .swiper-wrapper .swiper-slide .des-right {
    right: 13%;
  }
}
@media screen and (max-width: 2560px) and (min-width: 1920px) {
  html,
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 1920px) and (min-width: 1700px) {
  html,
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 1700px) and (min-width: 1200px) {
  html,
  body {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 992px) {
  html,
  body {
    font-size: 11px;
  }
}
@media screen and (max-width: 992px) and (min-width: 450px) {
  html,
  body {
    font-size: 11px;
  }
}
@media screen and (max-width: 450px) and (min-width: 380px) {
  html,
  body {
    font-size: 9px;
  }
}
@media screen and (max-width: 380px) {
  html,
  body {
    font-size: 7px;
  }
}
@font-face {
  font-family: 'GmarketSansTTFMedium';
  src: url(../font/GmarketSansTTFMedium.ttf);
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-display: swap;
}
.width-full {
  width: 100%;
}
.height-full {
  height: 100%;
}
.overflow-ellipsis {
  /* overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; */
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* 弹性 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.justify-content-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-content-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-content-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-shrink {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.kv-change-all-div {
  overflow: hidden;
}
.kv-change-all {
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background-color: #f26c1c;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-120%, 0) skewX(-20deg);
  transform: translate(-120%, 0) skewX(-20deg);
  -webkit-transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 0;
}
.allroles-roles-main-div.kv-change-all-div:hover .kv-change-all {
  -webkit-transform: translate(0, 0) skewX(0deg);
  transform: translate(0, 0) skewX(0deg);
}
.main-model-div {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.van-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.van-multi-ellipsis--l2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}
.van-multi-ellipsis--l3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  /* autoprefixer: ignore next */
  -webkit-box-orient: vertical;
}
.van-clearfix::after {
  display: table;
  clear: both;
  content: '';
}
[class*='van-hairline']::after {
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: ' ';
  pointer-events: none;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  border: 0 solid #ebedf0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
.van-hairline,
.van-hairline--top,
.van-hairline--left,
.van-hairline--right,
.van-hairline--bottom,
.van-hairline--surround,
.van-hairline--top-bottom {
  position: relative;
}
.van-hairline--top::after {
  border-top-width: 1px;
}
.van-hairline--left::after {
  border-left-width: 1px;
}
.van-hairline--right::after {
  border-right-width: 1px;
}
.van-hairline--bottom::after {
  border-bottom-width: 1px;
}
.van-hairline--top-bottom::after,
.van-hairline-unset--top-bottom::after {
  border-width: 1px 0;
}
.van-hairline--surround::after {
  border-width: 1px;
}
@-webkit-keyframes van-slide-up-enter {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes van-slide-up-enter {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-webkit-keyframes van-slide-up-leave {
  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes van-slide-up-leave {
  to {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@-webkit-keyframes van-slide-down-enter {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes van-slide-down-enter {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@-webkit-keyframes van-slide-down-leave {
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes van-slide-down-leave {
  to {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@-webkit-keyframes van-slide-left-enter {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes van-slide-left-enter {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes van-slide-left-leave {
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes van-slide-left-leave {
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes van-slide-right-enter {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes van-slide-right-enter {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes van-slide-right-leave {
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes van-slide-right-leave {
  to {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@-webkit-keyframes van-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes van-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes van-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes van-fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes van-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes van-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.van-fade-enter-active {
  -webkit-animation: 0.3s van-fade-in both ease-out;
  animation: 0.3s van-fade-in both ease-out;
}
.van-fade-leave-active {
  -webkit-animation: 0.3s van-fade-out both ease-in;
  animation: 0.3s van-fade-out both ease-in;
}
.van-slide-up-enter-active {
  -webkit-animation: van-slide-up-enter 0.3s both ease-out;
  animation: van-slide-up-enter 0.3s both ease-out;
}
.van-slide-up-leave-active {
  -webkit-animation: van-slide-up-leave 0.3s both ease-in;
  animation: van-slide-up-leave 0.3s both ease-in;
}
.van-slide-down-enter-active {
  -webkit-animation: van-slide-down-enter 0.3s both ease-out;
  animation: van-slide-down-enter 0.3s both ease-out;
}
.van-slide-down-leave-active {
  -webkit-animation: van-slide-down-leave 0.3s both ease-in;
  animation: van-slide-down-leave 0.3s both ease-in;
}
.van-slide-left-enter-active {
  -webkit-animation: van-slide-left-enter 0.3s both ease-out;
  animation: van-slide-left-enter 0.3s both ease-out;
}
.van-slide-left-leave-active {
  -webkit-animation: van-slide-left-leave 0.3s both ease-in;
  animation: van-slide-left-leave 0.3s both ease-in;
}
.van-slide-right-enter-active {
  -webkit-animation: van-slide-right-enter 0.3s both ease-out;
  animation: van-slide-right-enter 0.3s both ease-out;
}
.van-slide-right-leave-active {
  -webkit-animation: van-slide-right-leave 0.3s both ease-in;
  animation: van-slide-right-leave 0.3s both ease-in;
}
.van-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.van-info {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 16px;
  padding: 0 3px;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  font-family: -apple-system-font, Helvetica Neue, Arial, sans-serif;
  line-height: 1.2;
  text-align: center;
  background-color: #ee0a24;
  border: 1px solid #fff;
  border-radius: 16px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transform-origin: 100%;
  transform-origin: 100%;
}
.van-info--dot {
  width: 8px;
  min-width: 0;
  height: 8px;
  background-color: #ee0a24;
  border-radius: 100%;
}
.van-overflow-hidden {
  overflow: hidden !important;
}
.van-popup {
  position: fixed;
  max-height: 100%;
  overflow-y: auto;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-overflow-scrolling: touch;
}
.van-popup--center {
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.van-popup--center.van-popup--round {
  border-radius: 16px;
}
.van-popup--top {
  top: 0;
  left: 0;
  width: 100%;
}
.van-popup--top.van-popup--round {
  border-radius: 0 0 16px 16px;
}
.van-popup--right {
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.van-popup--right.van-popup--round {
  border-radius: 16px 0 0 16px;
}
.van-popup--bottom {
  bottom: 0;
  left: 0;
  width: 100%;
}
.van-popup--bottom.van-popup--round {
  border-radius: 16px 16px 0 0;
}
.van-popup--left {
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.van-popup--left.van-popup--round {
  border-radius: 0 16px 16px 0;
}
.van-popup--safe-area-inset-bottom {
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
}
.van-popup-slide-top-enter-active,
.van-popup-slide-left-enter-active,
.van-popup-slide-right-enter-active,
.van-popup-slide-bottom-enter-active {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.van-popup-slide-top-leave-active,
.van-popup-slide-left-leave-active,
.van-popup-slide-right-leave-active,
.van-popup-slide-bottom-leave-active {
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.van-popup-slide-top-enter,
.van-popup-slide-top-leave-active {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}
.van-popup-slide-right-enter,
.van-popup-slide-right-leave-active {
  -webkit-transform: translate3d(100%, -50%, 0);
  transform: translate3d(100%, -50%, 0);
}
.van-popup-slide-bottom-enter,
.van-popup-slide-bottom-leave-active {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.van-popup-slide-left-enter,
.van-popup-slide-left-leave-active {
  -webkit-transform: translate3d(-100%, -50%, 0);
  transform: translate3d(-100%, -50%, 0);
}
.van-popup__close-icon {
  position: absolute;
  z-index: 1;
  color: #c8c9cc;
  font-size: 22px;
  cursor: pointer;
}
.van-popup__close-icon:active {
  color: #969799;
}
.van-popup__close-icon--top-left {
  top: 16px;
  left: 16px;
}
.van-popup__close-icon--top-right {
  top: 16px;
  right: 16px;
}
.van-popup__close-icon--bottom-left {
  bottom: 16px;
  left: 16px;
}
.van-popup__close-icon--bottom-right {
  right: 16px;
  bottom: 16px;
}

@-webkit-keyframes loading-rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes loading-rotate {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes loading-wipe {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}

@keyframes loading-wipe {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}

.__vuescroll .__refresh,
.__vuescroll .__load {
  position: absolute;
  width: 100%;
  color: black;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
}
.__vuescroll .__refresh svg,
.__vuescroll .__load svg {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  vertical-align: sub;
}
.__vuescroll .__refresh svg.active,
.__vuescroll .__load svg.active {
  transition: all 0.2s;
}
.__vuescroll .__refresh svg.active.deactive,
.__vuescroll .__load svg.active.deactive {
  transform: rotateZ(180deg);
}
.__vuescroll .__refresh svg path,
.__vuescroll .__refresh svg rect,
.__vuescroll .__load svg path,
.__vuescroll .__load svg rect {
  fill: #20a0ff;
}
.__vuescroll .__refresh svg.start,
.__vuescroll .__load svg.start {
  stroke: #343640;
  stroke-width: 4;
  stroke-linecap: round;
  -webkit-animation: loading-rotate 2s linear infinite;
  animation: loading-rotate 2s linear infinite;
}
.__vuescroll .__refresh svg.start .bg-path,
.__vuescroll .__load svg.start .bg-path {
  stroke: #f2f2f2;
  fill: none;
}
.__vuescroll .__refresh svg.start .active-path,
.__vuescroll .__load svg.start .active-path {
  stroke: #20a0ff;
  fill: none;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  -webkit-animation: loading-wipe 1.5s ease-in-out infinite;
  animation: loading-wipe 1.5s ease-in-out infinite;
}
#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  /* min-width: 992px; */
  height: auto;
  overflow-y: hidden;
  overflow-x: hidden;
}
.main_gray {
  -webkit-filter: grayscale(100%) !important;
  -moz-filter: grayscale(100%) !important;
  -ms-filter: grayscale(100%) !important;
  -o-filter: grayscale(100%) !important;
  filter: grayscale(100%) !important;
  -webkit-filter: gray !important;
  filter: gray !important;
}
.main_gray {
  /* webkit */
  /*firefox*/
  /*ie9*/
  /*opera*/
  -webkit-filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
  filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
  /*ie9- */
}

.role-info-div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.role-info-div .role-info-content-div {
  width: 100%;
  height: 100%;
}
.role-info-des-div {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 6;
}
.role-info-des-div .swiper-slide-top {
  width: 20.0625rem;
  height: 3.1875rem;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateY(-95%);
  transform: translateY(-95%);
  background: url(https://res.17996cdn.net/gf2/kr/images/home/role-bg-top.png);
}
.role-info-des-div .swiper-slide-bottom {
  width: 40rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.role-info-des-div .swiper-slide-bottom > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container {
  background: url(https://res.17996cdn.net/gf2/tw/images/home/role-des-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.role-info-des-div .swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  position: relative;
}
.role-info-des-div .swiper-container .swiper-wrapper .role-des-row-line {
  position: absolute;
  left: 0;
  top: 5.1875rem;
  width: 100%;
  height: 1px;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/pagination-line.png) no-repeat;
  background-size: 100% 100%;
  z-index: 1;
}
.role-info-des-div .swiper-container .swiper-wrapper .role-des-row-line .role-des-row-dian {
  width: 0.1875rem;
  height: 0.1875rem;
  background-color: #c9c8ce;
  position: absolute;
  left: 4.6875rem;
  top: 50%;
  -webkit-transform: translate(-40%, -50%);
  transform: translate(-40%, -50%);
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide {
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* position: relative; */
  top: 0;
  left: 0;
  opacity: 0 !important;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left {
  position: absolute;
  top: 50%;
  left: 21%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 1;
  width: 30.8rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .des-left .des-left-an2 {
  animation: slideInFromLeft_20 400ms ease-out 160ms forwards;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 {
  width: 100%;
  height: 50%;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-class {
  width: 9.5rem;
  height: 2.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 2.5rem;
  font-size: 0;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-class .role-class-img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-class .left-top-dian {
  width: 0.1875rem;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: -1.25rem;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-name-des {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-name-des .charalic-div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 5rem;
  font-size: 0;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-name-des .charalic-div > img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-name-des .role-name {
  color: #ffffff;
  font-size: 2.9375rem;
  line-height: 2.9375rem;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 650;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-name-des .des-left-an1 {
  width: 1.875rem;
  height: 100%;
  position: absolute;
  left: -1.25rem;
  top: 0.1875rem;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-name-des .des-left-an1 .role-name-des-line {
  width: 0.1875rem;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-name-des .des-left-an1 .role-name-des-dian {
  width: 0.1875rem;
  position: absolute;
  left: 0.625rem;
  top: 0;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  width: 100%;
  position: relative;
  margin-top: 1.5rem;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div {
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  margin-right: 2.3125rem;
  width: 100%;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div:first-child {
  order: 1;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .mic-icon-div {
  width: 1rem;
  margin-right: 0.5rem;
  position: relative;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .mic-icon-div .mic-icon {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .mic-icon-div .mic-icon-active {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  mix-blend-mode: multiply;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .name-dub {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .name-dub .span1 {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Noto Sans SC', sans-serif;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .name-dub .span2 {
  font-size: 1.25rem;
  font-family: 'Noto Sans SC', sans-serif;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .dub-dian {
  width: 0.1875rem;
  position: absolute;
  left: -1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}
.mic-icon-all-div:hover .mic-icon-active,
.AudioPlay {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .col-line {
  width: 29.875rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1.1875rem 0;
  font-size: 0;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .col-line > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div {
  opacity: 0;
  width: 100%;
  height: 50%;
  position: relative;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .des-left .role-details-div {
  animation: slideInFromLeft_20 400ms ease-out 220ms forwards;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .role-details {
  width: 100%;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .role-details > span {
  font-size: 1rem;
  line-height: 1.875rem;
  color: #fff;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 600;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 13.125rem;
  opacity: 1;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  width: 9.5625rem;
  height: 2.3125rem;
  border: 1px solid rgba(250, 250, 250, 0.3);
  transition: border 0.3s;
  border-radius: 0.1875rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div:hover {
  border: 1px solid rgba(250, 250, 250, 0.83);
  transition: border 0.3s;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .header-div-r {
  width: 6rem;
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 0.8125rem;
  position: relative;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .header-div-r .head-img {
  width: 5.125rem;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .header-div-r .head-img > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .header-div-r .huan-head-div {
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  font-size: 0;
  opacity: 0.3;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .header-div-r .huan-head-div > img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .see-draw {
  width: 4.125rem;
  position: relative;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .see-draw .see-draw-img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .see-draw .dian {
  width: 0.1875rem;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  left: -1.25rem;
  top: 0.375rem;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .role-see-lihui-div {
  width: 6rem;
  height: 1.375rem;
  padding-right: 0.625rem;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .role-see-lihui-div > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .role-see-video-div {
  width: 5.6875rem;
  height: 1.25rem;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .role-see-video-div > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .play-video-div {
  position: absolute;
  bottom: 0;
  left: 11.625rem;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .play-role-see-more-div {
  border: none !important;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .play-role-see-more-div {
  position: absolute;
  bottom: -5.25rem;
  left: 0;
  background-color: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 9.5625rem;
  height: 2.3125rem;
  border-radius: 0.1875rem;
  overflow: hidden;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .play-role-see-more-div .kv-change-all {
  border-radius: 0.1875rem;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .play-role-see-more-div .role-see-more-div {
  position: relative;
  z-index: 1;
  width: 5.5625rem;
  height: 1.125rem;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .play-role-see-more-div .role-see-more-div > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-right {
  position: absolute;
  top: 0;
  right: 9%;
  z-index: 1;
  width: 54.2%;
  height: 100%;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-right .role-img {
  opacity: 0;
  width: 65.125rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-right .role-img.role-img-15 {
  width: 77.125rem;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active .des-right .role-img {
  animation: slideInFromRight_20 400ms ease-out 200ms forwards;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.role-info-des-div .swiper-slide-active {
  z-index: 3 !important;
}
@keyframes slideInFromRight_20 {
  0% {
    opacity: 0;
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInFromLeft_20 {
  0% {
    opacity: 0;
    transform: translate3d(-20%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInFromBottom_20 {
  0% {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInFromBottom_100 {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-right .role-img > img {
  height: 69.075rem;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom;
  object-position: bottom;
}
.role-info-des-div .swiper-container .role-des-swiper-button-prev {
  width: 2.25rem;
  height: 4.25rem;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 16.75rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  font-size: 0;
  opacity: 0.3;
}
.role-info-des-div .swiper-container .role-des-swiper-button-prev > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .role-des-swiper-button-next {
  width: 2.25rem;
  height: 4.25rem;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  right: 11.75rem;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 0;
  opacity: 0.3;
  transition: opacity 0.45s;
}
.role-info-des-div .swiper-container .role-des-swiper-button-prev:hover,
.role-info-des-div .swiper-container .role-des-swiper-button-next:hover,
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-pagination-new-prev:hover,
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-pagination-new-next:hover {
  opacity: 1 !important;
  transition: opacity 0.45s;
  /* 动画: 0.2s; */
}
.role-info-des-div .swiper-container .role-des-swiper-button-next > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.role-info-des-div .swiper-container {
  position: relative;
}
.role-info-des-div .swiper-container .role-des-swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/pagination-line.png) no-repeat;
  background-size: 0.0625rem 100%;
  background-position: center;
  width: 10px;
  height: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 4.6875rem;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
.role-info-des-div .swiper-pagination-bullets {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.swiper-pagination-bullet-div {
  height: 2.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.role-info-des-div .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: transparent;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/pagination.png) no-repeat;
  background-size: 100% auto;
  background-position: center;
  padding: 1.125rem 0;
  cursor: pointer;
}
.role-info-des-div .swiper-pagination-bullets .swiper-pagination-bullet-active {
  width: 1.25rem;
  height: 1.3125rem;
  background-color: transparent;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/pagination-active.png) no-repeat;
  background-size: 100% auto;
  background-position: center;
}

.play-ilus-popup {
  background-color: transparent !important;
}
.play-ilus-popup-div {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
}
.play-ilus-popup-div .ilus-img-div {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/ilus-bg.png) no-repeat;
  background-size: cover;
}
.play-ilus-popup-div .ilus-img-div .ilus-img {
  box-sizing: border-box;
  width: 50%;
  height: 100%;
  font-size: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 3%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.play-ilus-popup-div .ilus-img-div .ilus-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.play-ilus-popup-div .ilus-img-div .ilus-close-btn {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 0;
  position: absolute;
  top: 5%;
  right: 20%;
  cursor: pointer;
}
.play-ilus-popup-div .ilus-img-div .ilus-close-btn > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.play-video-popup-div {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
}
.play-video-popup-div .video-img-div {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/ilus-bg.png) no-repeat;
  background-size: cover;
}
.play-video-popup-div .video-img-div .video-img {
  width: 74%;
  height: auto;
  font-size: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.play-video-popup-div .video-img-div .video-img > video {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.play-video-popup-div .video-img-div .video-img .video-close-btn {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 0;
  position: absolute;
  top: 0;
  right: -0.625rem;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  cursor: pointer;
}
.play-video-popup-div .video-img-div .video-img .video-close-btn > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all {
  height: 60%;
  position: absolute;
  left: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-pagination-new-prev {
  width: 2.25rem;
  font-size: 0;
  position: absolute;
  top: -2.25rem;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.45s;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-pagination-new-prev > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-pagination-new-prev:hover {
  opacity: 1;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-pagination-new-next {
  width: 2.25rem;
  font-size: 0;
  position: absolute;
  bottom: -2.25rem;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.45s;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-pagination-new-next > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-pagination-new-next:hover {
  opacity: 1;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new {
  width: 6.25rem;
  height: 37.5rem;
  overflow: hidden;
  position: relative;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller {
  width: 100%;
  height: auto;
  position: absolute;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new {
  width: 5rem !important;
  height: 6.25rem !important;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide.swiper-pagination-bullet-div-new {
  opacity: 1 !important;
  pointer-events: inherit;
}

.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new {
  width: 100%;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new > img {
  width: 85%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new.swiper-slide-thumb-active .swiper-pagination-bullet-new > img,
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new:hover img {
  /* width: 96%; */
  transform: scale(1.15);
  transition: transform 0.3s;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new .swiper-pagination-bullet-active-new1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid #ffffff;
  opacity: 0.3;
}
.role-info-des-div .swiper-container .swiper-wrapper .swiper-slide.swiper-pagination-bullet-div-new.swiper-slide-thumb-active .swiper-pagination-bullet-new .swiper-pagination-bullet-active-new1 {
  height: 5.5rem;
  width: 5.5rem;
  border: 1px solid rgb(242, 108, 28);
  opacity: 1;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new .swiper-pagination-bullet-active-new2 {
  opacity: 1 !important;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new .swiper-pagination-bullet-active-new2 {
  width: 5.625rem;
  height: 5.625rem;
  border: 2px solid #f26c1c;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new .swiper-pagination-bullet-active-new {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 5rem;
  height: 5rem;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new .swiper-pagination-bullet-active-new > img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new .swiper-pagination-bullet-noactive-new {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 5.625rem;
  height: 5.625rem;
}
.role-info-des-div .swiper-container .role-swiper-pagination-bullets-new-all .role-swiper-pagination-bullets-new .role-swiper-pagination-bullets-new-scoller .swiper-pagination-bullet-div-new .swiper-pagination-bullet-new .swiper-pagination-bullet-noactive-new > img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}

/* footer-div */

.footer-div {
  width: 100%;
  padding: 2rem 2rem;
  background: url(https://res.17996cdn.net/gf2/tw/images/home/footer-bg.png) no-repeat;
  background-size: 100% 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  font-size: 0.82rem;
  gap: 4rem;
  position: relative;
  max-height: 213px;
}
.footer-div .all-logo-div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  width: 50rem;
}
.f-os {
  max-width: 48%;
  margin-left: 2%;
}
.footer-div .all-logo-div p {
  margin: 0.5rem 0;
}
.footer-div .all-logo-div .game-logo-div img {
  width: 32.0625rem;
  padding-top: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-div .all-logo-div .company-logo-div {
  width: 12.25rem;
  padding-top: 2rem;
}
.footer-div .all-logo-div .company-logo-div > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-div .all-logo-div .copyright-div {
  width: 20.375rem;
  padding-top: 1.125rem;
}
.footer-div .all-logo-div .copyright-div > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-div .all-logo-div .company-logo-pc-div {
  width: 23.75rem;
  padding-top: 2rem;
}
.footer-div .all-logo-div .company-logo-pc-div > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer-div .footer-text-div {
  font-size: 0.75rem;
  color: #989999;
  min-width: 37rem;
  margin: 0 1rem;
  padding-top: 1.6875rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 0.82rem;
}
.footer-div .footer-text-div .text-goto-div {
  line-height: 2rem;
  border-bottom: 1px solid #989999;
}
.footer-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
}
.footer-div .footer-link > span {
  cursor: pointer;
}
.footer-div .footer-link > a {
  color: #989999;
  margin: 0 4px;
}
.footer-div .footer-text-div .text-rule-div {
  padding-top: 0;
  line-height: 1.125rem;
  font-size: 0.75rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 1%;
}
.footer-div .footer-text-div .text-rule-div img {
  width: 4.4rem;
}
.footer-div .footer-text-div .text-rule-div a {
  color: #989999;
}
.footer-div .footer-text-div .text-rule-div .age-icon-div {
  margin-left: 2.5rem;
  width: 23px;
  height: 25px;
  background: url(https://res.17996cdn.net/gf2/tw/images/home/fawuico.png) no-repeat;
  cursor: pointer;
}
.footer-div .footer-text-div .text-rule-div .line {
  padding: 0 0.4375rem;
}
.footer-div .footer-text-div .text-rule-div .control-div {
  padding-left: 0.5rem;
}
.footer-div .footer-text-div .text-rule-div .control-div > a {
  color: #989999;
}
.footer-cooperation-popup-div,
.footer-call-popup-div {
  width: 35.0625rem !important;
  height: 21.125rem !important;
}
.footer-cooperation-popup-div,
.footer-call-popup-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Noto Sans SC', sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.footer-cooperation-main-div {
  color: #efefef;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.footer-call-main-div {
  color: #efefef;
  font-size: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.locale-lang {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 1px 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: #919191;
  background-color: #000;
  padding: 0 1rem;
  max-width: 13rem;
  margin-left: -3rem;
  margin-top: 3.3rem;
  z-index: 100;
}
.locale-lang:hover {
  outline: 0;
  background-color: none;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.locale-lang select {
  border: 0;
  position: relative;
  display: flex;
  background-color: #000;
  width: 7rem;
  overflow: hidden;
  /* height: 2.53rem !important; */
  border-radius: 22px;
  font-size: 1.05rem;
}
.locale-lang .uk-input:focus,
.locale-lang .uk-select:focus,
.locale-lang .uk-textarea:focus {
  outline: 0;
  background-color: initial;
  color: #fff;
  border-color: initial;
}

.icon-wrapper-3s-64u {
  width: auto;
}
.icon-wrapper-3s-64u .icon-1qVZxg {
  height: 22px;
  width: 22px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAiCAYAAAA6RwvCAAAJaUlEQVRYhZWYW0wc5xmGn5md2dmZPWB2l2WJLUzK0Tbg2CuDQrG0ta0kCkKJaiVRkxvLtmjcSL3qra9yU6nqTesKB7mVL51GQYoUh+A4gCyfpJiUQxLDOiKAE7MLy8KezzO9qHcLGBPnvduZ/b///d7/O/0jfPDBB/xCNAPdQDuwF7A/fh4HFoAp4CYwu5ORvr6+Tb+lX0DgNHAmk8l0xWIxVlZWCIfDJBIJAGw2G263m6qqKhwOBxaL5Tbwz6WlpX+ZzWby+TySJGGz2dA07Qnjz0Lkj8C5lZWVlunpaWZmZshkMgCYzWZkWUYQBPL5PLlcDsMwsFgsNDc3d7W3t3fV1NT8CegPBoN/NwzjqZvsROQA8F4ymTz35ZdfMjs7iyAIGIaBpmlomkYymSSdTqNpGrquo2kagiCg6zqTk5OMj4/T0tKy7/jx43/zer37gH+k0+lvt9vM1Nvbu93zk8D5mZmZN69cuUIoFKJYLGI2m6mvrycSibC+vs7LL79MOp0mFAqxe/du8vk8uq4jiiKKomCxWFhaWuKrr77C5XIdcbvdzbIsJw3DuO/z+X6WyJvAezdv3jx27do1isUisizj9/vZt28fL7zwAnV1dciyTFNTE6+88gp2u536+noWFxdJJpOYTKayMYvFgslk4uuvv0YUxV/V1tZ6gLTP59ukzFYi7cD527dv+8fGxhAEAZfLxdtvv013dzc1NTXIssyePXtoa2ujoqICQRAIBAKMjIxgGAa5XI5oNIokSciyjK7rSJKEpmlMT08jSVJdbW1t1fj4+H98Pl/oaTFybnZ21j86Ooooijz33HOcOXOGyspKgsEggiAgCALRaBSr1UowGOTy5cskEglUVUXTNE6ePEkul+Pq1av89NNPuN1uFEXBMAy8Xi/Xr1/H6/X66+vrzwHnShuLG0icT6fT73766adIkoTb7eb06dM4HA5CoRCCIABQinyTyUQikaBQKCAIAqlUinQ6jdPppLe3l56eHk6ePInT6eTRo0dlJ6qqqhgcHCSVSr07MDBwfrujuTI4OGgPh8PY7XZOnTqF1+tleXl505mXkMlkcDqddHR0sHfvXhKJBGtraxw4cADDMKiurubQoUOoqko4HC6nvCRJ5QBvbW1t8fl8f92oyLloNFozPz9PRUUFhmGQSCQQBGFbEkC5diiKwpEjR3jjjTfo6OjA6/WSSqVIpVL8+OOPdHZ2cvr0aUwmE9lstpz+c3NzxOPxmoGBgXc3KvKvsbGx6tXVVaxWK7lcjomJCRRFYc+ePRSLxW3JABSLReLxOIqiUFdXRy6XQ5IkdF0nEAjwxRdfMDExQSwWA6CyspLW1lbm5uYwDIP6+vpan893UQTqdF1vm5ubw2KxoOs6qqqSSqUIh8MoivJUElvVARBFEUEQqKmpIZVKMTIywvz8PLIsI8symUyG0vE/ePCAQqHQPjAwUCcCL62trZFMJpFlGQBd18semkwmdirNG5HP51FVFafTydWrV7l58yZ79+7FarViGAaiKBKPx/nhhx+w2+1Eo1HW19cBXhKBg6FQCFEUNxnVdR3DMMoyPwtKHn/88ccMDQ1RKBTKzpVsptNpXn/9ddrb20kkEoRCIYCDIrA3FAphsVg2SS2KIvfu3UPXdaxW68+S0XUdr9fL1NQUn332GS6Xq9yDtqKmpoaWlhY0TWN5eRmgVgRsyWQSSdpc2xwOBzMzM3z00UeYzeayvCWUpDabzWiahsViIRQKMT8/j8vl2vZISw7euHEDQRCoqKggHo8D2MWNf9q6qLKyktHRUYaHhxEEoexhsVgsV9JMJsPa2hqqqnLlyhWmp6eprKx8qnI2m41AIMCDBw+wWCzlfSUgYbPZyOfzm86z5LHT6eSbb76hqqqK/fv3o6oqhmEQjUb5/PPPiUQiRCIRenp6aGxsJBAI7HiMgiAgSRIPHz4km81is9kA4iKwUF1dTTqdfmKRYRhYrVay2Sw3btzgzp07qKqK3W5nYWGB8fFxQqEQmUyGu3fv8vDhQ+x2+xN2thIpFArMz8+TyWTweDwAiyIw6fF4dvTCZDIRj8cZGhpiZmaG6upqDMMgm83idDppa2tjfX2d77//ftsxcDvIskyxWCwRmRSBa7t27cJqtVIoFLZVRRRFVFVFFEXu3r3LysoKXV1d+P1+enp68Hg8hMNhbDbbjlV4IwqFAjabrRRP10y9vb3roij+NhaLVS8sLKCq6lMXl1r/5OQkgiDQ2NiIz+cjkUiQSCSIxWJIklSusjv1qVgsRltbGw0NDVN9fX1/LmVNf0dHR7mI7QSHw8Hq6ioffvghly5d4uLFi/h8Pl599VWWlpaIx+NIkkShUGB5ebncYzZmZSnzOjo6APrh/03vnqIov3/06JF9eXl5U3HbDmazGZvNhqIozM7OMjU1RWtrK4qiYLVaeeutt2hoaMBut6NpGouLi5hMpvLEH41Gef755zl8+PBSX1/f7zYSAdAaGhp+MzExUR7vfg6CILBr1y7C4TDBYJDdu3fj9/vxeDxUVFTQ2tpKa2srqqoSDAbJZrPouk6hUOCdd95BluW/+Hy+G7B5QntfUZT+o0ePEovFnrnR6bqOy+UiGAwyNDREIpEgm80Si8VYXl7GarXS2dmJoijk83nC4TCvvfYamqb19/X1vV+ys9Xt/kOHDu3L5/P+4eFhqqurn5mMIAh0dnbidrvJZDLY7XZsNhvT09MMDg4Si8VIp9OcOHGCxsbGUR7HxtOITPM4cHO5nH9sbAyn04ksyzsqpOs62WyWw4cP09jYSDAYJBQKMTw8zJ07dygUCui6jt/vp6uraxTo7+vrm96JCMC/gUJ3d3fB4/Gc+OSTTxAEAYfDUb7pbYUgCKiqytraGrdu3WJiYoKZmRkikUg5SHt7e2lqarr+WInBJ2zs8DWgfOUcGRnh/v37mEwmNE3btj6IoohhGKytrZHL5coEmpubOXbsGFartR+4kEqlvrPZbJw9e3bT+p1S41vgD1ar9bve3t5zL7744v7JyUkCgQDxeLw8ApQaZTabJZ1OI4oiLpeLpqYmDh48iNvt/g7oj0QiF4CnFsxn+RpwAbjgdrtPHT9+/OzRo0d/vb6+zsrKCqurq6V5ArvdjsvlKqeu2Wy+BVyKRCKXS/fhraPGLyVSwmXgstlsbvJ4PN0ej+cgUAs4Hr+PAYvAJP/7UBMAcDqdTxjarsH+FzVYJFyhM6EoAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-size: contain;
}
.allroles-div {
  width: 100%;
  height: 100%;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-bg.png) no-repeat fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.allroles-div .allroles-content-div {
  width: 100%;
  height: auto;
}
.allroles-div .allroles-content-div .allroles-content-all {
  width: 100%;
  height: 100%;
  padding-bottom: 10.3125rem;
  position: relative;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-title {
  width: 28.3125rem;
  height: 8.5625rem;
  margin: 0 auto;
  font-size: 0;
  padding-top: 5rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-title > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-icon-left {
  position: absolute;
  left: 5.625rem;
  bottom: 5.375rem;
  width: 0.6875rem;
  height: 49.5rem;
  font-size: 0;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-icon-left > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-icon-right {
  position: absolute;
  right: 5.625rem;
  top: 0;
  width: 0.6875rem;
  height: 59.3125rem;
  font-size: 0;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-icon-right > img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array {
  width: 87.5rem;
  margin: 0 auto;
  padding-top: 1.875rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header {
  width: 100%;
  padding-bottom: 0.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-img-bg {
  width: 3.5625rem;
  height: 3.875rem;
  font-size: 0;
  position: absolute;
  left: -2.125rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-img-bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-icon-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 1;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-icon-div .allroles-class-icon {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 0.1875rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: -0.625rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-icon-div .allroles-class-icon .allroles-class-img1 {
  width: 3.1875rem;
  height: 3.0625rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-class-img.png) no-repeat;
  background-size: cover;
  background-position: 0 0;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-icon-div .allroles-class-icon .allroles-class-img2 {
  width: 3.1875rem;
  height: 3.0625rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-class-img.png) no-repeat;
  background-size: cover;
  background-position: 0 33%;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-icon-div .allroles-class-icon .allroles-class-img3 {
  width: 3.1875rem;
  height: 3.0625rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-class-img.png) no-repeat;
  background-size: cover;
  background-position: 0 66%;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-icon-div .allroles-class-icon .allroles-class-img4 {
  width: 3.1875rem;
  height: 3.0625rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-class-img.png) no-repeat;
  background-size: cover;
  background-position: 0 100%;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-icon-div .allroles-classname-img {
  width: 8rem;
  height: 3.1875rem;
  font-size: 0;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-class .allroles-class-icon-div .allroles-classname-img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-rightimg {
  width: 13.3125rem;
  height: 2.625rem;
  font-size: 0;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-header .allroles-array-header-rightimg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main {
  width: 100%;
  padding: 2.6875rem 0;
  background-color: rgba(160, 155, 151, 0.06);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-top: 0.3125rem solid #525557;
  border-left: 0.0625rem solid #484949;
  border-right: 0.0625rem solid #484949;
  border-bottom: 0.0625rem solid #484949;
  position: relative;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-main-watermark {
  width: 21.6875rem;
  height: 10rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-main-watermark1.png) no-repeat;
  background-size: contain;
  background-position: right bottom;
  position: absolute;
  right: 0;
  bottom: 0;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-main-watermark1 {
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-main-watermark1.png) no-repeat;
  background-size: contain;
  background-position: right bottom;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-main-watermark2 {
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-main-watermark2.png) no-repeat;
  background-size: contain;
  background-position: right bottom;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-main-watermark3 {
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-main-watermark3.png) no-repeat;
  background-size: contain;
  background-position: right bottom;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-main-watermark4 {
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-main-watermark4.png) no-repeat;
  background-size: contain;
  background-position: right bottom;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .pagination-button-prev,
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .pagination-button-next {
  width: 1.3125rem;
  height: 4.125rem;
  background: rgba(90, 90, 90, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .pagination-button-prev .pagination-button-icon,
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .pagination-button-next .pagination-button-icon {
  width: 0.5625rem;
  height: 0.875rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/visual-pagination-default.png) no-repeat;
  background-size: 100% 100%;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .pagination-button-prev {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .pagination-button-prev:hover .pagination-button-icon {
  width: 0.5625rem;
  height: 0.875rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/visual-pagination-hover.png) no-repeat;
  background-size: 100% 100%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .pagination-button-next {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .pagination-button-next .pagination-button-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .pagination-button-next:hover .pagination-button-icon {
  width: 0.5625rem;
  height: 0.875rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/visual-pagination-hover.png) no-repeat;
  background-size: 100% 100%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div {
  width: 94%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0.5rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-line-div {
  width: 0.125rem;
  height: 10.25rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-roles-line.png) no-repeat;
  background-size: 100% 100%;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div {
  width: 7.25rem;
  height: 10.25rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-roles-bg.png) no-repeat;
  background-size: 100% 100%;
  margin: 0 0.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-image-div {
  width: 100%;
  height: 100%;
  font-size: 0;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-image-div > img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-top-div {
  width: 6.75rem;
  height: 9.5rem;
  background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-roles-top.png) no-repeat;
  background-size: contain;
  background-position: right center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div {
  width: 5.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.125rem 0;
  background-color: #010101;
  position: absolute;
  bottom: 1.0625rem;
  right: 0;
  overflow: hidden;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .kv-change-all {
  mix-blend-mode: lighten;
}

.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-class-div {
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0;
  margin-left: 0.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 10;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-class-div > img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-class-div .allroles-roles-name-class-img1 {
  width: 0.875rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-class-div .allroles-roles-name-class-img2 {
  width: 1.1875rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-class-div .allroles-roles-name-class-img3 {
  width: 0.8125rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-class-div .allroles-roles-name-class-img4 {
  width: 0.75rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-name-div {
  font-size: 0.9375rem;
  color: #fff;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 10;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-name-div .allroles-roles-name-icon-div {
  width: 0.25rem;
  height: 0.9375rem;
  font-size: 0;
  margin-left: 0.1875rem;
}
.allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-name-div .allroles-roles-name-icon-div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 1024px) {
  .all-app {
    width: 100%;
    /* height: 100%; */
  }
  #app {
    font-family: NotoSansHansMedium, Avenir, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    min-width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
  .main_gray {
    -webkit-filter: grayscale(100%) !important;
    -moz-filter: grayscale(100%) !important;
    -ms-filter: grayscale(100%) !important;
    -o-filter: grayscale(100%) !important;
    filter: grayscale(100%) !important;
    -webkit-filter: gray !important;
    filter: gray !important;
  }
  .main_gray {
    /* webkit */
    /*firefox*/
    /*ie9*/
    /*opera*/
    -webkit-filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    /*ie9- */
  }

  .home-div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    background-color: #000;
    position: relative;
    bottom: 0;
    z-index: 99;
  }
  .home-div .bg-img-div {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .home-div .bg-img-div .video {
    width: 100%;
    height: 100%;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/home-BELKA_1c2a1be910.png) no-repeat;
    background-size: cover;
    background-position: top left;
  }
  .home-div .bg-img-div .index-bg-div {
    width: 100%;
    height: 100%;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/home_index_bg.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  .home-div .bottom-img-div {
    width: 100%;
    position: absolute;
    top: 44rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .home-div .bottom-img-div .home-logo-daiyan-div {
    width: 100%;
    font-size: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .home-div .bottom-img-div .home-logo-daiyan-div > img {
    display: block;
    width: 107%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .home-div .bottom-img-div .slogan-div {
    width: 83.867%;
    font-size: 0;
    margin: 0 auto;
  }
  .home-div .bottom-img-div .slogan-div > img {
    display: block;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .home-div .bottom-img-div .ex2lium-div {
    width: 89.867%;
    position: relative;
    font-size: 0;
    margin-bottom: 5.625rem;
  }
  .home-div .bottom-img-div .ex2lium-div > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .home-div .bottom-img-div .ex2lium-div .ex2lium-icon-div {
    width: 1.5625rem;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  .home-div .bottom-img-div .ex2lium-div .ex2lium-icon-div > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .home-div .bottom-img-div .download-icon-div {
    width: 70%;
    font-size: 0;
    margin: 0 auto;
  }
  .home-div .bottom-img-div .download-icon-div > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .home-div .bottom-img-div .download-tap-bili {
    width: 70%;
    padding-top: 0.625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .home-div .bottom-img-div .download-tap-bili .download-tap-div {
    width: 31%;
    font-size: 0;
  }
  .home-div .bottom-img-div .download-tap-bili .download-tap-div > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .home-div .bottom-img-div .download-tap-bili .download-bili-div {
    width: 31%;
    font-size: 0;
  }
  .home-div .bottom-img-div .download-tap-bili .download-bili-div > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .home-div .age-limit-div {
    width: 4.25rem;
    position: absolute;
    top: 11.5625rem;
    left: 3.125rem;
    font-size: 0;
    cursor: pointer;
    z-index: 2;
  }
  .home-div .age-limit-div > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .home-div .home-logo-div {
    width: 10.9375rem;
    position: absolute;
    top: 8.25rem;
    right: 0.5rem;
    font-size: 0;
  }
  .home-div .home-logo-div > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .role-info-div .swiper-container {
    position: relative;
  }
  .role-info-div .swiper-container .role-des-swiper-pagination {
    background-size: 0.0625rem 100%;
    background-position: center;
    width: 80%;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 3.25rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    overflow: hidden;
    display: none;
  }
  .role-info-div .swiper-pagination-bullets {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content !important;
    z-index: 100;
    height: fit-content;
    position: absolute;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    bottom: 5rem;
    transform: none !important;
    left: 0rem !important;
  }
  .swiper-pagination-bullet-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .role-info-div .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 0.9375rem;
    height: 0.9375rem;
    background-color: transparent;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/pagination2.png) no-repeat;
    background-size: 100%;
    background-position: center;
    margin: 0 0.9375rem;
    cursor: pointer;
    /* left: 20px !important; */
  }
  .role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 24.125rem;
    right: 0rem;
    opacity: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    width: 13rem;
    height: 8rem;
  }
  .role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .see-draw {
    width: 5.125rem;
    position: relative;
  }
  .role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-name-des .charalic-div {
    display: none;
  }
  .role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .role-name-des .role-name {
    color: #ffffff;
    font-size: 4.75rem;
    line-height: 4.75rem;
    font-family: 'Noto Sans SC', sans-serif;
  }
  .role-info-div .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: 0.9375rem;
    height: 0.9375rem;
    background-color: transparent;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/pagination-active2.png) no-repeat;
    background-size: 100%;
    background-position: center;
  }
  .role-info-div .swiper-slide-active {
    z-index: 3 !important;
  }
  .play-ilus-popup {
    background-color: transparent !important;
  }
  .play-ilus-popup-div {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
  }
  .play-ilus-popup-div .ilus-img-div {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/ilus-bg.png) no-repeat;
    background-size: cover;
  }
  .role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    position: initial;
    bottom: 0;
    width: fit-content;
    height: fit-content;
    border: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    align-content: center;
    flex-wrap: nowrap;
  }
  .play-ilus-popup-div .ilus-img-div .ilus-img {
    width: 100%;
    height: 100%;
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 1%;
  }
  .role-info-des-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .play-icon-div .header-div .header-div-r {
    width: 6rem;
    height: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    position: relative;
  }
  .play-ilus-popup-div .ilus-img-div .ilus-img > img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .play-ilus-popup-div .ilus-img-div .ilus-close-btn {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 0;
    position: absolute;
    top: 5%;
    right: 5%;
    cursor: pointer;
  }
  .play-ilus-popup-div .ilus-img-div .ilus-close-btn > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .play-video-popup-div {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
  }
  .play-video-popup-div .video-img-div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/ilus-bg.png) no-repeat;
    background-size: cover;
  }
  .play-video-popup-div .video-img-div .video-img {
    width: 100%;
    height: auto;
    max-width: 640px;
    font-size: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .play-video-popup-div .video-img-div .video-img {
    width: 94%;
  }
  .play-video-popup-div .video-img-div .video-img > video {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .play-video-popup-div .video-img-div .video-img .video-close-btn {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 0;
    position: absolute;
    top: -5rem;
    right: 4.375rem;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    cursor: pointer;
  }
  .play-video-popup-div .video-img-div .video-img .video-close-btn > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .role-info-div {
    width: 100%;
    height: 83.375rem;
    position: relative;
    z-index: 6;
    margin-top: 0;
  }
  .role-info-div .swiper-container {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .role-info-div .swiper-container .swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    position: relative;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/role-bg.png) no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }
  .role-info-div .swiper-container .swiper-wrapper .role-des-row-line {
    position: absolute;
    left: 0;
    top: 5.1875rem;
    width: 100%;
    height: 1px;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/pagination-line.png) no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    display: none;
  }
  .role-info-div .swiper-container .swiper-wrapper .role-des-row-line .role-des-row-dian {
    width: 0.1875rem;
    height: 0.1875rem;
    background-color: #c9c8ce;
    position: absolute;
    left: 4.6875rem;
    top: 50%;
    -webkit-transform: translate(-40%, -50%);
    transform: translate(-40%, -50%);
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide {
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-right {
    z-index: 1;
    width: 100%;
    height: 71%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: inherit;
    right: 0;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-right .role-img {
    opacity: 0;
    width: 100%;
    height: 69.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-right .role-img > img {
    height: 68.75rem;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: -10.875rem;
    max-width: max-content;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left {
    z-index: 2;
    opacity: 1;
    width: 85%;
    height: 26%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    margin-bottom: 9.5rem;
    bottom: auto;
    right: auto;
    left: auto;
    top: inherit;
    transform: none;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 {
    width: 100%;
    height: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .role-name-des .role-class {
    width: 12.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 2.125rem;
    font-size: 0;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .role-name-des .role-class .role-class-img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .role-name-des .role-class .left-top-dian {
    width: 0.1875rem;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: -1.25rem;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .role-name-des .role-name {
    color: #ffffff;
    font-size: 4.75rem;
    line-height: 4.75rem;
    font-family: 'Noto Sans SC', sans-serif;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .role-name-des .des-left-an1 {
    width: 1.875rem;
    height: 100%;
    position: absolute;
    left: -1.25rem;
    top: 0.1875rem;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .role-name-des .des-left-an1 .role-name-des-line {
    width: 0.1875rem;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .role-name-des .des-left-an1 .role-name-des-dian {
    width: 0.1875rem;
    position: absolute;
    left: 0.625rem;
    top: 0;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .header-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .header-div .header-div-r {
    width: 5.75rem;
    height: 5.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0.8125rem;
    position: relative;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .header-div .header-div-r .head-img {
    width: 4.9375rem;
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .header-div .header-div-r .head-img > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .header-div .header-div-r .huan-head-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 0;
    opacity: 0.3;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .header-div .header-div-r .huan-head-div > img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .header-div .see-draw {
    width: 4.125rem;
    position: relative;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .header-div .see-draw .see-draw-img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .header-div .see-draw .dian {
    width: 0.1875rem;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    left: -1.25rem;
    top: 0.375rem;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .des-left-top .play-icon-div .play-video-div {
    margin-left: 1.25rem;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    position: relative;
    margin-top: 2.625rem;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div {
    height: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    margin-right: 2.3125rem;
    margin-bottom: 0.35rem;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .mic-icon-div {
    width: 1.2rem;
    margin-right: 0.875rem;
    position: relative;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .mic-icon-div .mic-icon {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .mic-icon-div .mic-icon-active {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    mix-blend-mode: multiply;
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .name-dub {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .name-dub .span1 {
    color: #fff;
    font-size: 1.5rem;
    font-family: 'Noto Sans SC', sans-serif;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .mic-icon-all-div .name-dub .span2 {
    font-size: 1.5rem;
    font-family: 'Noto Sans SC', sans-serif;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .des-left-an2 .dub-div .dub-dian {
    width: 0.1875rem;
    position: absolute;
    left: -1.25rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .col-line {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 1.5625rem 0;
    font-size: 0;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .col-line > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div {
    width: 100%;
    height: 50%;
    position: relative;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .role-details {
    width: 100%;
  }
  .role-info-div .swiper-container .swiper-wrapper .swiper-slide .des-left .role-details-div .role-details > span {
    font-size: 1.375rem;
    line-height: 2.375rem;
    color: #efefef;
    font-family: 'Noto Sans SC', sans-serif;
  }
  .role-info-div .swiper-container .role-more-div {
    margin: 0 7.5%;
    position: absolute;
    left: 0;
    bottom: 7.25rem;
    z-index: 1;
  }
  .role-info-div .swiper-container .role-more-div .dub-dian {
    width: 0.1875rem;
    position: absolute;
    left: -1.25rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .role-info-div .swiper-container .role-more-div .role-more-btn {
    background-color: #f2f2f2;
    padding: 0.4375rem 1.9375rem 0.5625rem 1.1875rem;
    border-radius: 0.25rem;
    width: auto;
  }
  .role-info-div .swiper-container .role-more-div .role-more-btn .role-see-more {
    width: 6.25rem;
    height: 1.25rem;
    font-size: 0;
  }
  .role-info-div .swiper-container .role-more-div .role-more-btn .role-see-more > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: top left;
    object-position: top left;
  }
  .role-info-div .swiper-container .role-des-swiper-button-prev {
    width: 2.25rem;
    height: 4.25rem;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 29.0625rem;
    left: 2.625rem;
    z-index: 1;
    cursor: pointer;
    font-size: 0;
    opacity: 0.3;
  }
  .role-info-div .swiper-container .role-des-swiper-button-prev > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .role-info-div .swiper-container .role-des-swiper-button-next {
    width: 2.25rem;
    height: 4.25rem;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 29.0625rem;
    right: 2.625rem;
    z-index: 1;
    cursor: pointer;
    font-size: 0;
    opacity: 0.3;
  }
  .role-info-div .swiper-container .role-des-swiper-button-next > img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .role-info-div {
    width: 100%;
    height: 100%;
  }
  .allroles-div {
    width: 100%;
    height: 100%;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div {
    width: calc(100% - 0.4375rem);
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: url(https://res.17996cdn.net/gf2/kr/images/home/allroles-roles-bg.png) no-repeat;
    background-size: 100% 100%;
    margin: 0 0.1875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
  }

  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array {
    width: 96%;
    margin: 0 auto;
    padding-top: 1.875rem;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div {
    width: calc(25% - 0.8125rem);
    height: auto;
    padding: 0.375rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    margin: 0.375rem;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-top-div {
    width: 93%;
    height: 93%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-icon-left {
    position: absolute;
    left: 1.625rem;
    bottom: 5.375rem;
    width: 0.6875rem;
    height: 49.5rem;
    font-size: 0;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-icon-right {
    position: absolute;
    right: 1.625rem;
    top: 0;
    width: 0.6875rem;
    height: 59.3125rem;
    font-size: 0;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .left {
    position: absolute;
    left: 1px;
    top: 0;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-line-div {
    width: 1px;
    height: 13.2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0.375rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 87.4%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0.125rem 0;
    background-color: #010101;
    position: absolute;
    bottom: 1.0625rem;
    right: 0;
    overflow: hidden;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-name-div {
    font-size: 0.75rem;
    color: #fff;
    font-family: 'Noto Sans SC', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 3px;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-class-div {
    width: 1.0625rem;
    height: 1.0625rem;
    font-size: 0;
    margin-left: 0.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .allroles-div .allroles-content-div .allroles-content-all .allroles-content-array .allroles-content-array-main .allroles-array-roles-div .allroles-roles-div .allroles-roles-main-div .allroles-roles-name-div .allroles-roles-name-name-div .allroles-roles-name-icon-div {
    width: 0.125rem;
    height: 0.875rem;
    font-size: 0;
    margin-left: 0.0625rem;
  }
  .footer-div {
    width: 100%;
    padding: 2rem 2rem;
    background: url(https://res.17996cdn.net/gf2/tw/images/home/footer-bg.png) no-repeat;
    background-size: 100% 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 0.82rem;
    gap: 0.4rem;
  }
  .footer-link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
  }
  .f-os {
    max-width: 56%;
    margin-left: 2%;
  }
  .footer-div .footer-text-div .text-rule-div img {
    width: 5.4rem;
  }
  .footer-div .all-logo-div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 3rem;
  }
  .footer-div .all-logo-div p {
    margin: 0.5rem 0;
    text-align: center;
  }
}
