/* Flex Item */
.navigator-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: content-box;
  height: 0.44rem;
  padding: 0.1rem 0.16rem;
  padding-bottom: 0;
}

.navigator-bar__left {
  display: inline-block;
  flex: 0 0 0.24rem;
  width: 0.24rem;
  max-width: 0.24rem;
  -webkit-box-flex: 0;
}

[dir="rtl"] .navigator-bar__left {
    transform: rotate(180deg);
}

.navigator-bar__title {
  display: inline-block;
  flex: 0 0 auto;
  width: auto;
  max-width: auto;
  -webkit-box-flex: 0;
  font-size: 0.16rem;
}

.navigator-bar__right {
  display: flex;
  display: inline-block;
  flex: 0 0 auto;
  width: auto;
  max-width: auto;
  -webkit-box-flex: 0;
}

.navigator-bar__right .bar-action {
  display: inline-block;
  flex: 0 0 0.4rem;
  width: 0.4rem;
  max-width: 0.4rem;
  -webkit-box-flex: 0;
  position: relative;
  height: 0.4rem;
}

.navigator-bar__right .bar-action img {
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  top: 50%;
}

[dir="ltr"] .navigator-bar__right .bar-action img {
  left: 50%;
  transform: translate(-50%, -50%);
}

[dir="rtl"] .navigator-bar__right .bar-action img {
  right: 50%;
  transform: translate(50%, -50%);
}

[dir="ltr"] .navigator-bar__right .bar-action:last-child {
  margin-right: 0;
}

[dir="rtl"] .navigator-bar__right .bar-action:last-child {
  margin-left: 0;
}

.navigator-bar--moved {
  background-color: white;
}

.navigator-bar--moved .navigator-bar__title {
  color: #000;
}

.outside-app .navigator-bar {
  padding-top: 0.6rem;
}

.inside-app.hidden-phone-status-bar.android .navigator-bar {
  padding-top: 0.36rem;
}

.inside-app.hidden-phone-status-bar.ios .navigator-bar {
  /* stylelint-disable-next-line */
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

#navigator-placeholder {
  position: absolute;
  top: 0;
  width: 100%;
  height: 0.55rem;
}

.kg-toast {
  position: fixed;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  width: 100%;
}

.kg-toast .loading-container {
  width: 0.8rem;
}

.kg-toast .container {
  position: absolute;
  top: 1.6rem;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 0.15rem 0.2rem;
  background-color: #000000;
  border-radius: 0.04rem;
}

.kg-toast .loading-icon {
  width: 0.18rem;
  height: 0.18rem;
  animation: loading-rotate 900ms linear infinite;
}

.kg-toast .icon {
  width: 0.14rem;
  height: 0.14rem;
}

.kg-toast .text {
  color: #fff;
  font-size: 0.16rem;
  line-height: 0.18rem;
  text-align: center;
  word-break: break-word;
}

@keyframes loading-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.wesing-image {
  display: block;
  line-height: 0;
}

.wesing-image--cover {
  width: 100%;
  max-height: 100%;
}

.wesing-image--contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.wesing-dialog .dialog-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  background: rgba(0, 0, 0, 0.6);
}

.wesing-dialog .dialog-mask .dialog-main {
  width: 3.11rem;
  margin: auto;
  padding: 0.28rem 0.2rem;
  color: rgba(0, 0, 0, 0.85);
  text-align: center;
  background: #fafafa;
  border-radius: 0.2rem;
}

.wesing-dialog .dialog-mask .dialog-main__header {
  margin-bottom: 0.2rem;
  font-weight: bold;
  font-size: 0.18rem;
}

.wesing-dialog .dialog-mask .dialog-main__body {
  margin-bottom: 0.2rem;
  font-size: 0.14rem;
}

.wesing-dialog .dialog-mask .dialog-main__footer {
  color: #532acc;
  font-weight: 500;
  font-size: 0.16rem;
}

.wesing-dialog .dialog-mask .dialog-main__footer .btn-item {
  height: 0.6rem;
  line-height: 0.6rem;
}

.wesing-dialog .dialog-mask .dialog-main__footer .btn-item:active {
  opacity: 0.7;
}

.wesing-dialog .dialog-mask .dialog-main div:last-child {
  margin-bottom: 0;
}

#common-top-bar {
  position: fixed;
  top: 0;
  z-index: 1500;
  width: 100%;
}

[dir="ltr"] #common-top-bar {
  left: 0;
}

[dir="rtl"] #common-top-bar {
  right: 0;
}

.Joox-top-bar {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 0.6rem;
  background-color: #1b1b1b;
}

.Joox-top-bar .top-bar__left {
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
}

[dir="ltr"] .Joox-top-bar .top-bar__left {
  left: 0.16rem;
}

[dir="rtl"] .Joox-top-bar .top-bar__left {
  right: 0.16rem;
}

.Joox-top-bar .top-bar__left img {
  width: 0.4rem;
  height: 0.4rem;
}

.Joox-top-bar .top-bar__content {
  position: absolute;
  height: 0.38rem;
  color: #fff;
}

[dir="ltr"] .Joox-top-bar .top-bar__content {
  left: 0.72rem;
}

[dir="rtl"] .Joox-top-bar .top-bar__content {
  right: 0.72rem;
}

.Joox-top-bar .top-bar__content__title {
  font-weight: 500;
  font-size: 0.16rem;
  font-family: JOOX;
  line-height: 0.2rem;
  letter-spacing: -0.0032rem;
}

.Joox-top-bar .top-bar__content__text {
  font-weight: 400;
  font-size: 0.12rem;
  font-family: JOOX;
  line-height: 0.18rem;
  letter-spacing: -0.0024rem;
  opacity: 0.5;
}

.Joox-top-bar .top-bar__right {
  position: absolute;
  color: black;
}

[dir="ltr"] .Joox-top-bar .top-bar__right {
  right: 0.16rem;
}

[dir="rtl"] .Joox-top-bar .top-bar__right {
  left: 0.16rem;
}

.Joox-top-bar .top-bar__right .Joox-btn {
  width: 0.7rem;
  height: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 1000;
  font-size: 0.12rem;
  font-family: JOOX;
  background-color: #09de6e;
  border-radius: 0.44rem;
}

.kg-bg {
  top: 0;
  z-index: -999;
  width: 100%;
  min-width: 0.01rem;
  min-height: 0.01rem;
}

[dir="ltr"] .kg-bg {
  left: 0;
}

[dir="rtl"] .kg-bg {
  right: 0;
}

.kg-bg .mod_pic {
  display: block;
  width: 100%;
}

.wesing-text {
  white-space: pre-wrap;
}

/**
 * Swiper 11.1.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 9, 2024
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, 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');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: ease;
  transition-timing-function: initial;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

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

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

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

.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

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

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 12rem;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 12rem;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

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

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

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

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

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-left: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 0.01rem;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-top: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 0.01rem;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

[dir="ltr"] .swiper-3d .swiper-slide-shadow,
[dir="ltr"] .swiper-3d .swiper-slide-shadow-left,
[dir="ltr"] .swiper-3d .swiper-slide-shadow-right,
[dir="ltr"] .swiper-3d .swiper-slide-shadow-top,
[dir="ltr"] .swiper-3d .swiper-slide-shadow-bottom,
[dir="ltr"] .swiper-3d .swiper-slide-shadow,
[dir="ltr"] .swiper-3d .swiper-slide-shadow-left,
[dir="ltr"] .swiper-3d .swiper-slide-shadow-right,
[dir="ltr"] .swiper-3d .swiper-slide-shadow-top,
[dir="ltr"] .swiper-3d .swiper-slide-shadow-bottom {
  left: 0;
}

[dir="rtl"] .swiper-3d .swiper-slide-shadow,
[dir="rtl"] .swiper-3d .swiper-slide-shadow-left,
[dir="rtl"] .swiper-3d .swiper-slide-shadow-right,
[dir="rtl"] .swiper-3d .swiper-slide-shadow-top,
[dir="rtl"] .swiper-3d .swiper-slide-shadow-bottom,
[dir="rtl"] .swiper-3d .swiper-slide-shadow,
[dir="rtl"] .swiper-3d .swiper-slide-shadow-left,
[dir="rtl"] .swiper-3d .swiper-slide-shadow-right,
[dir="rtl"] .swiper-3d .swiper-slide-shadow-top,
[dir="rtl"] .swiper-3d .swiper-slide-shadow-bottom {
  right: 0;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

[dir="ltr"] .swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

[dir="rtl"] .swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

[dir="ltr"] .swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

[dir="rtl"] .swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

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

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

.swiper-lazy-preloader {
  width: 0.42rem;
  height: 0.42rem;
  position: absolute;
  top: 50%;
  margin-top: -0.21rem;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 0.04rem solid #007aff;
  border: 0.04rem solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

[dir="ltr"] .swiper-lazy-preloader {
  left: 50%;
  margin-left: -0.21rem;
}

[dir="rtl"] .swiper-lazy-preloader {
  right: 50%;
  margin-right: -0.21rem;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

/* stylelint-disable */
.joox-ranking-inventory {
  width: 100%;
  overflow: hidden;
  letter-spacing: 0.005rem;
}

.joox-ranking-inventory.theme-style-1 .swiper {
  width: 100%;
  /* slide 宽度小于容器，配合 centeredSlides 露出左右相邻模块 */
}

.joox-ranking-inventory.theme-style-1 .swiper .slide {
  width: 2.1rem;
  height: 2.915rem;
  /* transform / opacity 由 JS 按 progress 动态设置；
          这里仅声明过渡属性，时长由 Swiper 过渡回调控制 */
  transition-property: transform, opacity;
  transition-timing-function: ease;
}

.joox-ranking-inventory.theme-style-1 .swiper .slide .module {
  display: flex;
  justify-content: center;
  height: 100%;
  position: relative;
}

.joox-ranking-inventory.theme-style-1 .swiper .slide .module .avata {
  width: 1.82rem;
  height: 1.82rem;
  position: absolute;
  top: 0;
  z-index: 10;
  border-radius: 0.1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.joox-ranking-inventory.theme-style-1 .swiper .slide .module .content {
  width: 100%;
  height: 2.82rem;
  align-self: flex-end;
  border-radius: 0.1rem;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .title {
  position: absolute;
  top: 1.83rem;
  font-family: LINE Seed TW_TTF;
  font-weight: 700;
  font-size: 0.2rem;
  color: #000000;
  max-width: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[dir="ltr"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .title {
  left: 0.13rem;
}

[dir="rtl"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .title {
  right: 0.13rem;
}

.joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .subtitle {
  position: absolute;
  top: 2.08rem;
  font-family: Afacad;
  font-weight: 400;
  font-size: 0.12rem;
  color: #000000;
  max-width: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[dir="ltr"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .subtitle {
  left: 0.13rem;
}

[dir="rtl"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .subtitle {
  right: 0.13rem;
}

.joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .text {
  position: absolute;
  top: 1.8rem;
  font-family: Akrobat;
  font-weight: 900;
  font-size: 0.235rem;
  color: #7e91b6;
}

[dir="ltr"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .text {
  right: 0.13rem;
}

[dir="rtl"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .text {
  left: 0.13rem;
}

.joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .subtext {
  position: absolute;
  top: 2.09rem;
  font-family: LINE Seed TW_TTF;
  font-weight: 400;
  font-size: 0.0779rem;
  color: rgba(0, 0, 0, 0.9);
}

[dir="ltr"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .subtext {
  right: 0.13rem;
}

[dir="rtl"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .subtext {
  left: 0.13rem;
}

.joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .but {
  width: 1.805rem;
  height: 0.31rem;
  position: absolute;
  top: 2.335rem;
  border-radius: 0.3rem;
  background: #12ff69;
  display: flex;
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .but {
  left: 50%;
  transform: translate(-50%, 0);
}

[dir="rtl"] .joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .but {
  right: 50%;
  transform: translate(50%, 0);
}

.joox-ranking-inventory.theme-style-1 .swiper .slide .module .content .but .but-text {
  font-family: LINE Seed TW_TTF;
  font-weight: 700;
  font-size: 0.13rem;
  line-height: 112%;
  color: #000000;
}

.joox-ranking-inventory.theme-style-2 .swiper {
  width: 100%;
}

.joox-ranking-inventory.theme-style-2 .swiper .slide {
  width: 2.1rem;
  height: 2.855rem;
  transition-property: transform, opacity;
  transition-timing-function: ease;
}

.joox-ranking-inventory.theme-style-2 .swiper .slide .module {
  display: flex;
  justify-content: center;
  height: 100%;
  position: relative;
}

.joox-ranking-inventory.theme-style-2 .swiper .slide .module .avata {
  width: 100%;
  height: 1.345rem;
  position: absolute;
  top: 0.2rem;
  z-index: 10;
  -o-object-fit: contain;
     object-fit: contain;
}

[dir="ltr"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .avata {
  left: 50%;
  transform: translate(-50%, 0);
}

[dir="rtl"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .avata {
  right: 50%;
  transform: translate(50%, 0);
}

.joox-ranking-inventory.theme-style-2 .swiper .slide .module .content {
  width: 100%;
  height: 100%;
  border-radius: 0.15rem;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

.joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .title {
  position: absolute;
  top: 1.83rem;
  font-family: LINE Seed TW_TTF;
  font-weight: 700;
  font-size: 0.2rem;
  color: #000000;
  max-width: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[dir="ltr"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .title {
  left: 0.13rem;
}

[dir="rtl"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .title {
  right: 0.13rem;
}

.joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .subtitle {
  position: absolute;
  top: 1.97rem;
  font-family: Afacad;
  font-weight: 400;
  font-size: 0.12rem;
  color: #000000;
  max-width: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[dir="ltr"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .subtitle {
  left: 0.13rem;
}

[dir="rtl"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .subtitle {
  right: 0.13rem;
}

.joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .text {
  position: absolute;
  top: 1.8rem;
  font-family: Akrobat;
  font-weight: 900;
  font-size: 0.235rem;
  color: #7e91b6;
}

[dir="ltr"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .text {
  right: 0.13rem;
}

[dir="rtl"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .text {
  left: 0.13rem;
}

.joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .subtext {
  position: absolute;
  top: 2.09rem;
  font-family: LINE Seed TW_TTF;
  font-weight: 400;
  font-size: 0.0779rem;
  color: rgba(0, 0, 0, 0.9);
}

[dir="ltr"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .subtext {
  right: 0.13rem;
}

[dir="rtl"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .subtext {
  left: 0.13rem;
}

.joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .but {
  width: 1.805rem;
  height: 0.31rem;
  position: absolute;
  top: 2.335rem;
  border-radius: 0.3rem;
  background: #12ff69;
  display: flex;
  align-items: center;
  justify-content: center;
}

[dir="ltr"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .but {
  left: 50%;
  transform: translate(-50%, 0);
}

[dir="rtl"] .joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .but {
  right: 50%;
  transform: translate(50%, 0);
}

.joox-ranking-inventory.theme-style-2 .swiper .slide .module .content .but .but-text {
  font-family: LINE Seed TW_TTF;
  font-weight: 700;
  font-size: 0.13rem;
  line-height: 112%;
  color: #000000;
}

/* stylelint-disable */
.joox-share-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  line-height: normal;
}

.joox-share-modal-mask .joox-share-modal-page {
  position: relative;
  width: 5.46rem;
  height: 8.45rem;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  transform: scale(0.5);
  letter-spacing: 0.005rem;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page {
  transform-origin: left top;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page {
  transform-origin: right top;
}

.joox-share-modal-mask .joox-share-modal-page .avatar-1 {
  position: absolute;
  width: 4.2rem;
  height: 4.2rem;
  top: 0.45rem;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .avatar-1 {
  left: 50%;
  transform: translateX(-50%);
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .avatar-1 {
  right: 50%;
  transform: translateX(50%);
}

.joox-share-modal-mask .joox-share-modal-page .avatar-2 {
  position: absolute;
  width: 4.57rem;
  height: 2.92rem;
  top: 0.955rem;
  -o-object-fit: contain;
     object-fit: contain;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .avatar-2 {
  left: 50%;
  transform: translateX(-50%);
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .avatar-2 {
  right: 50%;
  transform: translateX(50%);
}

.joox-share-modal-mask .joox-share-modal-page .title {
  position: absolute;
  max-width: 3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .title {
  left: 0.37rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .title {
  right: 0.37rem;
}

.joox-share-modal-mask .joox-share-modal-page .subtitle {
  position: absolute;
  max-width: 3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .subtitle {
  left: 0.37rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .subtitle {
  right: 0.37rem;
}

.joox-share-modal-mask .joox-share-modal-page .text {
  position: absolute;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .text {
  right: 0.37rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .text {
  left: 0.37rem;
}

.joox-share-modal-mask .joox-share-modal-page .subtext {
  position: absolute;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .subtext {
  right: 0.37rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .subtext {
  left: 0.37rem;
}

.joox-share-modal-mask .joox-share-modal-page .imgTitle {
  width: 4.5rem;
  height: 0.54rem;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 6.5rem;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .imgTitle {
  -o-object-position: left;
     object-position: left;
  left: 0.37rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .imgTitle {
  -o-object-position: right;
     object-position: right;
  right: 0.37rem;
}

.joox-share-modal-mask .joox-share-modal-page .masterTitleWrap {
  position: absolute;
  top: 7.2rem;
  width: 100%;
  height: 0.69rem;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.joox-share-modal-mask .joox-share-modal-page .masterTitle {
  font-family: LINE Seed TW_TTF;
  font-weight: 700;
  font-size: 0.4rem;
  color: #fff;
  margin-top: 0.05rem;
  max-width: 3.8rem;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .masterTitle {
  margin-left: 0.37rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .masterTitle {
  margin-right: 0.37rem;
}

.joox-share-modal-mask .joox-share-modal-page .search {
  position: absolute;
  height: 0.28rem;
  top: 7.93rem;
  border-radius: 0.2737rem;
  display: flex;
  align-items: center;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .search {
  left: 0.27rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .search {
  right: 0.27rem;
}

.joox-share-modal-mask .joox-share-modal-page .search-icon {
  width: 0.35rem;
  height: 0.1rem;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .search-icon {
  margin-left: 0.15rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .search-icon {
  margin-right: 0.15rem;
}

.joox-share-modal-mask .joox-share-modal-page .search-text {
  height: 0.22rem;
  font-family: LINE Seed TW_TTF;
  font-weight: 400;
  display: flex;
  align-items: center;
  font-size: 0.12rem;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .search-text {
  border-top-right-radius: 0.2737rem;
  border-bottom-right-radius: 0.2737rem;
  margin-left: 0.115rem;
  margin-right: 0.03rem;
  padding-right: 0.175rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .search-text {
  border-top-left-radius: 0.2737rem;
  border-bottom-left-radius: 0.2737rem;
  margin-right: 0.115rem;
  margin-left: 0.03rem;
  padding-left: 0.175rem;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .search-text-svg {
  margin-left: 0.13rem;
  margin-right: 0.055rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .search-text-svg {
  margin-right: 0.13rem;
  margin-left: 0.055rem;
}

.joox-share-modal-mask .joox-share-modal-page .qrcode {
  width: 0.74rem;
  height: 0.74rem;
  position: absolute;
  bottom: 0.38rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

[dir="ltr"] .joox-share-modal-mask .joox-share-modal-page .qrcode {
  right: 0.38rem;
}

[dir="rtl"] .joox-share-modal-mask .joox-share-modal-page .qrcode {
  left: 0.38rem;
}

.horizontal-slide-container {
  width: 100%;
  overflow: hidden;
}

.horizontal-slide-container .horizontal-slide-wrapper {
  display: flex;
  align-items: flex-start;
  padding: 0 0.16rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* 隐藏滚动条 */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.horizontal-slide-container .horizontal-slide-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}

.album-card {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.1rem;
  align-items: flex-start;
  width: var(--item-width);
}

[dir="ltr"] .album-card {
  margin-right: var(--gap);
}

[dir="rtl"] .album-card {
  margin-left: var(--gap);
}

[dir="ltr"] .album-card:last-child {
  margin-right: 0;
}

[dir="rtl"] .album-card:last-child {
  margin-left: 0;
}

.album-card .album-card-image-container {
  position: relative;
  width: 100%;
  height: var(--item-height);
}

.album-card .album-card-image-container .album-card-image-container-inner {
  width: 100%;
  height: 100%;
}

.album-card .album-card-image-container .album-card-image-container-inner .album-card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}

.album-card .album-card-image-container .album-card-shadow {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 27%;
  padding: 0 0.03rem;
  background-color: transparent;
  border-radius: var(--border-radius);
}

[dir="ltr"] .album-card .album-card-image-container .album-card-shadow {
  left: 0;
}

[dir="rtl"] .album-card .album-card-image-container .album-card-shadow {
  right: 0;
}

.album-card .album-card-image-container .album-card-shadow .album-card-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.28rem;
  height: 0.28rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.album-card .album-card-image-container .album-card-shadow .album-card-play-button:hover {
  transform: scale(1.1);
}

.album-card .album-card-image-container .album-card-shadow .album-card-play-button .album-card-play-icon {
  width: 0.28rem;
  height: 0.28rem;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.album-card .album-card-image-container .album-card-shadow .album-card-play-button .album-card-play-icon:hover {
  opacity: 1;
}

.album-card .album-card-text {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  color: var(--text-color);
  font-weight: var(--text-font-weight);
  font-size: var(--text-font-size);
  font-family: JOOX;
  line-height: normal;
  /* 超过2行文本溢出省略号 */
  word-break: break-word;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.artist-card {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  width: 1.07rem;
  height: 1.42rem;
  padding-top: 0.15rem;
  background-color: var(--artist-card-background-color);
  border-radius: var(--artist-card-radius);
}

[dir="ltr"] .artist-card {
  margin-right: var(--gap);
}

[dir="rtl"] .artist-card {
  margin-left: var(--gap);
}

[dir="ltr"] .artist-card:last-child {
  margin-right: 0;
}

[dir="rtl"] .artist-card:last-child {
  margin-left: 0;
}

.artist-card .artist-card-image-container {
  position: relative;
  width: var(--item-width);
  height: var(--item-height);
}

.artist-card .artist-card-image-container .artist-card-image-container-inner {
  width: 100%;
  height: 100%;
}

.artist-card .artist-card-image-container .artist-card-image-container-inner .artist-card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.015rem solid var(--artist-card-border-color);
  border-radius: var(--border-radius);
}

.artist-card .artist-card-text {
  max-width: 100%;
  margin: 0.09rem 0;
  overflow: hidden;
  color: var(--text-color);
  font-weight: var(--text-font-weight);
  font-size: var(--text-font-size);
  font-family: JOOX;
  line-height: normal;
  /* 超过单行文本溢出省略号 */
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
}

.artist-card-follow-button {
  display: flex;
  gap: 0.04rem;
  align-items: center;
  justify-content: center;
  width: 0.83rem;
  height: 0.24rem;
  font-weight: var(--text-font-weight);
  background-color: var(--button-color);
  border-radius: 0.12rem;
}

.artist-card-follow-button .artist-card-follow-button-icon {
  width: 0.07rem;
  height: 0.07rem;
}

.artist-card-follow-button .artist-card-follow-button-text {
  color: var(--text-color);
  font-size: var(--text-font-size);
}

.playlist-card {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.1rem;
  align-items: flex-start;
  width: var(--item-width);
}

[dir="ltr"] .playlist-card {
  margin-right: var(--gap);
}

[dir="rtl"] .playlist-card {
  margin-left: var(--gap);
}

[dir="ltr"] .playlist-card:last-child {
  margin-right: 0;
}

[dir="rtl"] .playlist-card:last-child {
  margin-left: 0;
}

.playlist-card .playlist-card-image-container {
  position: relative;
  width: 100%;
  height: var(--item-height);
}

.playlist-card .playlist-card-image-container .playlist-card-image-container-inner {
  width: 100%;
  height: 100%;
}

.playlist-card .playlist-card-image-container .playlist-card-image-container-inner .playlist-card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}

.playlist-card .playlist-card-image-container .playlist-card-shadow {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 27%;
  padding: 0 0.03rem;
  background-color: transparent;
  border-radius: var(--border-radius);
}

[dir="ltr"] .playlist-card .playlist-card-image-container .playlist-card-shadow {
  left: 0;
}

[dir="rtl"] .playlist-card .playlist-card-image-container .playlist-card-shadow {
  right: 0;
}

.playlist-card .playlist-card-image-container .playlist-card-shadow .playlist-card-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.28rem;
  height: 0.28rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.playlist-card .playlist-card-image-container .playlist-card-shadow .playlist-card-play-button:hover {
  transform: scale(1.1);
}

.playlist-card .playlist-card-image-container .playlist-card-shadow .playlist-card-play-button .playlist-card-play-icon {
  width: 0.28rem;
  height: 0.28rem;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.playlist-card .playlist-card-image-container .playlist-card-shadow .playlist-card-play-button .playlist-card-play-icon:hover {
  opacity: 1;
}

.playlist-card .playlist-card-text {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  color: var(--text-color);
  font-weight: var(--text-font-weight);
  font-size: var(--text-font-size);
  font-family: JOOX;
  line-height: normal;
  /* 超过2行文本溢出省略号 */
  word-break: break-word;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.single-song-card {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 0.1rem;
  align-items: flex-start;
  width: var(--item-width);
}

[dir="ltr"] .single-song-card {
  margin-right: var(--gap);
}

[dir="rtl"] .single-song-card {
  margin-left: var(--gap);
}

[dir="ltr"] .single-song-card:last-child {
  margin-right: 0;
}

[dir="rtl"] .single-song-card:last-child {
  margin-left: 0;
}

.single-song-card .single-song-card-image-container {
  position: relative;
  width: 100%;
  height: var(--item-height);
}

.single-song-card .single-song-card-image-container .single-song-card-image-container-inner {
  width: 100%;
  height: 100%;
}

.single-song-card .single-song-card-image-container .single-song-card-image-container-inner .single-song-card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}

.single-song-card .single-song-card-image-container .single-song-card-shadow {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 27%;
  padding: 0 0.03rem;
  background-color: transparent;
  border-radius: var(--border-radius);
}

[dir="ltr"] .single-song-card .single-song-card-image-container .single-song-card-shadow {
  left: 0;
}

[dir="rtl"] .single-song-card .single-song-card-image-container .single-song-card-shadow {
  right: 0;
}

.single-song-card .single-song-card-image-container .single-song-card-shadow .single-song-card-play-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.28rem;
  height: 0.28rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.single-song-card .single-song-card-image-container .single-song-card-shadow .single-song-card-play-button:hover {
  transform: scale(1.1);
}

.single-song-card .single-song-card-image-container .single-song-card-shadow .single-song-card-play-button .single-song-card-play-icon {
  width: 0.28rem;
  height: 0.28rem;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.single-song-card .single-song-card-image-container .single-song-card-shadow .single-song-card-play-button .single-song-card-play-icon:hover {
  opacity: 1;
}

.single-song-card .single-song-card-text {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  color: var(--text-color);
  font-weight: var(--text-font-weight);
  font-size: var(--text-font-size);
  font-family: JOOX;
  line-height: normal;
  /* 超过2行文本溢出省略号 */
  word-break: break-word;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video-card {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  width: var(--item-width);
}

[dir="ltr"] .video-card {
  margin-right: var(--gap);
}

[dir="rtl"] .video-card {
  margin-left: var(--gap);
}

[dir="ltr"] .video-card:last-child {
  margin-right: 0;
}

[dir="rtl"] .video-card:last-child {
  margin-left: 0;
}

.video-card .video-card-image-container {
  position: relative;
  width: 100%;
  height: var(--item-height);
}

.video-card .video-card-image-container .video-card-image-container-inner {
  width: 100%;
  height: 100%;
}

.video-card .video-card-image-container .video-card-image-container-inner .video-card-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}

.video-card .video-card-image-container .video-card-play-button {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

[dir="ltr"] .video-card .video-card-image-container .video-card-play-button {
  left: 50%;
  transform: translate(-50%, -50%);
}

[dir="rtl"] .video-card .video-card-image-container .video-card-play-button {
  right: 50%;
  transform: translate(50%, -50%);
}

.video-card .video-card-image-container .video-card-play-button .video-card-play-icon {
  width: 0.2rem;
  height: 0.2rem;
  opacity: 0.9;
  filter: brightness(0) invert(1);
}

.video-card .video-card-image-container .video-card-play-button .video-card-play-icon:hover {
  opacity: 1;
}

.video-card .video-card-text {
  max-width: 100%;
  margin: 0.04rem 0 0;
  overflow: hidden;
  color: var(--text-color);
  font-weight: var(--text-font-weight);
  font-size: var(--text-font-size);
  line-height: 1.4;
  /* 超过单行文本溢出省略号 */
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
}

.video-card .video-card-ext-text {
  max-width: 100%;
  margin: 0.04rem 0 0;
  overflow: hidden;
  color: var(--text-color);
  font-weight: var(--text-font-weight);
  font-size: var(--text-font-size);
  line-height: 1.4;
  /* 超过单行文本溢出省略号 */
  white-space: nowrap;
  text-align: center;
  text-overflow: ellipsis;
}

input,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button:focus,
input:focus,
textarea:focus {
  outline: 0;
}

a,
a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-weight: inherit;
  font-size: 100%;
  font-family: inherit;
  line-height: inherit;
}

svg:not(:root) {
  overflow: visible !important;
}

.comment-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.comment-section__open-btn {
  width: auto;
  margin: 0.16rem;
  padding: 0.12rem 0;
  font-weight: 600;
  font-size: 0.16rem;
  font-family: JOOX;
  text-align: center;
  border-radius: 0.24rem;
}

.comment-section__open-btn:active {
  opacity: 0.8;
}

.comment-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.16rem 0;
  padding: 0 0.16rem;
}

.comment-section__title {
  color: #fff;
  font-weight: 900;
  font-size: 0.16rem;
  font-family: JOOX;
}

.comment-section__order {
  display: flex;
  align-items: center;
}

.comment-section__order-text {
  color: #fff;
  font-size: 0.14rem;
  font-family: JOOX;
  opacity: 0.5;
}

.comment-section__order-text.active {
  font-weight: 900;
  opacity: 1;
}

.comment-section__order-divide {
  width: 0.01rem;
  height: 0.13rem;
  margin: 0 0.08rem;
  background-color: rgba(255, 255, 255, 0.4);
}

.comment-section__loading-tip {
  flex: 1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.13rem;
  font-family: JOOX;
  text-align: center;
}

.comment-section__list-wrap {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.comment-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-section__no-comment {
  margin: 0.12rem 0 0.42rem;
  color: #fff;
  text-align: center;
}

.comment-section__item {
  display: flex;
  align-items: flex-start;
  height: 100%;
  margin-bottom: 0.15rem;
}

.comment-section__avatar {
  width: 0.4rem;
  height: 0.4rem;
}

[dir="ltr"] .comment-section__avatar {
  margin-right: 0.12rem;
}

[dir="rtl"] .comment-section__avatar {
  margin-left: 0.12rem;
}

.comment-section__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.comment-section__content {
  flex: 1;
  word-wrap: break-word;
}

[dir="ltr"] .comment-section__content {
  margin-right: 0.14rem;
}

[dir="rtl"] .comment-section__content {
  margin-left: 0.14rem;
}

.comment-section__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0.4rem;
  padding: 0.025rem 0;
}

.comment-section__header {
  display: flex;
  align-items: center;
}

.comment-section__header .comment-section__username {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  font-size: 0.12rem;
  font-family: JOOX;
  line-height: 0.15rem;
}

[dir="ltr"] .comment-section__header .comment-section__username {
  margin-right: 0.05rem;
}

[dir="rtl"] .comment-section__header .comment-section__username {
  margin-left: 0.05rem;
}

.comment-section__header .comment-section__badge {
  display: inline-flex;
  width: 0.12rem;
  height: 0.12rem;
}

.comment-section__text {
  color: #fff;
  font-size: 0.13rem;
}

.comment-section__footer {
  display: flex;
  align-items: center;
  margin-top: 0.045rem;
}

.comment-section__footer .comment-section__time {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  font-size: 0.1rem;
  font-family: JOOX;
  font-style: normal;
}

.comment-section__footer .comment-section__reply {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.1rem;
  font-family: JOOX;
  /* 150% */
}

[dir="ltr"] .comment-section__footer .comment-section__reply {
  margin-left: 0.06rem;
}

[dir="rtl"] .comment-section__footer .comment-section__reply {
  margin-right: 0.06rem;
}

.comment-section__footer .comment-section__reply strong {
  color: #fff;
}

.comment-section .comment-section__more-comments {
  margin-top: 0.04rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.12rem;
  font-family: JOOX;
}

.comment-section__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 0.3rem;
  height: 0.4rem;
}

.comment-section__sidebar .comment-section__like-icon {
  display: flex;
  align-items: center;
  width: 0.21rem;
  height: 0.21rem;
  color: #fff;
}

.comment-section__sidebar .comment-section__likes-text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.1rem;
  font-family: JOOX;
  font-style: normal;
}

.comment-section__sidebar .comment-section__likes-text--like {
  color: #09de6e;
}

.comment-section__view-more {
  display: inline-flex;
  align-items: center;
  height: 0.3rem;
  margin: 0 auto;
  padding: 0 0.12rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.4);
  border-radius: 0.5rem;
}

.comment-section__view-more .comment-section__text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 0.14rem;
  font-family: JOOX;
  font-style: normal;
}

.comment-section__arrow-down {
  position: relative;
  width: 0.12rem;
  height: 0.12rem;
}

[dir="ltr"] .comment-section__arrow-down {
  margin-left: 0.06rem;
}

[dir="rtl"] .comment-section__arrow-down {
  margin-right: 0.06rem;
}

.comment-section__arrow-down::after {
  position: absolute;
  top: 50%;
  width: 0.08rem;
  height: 0.08rem;
  border: solid rgba(255, 255, 255, 0.6);
  transform-origin: center;
  content: '';
}

[dir="ltr"] .comment-section__arrow-down::after {
  left: 50%;
  border-width: 0 0 0.02rem 0.02rem;
  transform: translate(-50%, -50%) rotate(-45deg);
}

[dir="rtl"] .comment-section__arrow-down::after {
  right: 50%;
  border-width: 0 0.02rem 0.02rem 0;
  transform: translate(50%, -50%) rotate(45deg);
}

.comment-input {
  position: relative;
  margin: 0 0.16rem 0.16rem;
  padding: 0.12rem;
  /* 默认底部内边距 */
  line-height: 0;
  /* 关键:不为0会导致高度与实际子元素撑开的高度不一致 */
  border-radius: 0.12rem;
  transition: all 0.2s ease;
  /* 添加过渡效果 */
  /* 当获得焦点且有输入内容时增加底部内边距 */
  /* 设置 placeholder 颜色 */
}

.comment-input__overlay {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.comment-input.show-bottom {
  padding-bottom: 0.41rem;
}

.comment-input__content {
  box-sizing: border-box;
  width: 100%;
  color: white;
  font-size: 0.14rem;
  line-height: 0.21rem;
  border: none;
  resize: none;
}

.comment-input__content.scroll {
  overflow-y: auto;
}

.comment-input__content::-moz-placeholder {
  color: var(--placeholder-color) !important;
}

.comment-input__content::placeholder {
  color: var(--placeholder-color) !important;
}

.comment-input__lineTop,
.comment-input__lineBottom {
  position: absolute;
  width: calc(100% - (0.12rem * 2));
  height: 0.21rem;
  transition: opacity 0.5s ease;
  /* 添加过渡效果 */
  pointer-events: none;
}

.comment-input__lineTop {
  top: 0.12rem;
}

.comment-input__lineBottom {
  bottom: 0.41rem;
}

.comment-input__bottom-num {
  position: absolute;
  bottom: 0.12rem;
  display: flex;
  align-items: center;
  height: 0.25rem;
  /* 固定高度 */
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.12rem;
  border-radius: 0.04rem;
  pointer-events: none;
}

[dir="ltr"] .comment-input__bottom-num {
  left: 0.12rem;
}

[dir="rtl"] .comment-input__bottom-num {
  right: 0.12rem;
}

.comment-input__send-button {
  position: absolute;
  bottom: 0.12rem;
  width: 0.45rem;
  height: 0.25rem;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

[dir="ltr"] .comment-input__send-button {
  right: 0.12rem;
}

[dir="rtl"] .comment-input__send-button {
  left: 0.12rem;
}

.comment-input__send-button img {
  width: 0.45rem;
  height: 0.25rem;
}

.virtual-comment-list-container {
  position: relative;
  flex: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.virtual-comment-list-container--static {
  flex: none;
  height: auto;
  overflow: visible;
}

.virtual-comment-list {
  width: 100%;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.virtual-comment-list::-webkit-scrollbar {
  display: none;
}

.virtual-comment-item {
  box-sizing: border-box;
}

.virtual-comment-list__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.12rem 0;
}

.virtual-comment-list__tip {
  padding: 0.12rem 0;
  font-size: 0.13rem;
  font-family: JOOX;
  text-align: center;
}

.virtual-comment-list__tip--clickable {
  cursor: pointer;
}

.virtual-comment-list__tip--clickable:active {
  opacity: 0.7;
}

.virtual-comment-list__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.13rem;
  font-family: JOOX;
}

.comment-one {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: 0.64rem;
  padding: 0.16rem;
}

.comment-one__background {
  position: absolute;
  top: 0.07rem;
  z-index: 0;
  width: 1.16rem;
  height: 0.32rem;
  pointer-events: none;
}

[dir="ltr"] .comment-one__background {
  right: 0;
}

[dir="rtl"] .comment-one__background {
  left: 0;
}

.comment-one__background-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.comment-one__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.comment-one__main {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.comment-one__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.08rem;
}

.comment-one__meta {
  display: flex;
  align-items: center;
}

.comment-one__time {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  font-size: 0.1rem;
  font-family: JOOX;
  line-height: 0.15rem;
}

.comment-one .comment-content__header {
  display: flex;
  align-items: center;
  margin-bottom: 0.08rem;
}

.comment-one .comment-content__username {
  color: #fff;
  font-weight: 500;
  font-size: 0.12rem;
  font-family: JOOX;
  line-height: 0.16rem;
}

[dir="ltr"] .comment-one .comment-content__username {
  margin-right: 0.05rem;
}

[dir="rtl"] .comment-one .comment-content__username {
  margin-left: 0.05rem;
}

.comment-one .comment-content__username.vip {
  color: #f3cc7d;
}

.comment-one .comment-content__text {
  color: #fff;
  font-weight: 400;
  font-size: 0.13rem;
  font-family: JOOX;
  line-height: 0.16rem;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
}

.joox-avatar-container {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 0.53rem;
  height: 0.53rem;
}

[dir="ltr"] .joox-avatar-container {
  margin-right: 0.075rem;
}

[dir="rtl"] .joox-avatar-container {
  margin-left: 0.075rem;
}

.joox-avatar-container .joox-avatar-ornament {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.joox-avatar {
  width: 0.36rem;
  height: 0.36rem;
}

.joox-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

/* Flex Item */
.wesing-avatar {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
  line-height: 0;
}

.wesing-avatar .avatar-main {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 0;
}

.wesing-avatar .avatar-main::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.02);
  content: ' ';
}

.wesing-avatar--square .avatar-main {
  border-radius: 0.1rem;
}

.wesing-avatar--circular .avatar-main {
  border-radius: 50%;
}

.comment-badge {
  display: inline-flex;
  width: 0.12rem;
  height: 0.12rem;
}

[dir="ltr"] .comment-badge {
  margin-right: 0.04rem;
}

[dir="rtl"] .comment-badge {
  margin-left: 0.04rem;
}

.comment-badge.vip {
  width: 0.16rem;
  height: 0.16rem;
}

.likes-sidebar {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  gap: 0.06rem;
  align-items: center;
  justify-content: flex-end;
}

[dir="ltr"] .likes-sidebar {
  margin-left: auto;
  padding-left: 0.1rem;
}

[dir="rtl"] .likes-sidebar {
  margin-right: auto;
  padding-right: 0.1rem;
}

.likes-sidebar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.16rem;
  height: 0.16rem;
  color: #fff;
}

.likes-sidebar__text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.11rem;
  font-family: JOOX;
  font-style: normal;
  line-height: 0.15rem;
}

.likes-sidebar__text--like {
  color: #09de6e;
}

