/*!
 * project: uikit-ncguidebook
 * author: ncsoft
 * update: Thu Nov 28 2024 10:28:15 GMT+0900 (Korean Standard Time)
 * version: 2.1.2
 */
/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: var(--ncui-black100);
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
.swiper-pagination-lock, .swiper-button-lock {
  display: none !important;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b, strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button, input, optgroup, select, textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button, input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button, select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template, [hidden] {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
* {
  box-sizing: border-box; }

input, textarea, button {
  outline: 0; }

[class*=" is-show"] {
  display: block; }

html {
  height: 100%; }

body {
  font-family: 'Noto Sans', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif; }
  body * {
    letter-spacing: 0 !important;
    font-family: 'Noto Sans', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif; }

a {
  text-decoration: none; }

img {
  vertical-align: top; }

table, caption, tbody, tfoot, thead, tr, th, td {
  vertical-align: middle; }

.nc-guidebook-search {
  position: relative;
  max-width: 1260px;
  min-width: 360px;
  margin: 0 auto;
  z-index: 120; }
  .nc-guidebook-search * {
    word-wrap: break-word;
    word-break: keep-all; }
  @media (min-width: 1260px) {
    .nc-guidebook-search {
      margin-top: 0; } }
  @media (min-width: 960px) {
    .nc-guidebook-search.ncgbi-search-top {
      margin-bottom: 40px;
      padding: 0 26px; } }
  @media (min-width: 1260px) {
    .nc-guidebook-search.ncgbi-search-top {
      padding: 0 40px;
      margin-bottom: 38px; } }
  .nc-guidebook-search.ncgbi-search-top .ncgb-container {
    background-color: transparent;
    padding: 16px 16px 17px; }
    @media (min-width: 960px) {
      .nc-guidebook-search.ncgbi-search-top .ncgb-container {
        background-color: var(--ncui-gray004);
        padding: 29px 18px 31px; } }
  .nc-guidebook-search.ncgbi-search-top .ncgbi-container {
    position: relative;
    z-index: 120; }
    @media (min-width: 960px) {
      .nc-guidebook-search.ncgbi-search-top .ncgbi-container {
        max-width: 760px;
        margin: 0 auto; } }
  .nc-guidebook-search.ncgbi-search-top.is-sticky {
    position: fixed;
    top: 50px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    z-index: 200;
    background-color: var(--ncui-bg); }
    .nc-guidebook-search.ncgbi-search-top.is-sticky.is-sticky-depth2 {
      top: 106px; }
    @media (min-width: 960px) {
      .nc-guidebook-search.ncgbi-search-top.is-sticky {
        top: 58px;
        left: 0;
        right: 0; } }
  .nc-guidebook-search.ncgbt-search-top, .nc-guidebook-search.ncgbs-search-top {
    min-height: 60px;
    padding: 16px 16px; }
    @media (min-width: 960px) {
      .nc-guidebook-search.ncgbt-search-top, .nc-guidebook-search.ncgbs-search-top {
        padding: 0; } }
    .nc-guidebook-search.ncgbt-search-top .ncgb-searchform, .nc-guidebook-search.ncgbs-search-top .ncgb-searchform {
      z-index: 1000; }
      @media (min-width: 960px) {
        .nc-guidebook-search.ncgbt-search-top .ncgb-searchform, .nc-guidebook-search.ncgbs-search-top .ncgb-searchform {
          float: right;
          width: 305px; }
          [dir=rtl] .nc-guidebook-search.ncgbt-search-top .ncgb-searchform, [dir=rtl] .nc-guidebook-search.ncgbs-search-top .ncgb-searchform {
            float: left; } }
  .nc-guidebook-search.ncgbt-search-top .ncgb-btn-list {
    display: block;
    position: absolute;
    top: 92px;
    left: 16px;
    right: initial;
    width: 40px;
    height: 40px;
    background-image: url("../img/template/btn_list_back.png");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    cursor: pointer;
    z-index: 5;
    text-align: start;
    text-indent: -9999em;
    white-space: nowrap;
    overflow: hidden; }
    [dir=rtl] .nc-guidebook-search.ncgbt-search-top .ncgb-btn-list {
      left: initial; }
    [dir=rtl] .nc-guidebook-search.ncgbt-search-top .ncgb-btn-list {
      right: 16px; }
    @media (min-width: 960px) {
      .nc-guidebook-search.ncgbt-search-top .ncgb-btn-list {
        top: 0;
        left: 40px;
        right: initial;
        background-image: url("../img/template/btn_list_back_pc.png"); }
        [dir=rtl] .nc-guidebook-search.ncgbt-search-top .ncgb-btn-list {
          left: initial; }
        [dir=rtl] .nc-guidebook-search.ncgbt-search-top .ncgb-btn-list {
          right: 40px; } }

.ncgb-btn-gb-index-container {
  position: relative;
  max-width: 1180px;
  min-width: 360px;
  margin: 0 auto;
  z-index: 121; }
  @media (min-width: 960px) {
    .ncgb-btn-gb-index-container {
      height: 60px; } }

.ncgb-btn-gb-index {
  display: block;
  position: absolute;
  top: 32px;
  left: 16px;
  right: initial;
  width: 40px;
  height: 40px;
  background-image: url("../img/template/btn_guidebook_index.png");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  cursor: pointer;
  z-index: 5;
  text-align: start;
  text-indent: -9999em;
  white-space: nowrap;
  overflow: hidden; }
  [dir=rtl] .ncgb-btn-gb-index {
    left: initial; }
  [dir=rtl] .ncgb-btn-gb-index {
    right: 16px; }
  @media (min-width: 960px) {
    .ncgb-btn-gb-index {
      top: 0;
      left: 0;
      right: initial;
      background-image: url("../img/template/btn_guidebook_index_pc.png"); }
      [dir=rtl] .ncgb-btn-gb-index {
        left: initial; }
      [dir=rtl] .ncgb-btn-gb-index {
        right: 0; } }

.ncgb-searchform {
  clear: both;
  position: relative; }
  .ncgb-searchform-title {
    display: none; }

.ncgb-autoSuggest {
  background-color: var(--ncui-bg);
  padding-right: 80px;
  padding-left: initial; }
  [dir=rtl] .ncgb-autoSuggest {
    padding-right: initial; }
  [dir=rtl] .ncgb-autoSuggest {
    padding-left: 80px; }
  @media (min-width: 960px) {
    .ncgb-autoSuggest {
      border: 1px solid var(--ncui-gray012); } }

.ncgb-suggest-input {
  color: var(--ncui-black045);
  background-color: transparent;
  width: 100%;
  height: 25px;
  line-height: 25px;
  margin-left: 30px;
  margin-right: initial;
  border: 0;
  font-size: 16px; }
  [dir=rtl] .ncgb-suggest-input {
    margin-left: initial; }
  [dir=rtl] .ncgb-suggest-input {
    margin-right: 30px; }
  .ncgb-suggest-input::-ms-clear {
    display: none !important; }
  .ncgb-suggest-input:-ms-input-placeholder {
    color: #888 !important;
    letter-spacing: 0px; }
  .ncgb-suggest-input::placeholder {
    color: #888 !important;
    letter-spacing: 0px; }
  @media (min-width: 960px) {
    .ncgb-suggest-input {
      font-size: 14px;
      height: 38px;
      line-height: 38px;
      margin-left: 12px;
      margin-right: initial; }
      [dir=rtl] .ncgb-suggest-input {
        margin-left: initial; }
      [dir=rtl] .ncgb-suggest-input {
        margin-right: 12px; } }

.ncgb-suggest-delete,
.ncgb-suggest-submit {
  position: absolute;
  top: 0;
  width: 36px;
  height: 100%;
  border: 0;
  color: transparent;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 22px auto;
  cursor: pointer; }

.ncgb-suggest-delete {
  right: 0;
  left: initial;
  line-height: 12px;
  background-image: url("../img/index/search/btn_reset.png"); }
  [dir=rtl] .ncgb-suggest-delete {
    right: initial; }
  [dir=rtl] .ncgb-suggest-delete {
    left: 0; }
  @media (min-width: 960px) {
    .ncgb-suggest-delete {
      right: 37px;
      left: initial; }
      [dir=rtl] .ncgb-suggest-delete {
        right: initial; }
      [dir=rtl] .ncgb-suggest-delete {
        left: 37px; } }

.ncgb-suggest-submit {
  left: -7px;
  right: initial;
  background-image: url("../img/index/search/btn_search.png"); }
  [dir=rtl] .ncgb-suggest-submit {
    left: initial; }
  [dir=rtl] .ncgb-suggest-submit {
    right: -7px; }
  @media (min-width: 960px) {
    .ncgb-suggest-submit {
      right: 9px;
      left: initial; }
      [dir=rtl] .ncgb-suggest-submit {
        right: initial; }
      [dir=rtl] .ncgb-suggest-submit {
        left: 9px; } }

.ncgb-suggest-list-wrap {
  position: absolute;
  z-index: 120;
  width: 100%;
  margin: -1px 0 0 -1px;
  border: 1px solid var(--ncui-gray012);
  background-color: var(--ncui-bg);
  transform: translateZ(1px);
  overflow: hidden; }
  [dir=rtl] .ncgb-suggest-list-wrap {
    margin: -1px -1px 0 0; }

.ncgb-suggest-recent,
.ncgb-suggest-list {
  z-index: 999;
  padding: 0;
  font-size: 14px;
  color: var(--ncui-black093);
  transform: translateZ(1px); }
  .ncgb-suggest-recent ul,
  .ncgb-suggest-list ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
  .ncgb-suggest-recent li,
  .ncgb-suggest-list li {
    height: 45px;
    line-height: 26px;
    padding: 8px 10px 8px;
    cursor: pointer; }
    .ncgb-suggest-recent li mark,
    .ncgb-suggest-list li mark {
      color: var(--ncui-point);
      background-color: transparent; }
    .ncgb-suggest-recent li.focus, .ncgb-suggest-recent li:hover,
    .ncgb-suggest-list li.focus,
    .ncgb-suggest-list li:hover {
      background-color: var(--ncui-gray002); }

.ncgb-suggest-recent-delete {
  float: right;
  width: 30px;
  height: 100%;
  border: 0;
  color: transparent;
  background-image: url("../img/index/search/btn_recent.png");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 11px auto; }
  [dir=rtl] .ncgb-suggest-recent-delete {
    float: left; }

.ncgb-suggest-recent-none {
  height: 45px;
  line-height: 26px;
  padding: 8px 10px 8px; }

.ncgb-suggest-recent-btn-wrap {
  text-align: right;
  border-top: 1px solid var(--ncui-gray008); }
  [dir=rtl] .ncgb-suggest-recent-btn-wrap {
    text-align: left; }

.ncgb-suggest-recent-btn {
  padding: 11px 8px 14px;
  background-color: transparent;
  font-size: 14px;
  color: #c7c7cc;
  border: 0; }

.ncgb-keyword {
  position: relative;
  float: right;
  width: 100%;
  margin: -8px auto 5px;
  z-index: 100; }
  [dir=rtl] .ncgb-keyword {
    float: left; }
  @media (min-width: 640px) {
    .ncgb-keyword {
      width: 320px;
      margin: -4px auto 1px; } }
  .ncgb-keyword-title {
    display: none; }
  .ncgb-keyword-toggle {
    display: block;
    position: relative;
    float: right;
    width: 23px;
    height: 17px;
    margin-top: 3px;
    border: 0;
    background-color: transparent;
    cursor: pointer; }
    [dir=rtl] .ncgb-keyword-toggle {
      float: left; }
    @media (min-width: 640px) {
      .ncgb-keyword-toggle {
        margin-right: 4px;
        margin-left: initial; }
        [dir=rtl] .ncgb-keyword-toggle {
          margin-right: initial; }
        [dir=rtl] .ncgb-keyword-toggle {
          margin-left: 4px; } }
    .ncgb-keyword-toggle:before, .ncgb-keyword-toggle:after {
      content: '';
      display: inline-block;
      position: absolute;
      top: 7px;
      width: 8px;
      height: 1px;
      border-bottom: 1px solid #979797; }
    .ncgb-keyword-toggle:before {
      left: 5px;
      right: initial;
      transform: rotate(45deg); }
      [dir=rtl] .ncgb-keyword-toggle:before {
        left: initial; }
      [dir=rtl] .ncgb-keyword-toggle:before {
        right: 5px; }
      [dir=rtl] .ncgb-keyword-toggle:before {
        transform: rotate(-45deg); }
    .ncgb-keyword-toggle:after {
      left: 10px;
      right: initial;
      transform: rotate(-45deg); }
      [dir=rtl] .ncgb-keyword-toggle:after {
        left: initial; }
      [dir=rtl] .ncgb-keyword-toggle:after {
        right: 10px; }
      [dir=rtl] .ncgb-keyword-toggle:after {
        transform: rotate(45deg); }
  .ncgb-keyword.on .ncgb-keyword-toggle:before {
    left: 4px;
    right: initial;
    transform: rotate(-45deg); }
    [dir=rtl] .ncgb-keyword.on .ncgb-keyword-toggle:before {
      left: initial; }
    [dir=rtl] .ncgb-keyword.on .ncgb-keyword-toggle:before {
      right: 4px; }
    [dir=rtl] .ncgb-keyword.on .ncgb-keyword-toggle:before {
      transform: rotate(45deg); }
  .ncgb-keyword.on .ncgb-keyword-toggle:after {
    transform: rotate(45deg); }
    [dir=rtl] .ncgb-keyword.on .ncgb-keyword-toggle:after {
      transform: rotate(-45deg); }
  .ncgb-keyword.on .ncgb-keyword-list-wrap {
    display: block; }

ol.ncgb-keyword-list {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none; }
  ol.ncgb-keyword-list li {
    width: 100%;
    height: 37px;
    line-height: 20px; }
    ol.ncgb-keyword-list li .num {
      display: inline-block;
      width: auto;
      margin-right: 8px;
      margin-left: initial;
      font-weight: 400; }
      [dir=rtl] ol.ncgb-keyword-list li .num {
        margin-right: initial; }
      [dir=rtl] ol.ncgb-keyword-list li .num {
        margin-left: 8px; }
  ol.ncgb-keyword-list a {
    display: inline-block;
    width: 200px;
    font-size: 13px;
    color: #1f1f1f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
  ol.ncgb-keyword-list .ncgb-rank {
    display: block;
    float: right;
    min-width: 40px;
    margin: 1px 0 0;
    color: #c7c7cc;
    font-size: 12px; }
    [dir=rtl] ol.ncgb-keyword-list .ncgb-rank {
      float: left; }
    ol.ncgb-keyword-list .ncgb-rank:before {
      content: '';
      display: inline-block;
      position: relative;
      margin-right: 5px;
      margin-left: initial; }
      [dir=rtl] ol.ncgb-keyword-list .ncgb-rank:before {
        margin-right: initial; }
      [dir=rtl] ol.ncgb-keyword-list .ncgb-rank:before {
        margin-left: 5px; }
    ol.ncgb-keyword-list .ncgb-rank-same {
      font-size: 0; }
      ol.ncgb-keyword-list .ncgb-rank-same:before {
        top: 1px;
        width: 9px;
        height: 2px;
        background-color: #c7c7cc; }
    ol.ncgb-keyword-list .ncgb-rank-up:before {
      top: -1px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 6px solid #e27747; }
    ol.ncgb-keyword-list .ncgb-rank-down:before {
      top: -1px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid #7399b6; }

.ncgb-keyword-rolling {
  display: inline-block;
  width: calc(100% - 30px);
  height: 25px;
  overflow: hidden; }
  .ncgb-keyword-rolling ol.ncgb-keyword-list {
    height: 26px; }
    @media (min-width: 640px) {
      .ncgb-keyword-rolling ol.ncgb-keyword-list {
        padding: 0 0 0 16px; }
        [dir=rtl] .ncgb-keyword-rolling ol.ncgb-keyword-list {
          padding: 0 16px 0 0; } }

.ncgb-keyword-list-wrap {
  display: none;
  position: absolute;
  left: -18px;
  right: initial;
  width: calc(100% + 18px*2);
  max-height: 390px;
  margin: 0;
  padding: 5px 0 4px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #d3d5d9;
  background-color: #fff;
  overflow: hidden;
  z-index: 100; }
  [dir=rtl] .ncgb-keyword-list-wrap {
    left: initial; }
  [dir=rtl] .ncgb-keyword-list-wrap {
    right: -18px; }
  @media (min-width: 640px) {
    .ncgb-keyword-list-wrap {
      left: 0;
      width: 100%;
      margin: -5px 0 0; } }
  .ncgb-keyword-list-wrap ol.ncgb-keyword-list {
    padding: 0 16px; }
    .ncgb-keyword-list-wrap ol.ncgb-keyword-list li {
      padding: 7px 0;
      border-bottom: solid 1px var(--ncui-gray004); }
      .ncgb-keyword-list-wrap ol.ncgb-keyword-list li:last-child {
        border-bottom: 0 none; }

.swiper-container .swiper-button-prev {
  background-image: url("../img/index/btn_prev.png");
  background-size: 15px 26px; }
  [dir=rtl] .swiper-container .swiper-button-prev {
    background-image: url("../img/index/btn_next.png"); }
  .swiper-container .swiper-button-prev:focus {
    outline: 0; }

.swiper-container .swiper-button-next {
  background-image: url("../img/index/btn_next.png");
  background-size: 15px 26px; }
  [dir=rtl] .swiper-container .swiper-button-next {
    background-image: url("../img/index/btn_prev.png"); }
  .swiper-container .swiper-button-next:focus {
    outline: 0; }

.swiper-container .swiper-pagination-fraction {
  bottom: 38px;
  color: #9b9b9b;
  font-size: 12px;
  letter-spacing: 0px; }
  .swiper-container .swiper-pagination-fraction .swiper-pagination-current {
    color: var(--ncui-point-text); }

.swiper-container .swiper-pagination-progressbar {
  top: auto;
  right: 40px;
  bottom: 21px;
  width: auto;
  height: 3px;
  background-color: #ccc; }
  @media (min-width: 960px) {
    .swiper-container .swiper-pagination-progressbar {
      display: none; } }
  .swiper-container .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: var(--ncui-point); }

.swiper-container .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  text-align: center;
  font-weight: 400;
  font-family: Roboto;
  line-height: 18px;
  font-size: 11px;
  color: #ccc;
  opacity: 1;
  background: transparent; }

.swiper-container .swiper-pagination-bullet-active {
  color: var(--ncui-black100);
  background: transparent; }
  .swiper-container .swiper-pagination-bullet-active:after {
    display: block;
    content: "";
    width: 12px;
    height: 2px;
    margin: -3px auto 0;
    background-color: var(--ncui-black100); }

.ncgb-select-wrapper {
  position: relative;
  display: inline-block;
  min-width: 80px;
  padding-right: 20px; }
  .ncgb-select-wrapper:before, .ncgb-select-wrapper:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 1px;
    margin: 1px 0 0;
    background-color: #a2a8b2;
    pointer-events: none; }
  .ncgb-select-wrapper:before {
    right: 4px;
    transform: rotate(50deg); }
  .ncgb-select-wrapper:after {
    right: 0;
    transform: rotate(-50deg); }
  .ncgb-select-wrapper select {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    margin-left: 2px;
    font-size: 15px;
    color: #a2a8b2;
    border: 0;
    -webkit-appearance: none;
    border-radius: 0;
    background-color: transparent;
    outline: none;
    cursor: pointer; }
    .ncgb-select-wrapper select::-ms-expand {
      display: none; }
    @media (min-width: 960px) {
      .ncgb-select-wrapper select {
        margin-left: 4px;
        font-size: 16px;
        letter-spacing: 0px; } }

.ncgb-pagination-wrap:after {
  content: "";
  display: table;
  clear: both; }

.ncgb-pagination-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center; }
  .ncgb-pagination-list li {
    display: inline-block;
    min-width: 30px;
    height: 30px;
    margin: 0 4px;
    font-size: 16px;
    line-height: 30px;
    vertical-align: middle; }
    .ncgb-pagination-list li a {
      display: block;
      height: 100%;
      text-decoration: none;
      color: var(--ncui-black045); }
      .ncgb-pagination-list li a:hover {
        text-decoration: underline;
        color: var(--ncui-black093); }
    .ncgb-pagination-list li.current {
      color: var(--ncui-black093); }
  .ncgb-pagination-list .prev a,
  .ncgb-pagination-list .next a {
    position: relative;
    width: 30px;
    height: 30px;
    border: 1px solid var(--ncui-gray008);
    text-align: start;
    text-indent: -9999em;
    white-space: nowrap;
    overflow: hidden; }
    .ncgb-pagination-list .prev a:hover,
    .ncgb-pagination-list .next a:hover {
      border-color: var(--ncui-black045); }
    .ncgb-pagination-list .prev a:before,
    .ncgb-pagination-list .next a:before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: 8px;
      height: 8px;
      border: 0 solid #747880;
      border-width: 1px 1px 0 0; }
  .ncgb-pagination-list .prev {
    margin-right: 15px; }
    .ncgb-pagination-list .prev a:before {
      margin: -4px 0 0 -2px;
      transform: rotate(-135deg); }
  .ncgb-pagination-list .next {
    margin-left: 15px; }
    .ncgb-pagination-list .next a:before {
      margin: -4px 0 0 -6px;
      transform: rotate(45deg); }

.ncgb-dropdown-wrapper {
  position: relative;
  width: 100%;
  padding: 0 10px 0 0;
  font-size: 14px;
  letter-spacing: 0px;
  text-align: left;
  color: #747880; }
  [dir=rtl] .ncgb-dropdown-wrapper {
    padding: 0 0 0 10px; }
  [dir=rtl] .ncgb-dropdown-wrapper {
    text-align: right; }
  .ncgb-dropdown-wrapper .ncgb-sort-dropdown {
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: baseline;
    color: #747880;
    background-color: transparent;
    cursor: pointer; }
    .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-1depth {
      position: relative;
      display: inline-block;
      padding-right: 5px;
      padding-left: initial; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-1depth {
        padding-right: initial; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-1depth {
        padding-left: 5px; }
      .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-1depth:after {
        display: inline-block;
        content: '';
        margin: 0 0 0 8px;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #a2a8b2;
        border-right: initial;
        vertical-align: middle;
        pointer-events: none; }
        [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-1depth:after {
          margin: 0 8px 0 0; }
        [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-1depth:after {
          border-left: initial; }
        [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-1depth:after {
          border-right: 5px solid #a2a8b2; }
    .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth {
      position: relative;
      display: inline-block;
      padding-right: 22px;
      padding-left: initial; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth {
        padding-right: initial; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth {
        padding-left: 22px; }
      .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth:before, .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth:after {
        content: '';
        position: absolute;
        top: 50%;
        width: 8px;
        height: 1px;
        margin: 1px 0 0;
        background-color: #a2a8b2;
        pointer-events: none; }
      .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth:before {
        right: 6px;
        left: initial;
        transform: rotate(40deg); }
        [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth:before {
          right: initial; }
        [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth:before {
          left: 6px; }
      .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth:after {
        right: 0;
        left: initial;
        transform: rotate(-40deg); }
        [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth:after {
          right: initial; }
        [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-dropdown .ncgb-dropdown-2depth:after {
          left: 0; }
    .ncgb-dropdown-wrapper .ncgb-sort-dropdown.disabled {
      color: #8c919a; }
  .ncgb-dropdown-wrapper .ncgb-sort-option {
    display: none;
    position: absolute;
    z-index: 100;
    top: 33px;
    max-height: 271px;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
    background-color: #fff;
    overflow: hidden; }
    .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-1depth {
      left: -5px;
      right: initial;
      width: 100%; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-1depth {
        left: initial; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-1depth {
        right: -5px; }
      .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-1depth .ncgb-option-menu {
        width: 100%; }
    .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-2depth {
      left: -18px;
      right: initial;
      width: 100vw; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-2depth {
        left: initial; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-2depth {
        right: -18px; }
      .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-2depth .ncgb-option-menu {
        float: left;
        width: 50%; }
        [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-2depth .ncgb-option-menu {
          float: right; }
        .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-2depth .ncgb-option-menu.ncgb-menu-2depth .ncgb-option-list {
          display: none;
          border-left: 1px solid #ccc;
          border-right: initial; }
          [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-2depth .ncgb-option-menu.ncgb-menu-2depth .ncgb-option-list {
            border-left: initial; }
          [dir=rtl] .ncgb-dropdown-wrapper .ncgb-sort-option.ncgb-sort-2depth .ncgb-option-menu.ncgb-menu-2depth .ncgb-option-list {
            border-right: 1px solid #ccc; }
  .ncgb-dropdown-wrapper.is-active .ncgb-sort-dropdown {
    color: #747880; }
  .ncgb-dropdown-wrapper.is-active .ncgb-sort-option {
    display: block; }
  .ncgb-dropdown-wrapper .ncgb-option-menu {
    height: 270px;
    overflow-y: auto; }
  .ncgb-dropdown-wrapper .ncgb-option-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    height: 100%; }
    .ncgb-dropdown-wrapper .ncgb-option-list li {
      height: 45px;
      line-height: 45px;
      padding-left: 16px;
      padding-right: initial;
      background-color: #fff;
      cursor: pointer;
      color: #747880; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-option-list li {
        padding-left: initial; }
      [dir=rtl] .ncgb-dropdown-wrapper .ncgb-option-list li {
        padding-right: 16px; }
      .ncgb-dropdown-wrapper .ncgb-option-list li:not(:last-child) {
        border-bottom: 1px solid #ccc; }
      .ncgb-dropdown-wrapper .ncgb-option-list li.is-active, .ncgb-dropdown-wrapper .ncgb-option-list li:hover {
        background-color: --ncui-gray004; }
  .ncgb-dropdown-wrapper .ncgb-option-items {
    margin: 0;
    padding: 0;
    list-style-type: none; }

body {
  overflow-x: hidden; }

.hidden {
  display: none; }

[data-ncgb-rwd-display="mobile"] {
  display: block; }

[data-ncgb-rwd-display="pc"] {
  display: none; }

@media (min-width: 960px) {
  [data-ncgb-rwd-display="pc"] {
    display: block; }
  [data-ncgb-rwd-display="mobile"] {
    display: none; } }

.ncgb-container {
  max-width: 1260px;
  margin: 0 auto; }
  @media (min-width: 960px) {
    .ncgb-container {
      padding: 0 40px; } }
  .ncgb-container a {
    color: var(--ncui-black093); }
    .ncgb-container a:hover {
      color: var(--ncui-black093); }
    .ncgb-container a:focus {
      outline: 0; }

.nc-guidebook-index {
  line-height: 1.5; }
  .nc-guidebook-index * {
    word-wrap: break-word;
    word-break: keep-all; }

.ncgbi-category {
  overflow: hidden; }
  @media (min-width: 960px) {
    .ncgbi-category {
      margin: auto;
      padding: 0 26px;
      max-width: 1260px; } }
  @media (min-width: 1260px) {
    .ncgbi-category {
      padding: 0 40px; } }
  .ncgbi-category .ncgbi-category-list {
    position: relative;
    margin: 0 -1px;
    padding: 0;
    font-size: 0;
    list-style: none;
    border-style: solid;
    border-color: var(--ncui-gray008);
    border-width: 1px 0 0 1px; }
    [dir=rtl] .ncgbi-category .ncgbi-category-list {
      border-width: 1px 1px 0 0; }
    @media (min-width: 960px) {
      .ncgbi-category .ncgbi-category-list {
        margin: 0; } }
    .ncgbi-category .ncgbi-category-list .ncgbi-category-item-empty {
      display: none; }
      @media (min-width: 960px) {
        .ncgbi-category .ncgbi-category-list .ncgbi-category-item-empty {
          display: inline-block;
          position: relative;
          width: calc(100% / 3);
          height: 55px;
          border-style: solid;
          border-color: var(--ncui-gray008);
          border-width: 0 1px 1px 0;
          vertical-align: top; }
          [dir=rtl] .ncgbi-category .ncgbi-category-list .ncgbi-category-item-empty {
            border-width: 0 0 1px 1px; } }
      @media (min-width: 1260px) {
        .ncgbi-category .ncgbi-category-list .ncgbi-category-item-empty {
          width: calc(100% /4); } }
    .ncgbi-category .ncgbi-category-list .ncgbi-category-item {
      display: inline-block;
      position: relative;
      width: 50%;
      border-style: solid;
      border-color: var(--ncui-gray008);
      border-width: 0 1px 1px 0;
      vertical-align: top; }
      [dir=rtl] .ncgbi-category .ncgbi-category-list .ncgbi-category-item {
        border-width: 0 0 1px 1px; }
      @media (min-width: 960px) {
        .ncgbi-category .ncgbi-category-list .ncgbi-category-item {
          width: calc(100% / 3); }
          .ncgbi-category .ncgbi-category-list .ncgbi-category-item:hover:after {
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            border: solid 1px var(--ncui-point);
            content: '';
            pointer-events: none; }
          .ncgbi-category .ncgbi-category-list .ncgbi-category-item:hover .ncgbi-category-item-link .ncgbi-category-item-text {
            color: var(--ncui-point-text); } }
      @media (min-width: 1260px) {
        .ncgbi-category .ncgbi-category-list .ncgbi-category-item {
          width: calc(100% / 4); } }
      .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link {
        display: flex;
        position: relative;
        padding: 0 16px 0 17px;
        height: 42px;
        align-items: center; }
        [dir=rtl] .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link {
          padding: 0 17px 0 16px; }
        @media (min-width: 640px) {
          .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link {
            justify-content: center; } }
        @media (min-width: 960px) {
          .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link {
            height: 54px; } }
        .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-text {
          flex: 1;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          text-align: left;
          font-size: 16px;
          color: var(--ncui-black093); }
          [dir=rtl] .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-text {
            text-align: right; }
          @media (min-width: 640px) {
            .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-text {
              flex: none;
              max-width: 92%;
              margin-left: initial;
              margin-right: 6px;
              text-align: center; }
              [dir=rtl] .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-text {
                margin-left: 6px; }
              [dir=rtl] .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-text {
                margin-right: initial; } }
          @media (min-width: 960px) {
            .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-text {
              max-width: 90%;
              font-size: 17px; } }
        .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-bullet {
          display: inline-block;
          width: 16px;
          height: 16px;
          background-size: contain;
          text-align: start;
          text-indent: -9999em;
          white-space: nowrap;
          overflow: hidden; }
          .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-bullet.new {
            background-image: url("../img/index/bullet_new.png"); }
          .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-bullet.update {
            background-image: url("../img/index/bullet_update.png"); }

.ncgbi-popular {
  z-index: 0;
  position: relative; }
  .ncgbi-popular .ncgbi-popular-title {
    z-index: 10;
    position: absolute;
    top: 12px;
    left: 50%;
    margin: 0 auto;
    padding: 5px 14px 4px;
    color: var(--ncui-ui-white);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    border: solid 1px rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    transform: translateX(-50%); }
    @media (min-width: 960px) {
      .ncgbi-popular .ncgbi-popular-title {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 14px;
        padding: 0;
        border: 0;
        border-radius: 0;
        font-size: 22px;
        line-height: 24px;
        text-align: center;
        color: var(--ncui-black100);
        transform: translateX(0); } }
  .ncgbi-popular .ncgbi-popular-list {
    height: 184px; }
    @media (min-width: 960px) {
      .ncgbi-popular .ncgbi-popular-list {
        margin: auto;
        max-width: 1180px;
        height: 308px;
        background-color: #000; } }
    @media (min-width: 1260px) {
      .ncgbi-popular .ncgbi-popular-list {
        height: 200px; } }
    .ncgbi-popular .ncgbi-popular-list .ncgbi-popular-link {
      z-index: 0;
      overflow: hidden;
      position: relative;
      display: block;
      height: 100%; }
      .ncgbi-popular .ncgbi-popular-list .ncgbi-popular-link:after {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("../img/index/popular_mask.png");
        background-size: cover;
        background-position: center;
        content: ''; }
      @media (min-width: 960px) {
        .ncgbi-popular .ncgbi-popular-list .ncgbi-popular-link:after {
          background-image: url("../img/index/popular_mask_pc.png"); } }
    .ncgbi-popular .ncgbi-popular-list .ncgbi-swiper-thumb {
      z-index: -1;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center; }
    .ncgbi-popular .ncgbi-popular-list .ncgbi-swiper-contents {
      z-index: 1;
      position: relative;
      height: 100%; }
      .ncgbi-popular .ncgbi-popular-list .ncgbi-swiper-contents .ncgbi-swiper-title {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        font-size: 24px;
        font-weight: 400;
        letter-spacing: 0px;
        text-align: center;
        color: var(--ncui-ui-white);
        padding: 0 30px; }
        @media (min-width: 640px) {
          .ncgbi-popular .ncgbi-popular-list .ncgbi-swiper-contents .ncgbi-swiper-title {
            font-size: 20px;
            letter-spacing: 0px; } }
  .ncgbi-popular .swiper-pagination-wrap {
    text-align: center; }
    @media (min-width: 960px) {
      .ncgbi-popular .swiper-pagination-wrap {
        margin-top: 3px; } }
    @media (min-width: 1260px) {
      .ncgbi-popular .swiper-pagination-wrap {
        margin-top: 7px; } }
    @media (min-width: 960px) {
      .ncgbi-popular .swiper-pagination-wrap .swiper-pagination {
        position: static;
        display: inline-block; } }
    .ncgbi-popular .swiper-pagination-wrap .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
      margin: 0 2px;
      width: 20px;
      height: 2px;
      border-radius: 0;
      background-color: var(--ncui-black100);
      opacity: 0.2; }
      .ncgbi-popular .swiper-pagination-wrap .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
        opacity: 1; }
    .ncgbi-popular .swiper-pagination-wrap .swiper-pagination.swiper-pagination-fraction {
      bottom: 10px;
      font-size: 12px;
      letter-spacing: 0px;
      color: #9b9b9b; }
      .ncgbi-popular .swiper-pagination-wrap .swiper-pagination.swiper-pagination-fraction .swiper-pagination-current {
        color: var(--ncui-point-text); }
    .ncgbi-popular .swiper-pagination-wrap .swiper-button-prev {
      display: none; }
    .ncgbi-popular .swiper-pagination-wrap .swiper-button-next {
      display: none; }

.ncgbi-newest {
  padding-bottom: 19px; }
  @media (min-width: 960px) {
    .ncgbi-newest .ncgbi-newest-list-wrap {
      position: relative;
      margin: auto;
      max-width: 1179px; } }
  .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items {
    border-right: solid 1px var(--ncui-gray008); }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(1), .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(2) {
      border-left: solid 1px var(--ncui-gray008); }
      [dir=rtl] .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(1), [dir=rtl] .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(2) {
        border-left: initial; }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(1), .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(2), .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(3), .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(4) {
      border-left: solid 1px var(--ncui-gray008); }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(4n + 1) {
      border-top: solid 1px var(--ncui-gray008); }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(4n + 2) {
      border-top: solid 1px var(--ncui-gray008); }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(4n + 3) {
      border-top: solid 1px var(--ncui-gray008);
      margin-top: 0 !important; }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(4n + 4) {
      border-top: solid 1px var(--ncui-gray008);
      border-bottom: solid 1px var(--ncui-gray008); }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:last-child {
      border-bottom: solid 1px var(--ncui-gray008); }
    @media (min-width: 960px) {
      .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items {
        height: 150px; }
        .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(3), .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(4) {
          border-left: none; }
        .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-items:nth-child(4n + 2) {
          border-bottom: solid 1px var(--ncui-gray008); } }
  .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link {
    display: block;
    overflow: hidden;
    padding: 11px;
    height: 86px; }
    @media (min-width: 960px) {
      .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link {
        padding: 20px;
        height: 150px; } }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-thumb {
      position: relative;
      overflow: hidden;
      float: left;
      width: 86px;
      height: 62px;
      margin-left: initial;
      margin-right: 10px;
      background-position: center;
      background-size: cover; }
      [dir=rtl] .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-thumb {
        float: right; }
      [dir=rtl] .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-thumb {
        margin-left: 10px; }
      [dir=rtl] .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-thumb {
        margin-right: initial; }
      @media (min-width: 960px) {
        .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-thumb {
          width: 150px;
          height: 110px;
          margin-left: initial;
          margin-right: 14px; }
          [dir=rtl] .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-thumb {
            margin-left: 14px; }
          [dir=rtl] .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-thumb {
            margin-right: initial; } }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-title {
      margin: 5px 0 0;
      font-weight: 400;
      font-size: 15px;
      letter-spacing: 0px;
      color: var(--ncui-black093);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
      @media (min-width: 960px) {
        .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-title {
          margin: 18px 0 0;
          font-size: 16px; } }
    .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-desc {
      margin: 3px 0 0;
      font-size: 13px;
      letter-spacing: 0x;
      color: var(--ncui-black045);
      position: relative;
      display: block;
      display: -webkit-box;
      overflow: hidden;
      max-height: 3em;
      text-overflow: ellipsis;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-height: 16px; }
      @media (min-width: 960px) {
        .ncgbi-newest .ncgbi-newest-list .ncgbi-newest-link .ncgbi-swiper-desc {
          margin: 9px 0 0;
          font-size: 15px;
          line-height: 22px; } }
  .ncgbi-newest .ncgbi-newest-util {
    position: relative; }
    @media (min-width: 960px) {
      .ncgbi-newest .ncgbi-newest-util {
        position: absolute;
        top: -33px;
        left: initial;
        right: 2px; }
        [dir=rtl] .ncgbi-newest .ncgbi-newest-util {
          left: 2px; }
        [dir=rtl] .ncgbi-newest .ncgbi-newest-util {
          right: initial; } }
    .ncgbi-newest .ncgbi-newest-util .swiper-button-prev {
      display: none; }
      @media (min-width: 960px) {
        .ncgbi-newest .ncgbi-newest-util .swiper-button-prev {
          display: inline-block;
          position: relative;
          margin: 0 5px 0 0;
          top: 2px;
          left: auto;
          right: auto;
          width: 6px;
          height: 9px;
          background-size: contain;
          background-position: center;
          background-image: url("../img/index/btn_newest_next.png");
          transform: rotate(-180deg); }
          [dir=rtl] .ncgbi-newest .ncgbi-newest-util .swiper-button-prev {
            margin: 0 0 0 5px; }
          [dir=rtl] .ncgbi-newest .ncgbi-newest-util .swiper-button-prev {
            transform: initial; }
          .ncgbi-newest .ncgbi-newest-util .swiper-button-prev.swiper-button-disabled {
            opacity: 0.3; } }
    .ncgbi-newest .ncgbi-newest-util .swiper-button-next {
      display: none; }
      @media (min-width: 960px) {
        .ncgbi-newest .ncgbi-newest-util .swiper-button-next {
          display: inline-block;
          position: relative;
          margin: 0 0 0 5px;
          top: 2px;
          left: auto;
          right: auto;
          width: 6px;
          height: 9px;
          background-size: contain;
          background-position: center;
          background-image: url("../img/index/btn_newest_next.png");
          transform: initial; }
          [dir=rtl] .ncgbi-newest .ncgbi-newest-util .swiper-button-next {
            margin: 0 5px 0 0; }
          [dir=rtl] .ncgbi-newest .ncgbi-newest-util .swiper-button-next {
            transform: rotate(-180deg); }
          .ncgbi-newest .ncgbi-newest-util .swiper-button-next.swiper-button-disabled {
            opacity: 0.3; } }
    .ncgbi-newest .ncgbi-newest-util .swiper-pagination {
      top: 1px;
      left: 0;
      right: 0; }
      @media (min-width: 960px) {
        .ncgbi-newest .ncgbi-newest-util .swiper-pagination {
          display: inline-block;
          position: relative;
          top: auto;
          left: auto;
          right: auto; } }
      .ncgbi-newest .ncgbi-newest-util .swiper-pagination .swiper-pagination-bullet {
        margin: 0 3px;
        width: 6px;
        height: 6px;
        background: var(--ncui-black100); }
      .ncgbi-newest .ncgbi-newest-util .swiper-pagination .swiper-pagination-bullet-active {
        background-color: #666; }

.ncgbi-basic .ncgbi-basic-list {
  position: relative;
  margin: 0 18px;
  padding: 0;
  font-size: 0;
  border: solid 1px var(--ncui-gray008);
  border-bottom: 0; }
  @media (min-width: 960px) {
    .ncgbi-basic .ncgbi-basic-list {
      margin: 0 26px; } }
  @media (min-width: 1260px) {
    .ncgbi-basic .ncgbi-basic-list {
      margin: 0; } }
  .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items {
    display: inline-block;
    width: 50%;
    border-bottom: solid 1px var(--ncui-gray008); }
    .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items:nth-child(odd) {
      border-right: solid 1px var(--ncui-gray008);
      border-left: initial; }
      [dir=rtl] .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items:nth-child(odd) {
        border-right: initial; }
      [dir=rtl] .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items:nth-child(odd) {
        border-left: solid 1px var(--ncui-gray008); }
    @media (min-width: 960px) {
      .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items {
        width: 25%; }
        .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items:nth-child(4n + 2) {
          border-right: solid 1px var(--ncui-gray008);
          border-left: initial; }
          [dir=rtl] .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items:nth-child(4n + 2) {
            border-right: initial; }
          [dir=rtl] .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items:nth-child(4n + 2) {
            border-left: solid 1px var(--ncui-gray008); } }
    @media (min-width: 1260px) {
      .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items {
        width: 25%;
        height: 55px; }
        .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items:nth-child(4n + 2) {
          border-right: solid 1px var(--ncui-gray008);
          border-left: initial; }
          [dir=rtl] .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items:nth-child(4n + 2) {
            border-right: initial; }
          [dir=rtl] .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items:nth-child(4n + 2) {
            border-left: solid 1px var(--ncui-gray008); } }
    .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items .ncgbi-basic-link {
      display: block;
      overflow: hidden;
      padding: 0 20px;
      height: 100%; }
      .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items .ncgbi-basic-link .ncgbi-basic-text {
        text-align: left;
        margin: 14px 0 13px;
        font-size: 16px;
        letter-spacing: 0px;
        color: var(--ncui-black093);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 26px;
        max-height: none; }
        @media (min-width: 960px) {
          .ncgbi-basic .ncgbi-basic-list .ncgbi-basic-items .ncgbi-basic-link .ncgbi-basic-text {
            font-size: 17px;
            text-align: center; } }

@media (min-width: 960px) {
  .ncgbi-popular {
    margin-top: 50px; } }

.ncgbi-newest,
.ncgbi-basic {
  margin-top: 28px;
  padding-left: 18px;
  padding-right: 18px; }
  @media (min-width: 960px) {
    .ncgbi-newest,
    .ncgbi-basic {
      margin-top: 50px;
      padding-left: 26px;
      padding-right: 26px; } }

.ncgbi-newest-title,
.ncgbi-basic-title {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  color: var(--ncui-black100); }
  @media (min-width: 640px) {
    .ncgbi-newest-title,
    .ncgbi-basic-title {
      font-size: 18px; } }
  @media (min-width: 960px) {
    .ncgbi-newest-title,
    .ncgbi-basic-title {
      font-size: 22px;
      line-height: 24px;
      text-align: center;
      margin-bottom: 16px; } }

.section-wrap {
  margin: auto;
  max-width: 1260px; }

.ncgbt-btn-top {
  position: fixed;
  right: 18px;
  left: initial;
  bottom: 18px;
  z-index: 99;
  width: 42px;
  height: 36px;
  padding: 0;
  border: 1px solid #e3e3e3;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 17'%3E%3Cpath fill='none' stroke='%231F1F1F' stroke-linecap='square' d='M6.8 3.2l5.6 5.7M6.7 3.8V16m.1-12.8L1.2 8.8'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%231F1F1F' d='M0 .2h14v1H0v-1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 14px 17px;
  text-align: start;
  text-indent: -9999em;
  white-space: nowrap;
  overflow: hidden; }
  [dir=rtl] .ncgbt-btn-top {
    right: initial; }
  [dir=rtl] .ncgbt-btn-top {
    left: 18px; }
  @media (min-width: 1260px) {
    .ncgbt-btn-top {
      right: 50%;
      left: initial;
      margin-right: -685px;
      margin-left: initial; }
      [dir=rtl] .ncgbt-btn-top {
        right: initial; }
      [dir=rtl] .ncgbt-btn-top {
        left: 50%; }
      [dir=rtl] .ncgbt-btn-top {
        margin-right: initial; }
      [dir=rtl] .ncgbt-btn-top {
        margin-left: -685px; } }

.nc-guidebook-guide {
  min-width: 360px;
  min-height: calc(100vh - 447px);
  line-height: 1.5; }
  .nc-guidebook-guide * {
    word-wrap: break-word;
    word-break: keep-all; }
  @media (min-width: 960px) {
    .nc-guidebook-guide {
      min-height: auto; } }

@media (min-width: 960px) {
  .ncgbg-category {
    max-width: 1220px;
    padding: 0 20px;
    margin: auto; } }

.ncgbg-category .ncgbg-category-depth-1 {
  z-index: 110;
  position: relative;
  border-top: solid 1px var(--ncui-gray008); }
  .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-title {
    margin: 0; }
    @media (min-width: 960px) {
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-title {
        display: none; } }
    .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-title .ncgbg-category-link {
      display: block;
      height: 50px;
      line-height: 50px;
      font-size: 17px;
      font-weight: 400;
      text-align: center;
      color: var(--ncui-black093); }
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-title .ncgbg-category-link:after {
        position: relative;
        top: -2px;
        display: inline-block;
        margin-left: 8px;
        margin-right: initial;
        width: 10px;
        height: 8px;
        background-image: url("../img/index/btn_drop_down.png");
        background-size: contain;
        content: ''; }
        [dir=rtl] .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-title .ncgbg-category-link:after {
          margin-left: initial; }
        [dir=rtl] .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-title .ncgbg-category-link:after {
          margin-right: 8px; }
    .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-title.open .ncgbg-category-link:after {
      transform: rotate(180deg); }
  .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap {
    display: none;
    position: absolute;
    width: 100%;
    background-color: var(--ncui-bg);
    border: solid 1px var(--ncui-gray008);
    border-left: 0;
    border-right: 0; }
    @media (min-width: 960px) {
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap {
        display: block;
        position: relative;
        height: 50px;
        border: 0; }
        .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap:before {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          height: 2px;
          background-color: var(--ncui-gray008);
          content: ''; } }
    .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list-prev {
      display: none;
      z-index: 10;
      position: absolute;
      top: 0;
      left: 0;
      width: 50px;
      height: 48px;
      padding: 0;
      background-image: linear-gradient(to left, rgba(255, 255, 255, 0) 5%, var(--ncui-bg) 60%, var(--ncui-bg) 100%);
      background-color: transparent;
      border: 0;
      font-size: 0;
      color: transparent;
      pointer-events: none; }
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list-prev:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 30px;
        height: 100%;
        pointer-events: all;
        content: ''; }
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list-prev:after {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: 11px 21px;
        background-repeat: no-repeat;
        background-position: 12px 50%;
        background-image: url(../img/index/btn_guide_prev.png);
        content: ''; }
    .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list-next {
      display: none;
      z-index: 10;
      position: absolute;
      top: 0;
      right: 0;
      width: 50px;
      height: 48px;
      padding: 0;
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 5%, var(--ncui-bg) 60%, var(--ncui-bg) 100%);
      background-color: transparent;
      border: 0;
      font-size: 0;
      color: transparent;
      pointer-events: none; }
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list-next:before {
        position: absolute;
        top: 0;
        right: 0;
        width: 30px;
        height: 100%;
        pointer-events: all;
        content: ''; }
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list-next:after {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-size: 11px 21px;
        background-repeat: no-repeat;
        background-position: 27px 50%;
        background-image: url(../img/index/btn_guide_next.png);
        content: ''; }
  .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none; }
    @media (min-width: 960px) {
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list {
        display: flex;
        white-space: nowrap;
        font-size: 0; } }
    .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item + .ncgbg-category-item {
      border-top: solid 1px var(--ncui-gray008); }
    .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item.active .ncgbg-category-link .ncgbg-category-item-text {
      color: var(--ncui-black093); }
    @media (min-width: 960px) {
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item {
        display: inline-block;
        width: auto; }
        .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item.active .ncgbg-category-link .ncgbg-category-item-text {
          position: relative;
          color: var(--ncui-point-text); }
          .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item.active .ncgbg-category-link .ncgbg-category-item-text:after {
            position: absolute;
            bottom: -15px;
            left: -5px;
            right: -5px;
            height: 2px;
            background-color: var(--ncui-point);
            content: ''; }
        .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item + .ncgbg-category-item {
          border-top: 0; } }
    .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link {
      display: block;
      position: relative;
      height: 50px;
      line-height: 50px;
      text-align: center; }
      @media (min-width: 960px) {
        .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link {
          padding: 0 5px; } }
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-text {
        font-size: 17px;
        font-weight: 300;
        color: var(--ncui-black045); }
        @media (min-width: 960px) {
          .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-text {
            font-size: 16px;
            color: var(--ncui-black093);
            font-weight: 400;
            letter-spacing: 0px; } }
      .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet {
        position: relative;
        top: 2px;
        display: inline-block;
        width: 16px;
        height: 16px;
        background-size: contain;
        text-align: start;
        text-indent: -9999em;
        white-space: nowrap;
        overflow: hidden; }
        .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet.new {
          background-image: url("../img/index/bullet_new.png"); }
        .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet.update {
          background-image: url("../img/index/bullet_update.png"); }
        @media (min-width: 960px) {
          .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet {
            top: -6px;
            left: 2px;
            right: initial; }
            [dir=rtl] .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet {
              left: initial; }
            [dir=rtl] .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet {
              right: 2px; } }
  .ncgbg-category .ncgbg-category-depth-1.open .ncgbg-category-title .ncgbg-category-link:after {
    transform: rotate(180deg); }
  .ncgbg-category .ncgbg-category-depth-1.open .ncgbg-category-list-wrap, .ncgbg-category .ncgbg-category-depth-1.open .ncgbg-category-dimmed {
    display: block; }
    @media (min-width: 960px) {
      .ncgbg-category .ncgbg-category-depth-1.open .ncgbg-category-list-wrap, .ncgbg-category .ncgbg-category-depth-1.open .ncgbg-category-dimmed {
        display: none; } }

.ncgbg-category .ncgbg-category-depth-2 {
  z-index: 100;
  position: relative;
  border-top: solid 1px var(--ncui-gray008); }
  @media (min-width: 960px) {
    .ncgbg-category .ncgbg-category-depth-2 {
      overflow: hidden;
      border: 0; } }
  .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-wrap {
    overflow: hidden;
    position: relative;
    padding: 0 63px 0 13px;
    background-color: var(--ncui-gray004);
    border-bottom: solid 1px var(--ncui-gray008); }
    [dir=rtl] .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-wrap {
      padding: 0 13px 0 63px; }
    @media (min-width: 960px) {
      .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-wrap {
        overflow: visible;
        padding: 0 5px;
        background-color: var(--ncui-gray002); } }
  .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    font-size: 0; }
    .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list:empty {
      margin-top: -1px; }
      .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list:empty + .ncgbg-category-list-open {
        display: none; }
    .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list .ncgbg-category-item {
      display: inline-block;
      width: auto;
      max-width: 200px; }
      .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link {
        display: block;
        padding: 0 5px;
        height: 50px;
        font-size: 15px;
        line-height: 50px;
        color: var(--ncui-black093);
        width: calc(100%);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
        @media (min-width: 960px) {
          .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link {
            height: 42px;
            padding: 0 15px;
            line-height: 42px;
            color: var(--ncui-black068); } }
      .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list .ncgbg-category-item.active .ncgbg-category-link {
        color: var(--ncui-point-text); }
      .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list .ncgbg-category-item.active:after {
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 1px;
        background-color: transparent !important;
        content: ''; }
  .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-open-title {
    display: none;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    width: 100%;
    height: 100%;
    font-size: 15px;
    color: var(--ncui-black093);
    background-color: var(--ncui-gray004-hex); }
  .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-open {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    padding: 0;
    height: 51px;
    background-color: var(--ncui-gray004-hex);
    border: 0;
    border-left: solid 1px var(--ncui-gray008);
    border-bottom: solid 1px var(--ncui-gray008);
    text-align: start;
    text-indent: -9999em;
    white-space: nowrap;
    overflow: hidden; }
    .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-open:after {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      width: 21px;
      height: 11px;
      background-image: url("../img/index/btn_category_drop_down.png");
      background-size: contain;
      content: ''; }
    @media (min-width: 960px) {
      .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-open {
        display: none; } }
  .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-all {
    display: none;
    overflow: hidden;
    position: absolute;
    margin: 0;
    padding: 11px;
    width: 100%;
    list-style: none;
    background-color: var(--ncui-gray004-hex); }
    .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-all .ncgbg-category-item {
      margin: 4px 5px;
      float: left;
      width: calc(100% / 3 - 10px);
      border: solid 1px var(--ncui-gray008); }
      [dir=rtl] .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-all .ncgbg-category-item {
        float: right; }
      .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-all .ncgbg-category-item .ncgbg-category-link {
        display: block;
        vertical-align: center;
        align-items: center;
        text-align: center;
        padding: 0 9px;
        height: 50px;
        line-height: 50px;
        font-size: 15px;
        color: var(--ncui-black045);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; }
      .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-all .ncgbg-category-item.active {
        border-color: var(--ncui-point); }
        .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-all .ncgbg-category-item.active .ncgbg-category-link {
          color: var(--ncui-point); }
  .ncgbg-category .ncgbg-category-depth-2.open .ncgbg-category-list-all, .ncgbg-category .ncgbg-category-depth-2.open .ncgbg-category-dimmed {
    display: block; }
    @media (min-width: 960px) {
      .ncgbg-category .ncgbg-category-depth-2.open .ncgbg-category-list-all, .ncgbg-category .ncgbg-category-depth-2.open .ncgbg-category-dimmed {
        display: none; } }
  .ncgbg-category .ncgbg-category-depth-2.open .ncgbg-category-list-open-title {
    display: block; }
  .ncgbg-category .ncgbg-category-depth-2.open .ncgbg-category-list-open:after {
    transform: rotate(180deg); }

.ncgbg-category .ncgbg-category-dimmed {
  display: none;
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); }

.ncgbg-category .ncgbg-category-filter {
  padding: 9px 18px; }
  @media (min-width: 960px) {
    .ncgbg-category .ncgbg-category-filter {
      padding: 20px 0; } }
  .ncgbg-category .ncgbg-category-filter .ncgbg-category-filter-list {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    border: solid 1px var(--ncui-gray008); }
    .ncgbg-category .ncgbg-category-filter .ncgbg-category-filter-list .ncgbg-category-filter-item {
      display: inline-block; }
      .ncgbg-category .ncgbg-category-filter .ncgbg-category-filter-list .ncgbg-category-filter-item + .ncgbg-category-filter-item {
        border-left: solid 1px var(--ncui-gray008);
        border-right: initial; }
        [dir=rtl] .ncgbg-category .ncgbg-category-filter .ncgbg-category-filter-list .ncgbg-category-filter-item + .ncgbg-category-filter-item {
          border-left: initial; }
        [dir=rtl] .ncgbg-category .ncgbg-category-filter .ncgbg-category-filter-list .ncgbg-category-filter-item + .ncgbg-category-filter-item {
          border-right: solid 1px var(--ncui-gray008); }
      .ncgbg-category .ncgbg-category-filter .ncgbg-category-filter-list .ncgbg-category-filter-item .ncgbg-category-filter-button {
        width: 64px;
        height: 28px;
        font-size: 13px;
        color: var(--ncui-black045);
        background-color: transparent;
        border: none;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer; }
      .ncgbg-category .ncgbg-category-filter .ncgbg-category-filter-list .ncgbg-category-filter-item.active .ncgbg-category-filter-button {
        color: var(--ncui-point); }

.ncgbg-guide {
  padding: 0 0 40px; }
  @media (min-width: 960px) {
    .ncgbg-guide {
      max-width: 1220px;
      padding: 0 20px;
      margin: auto; } }
  .ncgbg-guide .ncgbg-guide-depth-2-list-none {
    display: none; }
  .ncgbg-guide .ncgbg-guide-depth-2-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: solid 4px var(--ncui-gray004); }
    @media (min-width: 960px) {
      .ncgbg-guide .ncgbg-guide-depth-2-list {
        border: 0; } }
    .ncgbg-guide .ncgbg-guide-depth-2-list:empty + .ncgbg-guide-depth-2-list-none {
      display: block;
      margin: 0;
      padding: 50px 0;
      text-align: center;
      font-size: 16px;
      color: var(--ncui-black045); }
      @media (min-width: 960px) {
        .ncgbg-guide .ncgbg-guide-depth-2-list:empty + .ncgbg-guide-depth-2-list-none {
          padding: 80px 0; } }
    .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item {
      padding-top: 19px;
      border-top: solid 4px var(--ncui-gray004); }
      @media (min-width: 960px) {
        .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item {
          padding: 0;
          border: 0; }
          .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item + .ncgbg-guide-depth-2-item {
            margin-top: 30px; } }
      .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-name {
        margin: 0;
        padding: 0 18px;
        font-size: 15px;
        letter-spacing: 0px;
        color: var(--ncui-black093); }
        @media (min-width: 960px) {
          .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-name {
            font-size: 16px;
            padding: 0; } }
      .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list {
        margin: 10px 0 0 0;
        padding: 0;
        list-style: none; }
        @media (min-width: 960px) {
          .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list {
            margin-top: 11px;
            margin: 9px 0 0 1px;
            font-size: 0; }
            [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list {
              margin: 9px 1px 0 0; } }
        .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item {
          border-top: solid 1px var(--ncui-gray008);
          padding: 18px; }
          @media (min-width: 960px) {
            .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item {
              display: inline-block;
              vertical-align: top;
              margin: -1px 0 0 -1px;
              padding: 20px;
              width: 50%;
              height: 150px;
              border-color: var(--ncui-gray008);
              border-style: solid;
              border-width: 0 1px 1px 0;
              border-left: initial; }
              [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item {
                margin: -1px -1px 0 0; }
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item:nth-child(1), .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item:nth-child(2) {
                border-top: 1px solid var(--ncui-gray008); }
              [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item {
                border-left: 1px solid var(--ncui-gray008); }
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item:nth-of-type(odd) {
                border-left: 1px solid var(--ncui-gray008);
                border-right: 1px solid var(--ncui-gray008); }
                [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item:nth-of-type(odd) {
                  border-right: 1px solid var(--ncui-gray008); }
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item:nth-of-type(even) {
                border-right: 1px solid var(--ncui-gray008); }
                [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item:nth-of-type(even) {
                  border-right: initial; } }
          .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-item-wrap {
            min-height: 65px; }
            @media (min-width: 960px) {
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-item-wrap {
                min-height: auto; } }
            .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-item-wrap > .ncgbg-guide-depth-2-guide-item-link {
              float: left; }
              [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-item-wrap > .ncgbg-guide-depth-2-guide-item-link {
                float: right; }
          @media (min-width: 960px) {
            .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-item-link:hover .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-text {
              position: relative;
              display: inline-block; }
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-item-link:hover .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-text::after {
                display: block;
                content: '';
                width: 100%;
                display: inline-block;
                position: absolute;
                bottom: 4px;
                left: 0;
                border-bottom: 1px solid var(--ncui-black093); } }
          .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-thumbnail {
            width: 94px;
            height: 65px;
            background-size: cover;
            background-position: center;
            margin-right: 10px;
            margin-left: initial; }
            [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-thumbnail {
              margin-right: initial; }
            [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-thumbnail {
              margin-left: 10px; }
            @media (min-width: 960px) {
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-thumbnail {
                width: 160px;
                height: 110px;
                margin-right: 20px;
                margin-left: initial; }
                [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-thumbnail {
                  margin-right: initial; }
                [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-thumbnail {
                  margin-left: 20px; } }
          .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name {
            margin: 0; }
            .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-text {
              display: inline-block;
              max-width: calc(100% - 180px);
              font-size: 18px;
              letter-spacing: 0px;
              color: var(--ncui-black093);
              white-space: nowrap;
              overflow: hidden;
              text-overflow: ellipsis; }
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-text::after {
                display: none; }
            .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet {
              position: relative;
              top: -5px;
              left: -5px;
              right: initial;
              display: inline-block;
              width: 16px;
              height: 16px;
              background-size: contain;
              text-align: start;
              text-indent: -9999em;
              white-space: nowrap;
              overflow: hidden; }
              [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet {
                left: initial; }
              [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet {
                right: -5px; }
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet.new {
                background-image: url("../img/index/bullet_new.png"); }
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet.update {
                background-image: url("../img/index/bullet_update.png"); }
              @media (min-width: 960px) {
                .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet {
                  top: -6px;
                  left: -1px;
                  right: initial; }
                  [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet {
                    left: initial; }
                  [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet {
                    right: -1px; } }
          .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-summary {
            margin: -3px 0 0;
            font-size: 15px;
            letter-spacing: 0px;
            line-height: 20px;
            color: var(--ncui-black045);
            position: relative;
            display: block;
            display: -webkit-box;
            overflow: hidden;
            max-height: 3em;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2; }
            @media (min-width: 960px) {
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-summary {
                margin-top: 1px;
                font-size: 14px; } }
          .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-tag-list {
            margin: 12px 0 0;
            font-size: 15px;
            padding: 0;
            color: var(--ncui-point-text080);
            line-height: 1;
            position: relative;
            display: block;
            display: -webkit-box;
            overflow: hidden;
            max-height: 3em;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2; }
            .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-tag-list .ncgbg-guide-depth-2-guide-tag-item {
              display: inline-block;
              margin: 2px 2px 0 1px;
              vertical-align: top; }
              [dir=rtl] .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-tag-list .ncgbg-guide-depth-2-guide-tag-item {
                margin: 2px 1px 0 2px; }
            .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-tag-list .ncgbg-guide-depth-2-guide-tag-link {
              color: var(--ncui-point-text080); }
            .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-tag-list.pc {
              display: none;
              margin: 9px 0 0; }
            @media (min-width: 960px) {
              .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-tag-list {
                font-size: 14px; }
                .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-tag-list.pc {
                  display: -webkit-box; }
                .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-tag-list.mobile {
                  display: none; } }

.nc-guidebook-search-result {
  min-width: 360px;
  min-height: calc(100vh - 447px); }
  .nc-guidebook-search-result * {
    word-wrap: break-word;
    word-break: keep-all; }
  @media (min-width: 960px) {
    .nc-guidebook-search-result {
      min-height: calc(100vh - 693px); } }

.ncgbs-result-util {
  min-height: 49px;
  padding: 3px 18px;
  border-top: 1px solid var(--ncui-gray008);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center; }
  @media (min-width: 960px) {
    .ncgbs-result-util {
      padding: 0;
      height: 53px;
      border-top: 5px solid var(--ncui-gray008); } }
  .ncgbs-result-util .ncgbs-util-result {
    font-size: 15px;
    line-height: 20px;
    color: var(--ncui-black068); }
    @media (min-width: 960px) {
      .ncgbs-result-util .ncgbs-util-result {
        margin-left: 20px;
        margin-right: initial;
        line-height: 23px; }
        [dir=rtl] .ncgbs-result-util .ncgbs-util-result {
          margin-left: initial; }
        [dir=rtl] .ncgbs-result-util .ncgbs-util-result {
          margin-right: 20px; } }
    .ncgbs-result-util .ncgbs-util-result .ncgbs-util-title > strong {
      color: var(--ncui-black100);
      font-weight: 400;
      margin-right: 4px;
      margin-left: initial; }
      [dir=rtl] .ncgbs-result-util .ncgbs-util-result .ncgbs-util-title > strong {
        margin-right: initial; }
      [dir=rtl] .ncgbs-result-util .ncgbs-util-result .ncgbs-util-title > strong {
        margin-left: 4px; }
    .ncgbs-result-util .ncgbs-util-result .ncgbs-util-count {
      margin-left: 5px;
      margin-right: initial;
      color: var(--ncui-point);
      font-style: normal;
      font-weight: normal; }
      [dir=rtl] .ncgbs-result-util .ncgbs-util-result .ncgbs-util-count {
        margin-left: initial; }
      [dir=rtl] .ncgbs-result-util .ncgbs-util-result .ncgbs-util-count {
        margin-right: 5px; }
  .ncgbs-result-util .list-count-area .ui-dropdown {
    position: relative;
    width: 100%;
    display: inline-block;
    min-width: 0;
    height: 36px;
    padding: 0 0 0 8px;
    font-size: 15px;
    line-height: 150%;
    text-align: left;
    color: var(--ncui-black068); }
    [dir=rtl] .ncgbs-result-util .list-count-area .ui-dropdown {
      padding: 0 8px 0 0; }
    [dir=rtl] .ncgbs-result-util .list-count-area .ui-dropdown {
      text-align: right; }
    .ncgbs-result-util .list-count-area .ui-dropdown .select {
      display: flex;
      align-items: center;
      height: 100%;
      background-color: transparent;
      cursor: pointer; }
      .ncgbs-result-util .list-count-area .ui-dropdown .select span {
        margin-top: -1px;
        white-space: nowrap;
        min-width: 80px;
        text-align: center; }
      .ncgbs-result-util .list-count-area .ui-dropdown .select svg {
        margin-left: 6px;
        margin-right: initial;
        width: 16px;
        height: 16px; }
        [dir=rtl] .ncgbs-result-util .list-count-area .ui-dropdown .select svg {
          margin-left: initial; }
        [dir=rtl] .ncgbs-result-util .list-count-area .ui-dropdown .select svg {
          margin-right: 6px; }
        .ncgbs-result-util .list-count-area .ui-dropdown .select svg.icon-dark {
          display: none; }
    .ncgbs-result-util .list-count-area .ui-dropdown .option {
      display: none;
      position: absolute;
      z-index: 10;
      top: 34px;
      max-height: 220px;
      overflow-y: auto;
      margin: 0;
      padding: 0;
      list-style: none;
      border: 1px solid var(--ncui-gray012);
      background-color: inherit;
      left: auto;
      right: 0; }
      [dir=rtl] .ncgbs-result-util .list-count-area .ui-dropdown .option {
        left: initial; }
      [dir=rtl] .ncgbs-result-util .list-count-area .ui-dropdown .option {
        right: auto; }
      .ncgbs-result-util .list-count-area .ui-dropdown .option li {
        height: 42px;
        padding-top: 10px;
        padding-left: 14px;
        padding-right: 20px;
        border-width: 1px 0 0;
        border-style: solid;
        border-color: var(--ncui-gray012);
        white-space: nowrap;
        background-color: var(--ncui-gray004-hex);
        cursor: pointer; }
        [dir=rtl] .ncgbs-result-util .list-count-area .ui-dropdown .option li {
          padding-left: initial; }
        [dir=rtl] .ncgbs-result-util .list-count-area .ui-dropdown .option li {
          padding-right: initial; }
        .ncgbs-result-util .list-count-area .ui-dropdown .option li:first-child {
          border-top: 0; }
        .ncgbs-result-util .list-count-area .ui-dropdown .option li:hover {
          color: var(--ncui-point); }
    .ncgbs-result-util .list-count-area .ui-dropdown.is-active .option {
      display: block; }

.ncgbs-result-wrap {
  border-top: 1px solid var(--ncui-gray008); }
  .ncgbs-result-wrap .ncgbs-result-list {
    padding-top: 20px; }
    @media (min-width: 640px) {
      .ncgbs-result-wrap .ncgbs-result-list {
        position: relative;
        padding: 20px 0;
        font-size: 0; }
        .ncgbs-result-wrap .ncgbs-result-list:after {
          position: absolute;
          left: 0;
          right: 0;
          bottom: 40px;
          height: 1px;
          background-color: var(--ncui-gray008);
          content: ""; } }
  .ncgbs-result-wrap .ncgbs-result-items {
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--ncui-gray008); }
    @media (min-width: 640px) {
      .ncgbs-result-wrap .ncgbs-result-items {
        display: inline-block;
        width: 50%;
        height: 138px;
        vertical-align: top; }
        .ncgbs-result-wrap .ncgbs-result-items:nth-last-child(2):nth-child(odd), .ncgbs-result-wrap .ncgbs-result-items:last-child {
          border-bottom: none; } }
  .ncgbs-result-wrap .ncgbs-result-contents-wrap {
    display: flex;
    padding: 0 16px; }
    .ncgbs-result-wrap .ncgbs-result-contents-wrap.no-thumbnail {
      display: block; }
    @media (min-width: 640px) {
      .ncgbs-result-wrap .ncgbs-result-contents-wrap {
        padding: 0 20px; } }
  .ncgbs-result-wrap .ncgbs-result-thumb {
    margin: 0 12px 0 0; }
    [dir=rtl] .ncgbs-result-wrap .ncgbs-result-thumb {
      margin: 0 0 0 12px; }
    @media (min-width: 640px) {
      .ncgbs-result-wrap .ncgbs-result-thumb {
        margin: 0 16px 0 0; }
        [dir=rtl] .ncgbs-result-wrap .ncgbs-result-thumb {
          margin: 0 0 0 16px; } }
    .ncgbs-result-wrap .ncgbs-result-thumb .thumb-wrap {
      display: block;
      width: 92px;
      height: 64px;
      background-size: cover;
      background-position: 50%; }
      @media (min-width: 640px) {
        .ncgbs-result-wrap .ncgbs-result-thumb .thumb-wrap {
          width: 94px;
          height: 65px; } }
  .ncgbs-result-wrap .ncgbs-result-thumb + .ncgbs-result-contents {
    width: calc(100% - 104px); }
    @media (min-width: 640px) {
      .ncgbs-result-wrap .ncgbs-result-thumb + .ncgbs-result-contents {
        width: calc(100% - 110px); } }
  .ncgbs-result-wrap .ncgbs-result-title {
    margin: -5px 0 6px;
    overflow: hidden;
    max-height: 1.5em;
    line-height: 24px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px; }
    .ncgbs-result-wrap .ncgbs-result-title a {
      color: var(--ncui-black093); }
  @media (min-width: 960px) {
    .ncgbs-result-wrap .ncgbs-result-summary {
      margin-top: 8px; } }
  .ncgbs-result-wrap .ncgbs-result-summary a {
    font-size: 15px;
    line-height: 22px;
    position: relative;
    display: block;
    display: -webkit-box;
    overflow: hidden;
    max-height: 3em;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--ncui-black045); }
    @media (min-width: 640px) {
      .ncgbs-result-wrap .ncgbs-result-summary a {
        line-height: 20px; } }
  .ncgbs-result-wrap .ncgbs-result-tags {
    margin: 6px 0 0;
    padding: 0 16px;
    height: 17px;
    font-size: 15px;
    position: relative;
    display: block;
    display: -webkit-box;
    overflow: hidden;
    max-height: 1.5em;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; }
    .ncgbs-result-wrap .ncgbs-result-tags .ncgbs-tags-item {
      display: inline-block;
      margin: 0 8px 0 0; }
      [dir=rtl] .ncgbs-result-wrap .ncgbs-result-tags .ncgbs-tags-item {
        margin: 0 0 0 8px; }
    @media (min-width: 960px) {
      .ncgbs-result-wrap .ncgbs-result-tags {
        height: 19px;
        padding: 0 20px; } }
    .ncgbs-result-wrap .ncgbs-result-tags .ncgbs-tags {
      font-size: 15px; }
      .ncgbs-result-wrap .ncgbs-result-tags .ncgbs-tags:before {
        content: "#"; }
  .ncgbs-result-wrap .ncgbs-result-info {
    margin: 14px 0 0;
    padding: 0 16px;
    font-size: 14px;
    line-height: 20px;
    color: var(--ncui-black045); }
    @media (min-width: 640px) {
      .ncgbs-result-wrap .ncgbs-result-info {
        margin: 12px 0 0;
        padding: 0 20px;
        font-size: 14px; } }
    .ncgbs-result-wrap .ncgbs-result-info .ncgbs-update {
      margin-right: 6px;
      margin-left: initial; }
      [dir=rtl] .ncgbs-result-wrap .ncgbs-result-info .ncgbs-update {
        margin-right: initial; }
      [dir=rtl] .ncgbs-result-wrap .ncgbs-result-info .ncgbs-update {
        margin-left: 6px; }
    .ncgbs-result-wrap .ncgbs-result-info .ncgbs-date {
      position: relative;
      padding: 0 0 0 7px;
      padding: 0 0 0 7px; }
      [dir=rtl] .ncgbs-result-wrap .ncgbs-result-info .ncgbs-date {
        padding: 0 7px 0 0; }
      .ncgbs-result-wrap .ncgbs-result-info .ncgbs-date:before {
        position: absolute;
        left: 0;
        right: initial;
        top: 4px;
        width: 1px;
        height: 12px;
        background-color: var(--ncui-gray008);
        content: ""; }
        [dir=rtl] .ncgbs-result-wrap .ncgbs-result-info .ncgbs-date:before {
          left: initial; }
        [dir=rtl] .ncgbs-result-wrap .ncgbs-result-info .ncgbs-date:before {
          right: 0; }
  .ncgbs-result-wrap .ncgbs-result-nodata {
    display: none;
    position: relative;
    margin: 28px auto 0; }
    .ncgbs-result-wrap .ncgbs-result-nodata strong {
      font-weight: 400; }
    @media (min-width: 960px) {
      .ncgbs-result-wrap .ncgbs-result-nodata {
        margin: 48px auto 0; } }
    .ncgbs-result-wrap .ncgbs-result-nodata div {
      margin: 0;
      padding: 0 0 0 18px;
      color: var(--ncui-black093);
      font-size: 20px;
      font-weight: 300; }
      [dir=rtl] .ncgbs-result-wrap .ncgbs-result-nodata div {
        padding: 0 18px 0 0; }
      @media (min-width: 640px) {
        .ncgbs-result-wrap .ncgbs-result-nodata div br {
          display: none; } }
    .ncgbs-result-wrap .ncgbs-result-nodata ol {
      display: inline-block;
      margin: 15px 0 0 0;
      padding: 0 18px 0 28px;
      list-style: none;
      text-align: left; }
      [dir=rtl] .ncgbs-result-wrap .ncgbs-result-nodata ol {
        padding: 0 28px 0 18px; }
      [dir=rtl] .ncgbs-result-wrap .ncgbs-result-nodata ol {
        text-align: right; }
      @media (min-width: 960px) {
        .ncgbs-result-wrap .ncgbs-result-nodata ol {
          margin: 25px 0 0 0; } }
      .ncgbs-result-wrap .ncgbs-result-nodata ol li {
        height: auto;
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.4;
        color: var(--ncui-black045); }
        @media (min-width: 960px) {
          .ncgbs-result-wrap .ncgbs-result-nodata ol li {
            margin-bottom: 13px;
            line-height: 22px; } }
        .ncgbs-result-wrap .ncgbs-result-nodata ol li:before {
          display: inline-block;
          content: "";
          width: 3px;
          height: 3px;
          margin: 0 5px 2px -8px;
          margin: 0 5px 2px -8px;
          border-radius: 2px;
          vertical-align: middle;
          background-color: var(--ncui-gray012); }
          [dir=rtl] .ncgbs-result-wrap .ncgbs-result-nodata ol li:before {
            margin: 0 -8px 2px 5px; }

.mobile .ui-dropdown-community, .tablet .ui-dropdown-community {
  display: inline-block !important; }

.nc-guidebook-search {
  max-width: 1260px;
  min-width: 360px; }

.swiper-container .swiper-pagination-fraction .swiper-pagination-current {
  color: var(--ncui-point-text); }

.swiper-container .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--ncui-point); }

.ncgb-container {
  max-width: 1260px; }
  .ncgb-container a {
    color: var(--ncui-black093); }
    .ncgb-container a:hover {
      color: var(--ncui-black093); }

.ncgbi-gameguide .ncgbi-swiper-list li a:hover {
  color: var(--ncui-point); }

.ncgbi-gameguide-tabs-items.swiper-slide-thumb-active {
  border-color: var(--ncui-point);
  background-color: var(--ncui-point); }

.ncgbi-gameguide-list-items:hover:before {
  border-color: var(--ncui-point); }

.ncgbi-gameguide-list-items:hover .ncgbi-swiper-title {
  color: var(--ncui-point); }

.ncgbg-list-wrap .ncgbg-title a:hover {
  border-bottom: 1px solid var(--ncui-point); }

.ncgbg-list-util .ncgbg-1depth-items.swiper-slide-thumb-active button,
.ncgbg-list-util .ncgbg-1depth-items > button:hover,
.ncgbg-list-util .ncgbg-2depth-items > button.is-active,
.pc .ncgbg-list-util .ncgbg-2depth-items > button:hover {
  color: var(--ncui-point); }

.ncgbg-list-util .ncgbg-1depth-items:before {
  background-color: var(--ncui-point); }

.ncgbs-result-util .ncgbs-util-result .ncgbs-util-count {
  color: var(--ncui-point); }

.ncgbs-result-wrap .ncgbs-result-thumb:hover + .ncgbs-result-contents .ncgbs-result-title a {
  border-bottom: 1px solid var(--ncui-black093);
  color: var(--ncui-black093); }

.ncgbs-result-wrap .ncgbs-result-thumb:hover + .ncgbs-result-contents .ncgbs-result-summary a {
  color: var(--ncui-black045); }

.ncgbs-result-wrap .ncgbs-result-contents:hover .ncgbs-result-title a {
  border-bottom: 1px solid var(--ncui-black093);
  color: var(--ncui-black093); }

.ncgbs-result-wrap .ncgbs-result-contents:hover .ncgbs-result-summary a {
  color: var(--ncui-black045); }

.ncgbs-result-wrap .ncgbs-result-tags .ncgbs-tags {
  color: var(--ncui-point-text080); }

.ncMob .section-contents {
  padding-top: 0 !important;
  padding-bottom: 50px; }

.ncMob .nc-guidebook-search.ncgbi-search-top.is-sticky {
  top: 0 !important; }

html.dark-mode .ncgb-btn-gb-index {
  background-image: url(../img/template/btn_guidebook_index_dark.png); }

html.dark-mode #ncGuidebookSearch .ncgb-suggest-delete {
  background-image: url(../img/index/search/btn_reset_dark.png);
  background-size: 22px 22px; }

html.dark-mode #ncGuidebookSearch .ncgb-suggest-submit {
  background-image: url(../img/index/search/btn_search_dark.png);
  background-size: 22px 22px; }

@media (min-width: 960px) {
  html.dark-mode #ncGuidebookSearch.ncgbt-search-top .ncgb-btn-list {
    background-image: url(../img/template/btn_list_back_pc_dark.png); } }

html.dark-mode #ncGuidebookIndex .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-bullet.new {
  background-image: url("../img/index/bullet_new_dark.png"); }

html.dark-mode #ncGuidebookIndex .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-bullet.update {
  background-image: url("../img/index/bullet_update_dark.png"); }

html.dark-mode #ncGuidebookIndex .ncgbi-newest .ncgbi-newest-util .swiper-button-next, html.dark-mode #ncGuidebookIndex .ncgbi-newest .ncgbi-newest-util .swiper-button-prev {
  background-image: url(../img/index/btn_newest_next_dark.png); }

@media (min-width: 960px) {
  html.dark-mode #ncGuidebookIndex .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-bullet.new {
    background-image: url("../img/index/bullet_new_dark_pc.png"); }
  html.dark-mode #ncGuidebookIndex .ncgbi-category .ncgbi-category-list .ncgbi-category-item .ncgbi-category-item-link .ncgbi-category-item-bullet.update {
    background-image: url("../img/index/bullet_update_dark_pc.png"); } }

html.dark-mode #ncGuidebookGuide .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-title .ncgbg-category-link:after {
  background-image: url(../img/index/btn_drop_down_dark.png); }

html.dark-mode #ncGuidebookGuide .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet.new {
  background-image: url("../img/index/bullet_new_dark_2.png"); }

html.dark-mode #ncGuidebookGuide .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet.update {
  background-image: url("../img/index/bullet_update_dark_2.png"); }

html.dark-mode #ncGuidebookGuide .ncgbg-category .ncgbg-category-depth-2 .ncgbg-category-list-wrap .ncgbg-category-list-open:after {
  background-image: url(../img/index/btn_category_drop_down_dark.png); }

html.dark-mode #ncGuidebookGuide .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet.new {
  background-image: url("../img/index/bullet_new_dark_2.png"); }

html.dark-mode #ncGuidebookGuide .ncgbg-guide .ncgbg-guide-depth-2-list .ncgbg-guide-depth-2-item .ncgbg-guide-depth-2-guide-list .ncgbg-guide-depth-2-guide-item .ncgbg-guide-depth-2-guide-name .ncgbg-guide-depth-2-guide-bullet.update {
  background-image: url("../img/index/bullet_update_dark_2.png"); }

@media (min-width: 960px) {
  html.dark-mode #ncGuidebookGuide .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet.new {
    background-image: url("../img/index/bullet_new_dark_pc.png"); }
  html.dark-mode #ncGuidebookGuide .ncgbg-category .ncgbg-category-depth-1 .ncgbg-category-list-wrap .ncgbg-category-list .ncgbg-category-item .ncgbg-category-link .ncgbg-category-item-bullet.update {
    background-image: url("../img/index/bullet_update_dark_pc.png"); } }

html.dark-mode #ncGuidebookSearchResult .ncgbs-result-util .list-count-area .ui-dropdown .select svg.icon-light {
  display: none; }

html.dark-mode #ncGuidebookSearchResult .ncgbs-result-util .list-count-area .ui-dropdown .select svg.icon-dark {
  display: block; }

html.dark-mode #ncGuidebookTemplate .ncgbt-article-list-btn-arrow {
  background: url("../img/template/btn_category_dark.png") no-repeat 50% 0/cover; }

html.dark-mode #ncGuidebookTemplate .ncgbt-article-list-close {
  background-color: var(--ncui-gray008-hex);
  background-image: url("../img/template/btn_category_close_dark.png");
  background-size: 37px auto; }

html.dark-mode #ncGuidebookTemplate .ncgbt-article table th,
html.dark-mode #ncGuidebookTemplate .ncgbt-article table td {
  background-color: transparent !important; }

html.dark-mode .ncgbt-btn-top {
  background-color: #171717;
  border-color: #212121;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 17'%3E%3Cpath fill='none' stroke='%23FFFFFF' stroke-linecap='square' d='M6.8 3.2l5.6 5.7M6.7 3.8V16m.1-12.8L1.2 8.8'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FFFFFF' d='M0 .2h14v1H0v-1z'/%3E%3C/svg%3E"); }

[data-service="tl"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/tl/update_notice_icon.png"); }

html.dark-mode[data-service="tl"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/tl/update_notice_icon_dark.png"); }

[data-service="lineagew"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/lineagew/update_notice_icon.png"); }

html.dark-mode[data-service="lineagew"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/lineagew/update_notice_icon_dark.png"); }

[data-service="bns2"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/bns2/update_notice_icon.png"); }

html.dark-mode[data-service="bns2"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/bns2/update_notice_icon_dark.png"); }

[data-service="lineage2m"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/lineage2m/update_notice_icon.png"); }

html.dark-mode[data-service="lineage2m"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/lineage2m/update_notice_icon_dark.png"); }

[data-service="lineage2"] .contents-wrap #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/lineage2/update_notice_icon.png"); }

html.dark-mode[data-service="lineage2"] .contents-wrap #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/lineage2/update_notice_icon_dark.png"); }

[data-service="lineagem"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGc+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE5ODAgLTUzODQpIHRyYW5zbGF0ZSgxOTQ0IDg2NCkgdHJhbnNsYXRlKDE2IDQ0OTgpIHRyYW5zbGF0ZSgyMCAyMikiPgogICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBmaWxsPSIjQTc2OTRGIiBmaWxsLW9wYWNpdHk9Ii42OCIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNOC4yNzIgMTAuMzkxbC4xMTUtNi43MzVINy4zMzNsLjExNCA2LjczNWguODI1em0tLjM2OCAyLjcyM2MuMTc4IDAgLjMzNC0uMDcuNDY3LS4yMTJzLjItLjMuMi0uNDczYzAtLjE5LS4wNzEtLjM1Ni0uMjEzLS40OTUtLjE0Mi0uMTQtLjMwMy0uMjEtLjQ4NS0uMjFzLS4zNDMuMDY4LS40ODMuMjAzYy0uMTQuMTM2LS4yMS4zMDMtLjIxLjUwMiAwIC4xODYuMDY4LjM0Ny4yMDQuNDgyLjEzNS4xMzYuMzA5LjIwMy41Mi4yMDN6Ii8+CiAgICAgICAgICAgICAgICAgICAgICAgIDxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSI3LjUiIHN0cm9rZT0iI0E3Njk0RiIgc3Ryb2tlLW9wYWNpdHk9Ii42OCIvPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg==); }

html.dark-mode[data-service="lineagem"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGc+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE5OTAuMDAwMDAwLCAtNTQwMS4wMDAwMDApIHRyYW5zbGF0ZSgxOTU0LjAwMDAwMCwgODY0LjAwMDAwMCkgdHJhbnNsYXRlKDE2LjAwMDAwMCwgNDUxNS4wMDAwMDApIHRyYW5zbGF0ZSgyMC4wMDAwMDAsIDIyLjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBmaWxsPSIjQzU4NDY2IiBmaWxsLW9wYWNpdHk9Ii42IiBmaWxsLXJ1bGU9Im5vbnplcm8iIGQ9Ik04LjI3MiAxMC4zOTFsLjExNS02LjczNUg3LjMzM2wuMTE0IDYuNzM1aC44MjV6bS0uMzY4IDIuNzIzYy4xNzggMCAuMzM0LS4wNy40NjctLjIxMnMuMi0uMy4yLS40NzNjMC0uMTktLjA3MS0uMzU2LS4yMTMtLjQ5NS0uMTQyLS4xNC0uMzAzLS4yMS0uNDg1LS4yMXMtLjM0My4wNjgtLjQ4My4yMDNjLS4xNC4xMzYtLjIxLjMwMy0uMjEuNTAyIDAgLjE4Ni4wNjguMzQ3LjIwNC40ODIuMTM1LjEzNi4zMDkuMjAzLjUyLjIwM3oiLz4KICAgICAgICAgICAgICAgICAgICAgICAgPGNpcmNsZSBjeD0iOCIgY3k9IjgiIHI9IjcuNSIgc3Ryb2tlPSIjQzU4NDY2IiBzdHJva2Utb3BhY2l0eT0iLjYiLz4KICAgICAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPgo=); }

[data-service="aion"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGc+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE5ODAgLTUzODQpIHRyYW5zbGF0ZSgxOTQ0IDg2NCkgdHJhbnNsYXRlKDE2IDQ0OTgpIHRyYW5zbGF0ZSgyMCAyMikiPgogICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBmaWxsPSIjNUNBM0MzIiBmaWxsLW9wYWNpdHk9Ii42OCIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNOC4yNzIgMTAuMzkxbC4xMTUtNi43MzVINy4zMzNsLjExNCA2LjczNWguODI1em0tLjM2OCAyLjcyM2MuMTc4IDAgLjMzNC0uMDcuNDY3LS4yMTJzLjItLjMuMi0uNDczYzAtLjE5LS4wNzEtLjM1Ni0uMjEzLS40OTUtLjE0Mi0uMTQtLjMwMy0uMjEtLjQ4NS0uMjFzLS4zNDMuMDY4LS40ODMuMjAzYy0uMTQuMTM2LS4yMS4zMDMtLjIxLjUwMiAwIC4xODYuMDY4LjM0Ny4yMDQuNDgyLjEzNS4xMzYuMzA5LjIwMy41Mi4yMDN6Ii8+CiAgICAgICAgICAgICAgICAgICAgICAgIDxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSI3LjUiIHN0cm9rZT0iIzVDQTNDMyIgc3Ryb2tlLW9wYWNpdHk9Ii42OCIvPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg==); }

html.dark-mode[data-service="aion"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICAgIDxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGc+CiAgICAgICAgICAgIDxnPgogICAgICAgICAgICAgICAgPGc+CiAgICAgICAgICAgICAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE5ODAgLTUzODQpIHRyYW5zbGF0ZSgxOTQ0IDg2NCkgdHJhbnNsYXRlKDE2IDQ0OTgpIHRyYW5zbGF0ZSgyMCAyMikiPgogICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBmaWxsPSIjNUNBM0MzIiBmaWxsLW9wYWNpdHk9Ii42OCIgZmlsbC1ydWxlPSJub256ZXJvIiBkPSJNOC4yNzIgMTAuMzkxbC4xMTUtNi43MzVINy4zMzNsLjExNCA2LjczNWguODI1em0tLjM2OCAyLjcyM2MuMTc4IDAgLjMzNC0uMDcuNDY3LS4yMTJzLjItLjMuMi0uNDczYzAtLjE5LS4wNzEtLjM1Ni0uMjEzLS40OTUtLjE0Mi0uMTQtLjMwMy0uMjEtLjQ4NS0uMjFzLS4zNDMuMDY4LS40ODMuMjAzYy0uMTQuMTM2LS4yMS4zMDMtLjIxLjUwMiAwIC4xODYuMDY4LjM0Ny4yMDQuNDgyLjEzNS4xMzYuMzA5LjIwMy41Mi4yMDN6Ii8+CiAgICAgICAgICAgICAgICAgICAgICAgIDxjaXJjbGUgY3g9IjgiIGN5PSI4IiByPSI3LjUiIHN0cm9rZT0iIzVDQTNDMyIgc3Ryb2tlLW9wYWNpdHk9Ii42OCIvPgogICAgICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgICAgIDwvZz4KICAgICAgICAgICAgPC9nPgogICAgICAgIDwvZz4KICAgIDwvZz4KPC9zdmc+Cg==); }

[data-service="bns"] .contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/bns/update_notice_icon.png"); }

html.dark-mode[data-service="bns"] .contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/bns/update_notice_icon_dark.png"); }

[data-service="battlecrush"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/battlecrush/update_notice_icon.png"); }

html.dark-mode[data-service="battlecrush"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/battlecrush/update_notice_icon_dark.png"); }

[data-service="hoyeon"] .nc-guidebook-template {
  margin-top: 0; }

[data-service="hoyeon"] .nc-guidebook-search.ncgbt-search-top .ncgb-btn-list {
  display: none; }

[data-service="hoyeon"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/hoyeon/update_notice_icon.png"); }

@media (min-width: 960px) {
  html.dark-mode[data-service="hoyeon"] .ncgb-btn-gb-index {
    background-image: url("../img/template/btn_guidebook_index_dark.png"); } }

html.dark-mode[data-service="hoyeon"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/hoyeon/update_notice_icon_dark.png"); }

[data-service="journey"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/journey/update_notice_icon.png"); }

html.dark-mode[data-service="journey"] .section-contents #ncGuidebookTemplate.nc-guidebook-template .ncgbt-update-new:before {
  background-image: url("../img/official/service/journey/update_notice_icon_dark.png"); }


/*# sourceMappingURL=index.css.map*/