@charset "UTF-8";
/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/Noto_Sans/NotoSans-VariableFont_wdth,wght.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/Noto_Sans/NotoSans-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-style: italic;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("../fonts/Noto_Sans_TC/NotoSansTC-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Serif TC";
  src: url("../fonts/Noto_Serif_TC/NotoSerifTC-VariableFont_wght.ttf") format("truetype");
}
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
/*  ===== underline hover ===== */
/*  ===== 進度條 ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
/**
 * * Allows you to use retina images at various pixel densities.
 * * Examples:
 * *
 * *   +retina(/images/mypic.jpg, 2);
 * *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 * *
 * * @param  {Value}  $path               The path to the file name minus extension.
 * * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * * @param  {Value}  $extras: null       Any other `background` values to be added.
 * */
.custom-container {
  max-width: calc(100vw - 80px + 30px);
}
@media (max-width: 767px) {
  .custom-container {
    max-width: calc(100vw - 40px + 30px);
  }
}

.loader-wrap {
  transition: 0.8s 0.5s ease, opacity 0.5s 0.3s ease;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100000;
}

.loading-bar {
  transition: 0.8s ease;
  height: 2px;
  position: fixed;
  top: 60vh;
  left: 0;
  right: 0;
}

.loading-progress {
  min-width: 0%;
  height: 100%;
  transition: min-width 0.8s ease, opacity 0.5s 1s ease;
  background-color: rgba(51, 89, 121, 0.7);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  bottom: 0;
}

.loading-progress-number {
  font-family: "Montserrat", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  font-size: 60px;
  color: rgba(51, 89, 121, 0.7);
  transition: 0.8s ease;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
}

.loaded .loader-wrap {
  opacity: 0;
  z-index: -100;
}

.loading-group {
  display: flex;
  flex-direction: column;
  transform: translate(0, calc(42.4vh - 50%));
}
.loading-group .loading-percentage-group {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #E6E1D9;
  display: flex;
  align-items: center;
  margin: auto;
}
.loading-group .loading-percentage-group .loading-percentage {
  font-size: 38px;
  line-height: 160%;
}
@media (max-width: 575px) {
  .loading-group .loading-percentage-group .loading-percentage {
    font-size: 24px;
  }
}
.loading-group .loading-percentage-group .percentage {
  font-size: 18px;
  padding-top: 10px;
  padding-left: 6px;
  line-height: 160%;
}
@media (max-width: 575px) {
  .loading-group .loading-percentage-group .percentage {
    font-size: 13px;
  }
}
.loading-group .loading-animation {
  width: 700px;
  margin: 44px auto 38px auto;
}
@media (max-width: 991px) {
  .loading-group .loading-animation {
    width: 500px;
  }
}
@media (max-width: 575px) {
  .loading-group .loading-animation {
    width: 250px;
    margin: 22px auto 28px auto;
  }
}
.loading-group .loading-logo-mask {
  -webkit-mask: url("../images/_orginal/logo_w@3x.png");
          mask: url("../images/_orginal/logo_w@3x.png");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 280px;
  height: 44px;
  background: #E6E1D9;
  margin: auto;
}
@media (max-width: 991px) {
  .loading-group .loading-logo-mask {
    width: 240px;
    height: 37px;
  }
}
@media (max-width: 575px) {
  .loading-group .loading-logo-mask {
    width: 150px;
    height: 23px;
  }
}

.header-search-block {
  position: relative;
}
.header-search-block .header-search {
  width: 100%;
  height: 36px;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 500px;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 220%;
  padding-left: calc(22px + 13.4%);
}
.header-search-block .header-search:focus {
  outline: none;
  border: 2px solid #FFFFFF;
}
.header-search-block .header-search::-moz-placeholder {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 220%;
}
.header-search-block .header-search::placeholder {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 220%;
}
.header-search-block .icon-search {
  position: absolute;
  top: 50%;
  left: 10.3%;
  transform: translate(0, -50%);
}
.header-search-block .icon-search::before {
  color: #FFFFFF;
  font-size: 22px;
}

header {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1% 0 3.8%;
  grid-gap: 30px;
  position: fixed;
  z-index: 1000;
}
@media (max-width: 1199px) {
  header {
    padding: 0 20.5px 0 22px;
  }
}
header .logo-imgbox {
  width: 250px;
}
@media (max-width: 575px) {
  header .logo-imgbox {
    width: 200px;
  }
}
header .logo-imgbox .img-cover {
  padding-top: 15%;
}
header .header-align-right-group {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  header .header-align-right-group {
    display: none;
  }
}
header .header-align-right-group .header-nav .header-nav-ul {
  list-style: none;
  padding: 0;
  display: flex;
  grid-gap: 32px;
  margin: 0;
}
header .header-align-right-group .header-nav .header-nav-li {
  position: relative;
}
header .header-align-right-group .header-nav .nav-link {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 2px;
  color: #FFFFFF;
  padding: 0;
  white-space: nowrap;
}
header .header-align-right-group .header-nav .nav-link.detail {
  cursor: pointer;
  font-size: 20px;
}
header .header-align-right-group .header-nav .nav-link.detail:hover + .detail-menu-group {
  visibility: visible;
  opacity: 1;
}
header .header-align-right-group .header-search-block {
  width: 12.6vw;
  min-width: 142px;
  margin: 0 31px 0 38px;
}
header .header-align-right-group .en-btn {
  width: 75px;
  height: 64px;
  background: rgba(0, 0, 0, 0.2);
  border: none;
}
header .mobile-nav-btn {
  background: none;
  padding: 0;
  border: none;
  display: none;
}
@media (max-width: 1199px) {
  header .mobile-nav-btn {
    display: block;
  }
}
header .mobile-nav-btn .bar {
  width: 26.5px;
  height: 1px;
  border-radius: 1px;
  background: #FFFFFF;
  margin: 8.5px 0;
}

.mobile-menu {
  width: 273px;
  position: fixed;
  top: 0;
  right: -273px;
  z-index: 1000;
  display: none;
}
@media (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu .cross-block {
  width: 75px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}
.mobile-menu .cross-block .cross-btn {
  background: transparent;
  padding: 0;
  border: none;
}
.mobile-menu .main-content {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 64px);
}
.mobile-menu .header-search-block {
  margin: 27px 18px 22px 23px;
}
.mobile-menu .mobile-nav-scrollable {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu .mobile-nav-scrollable::-webkit-scrollbar {
  display: none;
}
.mobile-menu .mobile-nav {
  margin: 14px 23px 0 28px;
}
.mobile-menu .mobile-nav .aside-nav-collapse-head {
  cursor: pointer;
}
.mobile-menu .mobile-nav .circle-arrow-right-rotate.rotate {
  transform: rotate(90deg);
}
.mobile-menu .mobile-nav .aside-nav-collapse-large {
  background: #E6E1D9;
  width: calc(100% + 51px);
  margin-left: -28px;
  margin-top: 16px;
  padding: 16px 23px 16px 28px;
  display: none;
}
.mobile-menu .mobile-nav .aside-nav-collapse-large .aside-nav-collapse-large-ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-menu .mobile-nav .aside-nav-collapse-large .aside-nav-collapse-large-ul .aside-nav-collapse-head-second {
  cursor: pointer;
}
.mobile-menu .mobile-nav .aside-nav-collapse-large .aside-nav-collapse-large-ul .aside-nav-link:hover .circle-arrow-right {
  background: transparent;
}
.mobile-menu .mobile-nav .aside-nav-collapse-large .aside-nav-collapse-large-ul .text {
  color: #000000;
}
.mobile-menu .mobile-nav .aside-nav-collapse-large .aside-nav-collapse-large-ul .circle-arrow-right {
  border-color: #000000;
}
.mobile-menu .mobile-nav .aside-nav-collapse-large .aside-nav-collapse-large-ul .icon-arrow2_line_right {
  color: #000000;
}
.mobile-menu .mobile-nav .aside-nav-collapse-small {
  background: #F3F0EC;
  width: calc(100% + 51px);
  margin-left: -28px;
  margin-top: 16px;
  padding: 16px 23px 16px 45px;
  display: none;
}
.mobile-menu .mobile-nav .aside-nav-collapse-small .aside-nav-collapse-small-ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu .mobile-nav-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
}
.mobile-menu .seperation-line {
  width: 76px;
  min-height: 1px;
  background: #FFFFFF;
  margin: 41px 0 38px 28px;
}
.mobile-menu .mobile-nav-2 {
  margin-left: 28px;
}
.mobile-menu .mobile-nav-2 .text {
  font-weight: 400;
  line-height: 100%;
  color: #FFFFFF;
}
.mobile-menu .space {
  flex-grow: 1;
}
.mobile-menu .en-btn {
  width: 63px;
  min-height: 43px;
  margin: 40px 0 80px 28px;
  background: #FFFFFF;
  border: none;
}

body.en header .header-align-right-group .header-nav .nav-link {
  letter-spacing: initial;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #000000;
  font-family: "Noto Sans TC", "Noto Sans JP", "Montserrat", "Microsoft JhengHei", "PingFang TC", "蘋果儷中黑", "sans-serif", Arial;
  font-display: swap;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
  background: #E6E1D9;
  position: relative;
  font-size: 1rem;
}
body.loading-out {
  opacity: 0;
}

.body__container {
  padding-top: 64px;
}

.u-border {
  border: 0.5px solid orange;
}

.u-border * {
  border: 0.5px solid orange;
}

h1 {
  font-size: 3.125rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.9375rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

span {
  font-size: 100%;
}

p, a, li, span {
  font-size: inherit;
}

a {
  text-underline-offset: 2px;
  text-decoration: none !important;
  color: inherit;
}
a:hover {
  color: inherit;
}

b, strong {
  font-weight: bold;
}

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

.underline-hover {
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.underline-hover:hover {
  background-size: 100% 1px;
}

button {
  position: relative;
  overflow: hidden;
}

button:focus {
  outline: none;
}

button:active:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
}

.aside-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.aside-nav-link .text {
  color: #FFFFFF;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 575px) {
  .aside-nav-link .text {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.01em;
  }
}
.aside-nav-link.aside-nav-link-click:hover + .detail-menu-group {
  visibility: visible;
  opacity: 1;
}

.aside-nav-link:hover .circle-arrow-right {
  background: #FFFFFF;
}

.circle-arrow-right.rotate {
  transform: rotate(90deg);
}

.circle-arrow-right {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  position: relative;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
.circle-arrow-right .icon-arrow2_line_right {
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}

.en-btn-text {
  color: #FFFFFF;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.02em;
}

.more-btn {
  display: flex;
  align-items: flex-end;
  padding-bottom: 5px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.more-btn:hover {
  background-size: 100% 1px;
}
@media (max-width: 991px) {
  .more-btn {
    border: none;
    padding: 0;
  }
}
.more-btn .more-text {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}
.more-btn .more-text::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.more-btn .icon-arrow3_line_right {
  margin-bottom: 2.5px;
  font-size: 14px;
}
.more-btn .icon-arrow3_line_right::before {
  color: #000000;
}

.back-btn {
  display: flex;
  align-items: center;
  grid-gap: 2px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-bottom: 4px;
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.back-btn:hover {
  background-size: 100% 1px;
}
@media (max-width: 575px) {
  .back-btn {
    border: none;
  }
}
.back-btn .icon-arrow3_line_left::before {
  color: #000000;
  font-size: 14px;
}
.back-btn .back-text {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .back-btn .back-text {
    font-size: 16px;
  }
}
.back-btn .back-text::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}

.talk-btn {
  display: none;
}

.img-cover {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.img-cover img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}

.page-content-not-full {
  width: 91.6%;
}
@media (max-width: 767px) {
  .page-content-not-full {
    width: 100%;
  }
}

.detail-menu-group {
  position: absolute;
  background: #E6E1D9;
  top: -19px;
  left: calc(100% + 4px);
  cursor: auto;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}
.detail-menu-group:hover {
  visibility: visible;
  opacity: 1;
}
.detail-menu-group a {
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.detail-menu-group a:hover {
  background-size: 100% 1px;
}
.detail-menu-group .circle-arrow-cover {
  position: absolute;
  top: 25px;
  left: -24px;
}
.detail-menu-group .icon-arrow2_solid_right {
  position: relative;
  font-size: 20px;
}
.detail-menu-group .icon-arrow2_solid_right .path1 {
  position: absolute;
}
.detail-menu-group .icon-arrow2_solid_right .path2 {
  position: absolute;
  font-size: 16px;
  left: 2px;
  top: 2px;
}
.detail-menu-group .icon-arrow2_solid_right .path2::before {
  margin: 0;
}
.detail-menu-group .detail-menu {
  padding: 23px 31px 27px 31px;
  width: 313px;
  box-shadow: 10px 10px 20px rgba(53, 64, 82, 0.35);
}
.detail-menu-group .detail-menu.exam {
  display: flex;
  padding: 0;
  width: auto;
}
@media (max-width: 1439px) {
  .detail-menu-group .detail-menu.exam {
    display: block;
  }
}
.detail-menu-group .detail-menu.exam .detail-menu-exam-left {
  border-right: 0.5px solid #000000;
  padding: 33px 33px;
  display: flex;
  align-items: center;
}
@media (max-width: 1439px) {
  .detail-menu-group .detail-menu.exam .detail-menu-exam-left {
    border: none;
    border-bottom: 0.5px solid #000000;
  }
}
.detail-menu-group .detail-menu.exam .detail-menu-exam-left .text {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: 1px solid #000000;
  border-radius: 100px;
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;
}
.detail-menu-group .detail-menu.exam .detail-menu-exam-left .text:hover {
  color: #FFFFFF;
  border-color: transparent;
}
.detail-menu-group .detail-menu.exam .detail-menu-exam-left a::after {
  display: none;
}
.detail-menu-group .detail-menu.exam .detail-menu-exam-right {
  display: flex;
  flex-wrap: wrap;
  width: 959px;
}
@media (max-width: 1439px) {
  .detail-menu-group .detail-menu.exam .detail-menu-exam-right {
    width: 600px;
  }
}
.detail-menu-group .detail-menu.exam .detail-menu-exam-right .detail-menu-sub-block {
  padding: 27px 39px 35px 38px;
  width: calc(33.3333333333% - 1px);
}
@media (max-width: 1439px) {
  .detail-menu-group .detail-menu.exam .detail-menu-exam-right .detail-menu-sub-block {
    width: calc(50% - 1px);
  }
}
.detail-menu-group .detail-menu.exam .detail-menu-exam-right .detail-menu-sub-block .subtitle {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1px;
  margin-bottom: 23px;
}
.detail-menu-group .detail-menu.exam .detail-menu-exam-right .detail-menu-sub-block.last {
  width: 32.3%;
}
@media (max-width: 1439px) {
  .detail-menu-group .detail-menu.exam .detail-menu-exam-right .detail-menu-sub-block.last {
    width: calc(50% - 1px);
  }
}
.detail-menu-group .detail-menu.exam .detail-menu-exam-right .detail-menu-line {
  width: 0.5px;
  height: 148px;
  background: #000000;
  margin-top: 73px;
}
@media (max-width: 1439px) {
  .detail-menu-group .detail-menu.exam .detail-menu-exam-right .detail-menu-line.second {
    display: none;
  }
}
.detail-menu-group .detail-menu-ul {
  display: flex;
  flex-direction: column;
  grid-gap: 9px;
}
.detail-menu-group .detail-menu-link {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #000000;
}
.detail-menu-group .detail-menu-li.have-hover {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.detail-menu-group .detail-menu-li.have-hover .hover-block {
  position: absolute;
  width: 283px;
  padding: 15px 26px;
  display: none;
  z-index: 10;
}
.detail-menu-group .detail-menu-li.have-hover .hover-block-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 220%;
  color: #FFFFFF;
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.detail-menu-group .detail-menu-li.have-hover .hover-block-link:hover {
  background-size: 100% 1px;
}
.detail-menu-group .detail-menu-li.have-hover:hover .hover-block {
  display: block;
}

.detail-menu-group.show {
  display: block;
}

.header-nav .detail-menu-group {
  top: 42px;
  right: -36px;
  left: auto;
}
.header-nav .detail-menu-group .circle-arrow-cover {
  top: 10px;
  left: auto;
  right: 70px;
  transform: rotate(-90deg);
}
.header-nav .detail-menu-group .detail-menu.exam .detail-menu-exam-right {
  width: 877px;
}
@media (max-width: 1839px) {
  .header-nav .detail-menu-group .detail-menu.exam .detail-menu-exam-right {
    width: 500px;
  }
}
.header-nav .detail-menu-group .detail-menu.exam .detail-menu-sub-block {
  width: 36.9%;
}
@media (max-width: 1839px) {
  .header-nav .detail-menu-group .detail-menu.exam .detail-menu-sub-block {
    width: calc(50% - 1px);
  }
}
@media (max-width: 1839px) {
  .header-nav .detail-menu-group .detail-menu.exam .detail-menu-line {
    height: 220px;
  }
}
@media (max-width: 1839px) {
  .header-nav .detail-menu-group .detail-menu.exam .detail-menu-line.second {
    display: none;
  }
}
.header-nav .detail-menu-group .detail-menu.exam .detail-menu-sub-block.last {
  width: 26%;
}
@media (max-width: 1839px) {
  .header-nav .detail-menu-group .detail-menu.exam .detail-menu-sub-block.last {
    width: 50%;
  }
}

body.en .header-nav .detail-menu-group.exam {
  right: -400px;
}
body.en .header-nav .detail-menu-group.exam .circle-arrow-cover {
  right: 430px;
}

.pagination-group {
  display: flex;
  align-items: center;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.pagination-group .prev-arrow {
  position: relative;
  margin-right: 12px;
  transform: rotate(180deg);
  cursor: pointer;
}
.pagination-group .prev-arrow img {
  display: block;
}
@media (max-width: 575px) {
  .pagination-group .prev-arrow img {
    width: 7px;
  }
}
.pagination-group .prev-arrow img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 575px) {
  .pagination-group .prev-arrow.first img {
    width: 8.5px;
    height: 10.5px;
  }
}
.pagination-group .prev-arrow:not(.active) img:first-of-type {
  opacity: 0;
}
.pagination-group .prev-arrow.active img:last-of-type {
  opacity: 0;
}
.pagination-group .number-group {
  display: flex;
  align-items: center;
}
.pagination-group .number-group .number {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  color: #335979;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  margin: 3px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .pagination-group .number-group .number {
    font-size: 15px;
    width: 24px;
    height: 24px;
  }
}
.pagination-group .number-group .number.active {
  background: #335979;
  color: #FFFFFF;
}
.pagination-group .number-group .number.dot {
  cursor: default;
}
.pagination-group .next-arrow {
  position: relative;
  margin-left: 12px;
  cursor: pointer;
}
.pagination-group .next-arrow img {
  display: block;
}
@media (max-width: 575px) {
  .pagination-group .next-arrow img {
    width: 7px;
  }
}
.pagination-group .next-arrow img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 575px) {
  .pagination-group .next-arrow.last img {
    width: 8.5px;
    height: 10.5px;
  }
}
.pagination-group .next-arrow:not(.active) img:first-of-type {
  opacity: 0;
}
.pagination-group .next-arrow.active img:last-of-type {
  opacity: 0;
}

.index__section .section-title {
  display: flex;
  align-items: flex-end;
  grid-gap: 20px;
  white-space: nowrap;
  flex-wrap: wrap;
}
.index__section .section-title .en-text {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  line-height: 125.69%;
  letter-spacing: 1px;
  color: #000000;
}
@media (max-width: 575px) {
  .index__section .section-title .en-text {
    font-size: 32px;
  }
}
.index__section .section-title .cn-text {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #000000;
  margin-bottom: 14px;
}
@media (max-width: 575px) {
  .index__section .section-title .cn-text {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.news-single-row {
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 575px) {
  .news-single-row {
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-end;
    grid-gap: 6px 8px;
  }
}
.news-single-row .date-tag-group {
  display: flex;
  align-items: center;
  width: 247px;
  min-width: 200px;
}
.news-single-row .date-text {
  padding-right: 2.8%;
  border-right: 1px solid #000000;
}
@media (max-width: 575px) {
  .news-single-row .date-text {
    border: none;
  }
}
.news-single-row .news-tag-block {
  width: 14%;
  min-width: 90px;
}
@media (max-width: 575px) {
  .news-single-row .news-tag-block {
    width: auto;
    min-width: auto;
  }
}
.news-single-row .small-tag {
  margin: auto;
}
.news-single-row .news-content {
  font-weight: 300;
  color: #000000;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  line-height: normal;
  max-width: 67.3%;
}
@media (max-width: 575px) {
  .news-single-row .news-content {
    min-width: 100%;
    font-size: 15px;
    line-height: 170%;
    letter-spacing: 0.01em;
  }
}
.news-single-row .news-content a {
  color: #000000;
  text-decoration: none;
  transition: 0.3s ease;
}
.news-single-row .news-content a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.news-single-row:hover .small-tag {
  background: #EEBB37;
}

.date-text {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 1px;
  color: #000000;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .date-text {
    font-size: 15px;
  }
}

.small-tag {
  font-weight: 400;
  line-height: 160%;
  color: #FFFFFF;
  padding: 4px 13px;
  border-radius: 500px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  transition: 0.3s ease;
}
@media (max-width: 575px) {
  .small-tag .text {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .small-tag .text-2 {
    font-size: 15px;
    line-height: 100%;
  }
}

.page-banner {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/_orginal/banner.png");
  background-position: center center;
  background-size: cover;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .page-banner {
    margin-bottom: 0;
  }
}
.page-banner .banner-nav {
  display: flex;
  justify-content: flex-end;
  grid-gap: 42px;
  margin-top: 13px;
}
@media (max-width: 767px) {
  .page-banner .banner-nav {
    display: none;
  }
}
.page-banner .banner-nav ul {
  display: flex;
  grid-gap: 42px;
}
.page-banner .banner-nav ul:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 19px;
  background: #E6E1D9;
}
.page-banner .banner-nav .nav-link {
  padding: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2px;
  opacity: 0.9;
  color: #E6E1D9;
}
.page-banner .page-title-group {
  margin-top: 57px;
  margin-bottom: 90px;
}
@media (max-width: 767px) {
  .page-banner .page-title-group {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.page-banner .page-title-group .en-text {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 125.69%;
  letter-spacing: 1px;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 767px) {
  .page-banner .page-title-group .en-text {
    font-size: 42px;
    letter-spacing: 0.653025px;
  }
}
.page-banner .page-title-group .cn-text {
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 767px) {
  .page-banner .page-title-group .cn-text {
    font-size: 14px;
    letter-spacing: 1.30605px;
  }
}

body.en .page-banner .banner-nav .nav-link {
  letter-spacing: initial;
}

.mobile-menu-btn {
  padding: 10px 15px;
  width: 100%;
  text-align: left;
  border: none;
  margin-top: 12px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}
.mobile-menu-btn .text {
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  color: #FFFFFF;
}
.mobile-menu-btn .text span {
  margin-right: 4px;
}

.page-aside .page-aside-ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-aside .aside-nav-link {
  padding: 9px 18px 9px 13px;
}
@media (max-width: 575px) {
  .page-aside .aside-nav-link {
    padding: 14px 15px 15px 15px;
  }
}
@media (max-width: 767px) {
  .page-aside .aside-nav-link .text {
    font-size: 16px;
  }
}
.page-aside .collapse-title-1 {
  cursor: pointer;
}
.page-aside .collapse-block {
  display: none;
}
.page-aside .collapse-block .collapse-title-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 13px 5px 14px 14px;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .page-aside .collapse-block .collapse-title-2 {
    margin: 13px 8px 0 15px;
  }
}
.page-aside .collapse-block .collapse-title-2 h4 {
  font-weight: 400;
}
@media (max-width: 575px) {
  .page-aside .collapse-block .collapse-title-2 h4 {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.01em;
  }
}
@media (max-width: 767px) {
  .page-aside .collapse-block .collapse-title-2 .text {
    font-size: 16px;
  }
}
.page-aside .collapse-block .collapse-title-2 .plus-group {
  display: flex;
}
.page-aside .collapse-block .collapse-title-2 .minus-group {
  display: flex;
}
.page-aside .collapse-block .collapse-title-2 .plus-text, .page-aside .collapse-block .collapse-title-2 .minus-text {
  font-weight: 400;
  line-height: 100%;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .page-aside .collapse-block .collapse-title-2 .plus-text, .page-aside .collapse-block .collapse-title-2 .minus-text {
    font-size: 13px;
  }
}
.page-aside .collapse-block .collapse-title-2 .dont-show {
  display: none;
}
.page-aside .collapse-block .collapse-title-2:hover .underline-hover {
  background-size: 100% 1px;
}
.page-aside .collapse-block .collapse-title-2.no-collapse {
  margin-top: 17px;
  margin-bottom: 17px;
  cursor: auto;
  text-decoration: none;
}
@media (max-width: 575px) {
  .page-aside .collapse-block .collapse-title-2.no-collapse {
    margin-top: 13px;
    margin-bottom: 13px;
  }
}
.page-aside .collapse-block .collapse-title-2.no-collapse a {
  color: #000000;
}
.page-aside .collapse-block .collapse-list {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  display: none;
  margin-top: 14px;
}
@media (max-width: 767px) {
  .page-aside .collapse-block .collapse-list {
    border-radius: 20px;
    margin: 8px 4px 17px 4px;
  }
}
.page-aside .collapse-block .collapse-list .collapse-list-ul {
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
}
@media (max-width: 767px) {
  .page-aside .collapse-block .collapse-list .collapse-list-ul {
    padding: 12px 6px 18px 6px;
  }
}
.page-aside .collapse-block .collapse-list .collapse-list-li {
  display: flex;
  align-items: center;
}
.page-aside .collapse-block .collapse-list .collapse-list-li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #000000;
  border-radius: 50%;
  margin: 0 10px;
}
.page-aside .collapse-block .collapse-list .collapse-list-link {
  font-weight: 300;
  font-size: 16px;
  line-height: 110%;
  color: #000000;
}
@media (max-width: 767px) {
  .page-aside .collapse-block .collapse-list .collapse-list-link {
    font-size: 15px;
  }
}
.page-aside .collapse-block .collapse-list a {
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.page-aside .collapse-block .collapse-list a:hover {
  background-size: 100% 1px;
}
.page-aside .collapse-block .collapse-list.active {
  display: block;
}
.page-aside .collapse-block.active {
  display: block;
}

.pop-up-cover {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 500;
  display: none;
}
.pop-up-cover .page-aside {
  background: #E6E1D9;
  width: 89.6%;
  padding: 8px 8px 8px 8px;
  margin: auto;
  transform: translate(0, -50%);
  filter: drop-shadow(5px 10px 5px rgba(0, 0, 0, 0.15));
}
.pop-up-cover .page-aside.mobile {
  max-height: 65vh;
}
@media (hover: none) {
  .pop-up-cover .page-aside.mobile {
    overflow-y: scroll;
  }
}
.pop-up-cover .page-aside.mobile .simplebar-track.simplebar-vertical {
  width: 8px !important;
}
.pop-up-cover .page-aside.mobile .simplebar-scrollbar.simplebar-visible::before {
  opacity: 0.3 !important;
}

.pop-up-cover.show {
  display: block;
}

.page-aside.pc {
  width: 70%;
  position: sticky;
  top: 99px;
  margin-bottom: 35px;
}
@media (max-width: 1439px) {
  .page-aside.pc {
    width: 85%;
  }
}
@media (max-width: 1199px) {
  .page-aside.pc {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .page-aside.pc {
    display: none;
  }
}

.page-aside.pc.smaller {
  width: 65.2%;
}
@media (max-width: 1439px) {
  .page-aside.pc.smaller {
    width: 75%;
  }
}
@media (max-width: 1199px) {
  .page-aside.pc.smaller {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .page-aside.pc.smaller {
    display: none;
  }
}
.page-aside.pc.smaller .aside-nav-link {
  text-decoration: none;
  transition: 0.3s ease;
}

.breadcrumb-selectric-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-gap: 24px 20px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .page-breadcrumb {
    width: 100%;
  }
}
.page-breadcrumb .start-line {
  width: 5px;
  height: 25px;
  background: #EEBB37;
  margin-right: 16px;
}
@media (max-width: 575px) {
  .page-breadcrumb .start-line {
    width: 4px;
    height: 16px;
    margin-right: 7px;
  }
}
.page-breadcrumb a {
  font-weight: 300;
  line-height: 100%;
  color: #000000;
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.page-breadcrumb a:hover {
  background-size: 100% 1px;
}
@media (max-width: 575px) {
  .page-breadcrumb a {
    font-size: 13px;
  }
}
.page-breadcrumb a:hover {
  background-size: calc(100% - 16px) 1px;
}
@media (max-width: 575px) {
  .page-breadcrumb a:hover {
    background-size: calc(100% - 13px) 1px;
  }
}
.page-breadcrumb a:last-of-type:hover {
  background-size: 100% 1px;
}
@media (max-width: 575px) {
  .page-breadcrumb .breadcrumb-inline {
    margin-top: -5px;
  }
}
.page-breadcrumb .breadcrumb-inline a:not(:first-of-type) {
  margin-left: -6px;
}
.page-breadcrumb .breadcrumb-inline a:last-of-type {
  font-weight: 500;
}
.page-breadcrumb .breadcrumb-inline a:not(:last-of-type)::after {
  content: ">";
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #000000;
  padding: 0 3px;
  display: inline-block;
  text-decoration: none;
}
@media (max-width: 575px) {
  .page-breadcrumb .breadcrumb-inline a:not(:last-of-type)::after {
    font-size: 13px;
  }
}
.selectric-group {
  position: relative;
  height: 100%;
  width: 290px;
}
.selectric-group .selectric-hover {
  border: none;
}
.selectric-group .selectric {
  width: 290px;
  background: transparent;
  border-radius: 100px;
  padding: 8px 20px;
}
@media (max-width: 575px) {
  .selectric-group .selectric {
    padding: 6px 11px;
  }
}
.selectric-group .selectric .label {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  height: auto;
  margin: 0;
}
@media (max-width: 575px) {
  .selectric-group .selectric .label {
    font-size: 14px;
  }
}
.selectric-group .selectric .button {
  display: none;
}
.selectric-group .icon-arrow1_down {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
  z-index: -1;
  font-size: 22px;
}
@media (max-width: 575px) {
  .selectric-group .icon-arrow1_down {
    right: 11px;
  }
}
.selectric-group .selectric-items {
  border-radius: 15px;
  box-shadow: none;
  border: none;
  padding: 5px 25px;
  margin-top: 4px;
}
@media (max-width: 575px) {
  .selectric-group .selectric-items {
    padding: 5px 15px;
  }
}
.selectric-group .selectric-items li.highlighted, .selectric-group .selectric-items li, .selectric-group .selectric-items li:hover {
  background: none;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 575px) {
  .selectric-group .selectric-items li.highlighted, .selectric-group .selectric-items li, .selectric-group .selectric-items li:hover {
    font-size: 14px;
  }
}
.selectric-group .selectric-items li {
  border-bottom: 1px solid transparent;
  padding: 15px 0;
}
@media (max-width: 575px) {
  .selectric-group .selectric-items li {
    padding: 7px 0;
  }
}
.selectric-group .selectric-items li:not(:last-of-type) {
  border-bottom: 1px solid #FFFFFF;
}
.selectric-group .selectric-items li:hover {
  font-weight: 700;
  letter-spacing: -0.01em;
}
.selectric-group .selectric-items .selectric-scroll {
  max-height: 300px;
}
@media (max-width: 575px) {
  .selectric-group .selectric-items .selectric-scroll {
    max-height: 150px;
  }
}

.page-card-section {
  margin-top: 39px;
  margin-bottom: 103px;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 52px 20px;
}
@media (max-width: 575px) {
  .page-card-section {
    margin-top: 15px;
    margin-bottom: 24px;
    grid-gap: 8px;
  }
}

.page-card {
  width: calc((100% - 40px) / 3);
  position: relative;
}
@media (max-width: 991px) {
  .page-card {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 575px) {
  .page-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.425);
    border-radius: 15px;
    overflow: hidden;
    z-index: 0;
  }
}
.page-card .img-cover {
  padding-top: 50.8%;
}
.page-card .tag-date-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 10px 0;
}
@media (max-width: 575px) {
  .page-card .tag-date-group {
    margin: 13px 16px 8px 16px;
  }
}
.page-card .title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  line-height: normal;
}
@media (max-width: 575px) {
  .page-card .title {
    margin: 0 16px 8px 16px;
  }
}
.page-card .title a {
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 575px) {
  .page-card .title a {
    font-size: 15px;
  }
}
.page-card .title a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.page-card:hover .small-tag {
  background: #EEBB37;
}
.page-card:hover img {
  transform: scale(1.1, 1.1);
}

.download-block-section {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  width: 100%;
}
@media (max-width: 1199px) {
  .download-block-section {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .download-block-section {
    grid-gap: 8px;
  }
}
.download-block-section .download-block {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  padding: 25px 56px 25px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 76px;
  position: relative;
  transition: 0.3s ease;
  width: 100%;
}
@media (max-width: 575px) {
  .download-block-section .download-block {
    padding: 12px 28px 12px 14px;
    grid-gap: 26px;
  }
}
.download-block-section .download-block .date-text {
  padding-left: 3px;
  margin-bottom: 7px;
}
@media (max-width: 575px) {
  .download-block-section .download-block .date-text {
    font-size: 13px;
    margin-bottom: 4px;
  }
}
.download-block-section .download-block .title-text a {
  font-weight: 500;
  line-height: 100%;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 575px) {
  .download-block-section .download-block .title-text a {
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    letter-spacing: 0.01em;
  }
}
.download-block-section .download-block .title-text a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.download-block-section .download-block .icon-download {
  font-size: 24px;
}
.download-block-section .download-block:hover {
  background: #FFFFFF;
}

@media (max-width: 767px) {
  .table-block {
    border-top: 1px dashed #000000;
  }
}
.table-block .top-title-bar {
  display: flex;
  padding: 9px 0 8px 0;
}
@media (max-width: 767px) {
  .table-block .top-title-bar {
    display: none;
  }
}
.table-block .top-title-bar .table-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
}
.table-block .single-object {
  display: flex;
  padding: 19px 0;
  border-bottom: 1px dashed #000000;
}
@media (max-width: 767px) {
  .table-block .single-object {
    display: block;
    padding: 0;
  }
}
.table-block .single-object .content-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .table-block .single-object .content-text {
    display: flex;
    text-align: left;
    line-height: 200%;
  }
}
@media (max-width: 575px) {
  .table-block .single-object .content-text {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .table-block .single-object .content-text::before {
    content: attr(data-title);
    min-width: 35%;
    color: #FFFFFF;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 575px) {
  .table-block .single-object .content-text::before {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .table-block .single-object .content-text:first-child {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .table-block .single-object .content-text:first-child::before {
    padding-top: 10px;
    margin-top: -10px;
  }
}
@media (max-width: 767px) {
  .table-block .single-object .content-text:last-child::before {
    padding-bottom: 10px;
  }
}
.table-block .single-object a {
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.table-block .single-object a:hover {
  background-size: 100% 1px;
}

.page-article-content-section {
  margin-top: 41px;
}
@media (max-width: 767px) {
  .page-article-content-section {
    margin-top: 24px;
  }
}
.page-article-content-section .tag-date-group {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
@media (max-width: 575px) {
  .page-article-content-section .tag-date-group {
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .page-article-content-section .tag-date-group .date-text {
    font-size: 13px;
  }
}
.page-article-content-section .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.01em;
  padding-bottom: 13px;
  border-bottom: 1px solid #000000;
  margin-top: 16px;
  margin-bottom: 36px;
}
@media (max-width: 575px) {
  .page-article-content-section .title {
    margin-top: 6px;
    margin-bottom: 8px;
    border: none;
    padding: 0;
    font-size: 18px;
    line-height: 150%;
  }
}
.page-article-content-section .nsdi-article-system {
  padding: 0;
  margin: 0;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system .nas-article-wrapper {
    padding-left: 4px;
    padding-right: 4px;
  }
}
.page-article-content-section .nsdi-article-system .nas-image-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system .nas-image-wrapper {
    margin-bottom: 15px;
    padding-left: 0;
    padding-right: 0;
  }
}
.page-article-content-section .nsdi-article-system .row {
  margin-left: 0;
  margin-right: 0;
}
.page-article-content-section .nsdi-article-system img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-article-content-section .nsdi-article-system h1 {
  font-weight: 600;
  font-size: 36px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system h1 {
    font-size: 28px;
  }
}
.page-article-content-section .nsdi-article-system h2 {
  font-weight: 600;
  font-size: 28px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system h2 {
    font-size: 24px;
  }
}
.page-article-content-section .nsdi-article-system h3 {
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system h3 {
    font-size: 20px;
  }
}
.page-article-content-section .nsdi-article-system h4 {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system h4 {
    font-size: 18px;
  }
}
.page-article-content-section .nsdi-article-system h5 {
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system h5 {
    font-size: 15px;
  }
}
.page-article-content-section .nsdi-article-system h6 {
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system h6 {
    font-size: 13px;
  }
}
.page-article-content-section .nsdi-article-system h1, .page-article-content-section .nsdi-article-system h2, .page-article-content-section .nsdi-article-system h3, .page-article-content-section .nsdi-article-system h4, .page-article-content-section .nsdi-article-system h5, .page-article-content-section .nsdi-article-system h6 {
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}
.page-article-content-section .nsdi-article-system p {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system p {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.page-article-content-section .nsdi-article-system a {
  text-decoration: underline !important;
}
.page-article-content-section .nsdi-article-system li {
  font-weight: 400;
  font-size: 16px;
  line-height: 220%;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system li {
    font-size: 13px;
  }
}
.page-article-content-section .nsdi-article-system ul {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system ul {
    margin-bottom: 15px;
  }
}
.page-article-content-section .nsdi-article-system ul li {
  display: flex;
}
.page-article-content-section .nsdi-article-system ul li::before {
  content: "";
  display: block;
  min-width: 3px;
  height: 3px;
  background: #000000;
  border-radius: 50%;
  margin: 15px 10px;
}
.page-article-content-section .nsdi-article-system ol {
  padding-left: 30px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .page-article-content-section .nsdi-article-system ol {
    margin-bottom: 15px;
  }
}
.page-article-content-section .single-pic {
  margin-top: 28px;
}
@media (max-width: 575px) {
  .page-article-content-section .single-pic {
    margin-top: 0;
  }
}
.page-article-content-section .back-btn {
  margin: 60px 0 81px auto;
}
@media (max-width: 575px) {
  .page-article-content-section .back-btn {
    margin: 21px 16px 24px auto;
  }
}

.index .index-pop-up-cover {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 500;
}
.index .index-pop-up-cover .index-pop-up {
  background: #E6E1D9;
  width: 496px;
  position: absolute;
  left: 50vw;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .index .index-pop-up-cover .index-pop-up {
    width: 396px;
  }
}
@media (max-width: 575px) {
  .index .index-pop-up-cover .index-pop-up {
    width: 280px;
  }
}
.index .index-pop-up-cover .index-pop-up .img-cover {
  padding-top: 76.6%;
  border-radius: 30px 30px 0 0;
  flex: 1;
}
.index .index-pop-up-cover .index-pop-up .text-block {
  width: 100%;
  height: 23.4%;
  min-height: 23.4%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 30px 15px 15px 15px;
  margin: 0;
}
@media (max-width: 575px) {
  .index .index-pop-up-cover .index-pop-up .text-block {
    padding: 20px 10px 10px 10px;
  }
}
.index .index-pop-up-cover .index-pop-up .text-block p {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .index .index-pop-up-cover .index-pop-up .text-block p {
    margin-bottom: 10px;
  }
}
.index .index-pop-up-cover .index-pop-up .text {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  width: 265px;
  text-align: center !important;
}
@media (max-width: 575px) {
  .index .index-pop-up-cover .index-pop-up .text {
    font-size: 12px;
    width: 180px;
  }
}
.index .index-pop-up-cover .index-pop-up .close-btn {
  position: absolute;
  top: 20px;
  right: 23px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .index .index-pop-up-cover .index-pop-up .close-btn {
    top: 15px;
  }
}
@media (max-width: 575px) {
  .index .index-pop-up-cover .index-pop-up .close-btn img {
    width: 25px;
  }
}
.index .body__container {
  padding-top: 0;
}
@media (max-width: 767px) {
  .index .body__container {
    padding-top: 64px;
  }
}
.index header {
  display: none;
}
@media (max-width: 767px) {
  .index header {
    display: flex;
  }
}
.index .fixed-block {
  position: fixed;
  width: 300px;
  z-index: 100;
}
@media (max-width: 1199px) {
  .index .fixed-block {
    width: 230px;
  }
}
@media (max-width: 767px) {
  .index .fixed-block {
    display: none;
  }
}
.index__aside {
  width: 100%;
  height: 100vh;
  padding: 30px 26px;
  position: relative;
}
.index__aside .logo-block {
  width: 100%;
}
.index__aside .logo-block .img-cover {
  padding-top: 15.6%;
}
.index__aside .aside-nav {
  margin-top: 154px;
}
.index__aside .aside-nav.low-height {
  margin-top: 50px;
}
.index__aside .aside-nav .aside-nav-ul {
  display: flex;
  flex-direction: column;
  grid-gap: 16px;
}
.index__aside .aside-nav .aside-nav-li {
  position: relative;
}
.index__aside .aside-nav .aside-nav-link {
  cursor: pointer;
}
.index__aside .aside-nav .aside-nav-link .text {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2px;
}
.index__aside .seperation-line {
  height: 1px;
  width: 53.8%;
  background: #FFFFFF;
  margin: 74px 0;
}
@media (max-width: 1199px) {
  .index__aside .seperation-line {
    margin: 54px 0;
  }
}
.index__aside .seperation-line.low-height {
  margin: 34px 0;
}
.index__aside .aside-nav-2 ul {
  display: flex;
  flex-direction: column;
  grid-gap: 25px;
}
.index__aside .aside-nav-2 .text {
  color: #FFFFFF;
  font-weight: 400;
  line-height: 100%;
}
.index__aside .aside-nav-2 a {
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.index__aside .aside-nav-2 a:hover {
  background-size: 100% 1px;
}
.index__aside .aside-search-block {
  position: absolute;
  bottom: 34px;
  left: 20px;
  width: calc(100% - 40px);
}
.index__aside .aside-search-block .aside-search {
  width: 100%;
  height: 40px;
  border: 1px solid #FFFFFF;
  border-radius: 500px;
  background: transparent;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 220%;
  padding-left: calc(9.3% + 30px);
}
.index__aside .aside-search-block .aside-search:focus {
  outline: none;
  border: 2px solid #FFFFFF;
}
.index__aside .aside-search-block .aside-search::-moz-placeholder {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 220%;
}
.index__aside .aside-search-block .aside-search::placeholder {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 16px;
  line-height: 220%;
}
.index__aside .aside-search-block .icon-search {
  position: absolute;
  top: 50%;
  left: 10.3%;
  transform: translate(0, -50%);
}
.index__aside .aside-search-block .icon-search::before {
  color: #FFFFFF;
  font-size: 22px;
}
.index__container {
  width: calc(100% - 300px - 18px);
  margin-left: auto;
}
@media (max-width: 1199px) {
  .index__container {
    width: calc(100% - 230px - 18px);
  }
}
@media (max-width: 767px) {
  .index__container {
    width: 100%;
    padding-top: 0;
  }
}
.index__full-content .index-main-img {
  width: 100%;
  position: relative;
  border-radius: 0 0 0 137px;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 991px) {
  .index__full-content .index-main-img {
    margin-bottom: 38px;
  }
}
@media (max-width: 575px) {
  .index__full-content .index-main-img {
    margin-bottom: 15.5px;
    border-radius: 0 0 0 100px;
  }
}
.index__full-content .index-main-img .img-cover.full-screen {
  width: 100%;
}
.index__full-content .index-main-img .img-cover.full-screen video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index__full-content .index-main-img .en-btn {
  width: 84px;
  height: 84px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .index__full-content .index-main-img .en-btn {
    display: none;
  }
}
.index__full-content .index-main-img .swiper-button-next:after, .index__full-content .index-main-img .swiper-button-prev:after {
  display: none;
}
.index__full-content .index-main-img .index-swiper-button-next {
  width: 72px;
  height: 72px;
  top: auto;
  bottom: 0;
  right: 0;
}
@media (max-width: 575px) {
  .index__full-content .index-main-img .index-swiper-button-next {
    width: 31.5px;
    height: 31.5px;
    right: 20px;
  }
}
.index__full-content .index-main-img .index-swiper-button-prev {
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  top: auto;
  bottom: 0;
  right: 72px;
  left: auto;
}
@media (max-width: 575px) {
  .index__full-content .index-main-img .index-swiper-button-prev {
    width: 31.5px;
    height: 31.5px;
    right: 51.5px;
  }
}
.index__full-content .index-main-img .index-swiper-button-next:active:after,
.index__full-content .index-main-img .index-swiper-button-prev:active:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
}
@media (max-width: 575px) {
  .index__full-content .index-main-img .icon-arrow3_line_right, .index__full-content .index-main-img .icon-arrow3_line_left {
    margin-top: -2px;
  }
}
.index__full-content .index-main-img .icon-arrow3_line_right::before {
  color: #FFFFFF;
  font-size: 22px;
}
@media (max-width: 575px) {
  .index__full-content .index-main-img .icon-arrow3_line_right::before {
    font-size: 12px;
  }
}
.index__full-content .index-main-img .icon-arrow3_line_left::before {
  font-size: 22px;
}
@media (max-width: 575px) {
  .index__full-content .index-main-img .icon-arrow3_line_left::before {
    font-size: 12px;
  }
}
.index__full-content .under-slider-group {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .index__full-content .under-slider-group {
    display: block;
  }
}
.index__full-content .deco-text-group-1 {
  width: 40.8%;
  margin: 10px 2.9% 0 2.9%;
}
@media (max-width: 1199px) {
  .index__full-content .deco-text-group-1 {
    margin-top: 0;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .index__full-content .deco-text-group-1 {
    width: 72.5%;
    margin-top: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .index__full-content .deco-text-group-1 {
    margin-left: 20px;
  }
}
.index__full-content .deco-text-group-1 .img-cover {
  padding-top: 22.6%;
}
.index__full-content .introduction-card {
  background: #FFFFFF;
  width: 53.8%;
  border-radius: 0 0 0 40px;
  display: flex;
}
@media (max-width: 991px) {
  .index__full-content .introduction-card {
    width: 100%;
    border-radius: 120px 0 0 0;
    position: relative;
  }
}
.index__full-content .introduction-card .paragraph {
  margin: 41px 4.3% 36px 47px;
}
@media (max-width: 991px) {
  .index__full-content .introduction-card .paragraph {
    margin-left: 16%;
    margin-right: 12.3%;
  }
}
@media (max-width: 575px) {
  .index__full-content .introduction-card .paragraph {
    margin-top: 19px;
    margin-bottom: 16px;
  }
}
.index__full-content .introduction-card .align-left-group {
  display: flex;
  flex-direction: column;
  grid-gap: 6px;
}
.index__full-content .introduction-card .align-right-group {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 9px;
  grid-gap: 4px;
  flex-wrap: wrap;
}
.index__full-content .introduction-card .en-text {
  font-weight: 300;
  line-height: 100%;
}
@media (max-width: 991px) {
  .index__full-content .introduction-card .en-text {
    line-height: 150%;
  }
}
@media (max-width: 575px) {
  .index__full-content .introduction-card .en-text {
    font-size: 13px;
  }
}
.index__full-content .introduction-card .cn-text {
  font-weight: 300;
  line-height: 140%;
}
@media (max-width: 575px) {
  .index__full-content .introduction-card .cn-text {
    font-size: 11px;
    line-height: 100%;
  }
}
@media (max-width: 575px) {
  .index__full-content .introduction-card .mobile-none {
    display: none;
  }
}
.index__full-content .introduction-card .headphone-btn {
  min-width: 50px;
  height: 50px;
  background: #EEBB37;
  border: none;
  border-radius: 50%;
  margin: 27px 25px 0 0;
}
@media (max-width: 991px) {
  .index__full-content .introduction-card .headphone-btn {
    position: absolute;
    top: 0;
    right: 6.9%;
    margin: 0;
    transform: translate(0, -50%);
  }
}
.index__full-content .introduction-card .icon-music::before {
  color: #FFFFFF;
  font-size: 22px;
}
.index__section.index-section-news {
  position: relative;
  margin-top: 70px;
}
@media (max-width: 991px) {
  .index__section.index-section-news {
    margin-left: 2.9%;
    margin-right: calc(2.9% + 18px);
  }
}
@media (max-width: 767px) {
  .index__section.index-section-news {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 575px) {
  .index__section.index-section-news {
    margin-top: 23px;
  }
}
.index__section.index-section-news .mobile-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .index__section.index-section-news .mobile-title {
    margin-left: 16px;
    margin-right: 13px;
  }
}
.index__section.index-section-news .mobile-title .more-btn {
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .index__section.index-section-news .mobile-title .more-btn {
    display: none;
  }
}
.index__section.index-section-news .news-content-block {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 32px 30px;
  width: 67.8%;
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
@media (max-width: 1199px) {
  .index__section.index-section-news .news-content-block {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .index__section.index-section-news .news-content-block {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .index__section.index-section-news .news-content-block {
    padding: 24px 16px;
    grid-gap: 16px;
    margin-top: 6px;
  }
}
.index__section.index-section-news .deco-text-group-2 {
  width: 24%;
  max-width: 384px;
  position: absolute;
  right: 7.2%;
  top: 31px;
}
@media (max-width: 1199px) {
  .index__section.index-section-news .deco-text-group-2 {
    display: none;
  }
}
.index__section.index-section-news .deco-text-group-2 .img-cover {
  padding-top: 48.2%;
}
.index__section.index-section-news .more-btn.pc {
  position: absolute;
  right: calc(11.1% + 35px);
  bottom: 0;
  transform: translate(0, 50%);
}
@media (max-width: 1199px) {
  .index__section.index-section-news .more-btn.pc {
    right: 33px;
  }
}
@media (max-width: 991px) {
  .index__section.index-section-news .more-btn.pc {
    display: none;
  }
}
.index__section.index-section-activity {
  margin-top: 49px;
}
@media (max-width: 991px) {
  .index__section.index-section-activity {
    margin-left: 2.9%;
  }
}
@media (max-width: 767px) {
  .index__section.index-section-activity {
    margin-left: 20px;
  }
}
@media (max-width: 575px) {
  .index__section.index-section-activity {
    margin-top: 36px;
  }
}
.index__section.index-section-activity .mobile-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .index__section.index-section-activity .mobile-title {
    margin-left: 16px;
    margin-right: calc(2.9% + 18px + 13px);
  }
}
@media (max-width: 767px) {
  .index__section.index-section-activity .mobile-title {
    margin-right: 33px;
  }
}
.index__section.index-section-activity .mobile-title .more-btn {
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .index__section.index-section-activity .mobile-title .more-btn {
    display: none;
  }
}
.index__section.index-section-activity .activity-content-block {
  display: flex;
  align-items: flex-end;
}
.index__section.index-section-activity .activity-content-block .activity-card-group {
  width: 77.7%;
  margin-top: 9px;
  display: flex;
  grid-gap: 20px;
}
@media (max-width: 1199px) {
  .index__section.index-section-activity .activity-content-block .activity-card-group {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .index__section.index-section-activity .activity-content-block .activity-card-group {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .index__section.index-section-activity .activity-content-block .activity-card-group {
    margin-top: 8px;
  }
}
.index__section.index-section-activity .activity-content-block .activity-card-group .activity-swiper {
  width: 100%;
  height: 100%;
}
.index__section.index-section-activity .activity-content-block .activity-card-group .activity-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 20px;
  position: relative;
  z-index: 0;
}
.index__section.index-section-activity .activity-content-block .activity-card-group .activity-card .img-cover {
  padding-top: 59.5%;
}
.index__section.index-section-activity .activity-content-block .activity-card-group .activity-card .date-tag-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 16px 0 20px;
}
.index__section.index-section-activity .activity-content-block .activity-card-group .activity-card .activity-card-content {
  margin: 8px 16px 0 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  line-height: normal;
  font-weight: 300;
}
.index__section.index-section-activity .activity-content-block .activity-card-group .activity-card .activity-card-content a {
  color: #000000;
  text-decoration: none;
}
@media (max-width: 575px) {
  .index__section.index-section-activity .activity-content-block .activity-card-group .activity-card .activity-card-content a {
    font-size: 15px;
  }
}
.index__section.index-section-activity .activity-content-block .activity-card-group .activity-card .activity-card-content a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.index__section.index-section-activity .activity-content-block .activity-card-group .activity-card:hover .img-cover img {
  transform: scale(1.1, 1.1);
}
.index__section.index-section-activity .activity-content-block .activity-card-group .activity-card:hover .small-tag {
  background: #EEBB37;
}
.index__section.index-section-activity .activity-content-block .more-btn.pc {
  margin-left: calc(11.2% - 55px - 35px);
}
@media (max-width: 1199px) {
  .index__section.index-section-activity .activity-content-block .more-btn.pc {
    margin-left: auto;
    margin-right: 33px;
  }
}
@media (max-width: 991px) {
  .index__section.index-section-activity .activity-content-block .more-btn.pc {
    display: none;
  }
}
.index__section.index-section-about-us {
  background: rgba(255, 255, 255, 0.5);
  width: 88.9%;
  border-radius: 0 20px 20px 0;
  display: flex;
  margin-top: 100px;
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .index__section.index-section-about-us {
    min-height: 474px;
  }
}
@media (max-width: 1199px) {
  .index__section.index-section-about-us {
    width: 100%;
    display: block;
    background: transparent;
  }
}
@media (max-width: 575px) {
  .index__section.index-section-about-us {
    margin-top: 32px;
    margin-bottom: 16px;
  }
}
.index__section.index-section-about-us .mobile-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .index__section.index-section-about-us .mobile-title {
    margin-left: 20px;
    margin-right: 33px;
  }
}
@media (min-width: 1200px) {
  .index__section.index-section-about-us .mobile-title {
    display: none;
  }
}
.index__section.index-section-about-us .mobile-title .section-title {
  margin-bottom: 6px;
}
.index__section.index-section-about-us .mobile-title .more-btn {
  margin-bottom: 13px;
  border: none;
  padding: 0;
}
.index__section.index-section-about-us .about-us-img {
  width: 50%;
}
@media (max-width: 1199px) {
  .index__section.index-section-about-us .about-us-img {
    width: 100%;
  }
}
.index__section.index-section-about-us .about-us-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.index__section.index-section-about-us .about-us-content-block {
  width: 50%;
  padding: 52px 20px 63px 60px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .index__section.index-section-about-us .about-us-content-block {
    display: none;
  }
}
.index__section.index-section-about-us .about-us-content-block .about-us-title-content {
  flex: 1;
}
.index__section.index-section-about-us .about-us-content-block .about-us-content {
  font-weight: 400;
  line-height: 220%;
  margin-top: 17px;
  margin-bottom: 40px;
}
.index__section.index-section-about-us .about-us-content-block .more-btn {
  margin-left: auto;
  margin-right: 15px;
}

.index.en .index-section-activity .section-title .cn-text, .index.en .index-section-news .section-title .cn-text {
  display: none;
}

@media (max-width: 767px) {
  .exam_main-menu .page-banner {
    display: none;
  }
}
.exam_main-menu .mobile-page-title {
  display: flex;
  align-items: flex-end;
  grid-gap: 8px;
  padding: 17px 0 3px 0;
  border-bottom: 1px solid #000000;
}
@media (min-width: 768px) {
  .exam_main-menu .mobile-page-title {
    display: none;
  }
}
.exam_main-menu .mobile-page-title .en-text {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 100%;
  color: #000000;
}
.exam_main-menu .mobile-page-title .cn-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  color: #000000;
  margin-bottom: 5px;
}
.exam_main-menu .mobile-menu-btn {
  margin-top: 8px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .exam_main-menu .page-breadcrumb {
    display: none;
  }
}
@media (max-width: 767px) {
  .exam_main-menu .page-breadcrumb.show {
    display: flex;
  }
}
@media (max-width: 575px) {
  .exam_main-menu .page-breadcrumb.show p {
    font-size: 16px;
  }
}
.exam_main-menu .exam-menu-section {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 25px 20px;
  margin-top: 42px;
}
@media (max-width: 767px) {
  .exam_main-menu .exam-menu-section {
    margin-top: 13px;
    grid-gap: 9px;
    margin-bottom: 29.5px;
  }
}
.exam_main-menu .exam-menu-section .single-menu-block {
  width: calc((100% - 60px) / 4);
}
@media (max-width: 1439px) {
  .exam_main-menu .exam-menu-section .single-menu-block {
    width: calc((100% - 40px) / 3);
  }
}
@media (max-width: 991px) {
  .exam_main-menu .exam-menu-section .single-menu-block {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 767px) {
  .exam_main-menu .exam-menu-section .single-menu-block {
    width: 100%;
  }
}
.exam_main-menu .exam-menu-section .single-menu-block .exam-menu-title {
  width: 100%;
  padding: 12px 10px 13px 10px;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.01em;
  display: flex;
}
@media (max-width: 767px) {
  .exam_main-menu .exam-menu-section .single-menu-block .exam-menu-title {
    background: none;
    font-size: 16px;
    color: #000000;
    display: flex;
    align-items: center;
    padding: 0;
    cursor: pointer;
  }
}
.exam_main-menu .exam-menu-section .single-menu-block .exam-menu-title .text {
  font-size: 16px;
}
.exam_main-menu .exam-menu-section .single-menu-block .exam-menu-title .circle-arrow-right {
  background: #FFFFFF;
  margin-left: auto;
  margin-right: 9px;
  width: 20px;
  height: 20px;
}
@media (min-width: 768px) {
  .exam_main-menu .exam-menu-section .single-menu-block .exam-menu-title .circle-arrow-right {
    display: none;
  }
}
.exam_main-menu .exam-menu-section .single-menu-block .exam-menu-title .circle-arrow-right .icon-arrow2_line_right {
  color: #000000;
  font-size: 18px;
}
@media (min-width: 768px) {
  .exam_main-menu .exam-menu-section .single-menu-block .exam-menu-title .circle-arrow-right.rotate {
    transform: rotate(-90deg);
  }
}
@media (max-width: 767px) {
  .exam_main-menu .exam-menu-section .single-menu-block .exam-menu-title::before {
    content: "";
    display: block;
    width: 5px;
    height: 25px;
    background: #EEBB37;
    margin-right: 10px;
  }
}
.exam_main-menu .exam-menu-section .single-menu-block .exam-menu-list {
  padding: 20px 8.6% 0 8.6%;
}
@media (max-width: 767px) {
  .exam_main-menu .exam-menu-section .single-menu-block .exam-menu-list {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 12px 14px;
    margin: 8px 9px 8px 7px;
    display: none;
  }
}
.exam_main-menu .exam-menu-section .single-menu-block .exam-menu-list ul {
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
}
.exam_main-menu .exam-menu-section .single-menu-block .exam-menu-list a {
  font-weight: 300;
  line-height: 140%;
  color: #000000;
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.exam_main-menu .exam-menu-section .single-menu-block .exam-menu-list a:hover {
  background-size: 100% 1px;
}
@media (max-width: 767px) {
  .exam_main-menu .exam-menu-section .single-menu-block .exam-menu-list a {
    font-size: 15px;
    letter-spacing: 0.01em;
  }
}
@media (max-width: 767px) {
  .exam_main-menu .exam-menu-section .single-menu-block .exam-menu-list.active {
    display: block;
  }
}
.exam_main-menu .score-list-section {
  margin-top: 75px;
  margin-bottom: 186px;
}
@media (max-width: 575px) {
  .exam_main-menu .score-list-section {
    margin-bottom: 90px;
  }
}
.exam_main-menu .score-list-section .img-cover {
  padding-top: 217.8%;
  margin-top: 42px;
}
@media (max-width: 575px) {
  .exam_main-menu .score-list-section .img-cover {
    margin-top: 21px;
  }
}

.exam_registration .main-content-section {
  margin-top: 45px;
  margin-bottom: 124px;
}
@media (max-width: 575px) {
  .exam_registration .main-content-section {
    margin-top: -1px;
    margin-bottom: 65px;
  }
}
.exam_registration .main-content-section .question-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 15px;
  padding-bottom: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .exam_registration .main-content-section .question-block {
    border-bottom: 1px dashed #000000;
    padding-top: 25px;
    padding-bottom: 5px;
  }
}
.exam_registration .main-content-section .question-block .text-group {
  display: flex;
  grid-gap: 3px;
}
@media (max-width: 575px) {
  .exam_registration .main-content-section .question-block .text-group {
    grid-gap: 5px;
  }
}
.exam_registration .main-content-section .question-block .text-group .question-number {
  display: flex;
  white-space: nowrap;
}
.exam_registration .main-content-section .question-block .text-group .question-number .single-q, .exam_registration .main-content-section .question-block .text-group .question-number .single-number {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 575px) {
  .exam_registration .main-content-section .question-block .text-group .question-number .single-q {
    font-size: 20px;
  }
}
.exam_registration .main-content-section .question-block .text-group .question-number .single-number {
  margin-top: 5px;
}
@media (max-width: 575px) {
  .exam_registration .main-content-section .question-block .text-group .question-number .single-number {
    font-size: 15px;
    margin-top: 9px;
  }
}
.exam_registration .main-content-section .question-block .text-group .question {
  padding-top: 12px;
}
@media (max-width: 575px) {
  .exam_registration .main-content-section .question-block .text-group .question {
    font-size: 15px;
    padding-top: 9px;
  }
}
.exam_registration .main-content-section .question-block .icon-arrow1_down {
  font-size: 24px;
  transition: 0.3s ease;
}
.exam_registration .main-content-section .question-block .icon-arrow1_down.rotate {
  transform: rotate(180deg);
}
.exam_registration .main-content-section .question-block.p-top {
  padding-top: 23px;
}
@media (max-width: 575px) {
  .exam_registration .main-content-section .question-block.p-top {
    padding-top: 29px;
  }
}
.exam_registration .main-content-section .answer-block {
  display: none;
}
.exam_registration .main-content-section .answer-block .answer {
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 575px) {
  .exam_registration .main-content-section .answer-block .answer {
    font-size: 13px;
    line-height: 170%;
  }
}
.exam_registration .main-content-section .answer-block .page-article-content-section {
  margin: 0;
  padding-bottom: 18px;
}
@media (max-width: 767px) {
  .exam_registration .main-content-section .answer-block .page-article-content-section {
    padding-bottom: 0;
    margin-bottom: -15px;
    margin-top: 10px;
    margin-left: 46px;
  }
}
@media (max-width: 575px) {
  .exam_registration .main-content-section .answer-block .page-article-content-section {
    margin-left: 32px;
  }
}
.exam_registration .main-content-section .answer-block .nas-image-wrapper {
  margin-bottom: 25px;
}
.exam_registration .main-content-section .answer-block .nas-article-wrapper {
  display: flex;
  align-items: center;
}
.exam_registration .main-content-section .answer-block .double-pic, .exam_registration .main-content-section .answer-block .single-pic {
  margin: 0;
}
.exam_registration .main-content-section .question-border {
  width: 100%;
  border-bottom: 1px dashed #000000;
}
@media (max-width: 767px) {
  .exam_registration .main-content-section .question-border {
    display: none;
  }
}

.exam_form-download .main-content-section {
  margin-top: 38px;
  margin-bottom: 110px;
}
@media (max-width: 575px) {
  .exam_form-download .main-content-section {
    margin-top: 16px;
    margin-bottom: 46px;
  }
}

.exam_group-discount .main-content-section {
  margin-top: 30px;
  margin-bottom: 100px;
  padding-top: 30px;
  border-top: 1px solid #000000;
}
@media (max-width: 575px) {
  .exam_group-discount .main-content-section {
    padding-top: 0;
    border: none;
    margin-top: 16px;
    margin-bottom: 44px;
  }
}
.exam_group-discount .discount-section {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 35px;
  justify-content: space-between;
  width: 96%;
}
@media (max-width: 1439px) {
  .exam_group-discount .discount-section {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section {
    grid-gap: 15px;
  }
}
.exam_group-discount .discount-section .discount-card {
  max-width: 455px;
  width: calc((100% - 35px) / 2);
  display: flex;
  grid-gap: 20px;
  position: relative;
}
@media (max-width: 991px) {
  .exam_group-discount .discount-section .discount-card {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card {
    grid-gap: 12px;
  }
}
.exam_group-discount .discount-section .discount-card .img-block {
  width: 170px;
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card .img-block {
    width: 125px;
  }
}
.exam_group-discount .discount-section .discount-card .img-block .img-cover {
  padding-top: 96.5%;
}
.exam_group-discount .discount-section .discount-card .text-group {
  width: 58.2%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .exam_group-discount .discount-section .discount-card .text-group {
    width: calc(100% - 170px - 20px);
  }
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card .text-group {
    width: calc(100% - 125px - 12px);
    padding-top: 9px;
    padding-bottom: 10px;
  }
}
.exam_group-discount .discount-section .discount-card .text-group .date-tag-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
  margin-right: 26px;
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card .text-group .date-tag-group {
    flex-direction: row-reverse;
  }
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card .text-group .date-tag-group .date-text {
    font-size: 13px;
  }
}
.exam_group-discount .discount-section .discount-card .text-group .name-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin: 8px 0;
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card .text-group .name-text {
    font-size: 14px;
    margin: 14px 0 6px 0;
  }
}
.exam_group-discount .discount-section .discount-card .text-group .name-text a {
  color: #000000;
  text-decoration: none;
}
.exam_group-discount .discount-section .discount-card .text-group .name-text a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
}
.exam_group-discount .discount-section .discount-card .text-group .subtitle-text {
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card .text-group .subtitle-text {
    font-weight: 400;
    font-size: 13px;
  }
}
.exam_group-discount .discount-section .discount-card .text-group .content-text {
  font-weight: 400;
  line-height: 140%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-align: left;
  line-height: normal;
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card .text-group .content-text {
    font-size: 13px;
  }
}
.exam_group-discount .discount-section .discount-card .text-group .space-1 {
  flex: 0.45;
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card .text-group .space-1 {
    flex: 0;
  }
}
.exam_group-discount .discount-section .discount-card .text-group .space-2 {
  flex: 0.55;
}
@media (max-width: 575px) {
  .exam_group-discount .discount-section .discount-card .text-group .space-2 {
    flex: 1;
  }
}
.exam_group-discount .discount-section .discount-card:hover img {
  transform: scale(1.1, 1.1);
}
.exam_group-discount .discount-section .discount-card:hover .small-tag {
  background: #EEBB37;
}

.exam_group-discount-content .main-content-section {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid #000000;
}
@media (max-width: 767px) {
  .exam_group-discount-content .main-content-section {
    padding: 0;
    border: none;
    margin-top: 24px;
  }
}
.exam_group-discount-content .content-section {
  padding-bottom: 33px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .content-section {
    padding-bottom: 16px;
  }
}
.exam_group-discount-content .content-section .main-content-block {
  display: flex;
  grid-gap: 23px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .content-section .main-content-block {
    grid-gap: 12px;
    justify-content: space-between;
  }
}
.exam_group-discount-content .content-section .main-content-block .img-block {
  width: 29.4%;
}
@media (max-width: 575px) {
  .exam_group-discount-content .content-section .main-content-block .img-block {
    width: 125px;
  }
}
.exam_group-discount-content .content-section .main-content-block .img-block .img-cover {
  padding-top: 95.5%;
}
.exam_group-discount-content .content-section .main-content-block .text-group {
  width: 60.5%;
}
@media (max-width: 575px) {
  .exam_group-discount-content .content-section .main-content-block .text-group {
    width: calc(100% - 125px - 12px);
  }
}
.exam_group-discount-content .content-section .main-content-block .text-group .tag-date-group {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  margin-top: 16px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .content-section .main-content-block .text-group .tag-date-group {
    margin-top: 0;
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .exam_group-discount-content .content-section .main-content-block .text-group .tag-date-group .date-text {
    font-size: 13px;
  }
}
.exam_group-discount-content .content-section .main-content-block .text-group .name-text {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin-top: 16px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .content-section .main-content-block .text-group .name-text {
    font-size: 14px;
    margin-top: 14px;
  }
}
.exam_group-discount-content .content-section .main-content-block .text-group .subtitle-text {
  font-weight: 500;
  line-height: 100%;
  margin-top: 12px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .content-section .main-content-block .text-group .subtitle-text {
    font-weight: 400;
    font-size: 13px;
    margin-top: 6px;
  }
}
.exam_group-discount-content .content-section .main-content-block .text-group .content-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  margin-top: 37px;
  margin-top: 37px;
}
@media (max-width: 767px) {
  .exam_group-discount-content .content-section .main-content-block .text-group .content-text {
    display: none;
  }
}
@media (min-width: 768px) {
  .exam_group-discount-content .content-section .mobile-content {
    display: none;
  }
}
.exam_group-discount-content .content-section .mobile-content .content-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  margin-top: 15px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #000000;
}
@media (max-width: 575px) {
  .exam_group-discount-content .content-section .mobile-content .content-text {
    font-size: 13px;
    line-height: 140%;
  }
}
.exam_group-discount-content .nsdi-article-system-cover .nsdi-article-system {
  padding: 0;
  margin: 0;
}
.exam_group-discount-content .nsdi-article-system-cover .nsdi-article-system .nas-image-wrapper {
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover .nsdi-article-system .nas-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.exam_group-discount-content .nsdi-article-system-cover .nsdi-article-system .nas-article-wrapper {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover .nsdi-article-system .nas-article-wrapper {
    padding-left: 4px;
    padding-right: 4px;
  }
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover .nsdi-article-system .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.exam_group-discount-content .nsdi-article-system-cover h1 {
  font-weight: 600;
  font-size: 36px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover h1 {
    font-size: 28px;
  }
}
.exam_group-discount-content .nsdi-article-system-cover h2 {
  font-weight: 600;
  font-size: 28px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover h2 {
    font-size: 24px;
  }
}
.exam_group-discount-content .nsdi-article-system-cover h3 {
  font-weight: 600;
  font-size: 24px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover h3 {
    font-size: 20px;
  }
}
.exam_group-discount-content .nsdi-article-system-cover h4 {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover h4 {
    font-size: 18px;
  }
}
.exam_group-discount-content .nsdi-article-system-cover h5 {
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover h5 {
    font-size: 15px;
  }
}
.exam_group-discount-content .nsdi-article-system-cover h6 {
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover h6 {
    font-size: 13px;
  }
}
.exam_group-discount-content .nsdi-article-system-cover h1, .exam_group-discount-content .nsdi-article-system-cover h2, .exam_group-discount-content .nsdi-article-system-cover h3, .exam_group-discount-content .nsdi-article-system-cover h4, .exam_group-discount-content .nsdi-article-system-cover h5, .exam_group-discount-content .nsdi-article-system-cover h6 {
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}
.exam_group-discount-content .nsdi-article-system-cover p {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover p {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 15px;
  }
}
.exam_group-discount-content .nsdi-article-system-cover ul {
  margin-bottom: 15px;
}
.exam_group-discount-content .nsdi-article-system-cover ul li {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover ul li {
    font-size: 13px;
    line-height: 140%;
  }
}
.exam_group-discount-content .nsdi-article-system-cover ul li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: #000000;
  border-radius: 50%;
  margin: 0 10px;
}
.exam_group-discount-content .nsdi-article-system-cover ol {
  padding: 0;
  margin: 0;
  padding-left: 24px;
  margin-bottom: 15px;
}
.exam_group-discount-content .nsdi-article-system-cover ol li {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
}
@media (max-width: 575px) {
  .exam_group-discount-content .nsdi-article-system-cover ol li {
    font-size: 13px;
    line-height: 140%;
  }
}
.exam_group-discount-content .nsdi-article-system-cover img {
  width: 100%;
}
.exam_group-discount-content .back-btn {
  margin: 44px 22px 63px auto;
}
@media (max-width: 575px) {
  .exam_group-discount-content .back-btn {
    margin: 19px 16px 32px auto;
  }
}

.exam_exam-notice .page-content-not-full {
  width: 96.1%;
}
@media (max-width: 767px) {
  .exam_exam-notice .page-content-not-full {
    width: 100%;
  }
}
.exam_exam-notice .main-content-section {
  margin-top: 31px;
  margin-bottom: 84px;
}
@media (max-width: 575px) {
  .exam_exam-notice .main-content-section {
    margin-top: 24px;
    margin-bottom: 40px;
  }
}
.exam_exam-notice .notice-section {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px 6.1%;
}
@media (max-width: 575px) {
  .exam_exam-notice .notice-section {
    grid-gap: 8px;
  }
}
.exam_exam-notice .notice-section .notice-card {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 26px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-gap: 6.5%;
  position: relative;
  width: 46.95%;
  transition: 0.3s ease;
}
@media (max-width: 991px) {
  .exam_exam-notice .notice-section .notice-card {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .exam_exam-notice .notice-section .notice-card {
    grid-gap: 16px;
  }
}
.exam_exam-notice .notice-section .notice-card .text-group {
  height: 100%;
}
.exam_exam-notice .notice-section .notice-card .text-group .title-text {
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 575px) {
  .exam_exam-notice .notice-section .notice-card .text-group .title-text {
    font-size: 15px;
  }
}
.exam_exam-notice .notice-section .notice-card .text-group .title-text a {
  color: #000000;
  text-decoration: none;
}
.exam_exam-notice .notice-section .notice-card .text-group .title-text a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  z-index: 1;
}
.exam_exam-notice .notice-section .notice-card .text-group .content-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  opacity: 0.6;
  margin-top: 12px;
}
@media (max-width: 575px) {
  .exam_exam-notice .notice-section .notice-card .text-group .content-text {
    font-size: 12px;
  }
}
.exam_exam-notice .notice-section .notice-card .icon-link::before {
  font-size: 18px;
  color: #000000;
}
.exam_exam-notice .notice-section .notice-card:hover {
  background: #FFFFFF;
}

.resource .paper-section {
  margin-top: 41px;
  margin-bottom: 123px;
}
.resource .paper-section .paper-collapse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding-bottom: 8px;
}
.resource .paper-section .paper-collapse-head .collapse-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.01em;
}
@media (max-width: 575px) {
  .resource .paper-section .paper-collapse-head .collapse-title {
    font-size: 18px;
  }
}
.resource .paper-section .paper-collapse-head .collapse-btn-group {
  display: flex;
  gap: 20px;
}
.resource .paper-section .paper-collapse-head .collapse-btn-group .collapse-open-btn, .resource .paper-section .paper-collapse-head .collapse-btn-group .collapse-close-btn {
  font-weight: 400;
  line-height: 220%;
  cursor: pointer;
}
@media (max-width: 575px) {
  .resource .paper-section .paper-collapse-head .collapse-btn-group .collapse-open-btn, .resource .paper-section .paper-collapse-head .collapse-btn-group .collapse-close-btn {
    font-size: 13px;
  }
}
.resource .paper-section .paper-collapse-body {
  padding-right: 27px;
  margin-top: 30px;
}
.resource .paper-section .paper-collapse-body li {
  display: flex;
}
.resource .paper-section .paper-collapse-body li .list-text {
  font-weight: 400;
  line-height: 220%;
}
@media (max-width: 575px) {
  .resource .paper-section .paper-collapse-body li .list-text {
    font-size: 13px;
  }
}
.resource .paper-section .paper-collapse-body li::before {
  content: "";
  display: block;
  width: 3px;
  min-width: 3px;
  height: 3px;
  background: #000000;
  border-radius: 50%;
  margin: 15px 10px;
}

.publishing_academic-publishing .academic-publishing-section {
  margin-top: 54px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .publishing_academic-publishing .academic-publishing-section {
    margin-bottom: 60px;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing {
  display: flex;
  gap: 50px;
}
@media (max-width: 1199px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing {
    gap: 25px;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .left-line-group {
  position: relative;
  width: 16px;
}
@media (max-width: 767px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .left-line-group {
    display: none;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .left-line-group .left-dashed-line {
  height: calc(100% + 36px);
  border-left: 2px dashed rgba(0, 0, 0, 0.1);
  margin-left: 7px;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .left-line-group .dot {
  width: 16px;
  height: 16px;
  background: #EEBB37;
  border-radius: 50%;
  position: absolute;
  top: 15px;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block {
  display: flex;
  gap: 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block {
    flex-direction: column;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .img-block {
  width: 25.8%;
}
@media (max-width: 991px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .img-block {
    width: 35.8%;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .img-block {
    width: 60%;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .img-block .img-cover {
  padding-top: 149.4%;
  border-radius: 10px;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block {
  width: 72.2%;
  position: relative;
}
@media (max-width: 991px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block {
    width: 100%;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card {
  background: rgba(255, 255, 255, 0.5);
  height: calc(100% - 25px);
  padding: 19px 30px 70px 20px;
}
@media (max-width: 575px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card {
    height: calc(100% - 20px);
    padding-bottom: 60px;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .title-text {
  margin-top: 16px;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .title-text.en {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
}
@media (max-width: 575px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .title-text.en {
    font-size: 24px;
    line-height: 140%;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .title-text.cn {
  font-weight: 500;
  font-size: 25px;
  line-height: 100%;
  margin-bottom: 41px;
}
@media (max-width: 575px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .title-text.cn {
    font-size: 20px;
    line-height: 140%;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .subtitle-text.en {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  margin-top: 7px;
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .subtitle-text.en {
    font-size: 13px;
    line-height: 140%;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .dashed-line {
  width: 100%;
  border-bottom: 1px dashed #000000;
  margin-bottom: 15px;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .p-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 180%;
}
@media (max-width: 575px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card .p-group {
    font-size: 13px;
    gap: 15px;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .text-card.cn {
  border-radius: 10px;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group {
  display: flex;
  gap: 20px;
  position: absolute;
  bottom: 0;
  right: 19px;
}
@media (max-width: 575px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group {
    right: 50%;
    transform: translate(50%);
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group .online-btn {
  width: 170px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 575px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group .online-btn {
    width: 120px;
    height: 40px;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group .online-btn a {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: 0.3s ease;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group .online-btn a:hover {
  background-size: 100% 1px;
}
@media (max-width: 575px) {
  .publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group .online-btn a {
    font-size: 13px;
  }
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group .online-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group .online-btn:active:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing .main-content-block .text-content-block .online-btn-group .buy-online-btn {
  background: #EEBB37;
}
.publishing_academic-publishing .academic-publishing-section .single-publishing:first-child .left-dashed-line {
  margin-top: 27px;
  height: calc(100% + 36px - 27px);
}
.publishing_academic-publishing .academic-publishing-section .single-publishing:last-child .left-dashed-line {
  height: 100%;
}
.publishing_academic-publishing .see-more-publishing-btn {
  width: 100%;
  padding: 21px 0;
  border: 1px solid #000000;
  text-align: center;
  position: relative;
  margin-bottom: 53px;
  margin-left: 16px;
}
@media (max-width: 1199px) {
  .publishing_academic-publishing .see-more-publishing-btn {
    padding: 10px 0;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .publishing_academic-publishing .see-more-publishing-btn {
    margin-bottom: 30px;
  }
}
.publishing_academic-publishing .see-more-publishing-btn a {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 575px) {
  .publishing_academic-publishing .see-more-publishing-btn a {
    font-size: 16px;
  }
}
.publishing_academic-publishing .see-more-publishing-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.publishing_academic-publishing .see-more-publishing-btn:active:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
}

.publishing_electronic-newspaper .subscribe-pop-up-cover {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 500;
}
.publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up {
  background: #FFFFFF;
  width: 360px;
  height: 320px;
  position: absolute;
  left: 50vw;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  z-index: 100;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up {
    width: 300px;
    height: 260px;
  }
}
.publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .cross-btn {
  margin: 16px 16px 0 auto;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .icon-newspaper_successed {
  width: 142px;
  height: 142px;
  font-size: 142px;
  position: relative;
  margin: auto;
  margin-top: 11px;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .icon-newspaper_successed {
    width: 102px;
    height: 102px;
    font-size: 102px;
  }
}
.publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .icon-newspaper_successed .path1, .publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .icon-newspaper_successed .path2, .publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .icon-newspaper_successed .path3 {
  position: absolute;
}
.publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .icon-newspaper_successed .path2::before, .publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .icon-newspaper_successed .path3::before {
  margin-left: 0;
}
.publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .text1, .publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .text2 {
  text-align: center;
}
.publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .text1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 1px;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .text1 {
    font-size: 16px;
  }
}
.publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .text2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 1px;
  color: #787878;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .subscribe-pop-up-cover .subscribe-success-pop-up .text2 {
    font-size: 13px;
  }
}
.publishing_electronic-newspaper .cancel-subscribe-pop-up-cover {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 500;
}
.publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up {
  background: #FFFFFF;
  width: 360px;
  height: 320px;
  position: absolute;
  left: 50vw;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  z-index: 100;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up {
    width: 300px;
    height: 260px;
  }
}
.publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .cross-btn {
  margin: 16px 16px 0 auto;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .icon-newspaper_quit {
  width: 142px;
  height: 142px;
  font-size: 142px;
  position: relative;
  margin: auto;
  display: block;
  margin-top: 11px;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .icon-newspaper_quit {
    width: 102px;
    height: 102px;
    font-size: 102px;
  }
}
.publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .icon-newspaper_quit .path1, .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .icon-newspaper_quit .path2, .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .icon-newspaper_quit .path3, .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .icon-newspaper_quit .path4 {
  position: absolute;
}
.publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .icon-newspaper_quit .path2::before, .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .icon-newspaper_quit .path3::before, .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .icon-newspaper_quit .path4::before {
  margin-left: 0;
}
.publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .text1, .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .text2 {
  text-align: center;
}
.publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .text1 {
  font-weight: 700;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 1px;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .text1 {
    font-size: 16px;
  }
}
.publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .text2 {
  font-weight: 500;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 1px;
  color: #787878;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .cancel-subscribe-pop-up-cover .cancel-subscribe-pop-up .text2 {
    font-size: 13px;
  }
}
.publishing_electronic-newspaper .email-input-group {
  width: 58.9%;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .publishing_electronic-newspaper .email-input-group {
    width: 68%;
  }
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .email-input-group {
    width: 100%;
  }
}
.publishing_electronic-newspaper .email-input-group .email-input-cover {
  position: relative;
  width: 68.6%;
}
.publishing_electronic-newspaper .email-input-group #email-error {
  display: block;
  position: absolute;
  top: 35px;
  left: 16px;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #A4122E;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .email-input-group #email-error {
    font-size: 13px;
    top: 30px;
  }
}
.publishing_electronic-newspaper .email-input-group .email-input-box {
  width: 100%;
  height: 35px;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  background: transparent;
  border: 1px solid #000000;
  padding-left: 16px;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .email-input-group .email-input-box {
    font-size: 13px;
    height: 30px;
  }
}
.publishing_electronic-newspaper .email-input-group .email-input-box:focus {
  outline: none;
}
.publishing_electronic-newspaper .email-input-group .email-input-box.error {
  border: 2px solid #A4122E;
}
.publishing_electronic-newspaper .email-input-group .email-input-box:focus.error {
  border: 2px solid #A4122E !important;
}
.publishing_electronic-newspaper .email-input-group .email-input-box::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #000000;
}
.publishing_electronic-newspaper .email-input-group .email-input-box::placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #000000;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .email-input-group .email-input-box::-moz-placeholder {
    font-size: 13px;
  }
  .publishing_electronic-newspaper .email-input-group .email-input-box::placeholder {
    font-size: 13px;
  }
}
.publishing_electronic-newspaper .email-input-group .subscribe-btn, .publishing_electronic-newspaper .email-input-group .cancel-subscribe-btn {
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: 75px;
  height: 35px;
  padding: 10px 5px;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .email-input-group .subscribe-btn, .publishing_electronic-newspaper .email-input-group .cancel-subscribe-btn {
    font-size: 13px;
    height: 30px;
    padding: 7.5px 0;
  }
}
.publishing_electronic-newspaper .email-input-group .subscribe-btn {
  border: none;
  color: #FFFFFF;
  margin-left: 5.6%;
  margin-right: 3%;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .email-input-group .subscribe-btn {
    margin-left: 3%;
  }
}
.publishing_electronic-newspaper .email-input-group .cancel-subscribe-btn {
  border-width: 1px;
  border-style: solid;
  background: transparent;
}
.publishing_electronic-newspaper .breadcrumb-selectric-group {
  padding-bottom: 30px;
  border-bottom: 1px solid #000000;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .breadcrumb-selectric-group {
    border: none;
    padding-bottom: 15px;
  }
}
.publishing_electronic-newspaper .page-card-section {
  grid-gap: 64px 20px;
  margin-top: 25px;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .page-card-section {
    margin-top: 15px;
    grid-gap: 8px;
  }
}
.publishing_electronic-newspaper .page-card-section .page-card .img-cover {
  padding-top: 59.7%;
}
.publishing_electronic-newspaper .page-card-section .page-card .title a {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: left;
}
@media (max-width: 575px) {
  .publishing_electronic-newspaper .page-card-section .page-card .title a {
    font-size: 13px;
  }
}

[data-page=publishing_content] .nsdi-article-system div {
  box-sizing: content-box !important;
}
[data-page=publishing_content] .nsdi-article-system img {
  height: unset;
  -o-object-fit: unset;
     object-fit: unset;
}

.bilingual-education .submit-pop-up-cover {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 500;
}
.bilingual-education .submit-pop-up-cover .submit-pop-up {
  background: #FFFFFF;
  width: 550px;
  height: 300px;
  position: absolute;
  left: 50vw;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  z-index: 100;
  padding-top: 55px;
  padding-bottom: 43px;
}
@media (max-width: 575px) {
  .bilingual-education .submit-pop-up-cover .submit-pop-up {
    width: 350px;
    height: 220px;
    padding-top: 30px;
  }
}
.bilingual-education .submit-pop-up-cover .submit-pop-up .icon-mail {
  text-align: center;
}
.bilingual-education .submit-pop-up-cover .submit-pop-up .icon-mail::before {
  font-size: 66px;
}
.bilingual-education .submit-pop-up-cover .submit-pop-up .content-text {
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.01em;
  text-align: center;
  margin: 8px 0 24px 0;
}
@media (max-width: 575px) {
  .bilingual-education .submit-pop-up-cover .submit-pop-up .content-text {
    font-size: 13px;
    margin: 4px 0 12px 0;
  }
}
.bilingual-education .submit-pop-up-cover .submit-pop-up .close-btn {
  padding: 15px 53px 13px 52px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin: auto;
  display: block;
}
@media (max-width: 575px) {
  .bilingual-education .submit-pop-up-cover .submit-pop-up .close-btn {
    padding: 10px 40px 10px 40px;
    font-size: 13px;
  }
}
.bilingual-education .page-breadcrumb {
  margin-top: 31px;
}
@media (max-width: 575px) {
  .bilingual-education .page-breadcrumb {
    margin-top: 15px;
  }
}
.bilingual-education .move-content {
  margin-top: 35px;
}
@media (max-width: 575px) {
  .bilingual-education .move-content {
    margin-top: 15px;
  }
}
.bilingual-education .move-content .single-block:not(:first-of-type) .divided-line {
  padding-top: 54px;
  border-top: 1px solid #000000;
  margin-top: 39px;
}
@media (max-width: 575px) {
  .bilingual-education .move-content .single-block:not(:first-of-type) .divided-line {
    padding-top: 30px;
    margin-top: 15px;
  }
}
.bilingual-education .out-of-container {
  margin-left: auto;
  max-width: calc(100vw - 80px + 30px - (100vw - 80px + 30px) * 0.16666667);
}
@media (max-width: 1199px) {
  .bilingual-education .out-of-container {
    max-width: calc(100vw - 80px + 30px - (100vw - 80px + 30px) * 0.08333333);
  }
}
@media (max-width: 767px) {
  .bilingual-education .out-of-container {
    max-width: calc(100vw - 40px + 30px - 15px);
  }
}
.bilingual-education .out-of-container .swiper-section .bilingual-education-swiper .img-cover {
  padding-top: 33.4%;
}
.bilingual-education .out-of-container .swiper-section .bilingual-education-swiper .text {
  margin: 13px 0 24px 0;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.01em;
}
@media (max-width: 575px) {
  .bilingual-education .out-of-container .swiper-section .bilingual-education-swiper .text {
    font-size: 13px;
  }
}
.bilingual-education .sectionn-title {
  font-weight: 500;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0.01em;
}
@media (max-width: 575px) {
  .bilingual-education .sectionn-title {
    font-size: 20px;
  }
}
.bilingual-education .narrow-group {
  width: 92%;
}
@media (max-width: 767px) {
  .bilingual-education .narrow-group {
    width: 100%;
  }
}
.bilingual-education .paragraph {
  font-weight: 400;
  line-height: 190%;
  margin-top: 16px;
}
@media (max-width: 575px) {
  .bilingual-education .paragraph {
    font-size: 13px;
    margin-top: 8px;
  }
}
.bilingual-education .link-section .small-card-group {
  width: 96%;
  display: flex;
  flex-wrap: wrap;
  gap: 21px 17px;
  margin-top: 26px;
}
@media (max-width: 767px) {
  .bilingual-education .link-section .small-card-group {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .bilingual-education .link-section .small-card-group {
    margin-top: 13px;
    gap: 15px;
  }
}
.bilingual-education .link-section .small-card-group .small-card {
  width: calc((100% - 17px) / 2);
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 23px 20px 17px;
  border-radius: 5px;
  position: relative;
  transition: 0.3s ease;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  .bilingual-education .link-section .small-card-group .small-card {
    width: 100%;
    padding: 15px 23px 15px 17px;
  }
}
.bilingual-education .link-section .small-card-group .small-card .link-title {
  font-weight: 500;
  line-height: 160%;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 575px) {
  .bilingual-education .link-section .small-card-group .small-card .link-title {
    font-size: 13px;
  }
}
.bilingual-education .link-section .small-card-group .small-card .link-title::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.bilingual-education .link-section .small-card-group .small-card .icon-link::before {
  font-size: 20px;
  color: #000000;
}
@media (max-width: 575px) {
  .bilingual-education .link-section .small-card-group .small-card .icon-link::before {
    font-size: 15px;
  }
}
.bilingual-education .link-section .small-card-group .small-card:hover {
  background: #FFFFFF;
}
.bilingual-education .service-detail-group {
  margin-top: 24px;
  display: flex;
  gap: 80px;
}
@media (max-width: 575px) {
  .bilingual-education .service-detail-group {
    display: block;
    margin-top: 16px;
  }
}
.bilingual-education .service-detail-group .service-detail-block {
  width: calc((100% - 160px) / 3);
  padding-left: 15px;
}
@media (max-width: 575px) {
  .bilingual-education .service-detail-group .service-detail-block {
    width: 100%;
  }
}
.bilingual-education .service-detail-group .service-detail-block .service-detail-title {
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  margin-left: -15px;
}
@media (max-width: 575px) {
  .bilingual-education .service-detail-group .service-detail-block .service-detail-title {
    font-size: 15px;
    margin-top: 16px;
    margin-bottom: 8px;
  }
}
.bilingual-education .service-detail-group .service-detail-block .service-detail-title::before {
  content: "";
  display: block;
  width: 5px;
  height: 25px;
  background: #EEBB37;
}
@media (max-width: 575px) {
  .bilingual-education .service-detail-group .service-detail-block .service-detail-title::before {
    height: 20px;
  }
}
.bilingual-education .service-detail-group .service-detail-block .service-detail-p {
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
}
@media (max-width: 575px) {
  .bilingual-education .service-detail-group .service-detail-block .service-detail-p {
    font-size: 13px;
  }
}
.bilingual-education .service-detail-group .service-detail-block .service-detail-ul {
  font-size: 18px;
  line-height: 200%;
}
@media (max-width: 575px) {
  .bilingual-education .service-detail-group .service-detail-block .service-detail-ul {
    font-size: 13px;
  }
}
.bilingual-education .service-detail-group .service-detail-block .service-detail-ul li {
  display: flex;
}
.bilingual-education .service-detail-group .service-detail-block .service-detail-ul li::before {
  content: "";
  display: block;
  width: 4px;
  min-width: 4px;
  height: 4px;
  background: #000000;
  border-radius: 50%;
  margin: 18px 10px 0 10px;
}
@media (max-width: 575px) {
  .bilingual-education .service-detail-group .service-detail-block .service-detail-ul li::before {
    margin-top: 12px;
  }
}
.bilingual-education .service-detail-group .service-detail-block .service-detail-ol {
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
  margin-bottom: 23px;
}
@media (max-width: 575px) {
  .bilingual-education .service-detail-group .service-detail-block .service-detail-ol {
    font-size: 13px;
    margin-bottom: 16px;
  }
}
.bilingual-education .service-detail-group .service-detail-block .service-detail-ol.more-space {
  padding-left: 50px;
}
.bilingual-education .contact-section {
  padding-top: 53px;
  border-top: 1px solid #000000;
  margin-top: 55px;
  margin-bottom: 100px;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section {
    margin-top: 35px;
    padding-top: 30px;
    margin-bottom: 50px;
  }
}
.bilingual-education .contact-section .text-group {
  width: 92.3%;
}
@media (max-width: 767px) {
  .bilingual-education .contact-section .text-group {
    width: 100%;
  }
}
.bilingual-education .contact-section .text-group .text {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .text-group .text {
    font-size: 15px;
  }
}
.bilingual-education .contact-section .text-group .line {
  margin: 0 20px;
  font-size: 22.6112px;
  font-weight: 400;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .text-group .line {
    font-size: 16px;
    margin: 0 10px;
  }
}
.bilingual-education .contact-section .text-group .email {
  padding-left: 55px;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .text-group .email {
    padding-left: 32px;
  }
}
.bilingual-education .contact-section .contact-form {
  margin-top: 40px;
  width: 92.3%;
  padding: 0 35px;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 6.6%;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .form-subject-group {
    gap: 12px;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject {
  width: calc((100% - 70px) / 2);
}
@media (max-width: 991px) {
  .bilingual-education .contact-section .contact-form .form-subject-group .form-subject {
    width: 100%;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input-label-group {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 21px;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input-label-group {
    display: block;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input-label-group-checkbox {
  align-items: start;
  padding-top: 7px;
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject label {
  margin: 0;
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .label-text {
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.01em;
  white-space: nowrap;
  min-width: 68px;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .form-subject-group .form-subject .label-text {
    font-size: 13px;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .label-text span {
  color: #A4122E;
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input {
  width: 100%;
  display: block;
  background: transparent;
  height: 39px;
  border: 1px solid #000000;
  padding-left: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input {
    width: 100%;
    margin-top: 5px;
    font-size: 13px;
    height: 30px;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input:focus {
  outline: none;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .form-subject-group .form-subject .checkbox-group {
    width: 100%;
    margin-top: 5px;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .checkbox-group .state label {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #000000;
  white-space: normal;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .form-subject-group .form-subject .checkbox-group .state label {
    font-size: 13px;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .checkbox-group .state label::before {
  border: 1px solid #000000;
  top: 3px;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .form-subject-group .form-subject .checkbox-group .state label::before {
    top: 2px;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .checkbox-group .state label::after {
  top: 3px;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .form-subject-group .form-subject .checkbox-group .state label::after {
    top: 2px;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input.error {
  border: 2px solid #A4122E !important;
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .input-error {
  padding-left: 14px;
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject .error-message {
  margin-left: 89px;
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #A4122E;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .form-subject-group .form-subject .error-message {
    margin-left: 0;
    font-size: 13px;
  }
}
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject input[type=number]::-webkit-inner-spin-button,
.bilingual-education .contact-section .contact-form .form-subject-group .form-subject input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.bilingual-education .contact-section .contact-form .submit-btn {
  padding: 14px 68px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin: 48px auto 0 auto;
  display: block;
}
@media (max-width: 575px) {
  .bilingual-education .contact-section .contact-form .submit-btn {
    padding: 10px 48px;
    font-size: 13px;
    margin-top: 28px;
  }
}
@media (min-width: 576px) {
  .bilingual-education.en .contact-section .contact-form .form-subject-group .form-subject .error-message.phone-error {
    margin-left: 149px;
  }
}

@media (max-width: 767px) {
  .grants .page-breadcrumb {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .grants .page-breadcrumb {
    margin-top: 15px;
  }
}
.grants .main-content-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 31px;
  margin-bottom: 158px;
}
@media (max-width: 575px) {
  .grants .main-content-section {
    margin-top: 15px;
    gap: 10px;
    margin-bottom: 80px;
  }
}
.grants .main-content-section .subject-block {
  background: rgba(255, 255, 255, 0.7);
  width: calc((100% - 20px) / 2);
  padding: 21px 28px 19px 28px;
  border-radius: 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 575px) {
  .grants .main-content-section .subject-block {
    width: 100%;
    padding: 10px 14px;
  }
}
.grants .main-content-section .subject-block .subject-link {
  text-decoration: none;
  font-weight: 500;
  line-height: 160%;
  color: #000000;
}
@media (max-width: 575px) {
  .grants .main-content-section .subject-block .subject-link {
    font-size: 13px;
  }
}
.grants .main-content-section .subject-block .subject-link::after {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
}
.grants .main-content-section .subject-block:hover {
  background: #FFFFFF;
}

.grants_event-content .breadcrumb-selectric-group {
  margin-top: -4.5px;
}
@media (max-width: 767px) {
  .grants_event-content .breadcrumb-selectric-group {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .grants_event-content .breadcrumb-selectric-group {
    margin-top: 15px;
  }
}
.grants_event-content .page-breadcrumb {
  padding: 4.5px 0;
}
.grants_event-content .page-breadcrumb .crumb {
  display: none;
  font-weight: 500;
  line-height: 140%;
}
.grants_event-content .page-breadcrumb .crumb:hover {
  background-size: 100% 1px;
}
.grants_event-content .page-breadcrumb .crumb.active {
  display: inline-block;
}
.grants_event-content .page-breadcrumb .crumb::after {
  display: none !important;
}
.grants_event-content .selectric-group {
  display: none;
}
.grants_event-content .selectric-group.show {
  display: block;
}
.grants_event-content .title-tag-btn-group {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 0.5px solid #000000;
  margin-top: 50px;
  gap: 10px;
}
@media (max-width: 767px) {
  .grants_event-content .title-tag-btn-group {
    display: block;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .grants_event-content .title-tag-btn-group {
    margin-top: 24px;
  }
}
.grants_event-content .title-tag-btn-group .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
@media (max-width: 575px) {
  .grants_event-content .title-tag-btn-group .title {
    font-size: 18px;
  }
}
.grants_event-content .title-tag-btn-group .tag-btn-group {
  display: flex;
  gap: 5px;
}
@media (max-width: 767px) {
  .grants_event-content .title-tag-btn-group .tag-btn-group {
    justify-content: flex-end;
  }
}
.grants_event-content .title-tag-btn-group .tag-btn-group .tag-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  padding: 7px 32px 6px 33px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .grants_event-content .title-tag-btn-group .tag-btn-group .tag-btn {
    font-size: 13px;
    padding: 5px 22px 6px 24px;
  }
}
.grants_event-content .title-tag-btn-group .tag-btn-group .tag-btn:not(.active) {
  background: rgba(255, 255, 255, 0.85);
}
.grants_event-content .title-tag-btn-group .tag-btn-group .tag-btn.active {
  color: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.grants_event-content .main-content-section {
  display: none;
  position: relative;
}
.grants_event-content .main-content-section .page-article-content-section {
  margin-top: 30px;
}
.grants_event-content .main-content-section .page-article-content-section .back-btn {
  margin-top: 78px;
  margin-bottom: 58px;
}
@media (max-width: 575px) {
  .grants_event-content .main-content-section .page-article-content-section .back-btn {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
.grants_event-content .main-content-section .download-block-section {
  margin-top: 30px;
  margin-bottom: 173px;
}
@media (max-width: 575px) {
  .grants_event-content .main-content-section .download-block-section {
    margin-top: 15px;
    margin-bottom: 86px;
  }
}
.grants_event-content .main-content-section .back-btn.outside {
  position: absolute;
  right: -137px;
  bottom: -114px;
  z-index: 10;
}
@media (max-width: 1199px) {
  .grants_event-content .main-content-section .back-btn.outside {
    right: -77px;
  }
}
@media (max-width: 767px) {
  .grants_event-content .main-content-section .back-btn.outside {
    right: 16px;
  }
}
@media (max-width: 575px) {
  .grants_event-content .main-content-section .back-btn.outside {
    bottom: -55px;
  }
}
.grants_event-content .main-content-section.show {
  display: block;
}

@media (max-width: 767px) {
  .search-result .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .search-result .page-banner {
    margin-bottom: 15px;
  }
}
.search-result .search-block {
  width: 100%;
  min-height: 878px;
}
.search-result .search-block .gsc-control-cse {
  min-height: 878px;
}

.about-us .section-title-group .diamond {
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  margin: auto;
}
@media (max-width: 575px) {
  .about-us .section-title-group .diamond {
    width: 10px;
    height: 10px;
  }
}
.about-us .section-title-group .en-title {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 22px;
}
@media (max-width: 575px) {
  .about-us .section-title-group .en-title {
    font-size: 32px;
    margin-top: 14px;
  }
}
.about-us .section-title-group .cn-title {
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .about-us .section-title-group .cn-title {
    font-size: 16px;
    margin-top: 3px;
  }
}
.about-us .section-title-group .title-bottom-line {
  width: 75px;
  height: 7px;
  border-top: 0.5px solid #000000;
  border-bottom: 3px solid #000000;
  margin: auto;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .about-us .section-title-group .title-bottom-line {
    width: 60px;
    margin-top: 10px;
  }
}
.about-us .history-section {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .about-us .history-section {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .about-us .history-section {
    margin-top: 30px;
  }
}
.about-us .history-section .history-p {
  font-weight: 400;
  font-size: 16px;
  line-height: 240%;
  margin: 28px auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  .about-us .history-section .history-p {
    font-size: 13px;
    margin: 14px auto;
  }
}
.about-us .history-section .history-p span {
  font-weight: 500;
}
.about-us .history-section .vertical-line {
  width: 1px;
  height: 30px;
  background: #000000;
  margin: auto;
}
@media (max-width: 575px) {
  .about-us .history-section .vertical-line {
    height: 20px;
  }
}
.about-us .history-section .year-intro-group {
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0 auto;
  display: flex;
  align-items: center;
  gap: 33px;
}
@media (max-width: 991px) {
  .about-us .history-section .year-intro-group {
    display: block;
  }
}
@media (max-width: 575px) {
  .about-us .history-section .year-intro-group {
    margin-top: 20px;
  }
}
.about-us .history-section .year-intro-group .left-img {
  width: 29.1%;
}
@media (max-width: 991px) {
  .about-us .history-section .year-intro-group .left-img {
    width: 40%;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .about-us .history-section .year-intro-group .left-img {
    width: 60%;
  }
}
.about-us .history-section .year-intro-group .left-img .img-cover {
  padding-top: 100%;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.about-us .history-section .year-intro-group .right-content-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 991px) {
  .about-us .history-section .year-intro-group .right-content-group {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about-us .history-section .year-intro-group .right-content-group {
    margin-top: 20px;
    gap: 20px;
  }
}
.about-us .history-section .year-intro-group .right-content-group .single-year-intro {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .about-us .history-section .year-intro-group .right-content-group .single-year-intro {
    flex-wrap: wrap;
  }
}
.about-us .history-section .year-intro-group .right-content-group .single-year-intro .year-text {
  display: flex;
  align-items: flex-end;
  font-weight: 400;
  line-height: 160%;
  padding-bottom: 2px;
  white-space: nowrap;
}
@media (max-width: 575px) {
  .about-us .history-section .year-intro-group .right-content-group .single-year-intro .year-text {
    font-size: 12px;
    margin: auto;
  }
}
.about-us .history-section .year-intro-group .right-content-group .single-year-intro .circle-number {
  font-family: "Didot";
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 160%;
  color: #FFFFFF;
  min-width: 45px;
  height: 45px;
  text-align: center;
  border-radius: 50%;
  display: block;
  padding-bottom: 0;
  margin: 0 5px 0 4px;
}
@media (max-width: 575px) {
  .about-us .history-section .year-intro-group .right-content-group .single-year-intro .circle-number {
    font-size: 20px;
    min-width: 32px;
    height: 32px;
  }
}
.about-us .history-section .year-intro-group .right-content-group .single-year-intro .horizontal-line {
  min-width: 20px;
  height: 1px;
  margin: 0 17px 0 19px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  .about-us .history-section .year-intro-group .right-content-group .single-year-intro .horizontal-line {
    display: none;
  }
}
.about-us .history-section .year-intro-group .right-content-group .single-year-intro .intro-content-text {
  font-weight: 400;
  line-height: 200%;
  padding-top: 5px;
}
@media (max-width: 575px) {
  .about-us .history-section .year-intro-group .right-content-group .single-year-intro .intro-content-text {
    font-size: 12px;
    width: 100%;
    text-align: center;
  }
}
.about-us.cn .history-section .year-intro-group .right-content-group .single-year-intro .year-text.en {
  display: none;
}
.about-us.en .history-section .year-intro-group .right-content-group .single-year-intro .year-text.cn {
  display: none;
}
.about-us .overview-section {
  margin-top: 41px;
}
@media (max-width: 575px) {
  .about-us .overview-section {
    margin-top: 30px;
  }
}
.about-us .overview-section .img-content-group {
  background: radial-gradient(67.24% 241.31% at 74.17% 45.33%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%), url("../images/_orginal/about us-02.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 20px;
  min-height: 390px;
  margin-top: 35px;
}
@media (max-width: 575px) {
  .about-us .overview-section .img-content-group {
    margin-top: 20px;
    padding: 30px 20px;
  }
}
.about-us .overview-section .img-content-group .content-text {
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  font-weight: 400;
  font-size: 18px;
  line-height: 220%;
  color: #FFFFFF;
}
@media (max-width: 991px) {
  .about-us .overview-section .img-content-group .content-text {
    width: 80%;
  }
}
@media (max-width: 575px) {
  .about-us .overview-section .img-content-group .content-text {
    width: 90%;
    font-size: 13px;
    margin: 20px auto;
  }
}
.about-us .equipment-section {
  margin-top: 50px;
}
@media (max-width: 575px) {
  .about-us .equipment-section {
    margin-top: 30px;
  }
}
.about-us .equipment-section .about-us-swiper {
  margin-top: 35px;
}
@media (max-width: 575px) {
  .about-us .equipment-section .about-us-swiper {
    margin-top: 20px;
  }
}
.about-us .equipment-section .about-us-swiper .img-cover {
  padding-top: 82.1%;
}
.about-us .location-section {
  margin-top: 50px;
}
@media (max-width: 575px) {
  .about-us .location-section {
    margin-top: 30px;
  }
}
.about-us .location-section .map-group {
  position: relative;
}
.about-us .location-section .map-group .map-iframe {
  width: 60.3%;
  height: 628px;
  position: absolute;
  top: -231px;
}
@media (max-width: 991px) {
  .about-us .location-section .map-group .map-iframe {
    width: 80%;
    height: 50vh;
    left: 50%;
    transform: translate(-50%);
    top: calc(-50vh - 30px);
  }
}
@media (max-width: 767px) {
  .about-us .location-section .map-group .map-iframe {
    width: calc(100% - 40px);
  }
}
@media (max-width: 575px) {
  .about-us .location-section .map-group .map-iframe {
    top: calc(-50vh - 15px);
  }
}
.about-us .location-section .map-group .traffic-block {
  width: 43%;
  position: relative;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), #E6E1D9;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 36px 48px 26px 48px;
  margin: 278px 40px 49px auto;
}
@media (max-width: 991px) {
  .about-us .location-section .map-group .traffic-block {
    width: 80%;
    margin-right: auto;
    margin-top: calc(50vh + 47px + 30px);
  }
}
@media (max-width: 767px) {
  .about-us .location-section .map-group .traffic-block {
    width: calc(100% - 40px);
  }
}
@media (max-width: 575px) {
  .about-us .location-section .map-group .traffic-block {
    padding: 18px 24px 13px 24px;
    margin-top: calc(50vh + 23px + 15px);
    margin-bottom: 25px;
  }
}
.about-us .location-section .map-group .traffic-block .page-article-content-section {
  margin: 0;
}
.about-us .location-section .map-group .traffic-block .green {
  color: #169138;
  font-weight: 500;
  white-space: nowrap;
}
.about-us .location-section .map-group .traffic-block .brown {
  color: #B6735E;
  font-weight: 500;
  white-space: nowrap;
}

.news {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.news .body__container {
  flex: 1;
}
@media (max-width: 767px) {
  .news .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .news .page-banner {
    margin-bottom: 15px;
  }
}
.news .search-selectric-group {
  display: flex;
  width: 55.2%;
  min-width: 525px;
  gap: 20px;
}
@media (max-width: 575px) {
  .news .search-selectric-group {
    width: 100%;
    min-width: auto;
    flex-direction: column;
    gap: 10px;
  }
}
.news .search-selectric-group .search-box {
  position: relative;
  width: 65.5%;
}
@media (max-width: 575px) {
  .news .search-selectric-group .search-box {
    width: 100%;
  }
}
.news .search-selectric-group .search-box .search-input {
  width: 100%;
  height: 35px;
  background: transparent;
  border: 1px solid #000000;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #000000;
  padding-left: 10px;
}
@media (max-width: 575px) {
  .news .search-selectric-group .search-box .search-input {
    font-size: 13px;
    height: 28px;
  }
}
.news .search-selectric-group .search-box .search-input:focus {
  outline: none;
}
.news .search-selectric-group .search-box .search-input::-moz-placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #000000;
}
.news .search-selectric-group .search-box .search-input::placeholder {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #000000;
}
@media (max-width: 575px) {
  .news .search-selectric-group .search-box .search-input::-moz-placeholder {
    font-size: 13px;
  }
  .news .search-selectric-group .search-box .search-input::placeholder {
    font-size: 13px;
  }
}
.news .search-selectric-group .search-box .search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 72px;
  height: 25px;
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  color: #FFFFFF;
  border: none;
}
@media (max-width: 575px) {
  .news .search-selectric-group .search-box .search-btn {
    font-size: 13px;
    height: 20px;
    top: 4px;
    width: 60px;
  }
}
.news .main-content-section {
  margin-top: 34px;
  padding-top: 42px;
  border-top: 1px solid #000000;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 76px;
}
@media (max-width: 575px) {
  .news .main-content-section {
    border: none;
    padding: 0;
    margin-top: 16px;
    gap: 24px;
    margin-bottom: 38px;
  }
}
.news .main-content-section .news-single-row .date-text {
  padding-right: 2.1%;
}
.news .main-content-section .news-single-row .news-tag-block {
  width: 10.8%;
}
@media (max-width: 575px) {
  .news .main-content-section .news-single-row .news-tag-block {
    width: auto;
    min-width: auto;
  }
}
.news .main-content-section .news-single-row .news-tag-block .small-tag {
  font-size: 15px;
}
@media (max-width: 575px) {
  .news .main-content-section .news-single-row .news-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .news_content .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .news_content .page-banner {
    margin-bottom: 15px;
  }
}
.news_content .page-article-content-section .nsdi-article-system {
  width: 91.9%;
}
@media (max-width: 991px) {
  .news_content .page-article-content-section .nsdi-article-system {
    width: 100%;
  }
}

.activity {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.activity .body__container {
  flex: 1;
}
@media (max-width: 767px) {
  .activity .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .activity .page-banner {
    margin-bottom: 15px;
  }
}
.activity .breadcrumb-selectric-group {
  border-bottom: 1px solid #000000;
  padding-bottom: 22px;
}
@media (max-width: 575px) {
  .activity .breadcrumb-selectric-group {
    border: none;
    padding-bottom: 0;
  }
}
.activity .page-card-section {
  margin-top: 40px;
  margin-bottom: 55px;
  width: 91.9%;
}
@media (max-width: 991px) {
  .activity .page-card-section {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .activity_content .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .activity_content .page-banner {
    margin-bottom: 15px;
  }
}
.activity_content .page-article-content-section .nsdi-article-system {
  width: 91.9%;
}
@media (max-width: 991px) {
  .activity_content .page-article-content-section .nsdi-article-system {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .lost-and-found .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .lost-and-found .page-banner {
    margin-bottom: 15px;
  }
}
.lost-and-found .lost-info {
  margin: 29px 0 21px 0;
}
@media (max-width: 575px) {
  .lost-and-found .lost-info {
    margin: 15px 0 10px 0;
  }
}
.lost-and-found .lost-info .lost-info-li {
  display: flex;
}
.lost-and-found .lost-info .lost-info-li .text {
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.01em;
}
@media (max-width: 575px) {
  .lost-and-found .lost-info .lost-info-li .text {
    font-size: 13px;
  }
}
.lost-and-found .lost-info .lost-info-li::before {
  content: "";
  display: block;
  min-width: 3px;
  height: 3px;
  background: #000000;
  border-radius: 50%;
  margin: 13px 10px 0 10px;
}
@media (max-width: 575px) {
  .lost-and-found .lost-info .lost-info-li::before {
    margin-top: 10px;
  }
}
.lost-and-found .table-block {
  margin-bottom: 63px;
}
@media (max-width: 575px) {
  .lost-and-found .table-block {
    margin-bottom: 30px;
  }
}
.lost-and-found .table-block .top-title-bar .found-date-title {
  width: 12.5%;
}
.lost-and-found .table-block .top-title-bar .lost-place-title {
  width: 25%;
}
.lost-and-found .table-block .top-title-bar .object-name-title {
  width: 25%;
}
.lost-and-found .table-block .top-title-bar .number-title {
  width: 12.5%;
}
.lost-and-found .table-block .top-title-bar .duration-title {
  width: 25%;
}
.lost-and-found .table-block .single-object {
  padding: 22px 0 18px 0;
}
@media (max-width: 767px) {
  .lost-and-found .table-block .single-object {
    padding: 0;
  }
}
.lost-and-found .table-block .single-object .found-date-content {
  width: 12.5%;
}
@media (max-width: 767px) {
  .lost-and-found .table-block .single-object .found-date-content {
    width: 100%;
  }
}
.lost-and-found .table-block .single-object .lost-place-content {
  width: 25%;
}
@media (max-width: 767px) {
  .lost-and-found .table-block .single-object .lost-place-content {
    width: 100%;
  }
}
.lost-and-found .table-block .single-object .object-name-content {
  width: 25%;
}
@media (max-width: 767px) {
  .lost-and-found .table-block .single-object .object-name-content {
    width: 100%;
  }
}
.lost-and-found .table-block .single-object .number-content {
  width: 12.5%;
}
@media (max-width: 767px) {
  .lost-and-found .table-block .single-object .number-content {
    width: 100%;
  }
}
.lost-and-found .table-block .single-object .duration-content {
  width: 25%;
}
@media (max-width: 767px) {
  .lost-and-found .table-block .single-object .duration-content {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .recruitment-notice .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .recruitment-notice .page-banner {
    margin-bottom: 15px;
  }
}
.recruitment-notice .table-block {
  margin-top: 29px;
  margin-bottom: 73px;
}
@media (max-width: 575px) {
  .recruitment-notice .table-block {
    margin-top: 15px;
    margin-bottom: 35px;
  }
}
.recruitment-notice .table-block .table-title {
  width: 50%;
}
.recruitment-notice .table-block .content-text {
  width: 50%;
}
@media (max-width: 767px) {
  .recruitment-notice .table-block .content-text {
    width: 100%;
  }
}
.recruitment-notice .table-block .content-text a {
  color: #000000;
}

@media (max-width: 767px) {
  .recruitment-notice_content .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .recruitment-notice_content .page-banner {
    margin-bottom: 15px;
  }
}
.recruitment-notice_content .main-content-section {
  padding-top: 30px;
  border-top: 1px solid #000000;
  margin-top: 31px;
  position: relative;
}
@media (max-width: 575px) {
  .recruitment-notice_content .main-content-section {
    padding-top: 15px;
    margin-top: 15px;
  }
}
.recruitment-notice_content .main-content-section .img-block {
  width: 100%;
}
.recruitment-notice_content .main-content-section .img-block .img-cover {
  padding-top: 22.9%;
}
.recruitment-notice_content .main-content-section .article-block {
  margin-top: 40px;
  margin-bottom: 133px;
}
@media (max-width: 575px) {
  .recruitment-notice_content .main-content-section .article-block {
    margin-top: 20px;
    margin-bottom: 65px;
  }
}
.recruitment-notice_content .main-content-section .article-block .article-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.01em;
}
@media (max-width: 575px) {
  .recruitment-notice_content .main-content-section .article-block .article-text {
    font-size: 13px;
  }
}
.recruitment-notice_content .main-content-section .back-btn.outside {
  position: absolute;
  right: -137px;
  bottom: -83px;
  z-index: 10;
}
@media (max-width: 1199px) {
  .recruitment-notice_content .main-content-section .back-btn.outside {
    right: -77px;
  }
}
@media (max-width: 767px) {
  .recruitment-notice_content .main-content-section .back-btn.outside {
    right: 16px;
  }
}
@media (max-width: 575px) {
  .recruitment-notice_content .main-content-section .back-btn.outside {
    bottom: -48px;
  }
}
.recruitment-notice_content .main-content-section ul {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .recruitment-notice_content .main-content-section ul {
    margin-bottom: 15px;
  }
}
.recruitment-notice_content .main-content-section ul li {
  display: flex;
}
.recruitment-notice_content .main-content-section ul li::before {
  content: "";
  display: block;
  min-width: 3px;
  height: 3px;
  background: #000000;
  border-radius: 50%;
  margin: 12px 10px;
}

@media (max-width: 767px) {
  .contact-us .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .contact-us .page-banner {
    margin-bottom: 15px;
  }
}
.contact-us .main-content-section {
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .contact-us .main-content-section {
    margin-bottom: 25px;
  }
}
.contact-us .main-content-section .table-section-title {
  margin-top: 46px;
  margin-bottom: 27px;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.01em;
}
@media (max-width: 575px) {
  .contact-us .main-content-section .table-section-title {
    margin-top: 23px;
    margin-bottom: 13px;
    font-size: 18px;
  }
}
.contact-us .main-content-section .table-section-subtitle {
  margin-bottom: 13px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  display: flex;
}
@media (max-width: 575px) {
  .contact-us .main-content-section .table-section-subtitle {
    margin-bottom: 6px;
    font-size: 13px;
  }
}
.contact-us .main-content-section .table-section-subtitle::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #000000;
  margin: 7px 10px 0 10px;
}
.contact-us .main-content-section .table-block {
  margin-bottom: 34px;
}
@media (max-width: 575px) {
  .contact-us .main-content-section .table-block {
    margin-bottom: 17px;
  }
}
.contact-us .main-content-section .table-block .table-title {
  width: 25%;
}
.contact-us .main-content-section .table-block .content-text {
  width: 25%;
}
@media (max-width: 767px) {
  .contact-us .main-content-section .table-block .content-text {
    width: 100%;
  }
}
.contact-us .main-content-section .table-block .content-text a {
  color: #000000;
}

@media (max-width: 767px) {
  .privacy-policy .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .privacy-policy .page-banner {
    margin-bottom: 15px;
  }
}
.privacy-policy .page-article-content-section {
  margin-bottom: 50px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .privacy-policy .page-article-content-section {
    margin-bottom: 25px;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .notice .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .notice .page-banner {
    margin-bottom: 15px;
  }
}
.notice .page-article-content-section {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .notice .page-article-content-section {
    margin-top: 15px;
  }
}
.notice .img-block {
  width: 238px;
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .notice .img-block {
    max-width: 238px;
    width: 50%;
    margin-top: 15px;
    margin-bottom: 25px;
  }
}
.notice .img-block .img-cover {
  padding-top: 15.5%;
}

@media (max-width: 767px) {
  .landing .page-banner {
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .landing .page-banner {
    margin-bottom: 15px;
  }
}
.landing .swiper-section {
  padding: 64px 0;
  border-top: 1px solid #000000;
}
@media (max-width: 575px) {
  .landing .swiper-section {
    padding: 32px 0;
  }
}
.landing .swiper-section .landing-swiper .img-cover {
  padding-top: 59.5%;
}
.landing .swiper-section .landing-swiper .text {
  margin-top: 14px;
}
@media (max-width: 575px) {
  .landing .swiper-section .landing-swiper .text {
    font-size: 13px;
  }
}
.landing .custom-container {
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .landing .custom-container {
    padding-bottom: 30px;
  }
}
.landing .body__container .section-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0.01em;
}
@media (max-width: 575px) {
  .landing .body__container .section-title {
    font-size: 20px;
  }
}
.landing .body__container .subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575px) {
  .landing .body__container .subtitle {
    font-size: 18px;
  }
}
.landing .body__container .subtitle::before {
  content: "";
  display: block;
  width: 5px;
  height: 28px;
  background: #EEBB37;
}
.landing .body__container .third-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}
@media (max-width: 575px) {
  .landing .body__container .third-title {
    font-size: 18px;
    text-align: center;
  }
}
.landing .body__container p.content {
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
}
@media (max-width: 575px) {
  .landing .body__container p.content {
    font-size: 13px;
  }
}
.landing .body__container .btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.landing .body__container .btn-group a {
  max-width: calc(50% - 10px);
}
.landing .body__container .btn-01, .landing .body__container .btn-02 {
  width: 265px;
  max-width: 100%;
  height: 56px;
  border-radius: 100px;
  border: none;
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
@media (max-width: 575px) {
  .landing .body__container .btn-01, .landing .body__container .btn-02 {
    font-size: 15px;
    width: 145px;
    height: 40px;
  }
}
.landing .body__container .btn-01 {
  background: #EEBB37;
}
.landing .type-01-section {
  border-top: 1px solid #000000;
  padding: 80px 6.3%;
}
@media (max-width: 575px) {
  .landing .type-01-section {
    padding: 40px 0;
  }
}
.landing .type-01-section .section-title {
  text-align: center;
}
.landing .type-01-section p.content {
  text-align: center;
  margin-top: 32px;
  margin-bottom: 56px;
}
@media (max-width: 575px) {
  .landing .type-01-section p.content {
    margin-top: 16px;
    margin-bottom: 28px;
  }
}
.landing .type-02-section {
  border-top: 1px solid #000000;
  padding: 80px 6.3%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .landing .type-02-section {
    padding: 40px 0;
    display: block;
  }
}
.landing .type-02-section .img-block {
  width: 39.3%;
}
@media (max-width: 575px) {
  .landing .type-02-section .img-block {
    width: 100%;
  }
}
.landing .type-02-section .img-block .img-cover {
  padding-top: 79.8%;
}
.landing .type-02-section .content-btn-block {
  width: 56.5%;
}
@media (max-width: 575px) {
  .landing .type-02-section .content-btn-block {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .landing .type-02-section .content-btn-block .section-title {
    text-align: center;
    margin-top: 20px;
  }
}
.landing .type-02-section .content-btn-block p.content {
  margin-top: 18px;
  margin-bottom: 61px;
}
@media (max-width: 575px) {
  .landing .type-02-section .content-btn-block p.content {
    margin-top: 9px;
    margin-bottom: 30px;
  }
}
.landing .type-02-section .content-btn-block .btn-group {
  justify-content: start;
}
@media (max-width: 575px) {
  .landing .type-02-section .content-btn-block .btn-group {
    justify-content: center;
  }
}
.landing .type-03-section {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #000000;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .landing .type-03-section {
    display: block;
    padding: 100px 6.3%;
  }
}
@media (max-width: 575px) {
  .landing .type-03-section {
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.landing .type-03-section .img-block {
  width: 30.3%;
}
@media (max-width: 767px) {
  .landing .type-03-section .img-block {
    width: 70%;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .landing .type-03-section .img-block {
    width: 100%;
  }
}
.landing .type-03-section .img-block .img-cover {
  padding-top: 117%;
}
.landing .type-03-section .seperation-line {
  width: 100%;
  height: 6px;
  border-top: 0.5px solid #000000;
  border-bottom: 3px solid #000000;
  margin-top: 20px;
}
@media (max-width: 575px) {
  .landing .type-03-section .seperation-line {
    margin-top: 10px;
    border-bottom: 2px solid #000000;
  }
}
.landing .type-03-section .content-btn-block-01 {
  width: 30.3%;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .landing .type-03-section .content-btn-block-01 {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-01 {
    width: 100%;
    margin-top: 16px;
  }
}
.landing .type-03-section .content-btn-block-01 .big-content-group {
  margin-top: 30px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-01 .big-content-group {
    margin-top: 15px;
    margin-bottom: 18px;
    gap: 20px;
  }
}
.landing .type-03-section .content-btn-block-01 .small-list-group {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  margin-left: -4px;
  flex-wrap: wrap;
}
.landing .type-03-section .content-btn-block-01 .small-list-group li {
  font-weight: 500;
  font-size: 18px;
  line-height: 200%;
  display: flex;
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-01 .small-list-group li {
    font-size: 13px;
  }
}
.landing .type-03-section .content-btn-block-01 .small-list-group li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #000000;
  border-radius: 50%;
  margin: 17px 10px 0 10px;
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-01 .small-list-group li::before {
    width: 3px;
    height: 3px;
    margin: 12px 7px 0 7px;
  }
}
.landing .type-03-section .content-btn-block-02 {
  width: 30.3%;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .landing .type-03-section .content-btn-block-02 {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-02 {
    width: 100%;
    margin-top: 16px;
  }
}
.landing .type-03-section .content-btn-block-02 .content-group {
  width: 71.2%;
  margin: auto;
  margin-top: 82px;
}
@media (max-width: 767px) {
  .landing .type-03-section .content-btn-block-02 .content-group {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-02 .content-group {
    margin-top: 40px;
    width: 100%;
  }
}
.landing .type-03-section .content-btn-block-02 .content-group .diamond {
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  margin: auto;
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-02 .content-group .diamond {
    width: 10px;
    height: 10px;
  }
}
.landing .type-03-section .content-btn-block-02 .content-group .small-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-02 .content-group .small-title {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 16px;
  }
}
.landing .type-03-section .content-btn-block-02 .content-group .btn-group {
  flex-direction: column;
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-02 .content-group .btn-group {
    margin-bottom: 30px;
    align-items: center;
  }
}
.landing .type-03-section .content-btn-block-02 .content-group .btn-group a {
  max-width: 100%;
}
.landing .type-03-section .content-btn-block-02 .content-group .btn-01, .landing .type-03-section .content-btn-block-02 .content-group .btn-02 {
  width: 100%;
}
@media (max-width: 575px) {
  .landing .type-03-section .content-btn-block-02 .content-group .btn-01, .landing .type-03-section .content-btn-block-02 .content-group .btn-02 {
    width: 200px;
  }
}
.landing .type-04-section {
  border-top: 1px solid #000000;
  padding: 80px 6.3%;
  display: flex;
  gap: 30px;
}
@media (max-width: 575px) {
  .landing .type-04-section {
    padding: 40px 0;
    flex-direction: column;
  }
}
.landing .type-04-section .content-group {
  width: 100%;
}
.landing .type-04-section .content-group .img-cover {
  padding-top: 58.3%;
}
.landing .type-04-section .content-group .img-cover video, .landing .type-04-section .content-group .img-cover iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing .type-04-section .content-group p.content {
  margin-top: 16px;
}
.landing .audio-block {
  width: 100%;
}
.landing .audio-block .audio-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}
@media (max-width: 575px) {
  .landing .audio-block .audio-title {
    text-align: center;
    font-size: 13px;
  }
}
.landing .audio-block .control-group {
  margin-top: 17.5px;
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .landing .audio-block .control-group {
    flex-direction: column;
  }
}
.landing .audio-block .control-group .play-bar-group {
  display: flex;
  align-items: center;
  flex: 1;
}
@media (max-width: 575px) {
  .landing .audio-block .control-group .play-bar-group {
    flex-wrap: wrap;
  }
}
.landing .audio-block .control-group .play-bar-group .control-btn-group {
  display: flex;
  gap: 11px;
}
@media (max-width: 575px) {
  .landing .audio-block .control-group .play-bar-group .control-btn-group {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}
.landing .audio-block .control-group .play-bar-group .control-btn-group .amplitude-play-pause {
  cursor: pointer;
}
.landing .audio-block .control-group .play-bar-group .control-btn-group .amplitude-play-pause.amplitude-playing {
  width: 8px;
  height: 13px;
  margin: 0 2.5px;
  background: url("../images/pause-btn.svg");
  background-size: cover;
}
.landing .audio-block .control-group .play-bar-group .control-btn-group .amplitude-play-pause.amplitude-paused {
  width: 13px;
  height: 15px;
  background: url("../images/play-btn.svg");
  background-size: cover;
}
.landing .audio-block .control-group .play-bar-group .control-btn-group .amplitude-prev, .landing .audio-block .control-group .play-bar-group .control-btn-group .amplitude-next {
  cursor: pointer;
  width: 16px;
  height: 15px;
  background-size: cover;
}
.landing .audio-block .control-group .play-bar-group .control-btn-group .amplitude-prev {
  background: url("../images/previous-btn.svg");
}
.landing .audio-block .control-group .play-bar-group .control-btn-group .amplitude-next {
  background: url("../images/next-btn.svg");
}
.landing .audio-block .control-group .play-bar-group .play-bar {
  display: flex;
  flex: 1;
  gap: 16px;
  align-items: center;
  margin-left: 25px;
  margin-right: 17px;
  min-width: 250px;
}
@media (max-width: 575px) {
  .landing .audio-block .control-group .play-bar-group .play-bar {
    margin-left: 0;
  }
}
.landing .audio-block .control-group .play-bar-group .play-bar .current-time, .landing .audio-block .control-group .play-bar-group .play-bar .last-time {
  white-space: nowrap;
}
.landing .audio-block .control-group .play-bar-group .play-bar input[type=range] {
  margin: auto;
  -webkit-appearance: none;
  outline: none;
  overflow: hidden;
  height: 15px;
  width: 100%;
  cursor: pointer;
  border-radius: 100px;
  background: transparent;
}
.landing .audio-block .control-group .play-bar-group .play-bar input[type=range]::-webkit-slider-runnable-track {
  background: #C4C4C4;
  height: 6px;
  border-radius: 100px;
}
.landing .audio-block .control-group .play-bar-group .play-bar input[type=range]::-webkit-slider-thumb {
  margin-top: -2.5px;
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  background: #fff;
  box-shadow: -5px 0 0 -10px #335979, -6px 0 0 -3px #335979, -7px 0 0 -3px #335979, -8px 0 0 -3px #335979, -9px 0 0 -3px #335979, -10px 0 0 -3px #335979, -11px 0 0 -3px #335979, -12px 0 0 -3px #335979, -13px 0 0 -3px #335979, -14px 0 0 -3px #335979, -15px 0 0 -3px #335979, -16px 0 0 -3px #335979, -17px 0 0 -3px #335979, -18px 0 0 -3px #335979, -19px 0 0 -3px #335979, -20px 0 0 -3px #335979, -21px 0 0 -3px #335979, -22px 0 0 -3px #335979, -23px 0 0 -3px #335979, -24px 0 0 -3px #335979, -25px 0 0 -3px #335979, -26px 0 0 -3px #335979, -27px 0 0 -3px #335979, -28px 0 0 -3px #335979, -29px 0 0 -3px #335979, -30px 0 0 -3px #335979, -31px 0 0 -3px #335979, -32px 0 0 -3px #335979, -33px 0 0 -3px #335979, -34px 0 0 -3px #335979, -35px 0 0 -3px #335979, -36px 0 0 -3px #335979, -37px 0 0 -3px #335979, -38px 0 0 -3px #335979, -39px 0 0 -3px #335979, -40px 0 0 -3px #335979, -41px 0 0 -3px #335979, -42px 0 0 -3px #335979, -43px 0 0 -3px #335979, -44px 0 0 -3px #335979, -45px 0 0 -3px #335979, -46px 0 0 -3px #335979, -47px 0 0 -3px #335979, -48px 0 0 -3px #335979, -49px 0 0 -3px #335979, -50px 0 0 -3px #335979, -51px 0 0 -3px #335979, -52px 0 0 -3px #335979, -53px 0 0 -3px #335979, -54px 0 0 -3px #335979, -55px 0 0 -3px #335979, -56px 0 0 -3px #335979, -57px 0 0 -3px #335979, -58px 0 0 -3px #335979, -59px 0 0 -3px #335979, -60px 0 0 -3px #335979, -61px 0 0 -3px #335979, -62px 0 0 -3px #335979, -63px 0 0 -3px #335979, -64px 0 0 -3px #335979, -65px 0 0 -3px #335979, -66px 0 0 -3px #335979, -67px 0 0 -3px #335979, -68px 0 0 -3px #335979, -69px 0 0 -3px #335979, -70px 0 0 -3px #335979, -71px 0 0 -3px #335979, -72px 0 0 -3px #335979, -73px 0 0 -3px #335979, -74px 0 0 -3px #335979, -75px 0 0 -3px #335979, -76px 0 0 -3px #335979, -77px 0 0 -3px #335979, -78px 0 0 -3px #335979, -79px 0 0 -3px #335979, -80px 0 0 -3px #335979, -81px 0 0 -3px #335979, -82px 0 0 -3px #335979, -83px 0 0 -3px #335979, -84px 0 0 -3px #335979, -85px 0 0 -3px #335979, -86px 0 0 -3px #335979, -87px 0 0 -3px #335979, -88px 0 0 -3px #335979, -89px 0 0 -3px #335979, -90px 0 0 -3px #335979, -91px 0 0 -3px #335979, -92px 0 0 -3px #335979, -93px 0 0 -3px #335979, -94px 0 0 -3px #335979, -95px 0 0 -3px #335979, -96px 0 0 -3px #335979, -97px 0 0 -3px #335979, -98px 0 0 -3px #335979, -99px 0 0 -3px #335979, -100px 0 0 -3px #335979, -101px 0 0 -3px #335979, -102px 0 0 -3px #335979, -103px 0 0 -3px #335979, -104px 0 0 -3px #335979, -105px 0 0 -3px #335979, -106px 0 0 -3px #335979, -107px 0 0 -3px #335979, -108px 0 0 -3px #335979, -109px 0 0 -3px #335979, -110px 0 0 -3px #335979, -111px 0 0 -3px #335979, -112px 0 0 -3px #335979, -113px 0 0 -3px #335979, -114px 0 0 -3px #335979, -115px 0 0 -3px #335979, -116px 0 0 -3px #335979, -117px 0 0 -3px #335979, -118px 0 0 -3px #335979, -119px 0 0 -3px #335979, -120px 0 0 -3px #335979, -121px 0 0 -3px #335979, -122px 0 0 -3px #335979, -123px 0 0 -3px #335979, -124px 0 0 -3px #335979, -125px 0 0 -3px #335979, -126px 0 0 -3px #335979, -127px 0 0 -3px #335979, -128px 0 0 -3px #335979, -129px 0 0 -3px #335979, -130px 0 0 -3px #335979, -131px 0 0 -3px #335979, -132px 0 0 -3px #335979, -133px 0 0 -3px #335979, -134px 0 0 -3px #335979, -135px 0 0 -3px #335979, -136px 0 0 -3px #335979, -137px 0 0 -3px #335979, -138px 0 0 -3px #335979, -139px 0 0 -3px #335979, -140px 0 0 -3px #335979, -141px 0 0 -3px #335979, -142px 0 0 -3px #335979, -143px 0 0 -3px #335979, -144px 0 0 -3px #335979, -145px 0 0 -3px #335979, -146px 0 0 -3px #335979, -147px 0 0 -3px #335979, -148px 0 0 -3px #335979, -149px 0 0 -3px #335979, -150px 0 0 -3px #335979, -151px 0 0 -3px #335979, -152px 0 0 -3px #335979, -153px 0 0 -3px #335979, -154px 0 0 -3px #335979, -155px 0 0 -3px #335979, -156px 0 0 -3px #335979, -157px 0 0 -3px #335979, -158px 0 0 -3px #335979, -159px 0 0 -3px #335979, -160px 0 0 -3px #335979, -161px 0 0 -3px #335979, -162px 0 0 -3px #335979, -163px 0 0 -3px #335979, -164px 0 0 -3px #335979, -165px 0 0 -3px #335979, -166px 0 0 -3px #335979, -167px 0 0 -3px #335979, -168px 0 0 -3px #335979, -169px 0 0 -3px #335979, -170px 0 0 -3px #335979, -171px 0 0 -3px #335979, -172px 0 0 -3px #335979, -173px 0 0 -3px #335979, -174px 0 0 -3px #335979, -175px 0 0 -3px #335979, -176px 0 0 -3px #335979, -177px 0 0 -3px #335979, -178px 0 0 -3px #335979, -179px 0 0 -3px #335979, -180px 0 0 -3px #335979, -181px 0 0 -3px #335979, -182px 0 0 -3px #335979, -183px 0 0 -3px #335979, -184px 0 0 -3px #335979, -185px 0 0 -3px #335979, -186px 0 0 -3px #335979, -187px 0 0 -3px #335979, -188px 0 0 -3px #335979, -189px 0 0 -3px #335979, -190px 0 0 -3px #335979, -191px 0 0 -3px #335979, -192px 0 0 -3px #335979, -193px 0 0 -3px #335979, -194px 0 0 -3px #335979, -195px 0 0 -3px #335979, -196px 0 0 -3px #335979, -197px 0 0 -3px #335979, -198px 0 0 -3px #335979, -199px 0 0 -3px #335979, -200px 0 0 -3px #335979, -201px 0 0 -3px #335979, -202px 0 0 -3px #335979, -203px 0 0 -3px #335979, -204px 0 0 -3px #335979, -205px 0 0 -3px #335979, -206px 0 0 -3px #335979, -207px 0 0 -3px #335979, -208px 0 0 -3px #335979, -209px 0 0 -3px #335979, -210px 0 0 -3px #335979, -211px 0 0 -3px #335979, -212px 0 0 -3px #335979, -213px 0 0 -3px #335979, -214px 0 0 -3px #335979, -215px 0 0 -3px #335979, -216px 0 0 -3px #335979, -217px 0 0 -3px #335979, -218px 0 0 -3px #335979, -219px 0 0 -3px #335979, -220px 0 0 -3px #335979, -221px 0 0 -3px #335979, -222px 0 0 -3px #335979, -223px 0 0 -3px #335979, -224px 0 0 -3px #335979, -225px 0 0 -3px #335979, -226px 0 0 -3px #335979, -227px 0 0 -3px #335979, -228px 0 0 -3px #335979, -229px 0 0 -3px #335979, -230px 0 0 -3px #335979, -231px 0 0 -3px #335979, -232px 0 0 -3px #335979, -233px 0 0 -3px #335979, -234px 0 0 -3px #335979, -235px 0 0 -3px #335979, -236px 0 0 -3px #335979, -237px 0 0 -3px #335979, -238px 0 0 -3px #335979, -239px 0 0 -3px #335979, -240px 0 0 -3px #335979, -241px 0 0 -3px #335979, -242px 0 0 -3px #335979, -243px 0 0 -3px #335979, -244px 0 0 -3px #335979, -245px 0 0 -3px #335979, -246px 0 0 -3px #335979, -247px 0 0 -3px #335979, -248px 0 0 -3px #335979, -249px 0 0 -3px #335979, -250px 0 0 -3px #335979, -251px 0 0 -3px #335979, -252px 0 0 -3px #335979, -253px 0 0 -3px #335979, -254px 0 0 -3px #335979, -255px 0 0 -3px #335979, -256px 0 0 -3px #335979, -257px 0 0 -3px #335979, -258px 0 0 -3px #335979, -259px 0 0 -3px #335979, -260px 0 0 -3px #335979, -261px 0 0 -3px #335979, -262px 0 0 -3px #335979, -263px 0 0 -3px #335979, -264px 0 0 -3px #335979, -265px 0 0 -3px #335979, -266px 0 0 -3px #335979, -267px 0 0 -3px #335979, -268px 0 0 -3px #335979, -269px 0 0 -3px #335979, -270px 0 0 -3px #335979, -271px 0 0 -3px #335979, -272px 0 0 -3px #335979, -273px 0 0 -3px #335979, -274px 0 0 -3px #335979, -275px 0 0 -3px #335979, -276px 0 0 -3px #335979, -277px 0 0 -3px #335979, -278px 0 0 -3px #335979, -279px 0 0 -3px #335979, -280px 0 0 -3px #335979, -281px 0 0 -3px #335979, -282px 0 0 -3px #335979, -283px 0 0 -3px #335979, -284px 0 0 -3px #335979, -285px 0 0 -3px #335979, -286px 0 0 -3px #335979, -287px 0 0 -3px #335979, -288px 0 0 -3px #335979, -289px 0 0 -3px #335979, -290px 0 0 -3px #335979, -291px 0 0 -3px #335979, -292px 0 0 -3px #335979, -293px 0 0 -3px #335979, -294px 0 0 -3px #335979, -295px 0 0 -3px #335979, -296px 0 0 -3px #335979, -297px 0 0 -3px #335979, -298px 0 0 -3px #335979, -299px 0 0 -3px #335979, -300px 0 0 -3px #335979, -301px 0 0 -3px #335979, -302px 0 0 -3px #335979, -303px 0 0 -3px #335979, -304px 0 0 -3px #335979, -305px 0 0 -3px #335979, -306px 0 0 -3px #335979, -307px 0 0 -3px #335979, -308px 0 0 -3px #335979, -309px 0 0 -3px #335979, -310px 0 0 -3px #335979, -311px 0 0 -3px #335979, -312px 0 0 -3px #335979, -313px 0 0 -3px #335979, -314px 0 0 -3px #335979, -315px 0 0 -3px #335979, -316px 0 0 -3px #335979, -317px 0 0 -3px #335979, -318px 0 0 -3px #335979, -319px 0 0 -3px #335979, -320px 0 0 -3px #335979, -321px 0 0 -3px #335979, -322px 0 0 -3px #335979, -323px 0 0 -3px #335979, -324px 0 0 -3px #335979, -325px 0 0 -3px #335979, -326px 0 0 -3px #335979, -327px 0 0 -3px #335979, -328px 0 0 -3px #335979, -329px 0 0 -3px #335979, -330px 0 0 -3px #335979, -331px 0 0 -3px #335979, -332px 0 0 -3px #335979, -333px 0 0 -3px #335979, -334px 0 0 -3px #335979, -335px 0 0 -3px #335979, -336px 0 0 -3px #335979, -337px 0 0 -3px #335979, -338px 0 0 -3px #335979, -339px 0 0 -3px #335979, -340px 0 0 -3px #335979, -341px 0 0 -3px #335979, -342px 0 0 -3px #335979, -343px 0 0 -3px #335979, -344px 0 0 -3px #335979, -345px 0 0 -3px #335979, -346px 0 0 -3px #335979, -347px 0 0 -3px #335979, -348px 0 0 -3px #335979, -349px 0 0 -3px #335979, -350px 0 0 -3px #335979, -351px 0 0 -3px #335979, -352px 0 0 -3px #335979, -353px 0 0 -3px #335979, -354px 0 0 -3px #335979, -355px 0 0 -3px #335979, -356px 0 0 -3px #335979, -357px 0 0 -3px #335979, -358px 0 0 -3px #335979, -359px 0 0 -3px #335979, -360px 0 0 -3px #335979, -361px 0 0 -3px #335979, -362px 0 0 -3px #335979, -363px 0 0 -3px #335979, -364px 0 0 -3px #335979, -365px 0 0 -3px #335979, -366px 0 0 -3px #335979, -367px 0 0 -3px #335979, -368px 0 0 -3px #335979, -369px 0 0 -3px #335979, -370px 0 0 -3px #335979, -371px 0 0 -3px #335979, -372px 0 0 -3px #335979, -373px 0 0 -3px #335979, -374px 0 0 -3px #335979, -375px 0 0 -3px #335979, -376px 0 0 -3px #335979, -377px 0 0 -3px #335979, -378px 0 0 -3px #335979, -379px 0 0 -3px #335979, -380px 0 0 -3px #335979, -381px 0 0 -3px #335979, -382px 0 0 -3px #335979, -383px 0 0 -3px #335979, -384px 0 0 -3px #335979, -385px 0 0 -3px #335979, -386px 0 0 -3px #335979, -387px 0 0 -3px #335979, -388px 0 0 -3px #335979, -389px 0 0 -3px #335979, -390px 0 0 -3px #335979, -391px 0 0 -3px #335979, -392px 0 0 -3px #335979, -393px 0 0 -3px #335979, -394px 0 0 -3px #335979, -395px 0 0 -3px #335979, -396px 0 0 -3px #335979, -397px 0 0 -3px #335979, -398px 0 0 -3px #335979, -399px 0 0 -3px #335979, -400px 0 0 -3px #335979, -401px 0 0 -3px #335979, -402px 0 0 -3px #335979, -403px 0 0 -3px #335979, -404px 0 0 -3px #335979, -405px 0 0 -3px #335979, -406px 0 0 -3px #335979, -407px 0 0 -3px #335979, -408px 0 0 -3px #335979, -409px 0 0 -3px #335979, -410px 0 0 -3px #335979, -411px 0 0 -3px #335979, -412px 0 0 -3px #335979, -413px 0 0 -3px #335979, -414px 0 0 -3px #335979, -415px 0 0 -3px #335979, -416px 0 0 -3px #335979, -417px 0 0 -3px #335979, -418px 0 0 -3px #335979, -419px 0 0 -3px #335979, -420px 0 0 -3px #335979, -421px 0 0 -3px #335979, -422px 0 0 -3px #335979, -423px 0 0 -3px #335979, -424px 0 0 -3px #335979, -425px 0 0 -3px #335979, -426px 0 0 -3px #335979, -427px 0 0 -3px #335979, -428px 0 0 -3px #335979, -429px 0 0 -3px #335979, -430px 0 0 -3px #335979, -431px 0 0 -3px #335979, -432px 0 0 -3px #335979, -433px 0 0 -3px #335979, -434px 0 0 -3px #335979, -435px 0 0 -3px #335979, -436px 0 0 -3px #335979, -437px 0 0 -3px #335979, -438px 0 0 -3px #335979, -439px 0 0 -3px #335979, -440px 0 0 -3px #335979, -441px 0 0 -3px #335979, -442px 0 0 -3px #335979, -443px 0 0 -3px #335979, -444px 0 0 -3px #335979, -445px 0 0 -3px #335979, -446px 0 0 -3px #335979, -447px 0 0 -3px #335979, -448px 0 0 -3px #335979, -449px 0 0 -3px #335979, -450px 0 0 -3px #335979, -451px 0 0 -3px #335979, -452px 0 0 -3px #335979, -453px 0 0 -3px #335979, -454px 0 0 -3px #335979, -455px 0 0 -3px #335979, -456px 0 0 -3px #335979, -457px 0 0 -3px #335979, -458px 0 0 -3px #335979, -459px 0 0 -3px #335979, -460px 0 0 -3px #335979, -461px 0 0 -3px #335979, -462px 0 0 -3px #335979, -463px 0 0 -3px #335979, -464px 0 0 -3px #335979, -465px 0 0 -3px #335979, -466px 0 0 -3px #335979, -467px 0 0 -3px #335979, -468px 0 0 -3px #335979, -469px 0 0 -3px #335979, -470px 0 0 -3px #335979, -471px 0 0 -3px #335979, -472px 0 0 -3px #335979, -473px 0 0 -3px #335979, -474px 0 0 -3px #335979, -475px 0 0 -3px #335979, -476px 0 0 -3px #335979, -477px 0 0 -3px #335979, -478px 0 0 -3px #335979, -479px 0 0 -3px #335979, -480px 0 0 -3px #335979, -481px 0 0 -3px #335979, -482px 0 0 -3px #335979, -483px 0 0 -3px #335979, -484px 0 0 -3px #335979, -485px 0 0 -3px #335979, -486px 0 0 -3px #335979, -487px 0 0 -3px #335979, -488px 0 0 -3px #335979, -489px 0 0 -3px #335979, -490px 0 0 -3px #335979, -491px 0 0 -3px #335979, -492px 0 0 -3px #335979, -493px 0 0 -3px #335979, -494px 0 0 -3px #335979, -495px 0 0 -3px #335979, -496px 0 0 -3px #335979, -497px 0 0 -3px #335979, -498px 0 0 -3px #335979, -499px 0 0 -3px #335979, -500px 0 0 -3px #335979;
  border-radius: 50%;
}
.landing .audio-block .control-group .play-bar-group .replay-btn {
  cursor: pointer;
}
.landing .audio-block .control-group .play-bar-group .amplitude-repeat {
  cursor: pointer;
  width: 16px;
  height: 16px;
  background: url("../images/replay-btn.svg");
  background-size: cover;
}
.landing .audio-block .control-group .seperation-line {
  width: 1px;
  height: 22.5px;
  background: #000000;
  margin: 0 25px;
}
@media (max-width: 575px) {
  .landing .audio-block .control-group .seperation-line {
    display: none;
  }
}
.landing .audio-block .control-group .volume-group {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 100px;
}
@media (max-width: 575px) {
  .landing .audio-block .control-group .volume-group {
    width: 140px;
    margin: auto;
    margin-top: 10px;
  }
}
.landing .audio-block .control-group .volume-group input[type=range] {
  margin: auto;
  -webkit-appearance: none;
  outline: none;
  overflow: hidden;
  height: 15px;
  width: 100%;
  cursor: pointer;
  border-radius: 100px;
  background: transparent;
}
.landing .audio-block .control-group .volume-group input[type=range]::-webkit-slider-runnable-track {
  background: #C4C4C4;
  height: 6px;
  border-radius: 100px;
}
.landing .audio-block .control-group .volume-group input[type=range]::-webkit-slider-thumb {
  margin-top: -2.5px;
  -webkit-appearance: none;
  width: 11px;
  height: 11px;
  background: #fff;
  box-shadow: -5px 0 0 -10px #335979, -6px 0 0 -3px #335979, -7px 0 0 -3px #335979, -8px 0 0 -3px #335979, -9px 0 0 -3px #335979, -10px 0 0 -3px #335979, -11px 0 0 -3px #335979, -12px 0 0 -3px #335979, -13px 0 0 -3px #335979, -14px 0 0 -3px #335979, -15px 0 0 -3px #335979, -16px 0 0 -3px #335979, -17px 0 0 -3px #335979, -18px 0 0 -3px #335979, -19px 0 0 -3px #335979, -20px 0 0 -3px #335979, -21px 0 0 -3px #335979, -22px 0 0 -3px #335979, -23px 0 0 -3px #335979, -24px 0 0 -3px #335979, -25px 0 0 -3px #335979, -26px 0 0 -3px #335979, -27px 0 0 -3px #335979, -28px 0 0 -3px #335979, -29px 0 0 -3px #335979, -30px 0 0 -3px #335979, -31px 0 0 -3px #335979, -32px 0 0 -3px #335979, -33px 0 0 -3px #335979, -34px 0 0 -3px #335979, -35px 0 0 -3px #335979, -36px 0 0 -3px #335979, -37px 0 0 -3px #335979, -38px 0 0 -3px #335979, -39px 0 0 -3px #335979, -40px 0 0 -3px #335979, -41px 0 0 -3px #335979, -42px 0 0 -3px #335979, -43px 0 0 -3px #335979, -44px 0 0 -3px #335979, -45px 0 0 -3px #335979, -46px 0 0 -3px #335979, -47px 0 0 -3px #335979, -48px 0 0 -3px #335979, -49px 0 0 -3px #335979, -50px 0 0 -3px #335979, -51px 0 0 -3px #335979, -52px 0 0 -3px #335979, -53px 0 0 -3px #335979, -54px 0 0 -3px #335979, -55px 0 0 -3px #335979, -56px 0 0 -3px #335979, -57px 0 0 -3px #335979, -58px 0 0 -3px #335979, -59px 0 0 -3px #335979, -60px 0 0 -3px #335979, -61px 0 0 -3px #335979, -62px 0 0 -3px #335979, -63px 0 0 -3px #335979, -64px 0 0 -3px #335979, -65px 0 0 -3px #335979, -66px 0 0 -3px #335979, -67px 0 0 -3px #335979, -68px 0 0 -3px #335979, -69px 0 0 -3px #335979, -70px 0 0 -3px #335979, -71px 0 0 -3px #335979, -72px 0 0 -3px #335979, -73px 0 0 -3px #335979, -74px 0 0 -3px #335979, -75px 0 0 -3px #335979, -76px 0 0 -3px #335979, -77px 0 0 -3px #335979, -78px 0 0 -3px #335979, -79px 0 0 -3px #335979, -80px 0 0 -3px #335979, -81px 0 0 -3px #335979, -82px 0 0 -3px #335979, -83px 0 0 -3px #335979, -84px 0 0 -3px #335979, -85px 0 0 -3px #335979, -86px 0 0 -3px #335979, -87px 0 0 -3px #335979, -88px 0 0 -3px #335979, -89px 0 0 -3px #335979, -90px 0 0 -3px #335979, -91px 0 0 -3px #335979, -92px 0 0 -3px #335979, -93px 0 0 -3px #335979, -94px 0 0 -3px #335979, -95px 0 0 -3px #335979, -96px 0 0 -3px #335979, -97px 0 0 -3px #335979, -98px 0 0 -3px #335979, -99px 0 0 -3px #335979, -100px 0 0 -3px #335979, -101px 0 0 -3px #335979, -102px 0 0 -3px #335979, -103px 0 0 -3px #335979, -104px 0 0 -3px #335979, -105px 0 0 -3px #335979, -106px 0 0 -3px #335979, -107px 0 0 -3px #335979, -108px 0 0 -3px #335979, -109px 0 0 -3px #335979, -110px 0 0 -3px #335979, -111px 0 0 -3px #335979, -112px 0 0 -3px #335979, -113px 0 0 -3px #335979, -114px 0 0 -3px #335979, -115px 0 0 -3px #335979, -116px 0 0 -3px #335979, -117px 0 0 -3px #335979, -118px 0 0 -3px #335979, -119px 0 0 -3px #335979, -120px 0 0 -3px #335979, -121px 0 0 -3px #335979, -122px 0 0 -3px #335979, -123px 0 0 -3px #335979, -124px 0 0 -3px #335979, -125px 0 0 -3px #335979, -126px 0 0 -3px #335979, -127px 0 0 -3px #335979, -128px 0 0 -3px #335979, -129px 0 0 -3px #335979, -130px 0 0 -3px #335979, -131px 0 0 -3px #335979, -132px 0 0 -3px #335979, -133px 0 0 -3px #335979, -134px 0 0 -3px #335979, -135px 0 0 -3px #335979, -136px 0 0 -3px #335979, -137px 0 0 -3px #335979, -138px 0 0 -3px #335979, -139px 0 0 -3px #335979, -140px 0 0 -3px #335979, -141px 0 0 -3px #335979, -142px 0 0 -3px #335979, -143px 0 0 -3px #335979, -144px 0 0 -3px #335979, -145px 0 0 -3px #335979, -146px 0 0 -3px #335979, -147px 0 0 -3px #335979, -148px 0 0 -3px #335979, -149px 0 0 -3px #335979, -150px 0 0 -3px #335979, -151px 0 0 -3px #335979, -152px 0 0 -3px #335979, -153px 0 0 -3px #335979, -154px 0 0 -3px #335979, -155px 0 0 -3px #335979, -156px 0 0 -3px #335979, -157px 0 0 -3px #335979, -158px 0 0 -3px #335979, -159px 0 0 -3px #335979, -160px 0 0 -3px #335979, -161px 0 0 -3px #335979, -162px 0 0 -3px #335979, -163px 0 0 -3px #335979, -164px 0 0 -3px #335979, -165px 0 0 -3px #335979, -166px 0 0 -3px #335979, -167px 0 0 -3px #335979, -168px 0 0 -3px #335979, -169px 0 0 -3px #335979, -170px 0 0 -3px #335979, -171px 0 0 -3px #335979, -172px 0 0 -3px #335979, -173px 0 0 -3px #335979, -174px 0 0 -3px #335979, -175px 0 0 -3px #335979, -176px 0 0 -3px #335979, -177px 0 0 -3px #335979, -178px 0 0 -3px #335979, -179px 0 0 -3px #335979, -180px 0 0 -3px #335979, -181px 0 0 -3px #335979, -182px 0 0 -3px #335979, -183px 0 0 -3px #335979, -184px 0 0 -3px #335979, -185px 0 0 -3px #335979, -186px 0 0 -3px #335979, -187px 0 0 -3px #335979, -188px 0 0 -3px #335979, -189px 0 0 -3px #335979, -190px 0 0 -3px #335979, -191px 0 0 -3px #335979, -192px 0 0 -3px #335979, -193px 0 0 -3px #335979, -194px 0 0 -3px #335979, -195px 0 0 -3px #335979, -196px 0 0 -3px #335979, -197px 0 0 -3px #335979, -198px 0 0 -3px #335979, -199px 0 0 -3px #335979, -200px 0 0 -3px #335979, -201px 0 0 -3px #335979, -202px 0 0 -3px #335979, -203px 0 0 -3px #335979, -204px 0 0 -3px #335979, -205px 0 0 -3px #335979, -206px 0 0 -3px #335979, -207px 0 0 -3px #335979, -208px 0 0 -3px #335979, -209px 0 0 -3px #335979, -210px 0 0 -3px #335979, -211px 0 0 -3px #335979, -212px 0 0 -3px #335979, -213px 0 0 -3px #335979, -214px 0 0 -3px #335979, -215px 0 0 -3px #335979, -216px 0 0 -3px #335979, -217px 0 0 -3px #335979, -218px 0 0 -3px #335979, -219px 0 0 -3px #335979, -220px 0 0 -3px #335979, -221px 0 0 -3px #335979, -222px 0 0 -3px #335979, -223px 0 0 -3px #335979, -224px 0 0 -3px #335979, -225px 0 0 -3px #335979, -226px 0 0 -3px #335979, -227px 0 0 -3px #335979, -228px 0 0 -3px #335979, -229px 0 0 -3px #335979, -230px 0 0 -3px #335979, -231px 0 0 -3px #335979, -232px 0 0 -3px #335979, -233px 0 0 -3px #335979, -234px 0 0 -3px #335979, -235px 0 0 -3px #335979, -236px 0 0 -3px #335979, -237px 0 0 -3px #335979, -238px 0 0 -3px #335979, -239px 0 0 -3px #335979, -240px 0 0 -3px #335979, -241px 0 0 -3px #335979, -242px 0 0 -3px #335979, -243px 0 0 -3px #335979, -244px 0 0 -3px #335979, -245px 0 0 -3px #335979, -246px 0 0 -3px #335979, -247px 0 0 -3px #335979, -248px 0 0 -3px #335979, -249px 0 0 -3px #335979, -250px 0 0 -3px #335979, -251px 0 0 -3px #335979, -252px 0 0 -3px #335979, -253px 0 0 -3px #335979, -254px 0 0 -3px #335979, -255px 0 0 -3px #335979, -256px 0 0 -3px #335979, -257px 0 0 -3px #335979, -258px 0 0 -3px #335979, -259px 0 0 -3px #335979, -260px 0 0 -3px #335979, -261px 0 0 -3px #335979, -262px 0 0 -3px #335979, -263px 0 0 -3px #335979, -264px 0 0 -3px #335979, -265px 0 0 -3px #335979, -266px 0 0 -3px #335979, -267px 0 0 -3px #335979, -268px 0 0 -3px #335979, -269px 0 0 -3px #335979, -270px 0 0 -3px #335979, -271px 0 0 -3px #335979, -272px 0 0 -3px #335979, -273px 0 0 -3px #335979, -274px 0 0 -3px #335979, -275px 0 0 -3px #335979, -276px 0 0 -3px #335979, -277px 0 0 -3px #335979, -278px 0 0 -3px #335979, -279px 0 0 -3px #335979, -280px 0 0 -3px #335979, -281px 0 0 -3px #335979, -282px 0 0 -3px #335979, -283px 0 0 -3px #335979, -284px 0 0 -3px #335979, -285px 0 0 -3px #335979, -286px 0 0 -3px #335979, -287px 0 0 -3px #335979, -288px 0 0 -3px #335979, -289px 0 0 -3px #335979, -290px 0 0 -3px #335979, -291px 0 0 -3px #335979, -292px 0 0 -3px #335979, -293px 0 0 -3px #335979, -294px 0 0 -3px #335979, -295px 0 0 -3px #335979, -296px 0 0 -3px #335979, -297px 0 0 -3px #335979, -298px 0 0 -3px #335979, -299px 0 0 -3px #335979, -300px 0 0 -3px #335979, -301px 0 0 -3px #335979, -302px 0 0 -3px #335979, -303px 0 0 -3px #335979, -304px 0 0 -3px #335979, -305px 0 0 -3px #335979, -306px 0 0 -3px #335979, -307px 0 0 -3px #335979, -308px 0 0 -3px #335979, -309px 0 0 -3px #335979, -310px 0 0 -3px #335979, -311px 0 0 -3px #335979, -312px 0 0 -3px #335979, -313px 0 0 -3px #335979, -314px 0 0 -3px #335979, -315px 0 0 -3px #335979, -316px 0 0 -3px #335979, -317px 0 0 -3px #335979, -318px 0 0 -3px #335979, -319px 0 0 -3px #335979, -320px 0 0 -3px #335979, -321px 0 0 -3px #335979, -322px 0 0 -3px #335979, -323px 0 0 -3px #335979, -324px 0 0 -3px #335979, -325px 0 0 -3px #335979, -326px 0 0 -3px #335979, -327px 0 0 -3px #335979, -328px 0 0 -3px #335979, -329px 0 0 -3px #335979, -330px 0 0 -3px #335979, -331px 0 0 -3px #335979, -332px 0 0 -3px #335979, -333px 0 0 -3px #335979, -334px 0 0 -3px #335979, -335px 0 0 -3px #335979, -336px 0 0 -3px #335979, -337px 0 0 -3px #335979, -338px 0 0 -3px #335979, -339px 0 0 -3px #335979, -340px 0 0 -3px #335979, -341px 0 0 -3px #335979, -342px 0 0 -3px #335979, -343px 0 0 -3px #335979, -344px 0 0 -3px #335979, -345px 0 0 -3px #335979, -346px 0 0 -3px #335979, -347px 0 0 -3px #335979, -348px 0 0 -3px #335979, -349px 0 0 -3px #335979, -350px 0 0 -3px #335979, -351px 0 0 -3px #335979, -352px 0 0 -3px #335979, -353px 0 0 -3px #335979, -354px 0 0 -3px #335979, -355px 0 0 -3px #335979, -356px 0 0 -3px #335979, -357px 0 0 -3px #335979, -358px 0 0 -3px #335979, -359px 0 0 -3px #335979, -360px 0 0 -3px #335979, -361px 0 0 -3px #335979, -362px 0 0 -3px #335979, -363px 0 0 -3px #335979, -364px 0 0 -3px #335979, -365px 0 0 -3px #335979, -366px 0 0 -3px #335979, -367px 0 0 -3px #335979, -368px 0 0 -3px #335979, -369px 0 0 -3px #335979, -370px 0 0 -3px #335979, -371px 0 0 -3px #335979, -372px 0 0 -3px #335979, -373px 0 0 -3px #335979, -374px 0 0 -3px #335979, -375px 0 0 -3px #335979, -376px 0 0 -3px #335979, -377px 0 0 -3px #335979, -378px 0 0 -3px #335979, -379px 0 0 -3px #335979, -380px 0 0 -3px #335979, -381px 0 0 -3px #335979, -382px 0 0 -3px #335979, -383px 0 0 -3px #335979, -384px 0 0 -3px #335979, -385px 0 0 -3px #335979, -386px 0 0 -3px #335979, -387px 0 0 -3px #335979, -388px 0 0 -3px #335979, -389px 0 0 -3px #335979, -390px 0 0 -3px #335979, -391px 0 0 -3px #335979, -392px 0 0 -3px #335979, -393px 0 0 -3px #335979, -394px 0 0 -3px #335979, -395px 0 0 -3px #335979, -396px 0 0 -3px #335979, -397px 0 0 -3px #335979, -398px 0 0 -3px #335979, -399px 0 0 -3px #335979, -400px 0 0 -3px #335979, -401px 0 0 -3px #335979, -402px 0 0 -3px #335979, -403px 0 0 -3px #335979, -404px 0 0 -3px #335979, -405px 0 0 -3px #335979, -406px 0 0 -3px #335979, -407px 0 0 -3px #335979, -408px 0 0 -3px #335979, -409px 0 0 -3px #335979, -410px 0 0 -3px #335979, -411px 0 0 -3px #335979, -412px 0 0 -3px #335979, -413px 0 0 -3px #335979, -414px 0 0 -3px #335979, -415px 0 0 -3px #335979, -416px 0 0 -3px #335979, -417px 0 0 -3px #335979, -418px 0 0 -3px #335979, -419px 0 0 -3px #335979, -420px 0 0 -3px #335979, -421px 0 0 -3px #335979, -422px 0 0 -3px #335979, -423px 0 0 -3px #335979, -424px 0 0 -3px #335979, -425px 0 0 -3px #335979, -426px 0 0 -3px #335979, -427px 0 0 -3px #335979, -428px 0 0 -3px #335979, -429px 0 0 -3px #335979, -430px 0 0 -3px #335979, -431px 0 0 -3px #335979, -432px 0 0 -3px #335979, -433px 0 0 -3px #335979, -434px 0 0 -3px #335979, -435px 0 0 -3px #335979, -436px 0 0 -3px #335979, -437px 0 0 -3px #335979, -438px 0 0 -3px #335979, -439px 0 0 -3px #335979, -440px 0 0 -3px #335979, -441px 0 0 -3px #335979, -442px 0 0 -3px #335979, -443px 0 0 -3px #335979, -444px 0 0 -3px #335979, -445px 0 0 -3px #335979, -446px 0 0 -3px #335979, -447px 0 0 -3px #335979, -448px 0 0 -3px #335979, -449px 0 0 -3px #335979, -450px 0 0 -3px #335979, -451px 0 0 -3px #335979, -452px 0 0 -3px #335979, -453px 0 0 -3px #335979, -454px 0 0 -3px #335979, -455px 0 0 -3px #335979, -456px 0 0 -3px #335979, -457px 0 0 -3px #335979, -458px 0 0 -3px #335979, -459px 0 0 -3px #335979, -460px 0 0 -3px #335979, -461px 0 0 -3px #335979, -462px 0 0 -3px #335979, -463px 0 0 -3px #335979, -464px 0 0 -3px #335979, -465px 0 0 -3px #335979, -466px 0 0 -3px #335979, -467px 0 0 -3px #335979, -468px 0 0 -3px #335979, -469px 0 0 -3px #335979, -470px 0 0 -3px #335979, -471px 0 0 -3px #335979, -472px 0 0 -3px #335979, -473px 0 0 -3px #335979, -474px 0 0 -3px #335979, -475px 0 0 -3px #335979, -476px 0 0 -3px #335979, -477px 0 0 -3px #335979, -478px 0 0 -3px #335979, -479px 0 0 -3px #335979, -480px 0 0 -3px #335979, -481px 0 0 -3px #335979, -482px 0 0 -3px #335979, -483px 0 0 -3px #335979, -484px 0 0 -3px #335979, -485px 0 0 -3px #335979, -486px 0 0 -3px #335979, -487px 0 0 -3px #335979, -488px 0 0 -3px #335979, -489px 0 0 -3px #335979, -490px 0 0 -3px #335979, -491px 0 0 -3px #335979, -492px 0 0 -3px #335979, -493px 0 0 -3px #335979, -494px 0 0 -3px #335979, -495px 0 0 -3px #335979, -496px 0 0 -3px #335979, -497px 0 0 -3px #335979, -498px 0 0 -3px #335979, -499px 0 0 -3px #335979, -500px 0 0 -3px #335979;
  border-radius: 50%;
}
.landing .audio-block .playlist-group {
  width: 100%;
  height: 343px;
  background: rgba(255, 255, 255, 0.5);
  padding: 14px 13px 14px 20px;
  border-radius: 10px;
  margin-top: 20px;
}
.landing .audio-block .playlist-group .playlist-inner-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 16px;
  height: 100%;
  overflow-y: scroll;
}
.landing .audio-block .playlist-group .playlist-inner-group::-webkit-scrollbar {
  background: transparent;
}
.landing .audio-block .playlist-group .playlist-inner-group::-webkit-scrollbar-thumb {
  background: #C4C4C4;
  border-radius: 11px;
  border: 4px solid transparent;
  background-clip: content-box;
}
.landing .audio-block .playlist-group .playlist-single-block {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 13px 69px 15px 24px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 21px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .landing .audio-block .playlist-group .playlist-single-block {
    font-size: 13px;
    padding: 13px 27px 15px 12px;
    gap: 10px;
  }
}
.landing .audio-block .playlist-group .playlist-single-block .amplitude-play-pause {
  cursor: pointer;
}
.landing .audio-block .playlist-group .playlist-single-block .amplitude-play-pause.amplitude-playing {
  width: 8px;
  height: 13px;
  margin: 0 2px;
  background: url("../images/pause-btn.svg");
  background-size: cover;
}
.landing .audio-block .playlist-group .playlist-single-block .amplitude-play-pause.amplitude-paused {
  width: 12px;
  height: 15px;
  background: url("../images/play-btn.svg");
  background-size: cover;
}
.landing .audio-block .playlist-group .playlist-single-block .name-text {
  flex: 1;
}
.landing .audio-block .playlist-group .amplitude-song-container {
  padding-left: 57px;
}
@media (max-width: 575px) {
  .landing .audio-block .playlist-group .amplitude-song-container {
    padding-left: 46px;
  }
}
.landing .audio-block .playlist-group .amplitude-song-container .amplitude-play-pause {
  display: none;
}
.landing .audio-block .playlist-group .amplitude-song-container.amplitude-active-song-container {
  padding-left: 24px;
  background: rgba(238, 187, 55, 0.5);
}
.landing .audio-block .playlist-group .amplitude-song-container.amplitude-active-song-container .amplitude-play-pause {
  display: block;
}
.landing .type-05-section {
  border-top: 1px solid #000000;
  padding: 60px 12.7%;
}
@media (max-width: 991px) {
  .landing .type-05-section {
    padding: 60px 6.3%;
  }
}
@media (max-width: 767px) {
  .landing .type-05-section {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .landing .type-05-section {
    padding: 30px 0;
  }
}
.landing .type-05-section .img-audio-group {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 991px) {
  .landing .type-05-section .img-audio-group {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .landing .type-05-section .img-audio-group {
    margin-top: 18px;
  }
}
.landing .type-05-section .img-audio-group .img-block {
  width: 23.7%;
}
@media (max-width: 991px) {
  .landing .type-05-section .img-audio-group .img-block {
    width: 35%;
    margin: auto;
  }
}
@media (max-width: 575px) {
  .landing .type-05-section .img-audio-group .img-block {
    width: 50%;
  }
}
.landing .type-05-section .img-audio-group .img-block .img-cover {
  padding-top: 160%;
  border-radius: 10px;
}
.landing .type-05-section .img-audio-group .audio-block {
  width: 74.6%;
}
@media (max-width: 991px) {
  .landing .type-05-section .img-audio-group .audio-block {
    width: 100%;
  }
}
.landing .type-06-section {
  border-top: 1px solid #000000;
  padding: 64px 12.7% 60px 12.7%;
}
@media (max-width: 991px) {
  .landing .type-06-section {
    padding: 60px 6.3%;
  }
}
@media (max-width: 767px) {
  .landing .type-06-section {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .landing .type-06-section {
    padding: 30px 0;
  }
}
.landing .type-06-section .title-control-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 575px) {
  .landing .type-06-section .title-control-group {
    flex-direction: column;
  }
}
.landing .type-06-section .title-control-group .third-title {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 5.4%;
}
@media (max-width: 575px) {
  .landing .type-06-section .title-control-group .third-title {
    margin-right: 0;
  }
}
.landing .type-06-section .title-control-group .audio-title-control-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.landing .type-06-section .title-control-group .audio-title-control-group .control-group {
  flex: 1;
}
.landing .type-06-section .title-control-group .audio-title-control-group .playlist-group {
  margin-top: 36px;
}
@media (max-width: 575px) {
  .landing .type-06-section .title-control-group .audio-title-control-group .playlist-group {
    margin-top: 18px;
  }
}
.landing section:first-of-type {
  border-top: none;
}

/* 日文名人名言標點符號 */
[lang="ja"] {
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
}

[data-page=quotation] .breadcrumb-selectric-group {
  margin-bottom: -5px;
}
@media (min-width: 576px) {
  [data-page=quotation] .breadcrumb-selectric-group {
    border-bottom: 1px solid #000000;
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  [data-page=quotation] .breadcrumb-selectric-group {
    margin-bottom: 1px;
  }
}
[data-page=quotation] .breadcrumb-selectric-group .search-selectric-group {
  display: flex;
}
@media (max-width: 575px) {
  [data-page=quotation] .breadcrumb-selectric-group .search-selectric-group {
    display: block;
    width: 100%;
  }
}
[data-page=quotation] .breadcrumb-selectric-group .search-input-group {
  display: flex;
}
[data-page=quotation] .breadcrumb-selectric-group .search-input-group .search-input-box {
  width: 297px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid #000000;
  font-size: 15px;
  line-height: 160%;
  color: #000000;
}
@media (max-width: 991px) {
  [data-page=quotation] .breadcrumb-selectric-group .search-input-group .search-input-box {
    width: 237px;
  }
}
@media (max-width: 575px) {
  [data-page=quotation] .breadcrumb-selectric-group .search-input-group .search-input-box {
    font-size: 13px;
    flex: 1;
    height: 30px;
  }
}
[data-page=quotation] .breadcrumb-selectric-group .search-input-group .search-input-box::-moz-placeholder {
  color: #000000;
}
[data-page=quotation] .breadcrumb-selectric-group .search-input-group .search-input-box::placeholder {
  color: #000000;
}
[data-page=quotation] .breadcrumb-selectric-group .search-input-group .search-btn {
  width: 138px;
  background: #335979;
  border: none;
  font-size: 15px;
  line-height: 100%;
  color: #FFFFFF;
  margin-left: 10px;
}
@media (max-width: 991px) {
  [data-page=quotation] .breadcrumb-selectric-group .search-input-group .search-btn {
    width: 100px;
  }
}
@media (max-width: 575px) {
  [data-page=quotation] .breadcrumb-selectric-group .search-input-group .search-btn {
    width: 70px;
    font-size: 13px;
  }
}
[data-page=quotation] .breadcrumb-selectric-group .selectric-group {
  width: 135px;
}
@media (min-width: 576px) {
  [data-page=quotation] .breadcrumb-selectric-group .selectric-group {
    margin-left: 20px;
  }
}
@media (max-width: 575px) {
  [data-page=quotation] .breadcrumb-selectric-group .selectric-group {
    height: 26px;
    margin-top: 10px;
  }
}
[data-page=quotation] .breadcrumb-selectric-group .selectric-group .selectric {
  width: 135px;
}
[data-page=quotation] .aphorism-container.no-content {
  margin-bottom: 45px;
}
[data-page=quotation] .aphorism-block {
  margin-top: 30px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block {
    margin-top: 15px;
  }
}
[data-page=quotation] .aphorism-block .icon-music {
  font-size: 22px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .icon-music {
    font-size: 18px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}
[data-page=quotation] .aphorism-block .collapse-head .text-group {
  padding: 39px 68px 27px 65px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .text-group {
    padding: 20px 34px 13px 32px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .play-group {
  display: flex;
}
[data-page=quotation] .aphorism-block .collapse-head .play-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
[data-page=quotation] .aphorism-block .collapse-head .play-item:not(:first-of-type) {
  margin-left: 15px;
}
[data-page=quotation] .aphorism-block .collapse-head .play-item .play-text {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  color: #335979;
  background: none;
  border: none;
  margin-left: 5px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .play-item .play-text {
    font-size: 12px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .en-sentence {
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  margin-top: 15px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .en-sentence {
    font-size: 15px;
    margin-top: 8px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .cn-sentence {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
  margin-top: 15px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .cn-sentence {
    font-size: 14px;
    margin-top: 8px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .name-group {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .name-group {
    margin-top: 10px;
    margin-right: -19px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .en-name-wrapper {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .en-name-wrapper {
    margin-left: auto;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .en-name {
  font-size: 18px;
  line-height: 160%;
  margin-right: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .en-name {
    font-size: 15px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .en-name span {
  display: inline-block;
}
[data-page=quotation] .aphorism-block .collapse-head .en-name span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: black;
  margin-top: -4px;
}
[data-page=quotation] .aphorism-block .collapse-head .cn-name {
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.01em;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 10px;
  margin-top: 5px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .cn-name {
    font-size: 12px;
    margin-left: auto;
    margin-top: 3px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .open-group {
  background: #E8D8A5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .open-group {
    padding: 13px 15px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .open-group .text {
  font-weight: 500;
  font-size: 15px;
  line-height: 100%;
  color: #335979;
  margin-left: 34px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-head .open-group .text {
    font-size: 13px;
    margin-left: 17px;
  }
}
[data-page=quotation] .aphorism-block .collapse-head .open-group .circle-arrow-right {
  border: 1px solid #335979;
  transform: rotate(270deg);
}
[data-page=quotation] .aphorism-block .collapse-head .open-group .circle-arrow-right.rotate {
  transform: rotate(90deg);
}
[data-page=quotation] .aphorism-block .collapse-head .open-group .icon-arrow2_line_right {
  color: #335979;
}
[data-page=quotation] .aphorism-block .collapse-body {
  background: #E8D8A5;
  border-radius: 0 0 5px 5px;
}
[data-page=quotation] .aphorism-block .collapse-body .divided-line {
  border-bottom: 1px dashed #335979;
  margin: 0 30px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-body .divided-line {
    margin: 0 15px;
  }
}
[data-page=quotation] .aphorism-block .collapse-body .content-group {
  padding: 20px 30px 37.5px 61px;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-body .content-group {
    padding: 15px 15px 19px 30px;
  }
}
[data-page=quotation] .aphorism-block .collapse-body .content-group .icon-music {
  cursor: pointer;
}
[data-page=quotation] .aphorism-block .collapse-body .content-group .en-content {
  margin-top: 10px;
  font-size: 16px;
  line-height: 160%;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-body .content-group .en-content {
    font-size: 14px;
  }
}
[data-page=quotation] .aphorism-block .collapse-body .content-group .cn-content {
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0.01em;
}
@media (max-width: 575px) {
  [data-page=quotation] .aphorism-block .collapse-body .content-group .cn-content {
    font-size: 14px;
  }
}
[data-page=quotation] .pagination-group {
  margin: 30px auto 100px auto;
}
@media (max-width: 575px) {
  [data-page=quotation] .pagination-group {
    margin: 15px auto 50px auto;
  }
}

footer {
  display: flex;
  padding: 47px 100px 60px 100px;
}
@media (max-width: 1199px) {
  footer {
    padding: 47px 40px 60px 40px;
  }
}
@media (max-width: 991px) {
  footer {
    display: block;
    padding: 40px 20px 29px 20px;
  }
}
footer .footer-left-group .logo-imgbox {
  width: 250px;
}
@media (max-width: 991px) {
  footer .footer-left-group .logo-imgbox {
    width: 274px;
  }
}
footer .footer-left-group .logo-imgbox .img-cover {
  padding-top: 15%;
}
footer .footer-left-group .text-group {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
  margin-top: 43px;
}
@media (max-width: 991px) {
  footer .footer-left-group .text-group {
    grid-gap: 6px;
    margin-top: 19px;
  }
}
footer .footer-left-group .text-group .phone-group {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
@media (max-width: 991px) {
  footer .footer-left-group .text-group .phone-group {
    flex-direction: row;
    grid-gap: 6px 14px;
    flex-wrap: wrap;
  }
}
footer .footer-left-group .text-group .text {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 991px) {
  footer .footer-left-group .text-group .text {
    font-size: 13px;
    line-height: 19px;
  }
}
footer .footer-middle-group {
  display: flex;
  grid-gap: 57px;
  margin-left: 105px;
}
@media (max-width: 1439px) {
  footer .footer-middle-group {
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  footer .footer-middle-group {
    grid-gap: 27px;
  }
}
@media (max-width: 991px) {
  footer .footer-middle-group {
    flex-wrap: wrap;
    grid-gap: 20px 39px;
    margin-left: 0;
    margin-top: 24px;
  }
}
@media (max-width: 991px) {
  footer .footer-middle-group .seperation-line {
    width: 96px;
    height: 1px;
    background: #FFFFFF;
    margin-bottom: 5px;
  }
}
footer .footer-middle-group li {
  display: flex;
  align-items: center;
}
footer .footer-middle-group li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: #FFFFFF;
  border-radius: 50%;
  margin: 10px;
}
footer .footer-middle-group a {
  font-weight: 300;
  font-size: 15px;
  line-height: 200%;
  color: #FFFFFF;
  white-space: nowrap;
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 83%;
  transition: 0.3s ease;
}
footer .footer-middle-group a:hover {
  background-size: 100% 1px;
}
footer .footer-right-group {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  padding-left: 30px;
}
@media (max-width: 991px) {
  footer .footer-right-group {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-left: 0;
    align-items: flex-end;
  }
}
@media (max-width: 575px) {
  footer .footer-right-group {
    flex-direction: column;
    align-items: flex-start;
  }
}
footer .footer-right-group .logo-imgbox {
  mix-blend-mode: lighten;
  display: flex;
  gap: 0 20px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  footer .footer-right-group .logo-imgbox {
    flex: 1;
  }
}
@media (max-width: 575px) {
  footer .footer-right-group .logo-imgbox {
    margin-bottom: 20px;
    width: 100%;
  }
}
footer .footer-right-group .logo-imgbox > a {
  display: block;
  max-width: 130px;
  min-width: 100px;
  width: calc((100% - 20px) / 2);
  height: -moz-fit-content;
  height: fit-content;
}
footer .footer-right-group .logo-imgbox .img-cover {
  padding-top: 40%;
}
footer .footer-right-group .icons-group {
  display: flex;
  grid-gap: 21px;
}
@media (max-width: 991px) {
  footer .footer-right-group .icons-group {
    grid-gap: 10px;
    margin-bottom: 4px;
    margin-left: 24px;
  }
}
@media (max-width: 575px) {
  footer .footer-right-group .icons-group {
    margin-left: 0;
  }
}
footer .footer-right-group .icons-group .icon-fb::before, footer .footer-right-group .icons-group .icon-ig::before, footer .footer-right-group .icons-group .icon-youtube::before {
  color: #FFFFFF;
  font-size: 35px;
}
@media (max-width: 991px) {
  footer .footer-right-group .icons-group .icon-fb::before, footer .footer-right-group .icons-group .icon-ig::before, footer .footer-right-group .icons-group .icon-youtube::before {
    font-size: 25px;
  }
}
footer .footer-right-group .copyrights {
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  margin-top: 10px;
}
@media (max-width: 991px) {
  footer .footer-right-group .copyrights {
    width: 100%;
    margin-top: 9px;
  }
}
@media (max-width: 575px) {
  footer .footer-right-group .copyrights {
    font-size: 12px;
    line-height: 17px;
  }
}

@media (max-width: 1439px) {
  .index footer {
    padding: 47px 40px 60px 40px;
  }
}
@media (max-width: 1199px) {
  .index footer {
    display: block;
    padding: 40px 20px 29px 20px;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-left-group .logo-imgbox {
    width: 274px;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-left-group .text-group {
    grid-gap: 6px;
    margin-top: 19px;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-left-group .text-group .phone-group {
    flex-direction: row;
    grid-gap: 6px 14px;
    flex-wrap: wrap;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-left-group .text-group .text {
    font-size: 13px;
    line-height: 19px;
  }
}
@media (max-width: 1599px) {
  .index footer .footer-middle-group {
    margin-left: 30px;
  }
}
@media (max-width: 1439px) {
  .index footer .footer-middle-group {
    grid-gap: 27px;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-middle-group {
    flex-wrap: wrap;
    grid-gap: 20px 39px;
    margin-left: 0;
    margin-top: 24px;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-middle-group .seperation-line {
    width: 96px;
    height: 1px;
    background: #FFFFFF;
    margin-bottom: 5px;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-right-group {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 44px;
    padding-left: 0;
    align-items: flex-end;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-right-group .logo-imgbox {
    flex: none;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-right-group .icons-group {
    grid-gap: 10px;
    margin-bottom: 4px;
    margin-left: 24px;
  }
}
@media (max-width: 575px) {
  .index footer .footer-right-group .icons-group {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-right-group .icons-group .icon-fb::before, .index footer .footer-right-group .icons-group .icon-ig::before, .index footer .footer-right-group .icons-group .icon-youtube::before {
    font-size: 25px;
  }
}
@media (max-width: 1199px) {
  .index footer .footer-right-group .copyrights {
    width: 100%;
    margin-top: 9px;
  }
}

/*  ===== 斷點變數 ===== */
/*  ===== 往上適應 ===== */
/*  ===== 往下適應 ===== */
/*  ===== 範圍內適應 ===== */
/*  ===== 基本漸層背景設定 ===== */
/*  ===== 以 em 計算font-size, letter-spacing(RWD時方便使用) ===== */
/*  ===== 文字置中時的 letter spacing 偏移修正 ===== */
/*  ===== letter spacing 偏移重設 ===== */
/*  ===== firefox font weight bold 統一設定為 normal (firefox在小字為粗體的時候會過粗) ===== */
/*  ===== a連結清除預設值 ===== */
/*  ===== 字體設定（全域/英文/中文) ===== */
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/Noto_Sans/NotoSans-VariableFont_wdth,wght.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/Noto_Sans/NotoSans-Italic-VariableFont_wdth,wght.ttf") format("truetype");
  font-style: italic;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Sans TC";
  src: url("../fonts/Noto_Sans_TC/NotoSansTC-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Serif TC";
  src: url("../fonts/Noto_Serif_TC/NotoSerifTC-VariableFont_wght.ttf") format("truetype");
}
/*  ===== 排版相關 ===== */
/*  ===== 超過文字省略為...(可設定行數) ===== */
/*  ===== 捲軸樣式設定 ===== */
/*  ===== underline hover ===== */
/*  ===== 進度條 ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
/**
 * * Allows you to use retina images at various pixel densities.
 * * Examples:
 * *
 * *   +retina(/images/mypic.jpg, 2);
 * *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 * *
 * * @param  {Value}  $path               The path to the file name minus extension.
 * * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * * @param  {Value}  $extras: null       Any other `background` values to be added.
 * */
.vocabulary__search-block {
  display: flex;
  gap: 10px;
}
.vocabulary__search-block .search-input {
  background: transparent;
  border: 1px solid #000000;
  padding: 5px 10px;
  width: 297px;
  font-size: 15px;
  line-height: 160%;
  outline: none;
}
@media (max-width: 575px) {
  .vocabulary__search-block .search-input {
    flex: 1;
    height: 35px;
  }
}
.vocabulary__search-block .search-input::-moz-placeholder {
  color: #000000;
}
.vocabulary__search-block .search-input::placeholder {
  color: #000000;
}
.vocabulary__search-block .search-btn {
  font-size: 15px;
  color: #FFFFFF;
  padding: 8px 12px;
  background: #335979;
  border: none;
  width: 138px;
}
@media (max-width: 575px) {
  .vocabulary__search-block .search-btn {
    height: 35px;
    padding: 5px 12px;
  }
}
.vocabulary__search-block .search-btn:active::after {
  display: none;
}

@media (min-width: 768px) {
  .vocabulary .vocabulary-container {
    border-top: 1px solid #000000;
    margin-top: 30px;
  }
}
.vocabulary .summary {
  margin: 25px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 220%;
}
@media (max-width: 767px) {
  .vocabulary .summary {
    margin-top: 15px;
  }
}
@media (max-width: 575px) {
  .vocabulary .summary {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
.vocabulary .vocabulary__search-block {
  margin-bottom: 15px;
}
.vocabulary .alphabet-list {
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .vocabulary .alphabet-list {
    margin-bottom: 10px;
  }
}
.vocabulary .alphabet-list:last-of-type {
  margin-bottom: 119px;
}
@media (max-width: 575px) {
  .vocabulary .alphabet-list:last-of-type {
    margin-bottom: 60px;
  }
}
.vocabulary .collapse-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #335979;
  padding: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
}
@media (max-width: 575px) {
  .vocabulary .collapse-head {
    padding: 10px;
  }
}
.vocabulary .collapse-head .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  color: #FFFFFF;
  transition: 0.3s ease;
}
@media (max-width: 575px) {
  .vocabulary .collapse-head .title {
    font-size: 14px;
  }
}
.vocabulary .collapse-head .circle-arrow-right {
  transition: 0.3s ease;
}
.vocabulary .collapse-head.is-active {
  background: #EEBB37;
}
.vocabulary .collapse-head.is-active .title {
  color: #000000;
}
.vocabulary .collapse-head.is-active .circle-arrow-right {
  border: 1px solid #000000;
  transform: rotate(90deg);
}
.vocabulary .collapse-head.is-active .icon-arrow2_line_right {
  color: #000000;
}
.vocabulary .collapse-body > div {
  padding: 0 51px 20px 21px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .vocabulary .collapse-body > div {
    padding: 3px 6.5px 15px 1.5px;
  }
}
.vocabulary .collapse-body a {
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
  color: #335979;
  width: 14px;
  transition: 0.3s ease;
  margin-top: 20px;
  margin-left: 30px;
}
@media (max-width: 575px) {
  .vocabulary .collapse-body a {
    font-size: 14px;
    width: 20px;
    height: 20px;
    text-align: center;
    font-weight: 600;
    margin-top: 12px;
    margin-left: 5px;
  }
}
.vocabulary .collapse-body a:hover {
  font-weight: 700;
  color: #000000;
}
.vocabulary .collapse-body a.disabled {
  color: #BEBEBE;
  pointer-events: none;
}

.vocabulary_detail .breadcrumb-block {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .vocabulary_detail .breadcrumb-block {
    border-bottom: 1px solid #000000;
  }
}
@media (max-width: 575px) {
  .vocabulary_detail .breadcrumb-block {
    padding-bottom: 20px;
  }
}
.vocabulary_detail .breadcrumb-search-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .vocabulary_detail .breadcrumb-search-block {
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .vocabulary_detail .breadcrumb-search-block {
    border-bottom: 1px solid #000000;
  }
}
@media (max-width: 575px) {
  .vocabulary_detail .breadcrumb-search-block {
    gap: 15px;
    padding-bottom: 15px;
  }
}
.vocabulary_detail .vocabulary-container.no-content {
  margin-bottom: 30px;
}
.vocabulary_detail .row-item:nth-of-type(1) {
  width: 24.5901639344%;
}
@media (max-width: 1439px) {
  .vocabulary_detail .row-item:nth-of-type(1) {
    width: 28.2786885246%;
  }
}
.vocabulary_detail .row-item:nth-of-type(2) {
  width: 12.7049180328%;
}
.vocabulary_detail .row-item:nth-of-type(3) {
  width: 25.4098360656%;
}
.vocabulary_detail .row-item:nth-of-type(4) {
  width: 12.7049180328%;
}
@media (max-width: 1439px) {
  .vocabulary_detail .row-item:nth-of-type(4) {
    width: 11.8852459016%;
  }
}
.vocabulary_detail .row-item:nth-of-type(5) {
  width: 12.7049180328%;
}
@media (max-width: 1439px) {
  .vocabulary_detail .row-item:nth-of-type(5) {
    width: 11.8852459016%;
  }
}
.vocabulary_detail .row-item:nth-of-type(6) {
  width: 11.8852459016%;
}
@media (max-width: 1439px) {
  .vocabulary_detail .row-item:nth-of-type(6) {
    width: 9.8360655738%;
  }
}
.vocabulary_detail .row-item p {
  text-align: center;
}
.vocabulary_detail .row-item__left p {
  text-align: left;
}
.vocabulary_detail .list-title {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .vocabulary_detail .list-title {
    display: none;
  }
}
.vocabulary_detail .list-title .row-item {
  padding: 15px 10px;
}
.vocabulary_detail .list-title .row-item__left {
  padding-left: 28px;
}
.vocabulary_detail .list-title__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
}
.vocabulary_detail .list-row {
  border-radius: 5px;
}
.vocabulary_detail .list-row:nth-child(odd) {
  background: #DFD6C9;
}
.vocabulary_detail .list-row .collapse-head.pc {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .vocabulary_detail .list-row .collapse-head.pc {
    display: none;
  }
}
@media (min-width: 992px) {
  .vocabulary_detail .list-row .collapse-head.mb {
    display: none;
  }
}
.vocabulary_detail .list-row .row-item {
  padding: 30px 10px;
  position: relative;
}
.vocabulary_detail .list-row .row-item[data-hc-control] {
  cursor: pointer;
}
.vocabulary_detail .list-row .row-item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1px;
  height: 31px;
  background: #C3BBAE;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.vocabulary_detail .list-row .word-group {
  display: flex;
  align-items: center;
}
.vocabulary_detail .list-row .level {
  white-space: nowrap;
}
.vocabulary_detail .list-row .level.cn {
  font-size: 15px;
  line-height: 160%;
  color: #FFFFFF;
  padding: 2px 13px;
  border-radius: 100px;
  margin: 0 15px 0 18px;
  max-height: 28px;
}
@media (max-width: 991px) {
  .vocabulary_detail .list-row .level.cn {
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .level.cn {
    margin-right: 5px;
    font-size: 10px;
  }
}
.vocabulary_detail .list-row .level.en {
  font-size: 15px;
  line-height: 160%;
  color: #FFFFFF;
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 29px 0 32px;
}
@media (max-width: 991px) {
  .vocabulary_detail .list-row .level.en {
    margin-left: 0;
    margin-right: 20px;
  }
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .level.en {
    margin-right: 8px;
    font-size: 10px;
    width: 20px;
    min-width: 20px;
    height: 20px;
  }
}
.vocabulary_detail .list-row .level.level-e {
  background: #DE6A16;
}
.vocabulary_detail .list-row .level.level-i {
  background: #589469;
}
.vocabulary_detail .list-row .level.level-h {
  background: #5896C2;
}
.vocabulary_detail .list-row__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row__text {
    font-size: 14px;
  }
}
.vocabulary_detail .list-row__text.chinese-text {
  max-width: calc(100% - 145px - 20px);
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row__text.chinese-text {
    max-width: calc(100% - 148px - 20px);
  }
}
.vocabulary_detail .list-row .play-btn {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  margin: auto;
  color: #000000;
}
.vocabulary_detail .list-row .play-btn:active::after {
  display: none;
}
.vocabulary_detail .list-row .play-btn svg {
  margin-right: 7px;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .play-btn svg {
    width: 10px;
    height: 12px;
  }
}
.vocabulary_detail .list-row .circle-arrow-right {
  border: 1px solid #000000;
  margin: auto;
  transform: rotate(90deg);
}
.vocabulary_detail .list-row .icon-arrow2_line_right {
  color: #000000;
}
.vocabulary_detail .list-row .is-active .circle-arrow-right {
  transform: rotate(-90deg);
}
.vocabulary_detail .list-row .collapse-body > div {
  padding: 33px 28px;
  position: relative;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .collapse-body > div {
    padding: 15px 15px 16px 15px;
  }
}
.vocabulary_detail .list-row .collapse-body > div::after {
  content: "";
  display: block;
  border-top: 1px dashed #000000;
  position: absolute;
  top: 0;
  left: 25px;
  right: 25px;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .collapse-body > div::after {
    left: 13px;
    right: 13px;
  }
}
.vocabulary_detail .list-row .collapse-body__row {
  display: flex;
}
.vocabulary_detail .list-row .collapse-body__row:not(:first-of-type) {
  margin-top: 15px;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .collapse-body__row:not(:first-of-type) {
    margin-top: 10px;
  }
}
.vocabulary_detail .list-row .collapse-body__row .tag {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  color: #FFFFFF;
  background: #335979;
  padding: 2px 13px;
  min-width: 86px;
  height: 28px;
  border-radius: 100px;
  margin-right: 20px;
  text-align: center;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .collapse-body__row .tag {
    font-size: 10px;
    min-width: 66px;
    height: 20px;
    margin-right: 8px;
  }
}
.vocabulary_detail .list-row .collapse-body__row .content {
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  margin-top: 4px;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .collapse-body__row .content {
    font-size: 13px;
    margin-top: 3px;
  }
}
.vocabulary_detail .list-row .collapse-head.mb {
  padding: 33px 28px;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .collapse-head.mb {
    padding: 18px 12px 16px 15px;
  }
}
.vocabulary_detail .list-row .collapse-head.mb > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vocabulary_detail .list-row .collapse-head.mb > div:not(:first-of-type) {
  margin-top: 16px;
}
.vocabulary_detail .list-row .collapse-head.mb > div > div {
  display: flex;
  align-items: center;
}
.vocabulary_detail .list-row .collapse-head.mb .circle-arrow-right {
  margin-left: 14px;
  cursor: pointer;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .collapse-head.mb .circle-arrow-right {
    width: 16px;
    min-width: 16px;
    height: 16px;
  }
}
.vocabulary_detail .list-row .collapse-head.mb .circle-arrow-right.is-active {
  transform: rotate(-90deg);
}
.vocabulary_detail .list-row .collapse-head.mb .line {
  width: 1px;
  height: 15px;
  background: #C3BBAE;
  margin: 0 15px;
}
@media (max-width: 575px) {
  .vocabulary_detail .list-row .collapse-head.mb .line {
    height: 11px;
  }
}
.vocabulary_detail .pagination-group {
  margin: 70px auto 91px auto;
}
@media (max-width: 575px) {
  .vocabulary_detail .pagination-group {
    margin: 35px auto 45px auto;
  }
}

body.cn .level.en {
  display: none !important;
}
body.en .level.cn {
  display: none !important;
}

.test-box {
  width: 100px;
  height: 100px;
}
@media (min-width: 1200px) {
  .test-box {
    background-color: #335979;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  .test-box {
    background-color: #000000;
  }
}
.test-img {
  width: 480px;
  height: 200px;
  background: url("../images/img_test.jpg");
  background-size: cover;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3/2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .test-img {
    background: url("../images/img_test@2x.jpg");
    background-size: cover;
  }
}