@charset "UTF-8";
@media (max-width: 1929px) {
  .device-style-pc {
    display: block;
  }
  .device-style-mobile {
    display: none;
  }
}
@media (max-width: 414px) {
  .device-style-pc {
    display: none;
  }
  .device-style-mobile {
    display: block;
  }
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*補充*/
*, *:before, *:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 300;
  src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.woff) format("woff"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Light.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 400;
  src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Regular.woff) format("woff"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Regular.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 500;
  src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Medium.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Medium.woff) format("woff"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Medium.otf) format("opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans TC";
  font-style: normal;
  font-weight: 700;
  src: url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Bold.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Bold.woff) format("woff"), url(//fonts.gstatic.com/ea/notosanstc/v1/NotoSansTC-Bold.otf) format("opentype");
  font-display: swap;
}
html {
  font-family: Noto Sans TC, 黑體-繁, Apple LiGothic Medium, PingFang, 微軟正黑體, Microsoft JhengHei, WenQuanYi Zen Hei, helvetica, Arial, sans-serif;
  font-weight: 300;
}

input[type=text] {
  font-family: Noto Sans TC, 黑體-繁, Apple LiGothic Medium, PingFang, 微軟正黑體, Microsoft JhengHei, WenQuanYi Zen Hei, helvetica, Arial, sans-serif;
}

.container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
}

body {
  position: relative;
}

.vip-bg-orange {
  background: #FFF1E5;
}

.hidden {
  display: none !important;
}

@keyframes fade {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.blink-effect {
  animation: fade 600ms infinite;
}

.btn {
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.btn--padding {
  padding: 1px 1em;
}
.btn--bg-red {
  background: #C4181F;
  color: #fff;
}
.btn--red {
  color: #C4181F;
}
.btn--outline-red {
  border: 1px solid #C4181F;
}
.btn--gold {
  color: #F7D67A;
}
.btn--outline-gold {
  border: 1px solid #F7D67A;
}
.btn--rounded2 {
  border-radius: 2px;
}

.key-tag {
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid #ddd;
  font-size: 1em;
  padding: 2px 0.5em;
  border-radius: 2px;
  margin-right: 0.5em;
  cursor: pointer;
}

.goTop {
  font-size: 25px;
  color: #fff;
  background: #B2B2B2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  right: 40px;
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -100%, 0);
  transition: all 0.3s linear;
}
@media (max-width: 1023px) {
  .goTop {
    font-size: 16px;
    right: 15px;
    width: 26px;
    height: 26px;
    padding-bottom: 3px;
  }
}
.goTop--with-audio {
  bottom: 128px;
}

.goTop.show {
  transform: translateZ(0);
  opacity: 1;
  visibility: visible;
}

::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
  background: hsla(0deg, 0%, 100%, 0.6);
}

::-webkit-scrollbar-track {
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(95, 95, 95, 0.4);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 0.4rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(95, 95, 95, 0.7);
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: flex;
  box-pack: center;
  justify-content: center;
  box-align: center;
  align-items: center;
}

.swiper-button-custom .swiper-button-next,
.swiper-button-custom .swiper-button-prev {
  background-image: none;
  font-size: 23px;
}
.swiper-button-custom .swiper-button-next::after,
.swiper-button-custom .swiper-button-prev::after {
  content: none;
}

@media (max-width: 1023px) {
  .edn-ads--970x250 {
    display: none;
  }
}
.edn-ads--970x250 img {
  display: block;
  width: 970px;
}
.edn-ads--300x250 {
  max-width: 300px;
}
.edn-ads--300x250 img {
  display: block;
}
.edn-ads--text {
  font-size: 18px;
  display: flex;
  align-items: center;
}
.edn-ads--text span {
  font-size: 13px;
  background-color: #C8C8C8;
  color: #fff;
  width: 30px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}
.edn-ads--text a {
  margin-left: 11px;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.edn-ads--pad {
  display: none;
}
@media (max-width: 1023px) {
  .edn-ads--pad {
    display: block;
    width: 300px;
    margin: 0 auto;
  }
}

.header-ad-wrapper {
  border-bottom: 1px solid #DBDBDB;
}
@media (max-width: 1023px) {
  .header-ad-wrapper {
    display: none;
  }
}
.header-ad-wrapper .edn-ads--970x250 {
  width: 970px;
  margin: 0 auto;
}

.top-right-ad {
  width: 300px;
}
@media (max-width: 1279px) {
  .top-right-ad {
    display: none;
  }
}

.edn--subscription [class^=edn-ads] {
  display: none;
}

.drop-down-mask {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  position: absolute;
  top: 121px;
  left: 0;
  z-index: 2;
  transition: opacity 0.5s;
  opacity: 0;
}
@media (max-width: 1023px) {
  .drop-down-mask {
    top: 116px;
  }
}

.drop-down-mask-active {
  opacity: 1;
  right: 0;
  bottom: 0;
}

.toggle-list__title {
  display: flex;
  cursor: pointer;
}
.toggle-list__arrow {
  transition: 0.3s transform linear;
}
.toggle-list__arrow--active {
  transform: rotate(180deg);
}
.toggle-list__content {
  display: none;
}
.toggle-list__content--active {
  display: block;
}

.breadcrumb {
  margin-bottom: 15px;
}
@media (max-width: 1023px) {
  .breadcrumb {
    padding-top: 12px;
  }
}
.breadcrumb__list {
  list-style: none;
  display: flex;
  color: #212121;
}
.breadcrumb__list li + li::before {
  padding-right: 7px;
  content: "\e890";
  font-family: "fontello";
  font-style: normal;
  font-weight: 700;
  display: inline-block;
}
.breadcrumb__item {
  display: flex;
  font-size: 14px;
  line-height: 1.4;
  padding-left: 7px;
  box-sizing: border-box;
}
.breadcrumb__item:first-child {
  padding-left: 0;
}
.breadcrumb__item a:hover {
  color: #C4181F;
  text-decoration: underline;
}

.rank__title {
  border-bottom: 1px solid #000;
  line-height: 1.5;
  font-weight: 400;
}
.rank__item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E9E9E9;
  padding: 10px 0;
}
.rank__wrapper {
  width: calc(100% - 40px);
}
.rank__number-img {
  margin-right: 25px;
  width: 35px;
  height: 65px;
}
.rank__subcate {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
.rank__time {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}
.rank__subcate {
  color: #C4181F;
  margin-right: 10px;
  margin-bottom: 5px;
}
.rank__time {
  color: #999999;
  font-family: arial;
  letter-spacing: 0.6px;
}
.rank__time--key::after {
  content: "\e916";
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  font-size: 20px;
  color: #b2b2b2;
  line-height: 1;
  margin-left: 5px;
  position: relative;
  top: 1px;
  line-height: 13px;
  position: relative;
  top: 2px;
}
.rank__headline a {
  max-height: calc(1.4 * 2 * 1em);
  line-height: 1.4;
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.rank__headline a:hover {
  color: #C4181F;
}

.columnist-profile {
  display: flex;
}
@media (max-width: 1023px) {
  .columnist-profile {
    display: block;
  }
}
.columnist-profile .image-text-wrapper {
  margin-right: 24px;
}
@media (max-width: 1023px) {
  .columnist-profile .image-text-wrapper {
    display: flex;
    align-items: flex-end;
    margin-right: 0;
    margin-bottom: 7px;
  }
}
.columnist-profile__image {
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  flex-shrink: 0;
  margin-right: 3%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  .columnist-profile__image {
    margin-right: 10px;
    padding-bottom: 0;
    text-align: center;
    overflow: inherit;
  }
}
.columnist-profile__content {
  width: 78%;
}
@media (max-width: 1023px) {
  .columnist-profile__content {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .columnist-profile .web-only {
    display: none;
  }
}
.columnist-profile .pad-show--inline-block {
  display: none;
}
@media (max-width: 1023px) {
  .columnist-profile .pad-show--inline-block {
    display: inline-block;
  }
}
.columnist-profile__name {
  font-size: 30px;
  line-height: 1.5;
  display: inline-block;
  margin-right: 13px;
  font-weight: 400;
}
.columnist-profile__name a:hover {
  color: #C4181F;
}
.columnist-profile__article-list {
  font-size: 18px;
  display: inline-block;
  font-weight: 400;
}
.columnist-profile__text {
  font-size: 16px;
  line-height: 1.6;
  color: #4D4D4D;
}
@media (max-width: 1023px) {
  .columnist-profile__text {
    font-size: 18px;
  }
}

.search__group {
  display: flex;
  margin-bottom: 20px;
}
.search__form {
  flex-grow: 1;
}
.search__input[type=text] {
  width: 100%;
  line-height: 1.5;
  font-weight: 300;
  box-sizing: border-box;
  background-color: #fff;
  border: 0;
  outline: 0;
}
.search__btn {
  font-weight: 700;
  display: flex;
  align-items: center;
  outline: none;
}

.lightbox__mask,
.lightbox__box {
  display: none;
}

.lightbox__input {
  border: 0;
  border-bottom: 1px solid #7D7D7D;
  line-height: 1.4;
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
}
.lightbox__input:focus {
  outline: 0;
}
.lightbox__input.invalid {
  border-color: #C4181F;
}
.lightbox__close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: -7px;
  top: -20px;
  cursor: pointer;
  display: none;
}
.lightbox__close::after {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 18px;
  transform: translate(-50%, -50%);
  content: ",";
  font-family: "fontello";
  color: #7D7D7D;
}
.lightbox__mask {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
}
.lightbox__box {
  display: block;
  max-width: 290px;
  width: 100%;
  min-height: 160px;
  background: #fff;
  padding: 30px 18px 15px;
  line-height: 1.5;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  box-shadow: 0px 2px 3px 0px #2E2E2E;
  z-index: 4;
}
.lightbox__box--info {
  max-width: 485px;
}
.lightbox__box--info .lightbox__content-wrapper {
  margin-bottom: 0;
}
.lightbox__box--info .lightbox__close {
  display: block;
}
.lightbox__header {
  font-size: 20px;
  font-weight: 400;
  color: #333333;
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
  line-height: 1;
}
.lightbox__header:empty {
  margin: 0;
}
.lightbox__content-wrapper {
  min-height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
.lightbox__content {
  color: #333333;
  line-height: 1.6;
}
.lightbox__btn-wrapper--single {
  text-align: center;
}
.lightbox__btn-wrapper--double {
  display: flex;
  justify-content: space-between;
}
.lightbox__btn-wrapper--info {
  display: none;
}
.lightbox__btn {
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #7D7D7D;
  border-radius: 2px;
  color: #6D6D6D;
  padding: 8px 44px;
  position: relative;
}
.lightbox__btn:hover {
  background: #6D6D6D;
  color: #fff;
}
.lightbox__btn.loading::before {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: white;
  content: "";
}
.lightbox__btn.loading::after {
  content: "\e838";
  font-family: "fontello";
  position: absolute;
  top: 10px;
  left: 55px;
  animation: spin 2s linear infinite;
}

.audio {
  width: 300px;
  background-color: #F5F5F5;
  border-radius: 10px 0px 3px 3px;
  box-shadow: -3px 3px 4px rgba(46, 46, 46, 0.25);
  position: fixed;
  right: 250px;
  bottom: 0;
  z-index: 3;
  touch-action: none;
}
@media (max-width: 1919px) {
  .audio {
    right: 0;
  }
}
@media (max-width: 1023px) {
  .audio {
    width: 100%;
  }
}
.audio i::before {
  margin: 0;
}
.audio ::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}
.audio__titleWrap {
  margin: 12px 20px 10px;
}
.audio__title {
  font-size: 18px;
  color: #2E2E2E;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
}
.audio .loading i {
  color: #C4181F;
  font-size: 25px;
}
.audio .marquee {
  width: 100%;
  height: 27px;
  position: relative;
  overflow: hidden;
}
.audio .marquee__content {
  display: inline-block;
  white-space: nowrap;
}
.audio .marquee__content-space {
  display: inline-block;
  width: 30px;
}
.audio .marqueeAni {
  animation: kf-marque 12s infinite linear;
}
@keyframes kf-marque {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.5%);
  }
}
.audio__toggle {
  background-color: #F5F5F5;
  width: 45px;
  height: 25px;
  line-height: 22px;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  text-align: center;
  position: absolute;
  right: 0;
  top: -18px;
}
.audio__toggle i {
  font-size: 16px;
  color: #C4181F;
}
.audio__div {
  height: 8px;
  border-radius: 10px 10px 0 0;
}
.audio__controller {
  position: relative;
  padding-bottom: 5px;
}
.audio__controller::after {
  content: "";
  width: calc(100% - 10px);
  border-bottom: 1px solid #C7C7C7;
  position: absolute;
  left: 5px;
  bottom: 0;
}
.audio__holder {
  margin: 0 20px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}
.audio__tools {
  color: #AAAAAA;
  display: flex;
  align-items: center;
}
.audio__tools > div {
  margin: 0 5px;
  cursor: pointer;
}
.audio__tools .amplitude-prev {
  margin-left: 0;
}
.audio__volume {
  position: relative;
}
@media (max-width: 767px) {
  .audio__volume {
    display: none;
  }
}
.audio__volume-progressMenu {
  width: 30px;
  height: 150px;
  color: #000;
  background-color: #fff;
  position: absolute;
  bottom: 20px;
  left: -10px;
  box-shadow: 0 2px 4px rgba(46, 46, 46, 0.25);
  padding: 10px 0;
  display: flex;
  justify-content: center;
}
.audio__volume-lineBar {
  display: flex;
  flex-direction: column-reverse;
}
.audio__speed {
  font-size: 14px;
  position: relative;
}
.audio__speed-menu {
  width: 50px;
  color: #000;
  background-color: #fff;
  position: absolute;
  bottom: 20px;
  right: 50%;
  transform: translateX(50%);
  box-shadow: 0 2px 4px rgba(46, 46, 46, 0.25);
}
.audio__speed-menu li {
  padding: 8px 0;
  text-align: center;
}
.audio__speed-menu li:hover {
  background-color: #EBEBEB;
}
.audio .selectSpeed {
  background-color: #EBEBEB;
}
.audio__repeat {
  margin-right: 0 !important;
  transform: rotate(90deg);
}
.audio .banRepeat {
  color: #dedede;
}
.audio__progress {
  font-size: 13px;
  color: #2E2E2E;
  margin: 0 20px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.audio__progress-lineBar {
  transform: translateY(2px);
}
.audio__progress-time {
  margin-left: 8px;
}
.audio__list {
  color: #000;
  height: 180px;
  overflow-y: scroll;
  margin-right: 5px;
  position: relative;
}
.audio__list .item {
  padding: 13px 0 13px 20px;
  cursor: pointer;
  display: flex;
}
.audio__list .item__play-pause {
  color: #AAAAAA;
  font-size: 30px;
  margin-right: 10px;
}
.audio__list .item__wrap {
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  padding-right: 10px;
}
.audio__list .item__type {
  margin-right: 5px;
}
.audio__list .item__name {
  font-size: 16px;
  line-height: 1.4;
  margin-top: 2px;
  width: 100%;
}
.audio__list .selectItem {
  background-color: #EBEBEB;
}

.mainAudio-wrapper {
  position: relative;
}

.mainAudio {
  right: 2px;
}
@media (max-width: 1023px) {
  .mainAudio {
    right: 0;
  }
}
.mainAudio .audio__list {
  height: 63px !important;
}

.mainAudio-wrapper {
  position: relative;
}

.mainAudio {
  right: 0;
}
.mainAudio .audio__list {
  height: 63px !important;
}

.circularPlayer-class .controls {
  cursor: pointer;
}

.circularPlayer-class .progress-bar {
  transition: stroke-dashoffset 500ms;
  stroke-dasharray: 298.1371428257;
  stroke-dashoffset: 298.1371428257;
  -webkit-transition: stroke-dashoffset 500ms;
  -moz-transition: stroke-dashoffset 500ms;
  -ms-transition: stroke-dashoffset 500ms;
  -o-transition: stroke-dashoffset 500ms;
}

.audio__progress-lineBar {
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background-color: #CCCCCC;
  cursor: pointer;
  position: relative;
}
.audio__progress-lineBar .ui-slider-range-min {
  width: 100px;
  height: 4px;
  border-radius: 5px;
  background-color: #C82C1D;
}
.audio__progress-lineBar .ui-slider-handle {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  outline: none;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.audio__volume-lineBar {
  width: 4px;
  height: 100%;
  border-radius: 5px;
  background-color: #CCCCCC;
  cursor: pointer;
  position: relative;
}
.audio__volume-lineBar .ui-slider-range-min {
  width: 4px;
  height: 100%;
  border-radius: 5px;
  background-color: #C82C1D;
}
.audio__volume-lineBar .ui-slider-handle {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  outline: none;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  left: -2px;
  margin: -4px 0;
}

.audio2__progress-lineBar {
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background-color: #CCCCCC;
  cursor: pointer;
  position: relative;
}
.audio2__progress-lineBar .ui-slider-range-min {
  width: 100px;
  height: 4px;
  border-radius: 5px;
  background-color: #C82C1D;
}
.audio2__progress-lineBar .ui-slider-handle {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  outline: none;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.audio2__volume-lineBar {
  width: 4px;
  height: 100%;
  border-radius: 5px;
  background-color: #CCCCCC;
  cursor: pointer;
  position: relative;
}
.audio2__volume-lineBar .ui-slider-range-min {
  width: 4px;
  height: 100%;
  border-radius: 5px;
  background-color: #C82C1D;
}
.audio2__volume-lineBar .ui-slider-handle {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  outline: none;
  background-color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  left: -2px;
  margin: -4px 0;
}

.paywall-box {
  width: 305px;
  line-height: 1.5;
  padding-top: 25px;
  padding-bottom: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px #C8C8C8;
  border-radius: 10px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}
.paywall-box--pd10 {
  padding-left: 10px;
  padding-right: 10px;
}
.paywall-box--pd15 {
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 1023px) {
  .paywall-box {
    margin: 10px;
  }
}
.paywall-box-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.paywall-box-wrapper.paywall--loading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px 0px #C8C8C8;
  border-radius: 10px;
}
.paywall-box-wrapper.paywall--loading .paywall-box {
  opacity: 0;
  visibility: hidden;
}
.paywall-box-wrapper.paywall--loading::before {
  content: "\e834";
  font-family: "fontello";
  animation: spin 2s linear infinite;
  font-size: 2.6rem;
  position: absolute;
}
.paywall-box .paywall-box-text-wrapper {
  margin-bottom: auto;
}
.paywall-box .paywall-box__header {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.paywall-box .paywall-box__header--mb {
  margin-bottom: 18px;
}
.paywall-box .paywall-box__sub-header {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 15px;
  text-align: center;
}
.paywall-box .paywall-box__content {
  min-height: 50px;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  font-weight: 300;
}
.paywall-box .paywall-box__content--list {
  text-align: left;
}
.paywall-box .paywall-box__content--list p {
  font-size: 14px;
}
.paywall-box .paywall-box-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-content: flex-end;
}
.paywall-box .paywall-box__btn {
  background: #C4181F;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
}
.paywall-box .paywall-box__btn:hover {
  background: #fa3827;
}
.paywall-box .paywall-box__btn--sm {
  width: 130px;
}
.paywall-box .paywall-box__btn--lg {
  width: 100%;
}
.paywall-box .paywall-box__footer-text {
  color: #707070;
  text-align: center;
  margin-top: 14px;
}

#freebiesBox {
  display: none;
}

.countdown__wrapper {
  background-color: #F8F8F8;
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 45px;
  padding-bottom: 45px;
  margin-bottom: 20px;
}
@media (max-width: 414px) {
  .countdown__wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.countdown__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.countdown__content .w-100 {
  display: none;
}
@media (max-width: 414px) {
  .countdown__content .w-100 {
    display: block;
    width: 100%;
  }
}
.countdown__icon {
  margin-right: 4px;
  width: 22px;
  height: 22px;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.countdown__text {
  font-size: 19px;
  font-weight: 400;
  color: #8A8A8A;
  margin-right: 15px;
}
@media (max-width: 414px) {
  .countdown__text {
    margin-right: 0;
  }
}
.countdown__timer {
  color: #707070;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 414px) {
  .countdown__timer {
    margin-top: 10px;
  }
}
.countdown__timer .small {
  font-size: 10px;
  font-weight: 300;
}

.hot-key__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hot-key__item {
  border: 0.5px solid #CCCCCC;
  border-radius: 3px;
  color: #707070;
  line-height: 1.3;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
  margin-right: 10px;
}
.hot-key__item a {
  padding: 4.5px 8px;
  display: block;
}
.hot-key__item a:hover {
  background-color: #EBEBEB;
}
.hot-key__item:last-child {
  margin-right: 0;
}

.story__subcate {
  color: #C4181F;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  margin-right: 5px;
  margin-bottom: 2px;
}
.story__title {
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 15px;
  position: relative;
  padding-left: 8px;
}
.story__title::before {
  content: "";
  width: 2px;
  height: 18px;
  background-color: #C4181F;
  position: absolute;
  left: 0;
  top: 1px;
}
.story__content {
  font-size: 13px;
}
.story__content time {
  font-family: arial;
  letter-spacing: 0.6px;
  display: flex;
}
.story__content time {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #999999;
}
.story__content span {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #999999;
}
.story__content span {
  margin-bottom: 5px;
}
.story__content--key > span::after, .story__content--key > time::after,
.story__content--key a time::after {
  content: "\e916";
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  font-size: 20px;
  color: #b2b2b2;
  line-height: 1;
  margin-left: 5px;
  position: relative;
  top: 1px;
}
.story__content--key > span::after, .story__content--key > time::after,
.story__content--key a time::after {
  line-height: 13px;
}
.story__headline {
  max-height: calc(1.4 * 2 * 1em);
  line-height: 1.4;
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #333333;
  position: relative;
  top: -4px;
  margin-bottom: 5px;
}
.story__headline:hover {
  color: #C4181F;
}
.story__item {
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 3px;
  display: flex;
  align-items: baseline;
}
@media (max-width: 1023px) {
  .story__item {
    line-height: 1.4;
    margin-bottom: 5px;
  }
}
.story__item a {
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.story__item a:hover {
  color: #C4181F;
}
.story__item--key a {
  width: auto;
}
.story__item--key .key-icon {
  color: #b2b2b2;
  font-size: 20px;
}
.story__item--time {
  font-size: 13px;
  line-height: 1.8;
  font-family: arial;
  color: #999999;
}
.story__item--view {
  font-size: 13px;
  line-height: 1.8;
  font-family: arial;
  color: #999999;
}
.story__item--time {
  margin-right: 8px;
  letter-spacing: 0.6px;
}
.story__read-more {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1.5;
  cursor: pointer;
}

.story-headline-wrapper {
  display: flex;
  margin-bottom: 10px;
}
.story-headline-wrapper .story__content {
  width: 100%;
}
.story-headline-wrapper .story__content a {
  display: flex;
  flex-flow: column wrap;
}
.story-headline-wrapper .story__content a:hover .story__headline {
  color: #C4181F;
}
.story-headline-wrapper .story__headline {
  font-size: 19px;
  max-height: calc(1.3 * 2 * 1em);
  line-height: 1.3;
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.story-headline-wrapper .story__text {
  max-height: calc(1.5 * 2 * 1em);
  line-height: 1.5;
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.story-flex-bt-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.story-flex-bt-wrapper .story,
.story-flex-bt-wrapper .story-flex-bt-wrapper__ul {
  width: 49%;
}
@media (max-width: 1023px) {
  .story-flex-bt-wrapper .story,
  .story-flex-bt-wrapper .story-flex-bt-wrapper__ul {
    width: 100%;
  }
}
.article-layout-wrapper .story-flex-bt-wrapper .story,
.article-layout-wrapper .story-flex-bt-wrapper .story-flex-bt-wrapper__ul {
  width: 295px;
}
@media (max-width: 1023px) {
  .article-layout-wrapper .story-flex-bt-wrapper .story,
  .article-layout-wrapper .story-flex-bt-wrapper .story-flex-bt-wrapper__ul {
    width: 100%;
  }
}

.story-list-holder .story-headline-wrapper {
  margin-bottom: 23px;
}
@media (max-width: 1023px) {
  .story-list-holder .story-headline-wrapper {
    margin-bottom: 20px;
  }
}
.story-list-holder .story__image {
  width: 180px;
  height: 135px;
}
.story-list-holder .story__image a {
  position: relative;
}
.story-list-holder .story__image a::after {
  content: "";
  display: block;
  height: 0;
  padding-bottom: 75%;
  width: 100%;
}
.story-list-holder .story__image a:empty::after {
  background: #E5E5E5;
}
.story-list-holder .story__image img {
  position: absolute;
  width: 180px;
  height: 135px;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .story-list-holder .story__image {
    width: 90px;
    height: 68px;
  }
  .story-list-holder .story__image a::after {
    padding-bottom: 75.5555555556%;
  }
  .story-list-holder .story__image img {
    width: 90px;
    height: 68px;
  }
}
.story-list-holder .story__image img {
  width: 180px;
  height: 135px;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .story-list-holder .story__image img {
    width: 90px;
    height: 68px;
  }
}
.story-list-holder .story__content {
  position: relative;
  top: -3px;
  width: calc(100% - 180px);
  padding-left: 23px;
}
@media (max-width: 1023px) {
  .story-list-holder .story__content {
    top: 0;
  }
}
@media (max-width: 767px) {
  .story-list-holder .story__content {
    width: calc(100% - 90px);
    padding-left: 8px;
    top: 0;
  }
}
.story-list-holder .story__content a {
  margin-bottom: 5px;
}
@media (max-width: 1023px) {
  .story-list-holder .story__content a {
    margin-bottom: 0;
  }
}
.story-list-holder .story__headline {
  font-size: 25px;
  max-height: calc(1.5 * 2 * 1em);
  line-height: 1.5;
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .story-list-holder .story__headline {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .story-list-holder .story__headline {
    font-size: 20px;
    max-height: calc(1.4 * 2 * 1em);
    line-height: 1.4;
    display: inline-block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
.story-list-holder .story__text {
  font-size: 18px;
  color: #4D4D4D;
}
@media (max-width: 1023px) {
  .story-list-holder .story__text {
    display: none;
  }
}
@media (max-width: 1023px) {
  .story-list-holder .story__read-more {
    margin-bottom: 43px;
  }
}

.subscribe-page-paywall {
  display: none;
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 4;
}
.subscribe-page-paywall .countdown__wrapper {
  width: 305px;
  border-radius: 10px 10px 0 0;
  padding-top: 20px;
  padding-bottom: 30px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s;
}
.subscribe-page-paywall .countdown-active {
  opacity: 1;
  transform: translateY(28%);
}
.subscribe-page-paywall .countdown__text {
  margin-right: 0;
}
.subscribe-page-paywall .countdown__timer {
  margin-top: 8px;
}
.subscribe-page-paywall__box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.subscribe-page-paywall .paywall-box-wrapper {
  display: block;
}
.subscribe-page-paywall .paywall-box {
  position: relative;
}
@media (max-width: 1023px) {
  .subscribe-page-paywall .paywall-box {
    margin: 0;
  }
}
.subscribe-page-paywall .paywall-login {
  font-weight: 400;
  text-align: center;
  margin-top: 15px;
}
.subscribe-page-paywall .paywall-login a {
  color: #C4181F;
}

.noticeBox {
  font-size: 15px;
  width: 400px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 30px #333;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .noticeBox {
    font-size: 14px;
    width: 300px;
  }
}
.noticeBox__img {
  height: 152px;
}
.noticeBox__img img {
  height: 152px;
  font-family: "object-fit:cover";
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023px) {
  .noticeBox__img {
    height: 120px;
  }
  .noticeBox__img img {
    height: 120px;
  }
}
.noticeBox__wrap {
  padding: 25px 45px 20px;
}
@media (max-width: 1023px) {
  .noticeBox__wrap {
    padding: 20px 28px 20px;
  }
}
.noticeBox__text {
  line-height: 1.4;
  text-align: justify;
}
@media (max-width: 1023px) {
  .noticeBox__text {
    line-height: 1.5;
  }
}
.noticeBox__text h4, .noticeBox__text p {
  margin-bottom: 8px;
}
.noticeBox__text span {
  display: inline-block;
  font-weight: 700;
}
.noticeBox__btn {
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.noticeBox__btn .btn {
  cursor: pointer;
}
.noticeBox__btn--close {
  color: #ACACAC;
}
.noticeBox__btn--confirm {
  color: #C4181F;
}
.noticeBox--exclusive {
  display: none;
}
.noticeBox--exclusive .noticeBox__text {
  margin-bottom: 55px;
}
.noticeBox--special {
  display: none;
}
.noticeBox--special .noticeBox__img {
  position: relative;
}
.noticeBox--special .noticeBox__img::after {
  content: "";
  height: 70px;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0.01) 100%);
  height: 10px;
}
.noticeBox--special .noticeBox__text {
  margin-bottom: 16px;
}
.noticeBox--special .noticeBox__text b {
  font-weight: 700;
}
.noticeBox--special .countdown__wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 414px) {
  .noticeBox--special .countdown__wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.noticeBox--special .countdown__text {
  margin-right: 0;
}
.noticeBox--special .countdown__timer {
  margin-top: 10px;
}

.noticeBox-2 {
  display: none;
  font-size: 16px;
  width: 400px;
  height: 400px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 30px #333;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .noticeBox-2 {
    width: 300px;
  }
  .noticeBox-2img {
    height: 112px;
  }
}
.noticeBox-2__wrap {
  padding: 25px 20px 20px;
}
@media (max-width: 1023px) {
  .noticeBox-2__wrap {
    padding: 25px 20px 20px;
  }
}
.noticeBox-2__text {
  line-height: 1.6;
  margin-bottom: 55px;
}
@media (max-width: 1023px) {
  .noticeBox-2__text {
    margin-bottom: 70px;
  }
}
.noticeBox-2__text h4, .noticeBox-2__text p {
  margin-bottom: 5px;
}
.noticeBox-2__btn {
  font-weight: 400;
  display: flex;
  justify-content: flex-end;
}
.noticeBox-2__btn--confirm {
  color: #C4181F;
  cursor: pointer;
}

.noticeBox-3 {
  display: none;
  font-size: 16px;
  width: 400px;
  height: 400px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 30px #333;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}
@media (max-width: 1023px) {
  .noticeBox-3 {
    width: 300px;
  }
  .noticeBox-3img {
    height: 112px;
  }
}
.noticeBox-3__wrap {
  padding: 20px;
}
.noticeBox-3__text {
  line-height: 1.6;
  margin-bottom: 35px;
}
@media (max-width: 1023px) {
  .noticeBox-3__text {
    margin-bottom: 45px;
  }
}
.noticeBox-3__text h4, .noticeBox-3__text p {
  margin-bottom: 5px;
}
.noticeBox-3__btn {
  font-weight: 400;
  display: flex;
  justify-content: flex-end;
}
.noticeBox-3__btn .btn {
  color: #C4181F;
  cursor: pointer;
}
.noticeBox-3__btn--close {
  margin-right: 20px;
}

.noticeBox--class3 .original-price::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #C4181F;
  position: relative;
  top: 11px;
  left: -2px;
}

.notice-mask {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
}

.header {
  position: relative;
  z-index: 5;
}
.header .container {
  position: relative;
}
.header .container .tooltips::before {
  content: " ";
  position: absolute;
  left: 87px;
  bottom: 7px;
  border-top: none;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid #C4181F;
  z-index: 2;
}
@media (max-width: 1023px) {
  .header .container .tooltips::before {
    bottom: 12px;
  }
}
.header .container .tooltips::after {
  content: "歡慶周年";
  width: 76px;
  height: 25px;
  background-color: #C4181F;
  color: white;
  position: absolute;
  left: 56px;
  bottom: -17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 15px;
  box-shadow: 0px 1px 3px #858585;
  z-index: 1;
  opacity: 1;
  transition: opacity 5s;
  animation: changeContent 2s infinite;
}
@media (max-width: 1023px) {
  .header .container .tooltips::after {
    bottom: -12px;
  }
}
@keyframes changeContent {
  0% {
    content: "限時解鎖";
  }
  50% {
    content: "歡慶周年";
  }
  100% {
    content: "限時解鎖";
  }
}
@media (max-width: 1023px) {
  .header .header-ad {
    display: none;
  }
}

.header-menu-wrapper {
  border-bottom: 1px solid #DBDBDB;
  height: 121px;
}

.logo-tool-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 15px;
  padding-top: 30px;
}
.logo-tool-wrapper .btn-wrapper {
  line-height: 1.4;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  position: relative;
}
@media (max-width: 1023px) {
  .logo-tool-wrapper .btn-wrapper {
    position: inherit;
  }
}
.logo-tool-wrapper .btn-wrapper .btn-vip {
  font-size: 14px;
  padding: 0 7px;
}
.logo-tool-wrapper .btn-wrapper .icon-user,
.logo-tool-wrapper .btn-wrapper .icon-user-out {
  font-size: 22px;
  padding: 0;
  margin-left: 16px;
  position: relative;
  top: 3px;
}
.logo-tool-wrapper .btn-wrapper .icon-user:not(.btn--gold),
.logo-tool-wrapper .btn-wrapper .icon-user-out:not(.btn--gold) {
  color: black;
}
.logo-tool-wrapper .btn-wrapper .icon-user i::before,
.logo-tool-wrapper .btn-wrapper .icon-user-out i::before {
  margin: 0;
  font-weight: 600;
}

.money-logo {
  position: relative;
  width: 164px;
  flex-shrink: 1;
}
@media (max-width: 1023px) {
  .money-logo {
    width: 148px;
  }
}
.money-logo::before {
  content: "";
  padding-bottom: 25%;
  display: block;
}
.money-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.header-user__list {
  width: 110px;
  position: absolute;
  top: 26px;
  left: -5px;
  text-align: center;
  border: 1px solid #DBDBDB;
  box-shadow: 0px 2px 5px #C8C8C8;
  background: #F9F9F9;
  z-index: 2;
  padding: 0 5px;
  display: none;
}
@media (max-width: 1023px) {
  .header-user__list {
    width: 100%;
    top: 78px;
    left: 0;
    right: 0;
    border-top: 1px solid #DBDBDB;
    border-left: 0;
    border-right: 0;
    background: #fff;
    box-shadow: none;
  }
}
.header-user__list li:last-child {
  border-bottom: 0;
}
.header-user__item {
  border-bottom: 0;
}
@media (max-width: 1023px) {
  .header-user__item {
    border-bottom: 1px solid #DBDBDB;
  }
}
.header-user__item a {
  display: block;
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.5;
}

.user-list-show {
  display: block;
  z-index: 4;
}

.money-menu {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 18px;
  padding-bottom: 10px;
  position: relative;
  /* 讓 prev 按鈕可以在一開始先消失 */
}
.money-menu .sticky-logo {
  display: none;
  margin-left: calc(50% - 640px);
  margin-right: 8px;
  min-width: 34px;
  height: 34px;
}
@media (max-width: 1310px) {
  .money-menu .sticky-logo {
    margin-left: 0;
  }
}
.money-menu .swiper-container:not(.swiper-container-initialized) .slider-control {
  display: none;
}
@media (max-width: 1023px) {
  .money-menu .swiper-container .slider-control {
    display: none;
  }
}
.money-menu .swiper-wrapper {
  align-items: center;
}
.money-menu .swiper-slide {
  width: auto;
  margin-right: 12px;
  line-height: 24px;
  color: #2A2A2A;
}
.money-menu .swiper-slide.on {
  color: #C4181F;
}
.money-menu .swiper-slide:hover {
  color: #C4181F;
}
.money-menu .swiper-button-disabled {
  opacity: 0 !important;
}
.money-menu .swiper-button-next {
  box-shadow: -6px 2px 18px #fff;
  background-color: rgba(255, 255, 255, 0.85);
  background-image: none;
  color: #000;
  font-size: 12px;
}
.money-menu .swiper-button-prev {
  box-shadow: -6px 2px 18px #fff;
  background-color: rgba(255, 255, 255, 0.85);
  background-image: none;
  color: #000;
  font-size: 12px;
}
.money-menu .swiper-button-next::after,
.money-menu .swiper-button-prev::after {
  content: none;
}
.money-menu .swiper-button-next i::before {
  font-weight: 700;
}
.money-menu .swiper-button-prev i::before {
  font-weight: 700;
}
.money-menu .swiper-button-next {
  right: 0;
}
.money-menu .swiper-button-prev {
  left: -1px;
}
.money-menu .swiper-container-free-mode > .swiper-wrapper {
  align-items: center;
}
.money-menu .div-line {
  border-right: 2px solid #C4181F;
  width: 1px;
  height: 14px;
  margin-right: 7px;
  margin-top: 2px;
}
.money-menu .search-btn {
  font-size: 22px;
  line-height: 24px;
  padding: 0;
  margin-left: 10px;
  margin-right: calc(50% - 640px);
}
.money-menu .search-btn:not(.btn--gold) {
  color: black;
}
@media (max-width: 1310px) {
  .money-menu .search-btn {
    margin-right: 0;
  }
}
.money-menu .search-btn i::before {
  margin: 0;
  font-weight: 600;
}
.money-menu .search-btn .fixed-search-icon {
  display: none;
}

.fixed-menu .money-menu {
  border-bottom: 1px solid #dedede;
  position: fixed;
  top: 0;
  left: 0;
  height: 50px;
  background: #fff;
  width: 100%;
  z-index: 2;
  padding: 8px 15px;
}
.fixed-menu .money-menu .sticky-logo {
  display: block;
}
.fixed-menu .money-menu .i-money-list-search {
  display: none;
}
.fixed-menu .money-menu .fixed-search-icon {
  display: block;
  width: 22px;
  height: 16px;
}

.money-search {
  background-color: #fff;
  border-top: 1px solid #DBDBDB;
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-200vh);
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.money-search .close-btn {
  font-size: 20px;
  padding: 0;
}
.money-search .logo-tool-wrapper {
  align-items: center;
}
.money-search .money-search__wrapper {
  display: block;
  padding: 4% 200px;
}
@media (max-width: 1023px) {
  .money-search .money-search__wrapper {
    padding: 25px 30px 0;
  }
}
.money-search .money-search__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.money-search .money-search__footer {
  display: block;
}
.money-search.search-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 4;
}
@media (max-width: 1023px) {
  .money-search.search-active {
    height: 100vh;
    overflow: auto;
  }
}
.money-search__wrapper {
  border-bottom: 1px solid #DBDBDB;
  display: none;
}
.money-search .search__group {
  border-bottom: 1px solid #DBDBDB;
}
.money-search .search__input[type=text] {
  font-size: 16px;
}
@media (max-width: 1023px) {
  .money-search .search__input[type=text] {
    font-size: 18px;
  }
}
.money-search .search__btn {
  font-size: 18px;
  color: #707070;
}
.money-search__group {
  padding-left: 7px;
}
.money-search__group h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
}
.money-search__group h3::before {
  content: "";
  width: 2px;
  height: 16px;
  background-color: #C4181F;
  position: absolute;
  left: -7px;
  top: 5px;
}
.money-search__group--nav, .money-search__group--service {
  margin-bottom: 30px;
}
.money-search__list li {
  margin-right: 17px;
}
@media (max-width: 1023px) {
  .money-search__list li {
    margin-right: 0;
  }
}
.money-search__item {
  font-size: 16px;
  line-height: 1.5;
  color: #2A2A2A;
  width: auto;
  margin-bottom: 4px;
}
@media (max-width: 1023px) {
  .money-search__item {
    width: 50%;
  }
}
.money-search__item a:hover {
  text-decoration: underline;
}
.money-search__footer {
  padding-top: 2%;
  padding-bottom: 2%;
  font-size: 14px;
  display: none;
}
@media (max-width: 1023px) {
  .money-search__footer {
    padding-top: 9%;
    padding-bottom: 9%;
  }
}
.money-search__footer .footer-note__link {
  margin-bottom: 11px;
}

.breaking-news-container {
  margin-bottom: 35px;
  border-bottom: 1px solid #DBDBDB;
}
@media (max-width: 1023px) {
  .breaking-news-container {
    margin-bottom: 0;
  }
}

.breaking-news__list {
  display: flex;
  align-items: center;
  max-width: 970px;
}
.breaking-news__item {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 49%;
}
@media (max-width: 1023px) {
  .breaking-news__item {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .breaking-news__item:nth-child(2) {
    display: none;
  }
}
@media (max-width: 1023px) {
  .breaking-news__item {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.breaking-news__icon {
  margin-right: 5px;
}
.breaking-news__icon img {
  width: 22px;
  height: 22px;
}
.breaking-news__text {
  font-size: 16px;
  color: #C4181F;
  width: 90%;
}
@media (max-width: 1023px) {
  .breaking-news__text {
    width: 100%;
  }
}
.breaking-news__text a {
  max-height: calc(1.5 * 1 * 1em);
  line-height: 1.5;
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .breaking-news__text a {
    max-height: calc(1.5 * 2 * 1em);
    line-height: 1.5;
    display: inline-block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.breaking-news-empty-space {
  width: 100%;
  height: 35px;
}
@media (max-width: 1023px) {
  .breaking-news-empty-space {
    height: 0;
  }
}

.header--bg-dark {
  background: #2E2E2E;
}
.header--bg-dark .logo-tool-wrapper {
  margin-bottom: 20px;
  padding-top: 35px;
}
.header--bg-dark .logo-link-wrapper {
  display: flex;
  align-items: flex-end;
}
.header--bg-dark .vip-logo {
  width: 143px;
  height: 31px;
}
@media (max-width: 1023px) {
  .header--bg-dark .vip-logo {
    width: 126px;
    height: 27px;
  }
}
.header--bg-dark .vip-heading {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  margin-left: 10px;
}
.header--bg-dark .money-menu .swiper-slide {
  color: #fff;
}
.header--bg-dark .money-menu .swiper-slide:hover {
  color: #F7D67A;
}
.header--bg-dark .money-menu .i-money-list-search {
  display: block;
}
.header--bg-dark .swiper-button-next {
  box-shadow: -6px 2px 18px #2E2E2E;
  background-color: rgba(46, 46, 46, 0.85);
  color: #fff;
  font-size: 16px;
}
.header--bg-dark .swiper-button-prev {
  box-shadow: -6px 2px 18px #2E2E2E;
  background-color: rgba(46, 46, 46, 0.85);
  color: #fff;
  font-size: 16px;
}
.header--bg-dark .money-search {
  background: #2E2E2E;
  color: #fff;
}
.header--bg-dark .money-search__item {
  color: #fff;
}
.header--bg-dark .money-search__group h3::before {
  background-color: #F7D67A;
}
.header--bg-dark .money-search__group .hot-key__item {
  border: 0.5px solid #fff;
  color: #fff;
}
.header--bg-dark .money-search__group .hot-key__item a:hover {
  background-color: #fff;
  color: #000;
}
.header--bg-dark .search__input[type=text] {
  background: #2E2E2E;
  color: #ffffff;
}
.header--bg-dark .search__btn {
  color: #fff;
}
.header--bg-dark .header-user__list {
  background: #2E2E2E;
  color: #fff;
}
.header--bg-dark .footer--bg-dark {
  background: inherit;
}

.fixed-menu .header--bg-dark .money-menu {
  background: #2E2E2E;
}
.fixed-menu .header--bg-dark .money-menu .sticky-logo {
  margin-right: 0;
  min-width: 0;
  height: 0;
}

.bg--vip-orange {
  background: #FFF1E5;
}
@media (max-width: 1023px) {
  .bg--vip-orange {
    margin-bottom: 0;
  }
}

.footer {
  padding: 35px 0;
  background-color: #E5E5E5;
  text-align: center;
  font-size: 14px;
  position: relative;
}
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}
.footer-social__btn--circle {
  width: 28px;
  height: 28px;
  font-size: 15px;
  background-color: #505050;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.footer-social__btn--triangle img {
  border-radius: 4px;
  width: 77px;
  height: 26px;
}
.footer-social a:nth-last-of-type(3) {
  margin-right: 15px;
}
.footer-social a:nth-last-of-type(2) {
  margin-right: 10px;
}
@media (max-width: 1023px) {
  .footer-social {
    margin-bottom: 20px;
  }
}
.footer-note {
  text-align: center;
  margin-bottom: 5px;
}
.footer-note a {
  display: inline-block;
}
.footer-note a:hover {
  text-decoration: underline;
}
@media (max-width: 414px) {
  .footer-note__copyright {
    font-size: 12px;
  }
}
.footer-note__link {
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 20px;
  border-right: 1px solid #000;
}
.footer-note__link:last-child {
  border-right: 0;
}
@media (max-width: 1023px) {
  .footer-note__link {
    margin-bottom: 10px;
  }
}
@media (max-width: 1023px) {
  .footer-note {
    margin-bottom: 0;
  }
  .footer-note nav {
    margin-bottom: 10px;
  }
}
@media (max-width: 1023px) {
  .footer .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.footer--bg-dark {
  background: #000;
  color: #fff;
}
.footer--bg-dark .footer-social__btn--circle {
  background: #fff;
  color: #000;
}
.footer--bg-dark .footer-note__link {
  border-right: 1px solid #fff;
}
.footer--bg-dark .footer-note__link:last-child {
  border-right: 0;
}

.sitemap {
  background-color: #F2F2F2;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .sitemap {
    display: none;
  }
}
.sitemap .toggle-list__content {
  padding-top: 24px;
}
.sitemap__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sitemap__list dl {
  display: block;
}
.sitemap__list b {
  font-size: 12px;
  font-weight: 700;
  display: block;
  color: #555555;
  margin-top: 16px;
  margin-bottom: 16px;
}
.sitemap__list a:hover {
  text-decoration: underline;
}
.sitemap__list dd > a {
  display: block;
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
}
.sitemap__break-after {
  display: none;
}
@media (max-width: 1023px) {
  .sitemap__break-after {
    display: block;
    width: 100%;
  }
}

.sitemap--bg-dark {
  background-color: #262932;
  color: #fff;
}
.sitemap--bg-dark .sitemap__list b {
  color: #fff;
}
.sitemap--bg-dark .sitemap__list dd > a {
  display: block;
  font-size: 13px;
  line-height: 1.8;
  color: #fff;
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(44px / 44 * 27);
  height: 44px;
  margin-top: calc(-1 * 44px / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7d7d7d;
}

.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(44px / 44 * 27);
  height: 44px;
  margin-top: calc(-1 * 44px / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7d7d7d;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 44px;
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 44px;
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #7d7d7d;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #7d7d7d;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  font-family: "object-fit:contain";
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid #7d7d7d;
  border-radius: 50%;
  border-top-color: transparent;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*
 * DOM element rendering detection
 * https://davidwalsh.name/detect-node-insertion
 */
@keyframes chartjs-render-animation {
  from {
    opacity: 0.99;
  }
  to {
    opacity: 1;
  }
}
.chartjs-render-monitor {
  animation: chartjs-render-animation 0.001s;
}

/*
 * DOM element resizing detection
 * https://github.com/marcj/css-element-queries
 */
.chartjs-size-monitor,
.chartjs-size-monitor-expand,
.chartjs-size-monitor-shrink {
  position: absolute;
  direction: ltr;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  visibility: hidden;
  z-index: -1;
}

.chartjs-size-monitor-expand > div {
  position: absolute;
  width: 1000000px;
  height: 1000000px;
  left: 0;
  top: 0;
}

.chartjs-size-monitor-shrink > div {
  position: absolute;
  width: 200%;
  height: 200%;
  left: 0;
  top: 0;
}