@charset "UTF-8";
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/*
 * 富文本初始化
 */
/* 全局样式变量 */
:root {
  --sk-font-Light: "";
  --sk-font-Regular: "MiSans Normal";
  --sk-font-Medium: "MiSans Medium";
  --sk-font-Bold: "MiSans Demibold";
  --sk-font-SemiBold: "";
  --sk-font-Num: "";
  --headH: 1.04rem;
  --footH: 0.8rem;
  /* 以下颜色根据设计稿的不同来设置 */
  --sk-global-color: #0068B7; /* -------------- 主题色 ---------------*/
  --fcolor-default: #000000; /* -------------- 字体默认色 ---------------*/
  --fcolor-black: #000000;
  --fz-h1: .56rem; /* -------------- 一级标题字号 ---------------*/
  --fz-h2: .48rem; /* -------------- 一级标题字号 ---------------*/
  --fz-context: .28rem; /* -------------- 正文字号 ------------------*/
  --lh-h1: .56rem; /* -------------- 一级标题行高 ---------------*/
  --lh-h2: .56rem; /* -------------- 二级标题行高 ---------------*/
  --lh-context: .56rem; /* -------------- 正文行高 -------------------*/
  /* 层级 */
  --sk-zIndex-1: 1; /* --------------页面元素层级 --*/
  --sk-zIndex-2: 2; /* --------------页面元素层级 --*/
  --sk-zIndex-3: 3; /* --------------页面元素层级 --*/
  --sk-zIndex-10: 10; /* --------------页面元素层级 --*/
  --sk-zIndex-100: 100; /* --------------头部导航层级 --*/
  --sk-zIndex-999: 999; /* --------------弹窗层级 ------*/
  --sk-zIndex-1000: 1000;
}

@media screen and (max-width: 800px) {
  :root {
    --headH: 2rem;
    --footH: 2.32rem;
  }
}
@-webkit-keyframes fadeInUpSmall {
  from {
    -webkit-transform: translate3d(0, 0.4rem, 0);
            transform: translate3d(0, 0.4rem, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInUpSmall {
  from {
    -webkit-transform: translate3d(0, 0.4rem, 0);
            transform: translate3d(0, 0.4rem, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@media screen and (min-width: 800px) {
  .fadeInUpSmall {
    opacity: 0;
    -webkit-animation-name: fadeInUpSmall;
            animation-name: fadeInUpSmall;
  }
}
@media screen and (max-width: 800px) {
  .fadeInUpSmall {
    visibility: visible !important;
  }
}

.svg-ctx {
  object-fit: contain;
}
.svg-ctx path {
  fill: currentColor;
}
.svg-ctx ellipse {
  stroke: currentColor;
}

.svg-stroke {
  object-fit: contain;
}
.svg-stroke path {
  stroke: currentColor;
}
.svg-stroke ellipse {
  stroke: currentColor;
}

.fit-image {
  position: relative;
  width: 100%;
  padding-top: calc((0.5625) * 100%);
}
.fit-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.-background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
.-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topA {
  cursor: pointer;
  position: fixed;
  z-index: 9;
  right: 0.3rem;
  bottom: 0.6rem;
  border-radius: 50%;
  width: 0.48rem;
  height: 0.48rem;
  opacity: 0;
  visibility: hidden;
  background: url(../image/target/base/demoImg/topA.svg) center center no-repeat;
  background-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.topA.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 800px) {
  .topA {
    right: 0.42rem;
    bottom: 1.2rem;
    width: 0.64rem;
    height: 0.64rem;
  }
}

.blocker {
  z-index: 100 !important;
}

.modal {
  width: 100% !important;
  max-width: 11rem !important;
  padding: 0 !important;
  box-shadow: none !important;
  background-color: transparent !important;
}

.modal-video .video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.modal-video .video-container > video,
.modal-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-video .video-container iframe html body video {
  width: 100% !important;
  height: 100% !important;
}

.-scroll {
  max-height: 1.2rem;
  overflow: auto;
}
.-scroll::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #666666;
}
.-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #666666;
}
.-scroll::-webkit-scrollbar-width {
  width: 0.08rem;
}
.-scroll::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: none;
}
@media screen and (max-width: 800px) {
  .-scroll {
    max-height: 2.4rem;
  }
}

.sk_select {
  --h: .48rem;
  position: relative;
  width: 1.8rem;
}
.sk_select.-full {
  width: 100%;
}
.sk_select.on {
  z-index: 2;
}
.sk_select.on .-select-front::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk_select .-select-front {
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.12rem 0.2rem;
  height: var(--h);
  background: white;
  border-radius: 0.08rem;
}
.sk_select .-select-front input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.sk_select .-select-front input {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  pointer-events: none;
  width: 100%;
  font-size: 0.16rem;
}
.sk_select .-select-front::after {
  content: "";
  width: 0.16rem;
  height: 0.16rem;
  background: url(../image/target/base/selectDown.svg) center center no-repeat;
  background-size: contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: -0.1rem;
  left: 0;
  box-shadow: 0px 0px 0.2rem 0px rgba(218, 218, 218, 0.25);
  -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
          transform: translate(0, 100%);
  overflow: hidden;
}
.sk_select .-select-layer .-inner {
  background-color: white;
  border-radius: 0.08rem;
  padding: 0.16rem 0.04rem 0.21rem 0.22rem;
}
.sk_select .-select-layer .-inner dl dd {
  cursor: pointer;
  margin-top: 0.12rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--sk-font-Medium);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sk_select .-select-layer .-inner dl dd:first-child {
  margin-top: 0;
}
.sk_select .-select-layer .-inner dl dd:hover {
  color: #000;
}
@media screen and (max-width: 800px) {
  .sk_select {
    --h: .9rem;
    width: 100%;
  }
  .sk_select .-select-front {
    padding: 0.33rem 0.2rem 0.33rem 0.3rem;
    height: var(--h);
  }
  .sk_select .-select-front input {
    font-size: 0.26rem;
  }
  .sk_select .-select-front::after {
    width: 0.32rem;
    height: 0.32rem;
  }
  .sk_select .-select-layer .-inner {
    border-radius: 0.08rem;
    padding: 0.24rem 0.2rem 0.3rem 0.24rem;
  }
  .sk_select .-select-layer .-inner dl dd {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}

.-sk-nav {
  position: -webkit-sticky;
  position: sticky;
  top: var(--headH);
  border-bottom: 0.01rem solid #E8E8E8;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.15rem);
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.-sk-nav.-top0 {
  top: 0;
}
.-sk-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 0.6rem;
}
.-sk-nav ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.64rem;
}
.-sk-nav ul li:last-child {
  margin-right: 0;
}
.-sk-nav ul li.on a {
  color: #000;
  font-family: var(--sk-font-Bold);
}
.-sk-nav ul li.on a::before {
  opacity: 1;
  visibility: visible;
}
.-sk-nav ul li a {
  position: relative;
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0.18rem 0;
}
.-sk-nav ul li a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -0.01rem;
  width: 100%;
  height: 0.01rem;
  background: -webkit-linear-gradient(left, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
  background: linear-gradient(to right, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 800px) {
  .-sk-nav ul li a:hover {
    color: #000000;
  }
}
@media screen and (max-width: 800px) {
  .-sk-nav ul {
    position: relative;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 1rem;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 0 0.4rem;
  }
  .-sk-nav ul li {
    margin-right: 0.7rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .-sk-nav ul li a {
    position: relative;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.24rem;
    line-height: 0.24rem;
    padding: 0.38rem 0;
  }
  .-sk-nav ul li a::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0rem;
    width: 100%;
    height: 2px;
    background: -webkit-linear-gradient(left, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
    background: linear-gradient(to right, #0052E3 0%, #00BEF2 50%, #54EBBA 100%);
    opacity: 0;
    visibility: hidden;
  }
}

.sk-list {
  --count: 1;
  --gapX: .32rem;
  --gapY: .32rem;
  --width: calc((100% - var(--gapX) * var(--count)) / var(--count));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: calc(-1 * var(--gapY) / 2) calc(-1 * var(--gapX) / 2);
}
.sk-list .sk-item {
  width: var(--width);
  margin: calc(var(--gapY) / 2) calc(var(--gapX) / 2);
}

.sk-swiper {
  overflow: hidden;
}
.sk-swiper .sk-swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.sk-swiper .sk-dots {
  margin-top: 0.32rem;
  margin-bottom: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sk-swiper .sk-dots.swiper-pagination-bullets span {
  width: 0.08rem;
  height: 0.08rem;
  margin-right: 0.05rem;
  border-radius: 50%;
  background-color: #00BEF2;
  opacity: 0.5;
}
.sk-swiper .sk-dots.swiper-pagination-bullets span.swiper-pagination-bullet-active {
  opacity: 1;
}
.sk-swiper .sk-dots.swiper-pagination-bullets span:last-child {
  margin-right: 0;
}
.sk-swiper .sk-dots.swiper-pagination-progressbar {
  position: relative;
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
}
.sk-swiper .sk-dots.swiper-pagination-progressbar span {
  background: #00BEF2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
.sk-swiper .sk-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.32rem;
}
.sk-swiper .sk-arrow .prev, .sk-swiper .sk-arrow .next {
  cursor: pointer;
  font-size: 0.2rem;
  color: #000000;
}
.sk-swiper .sk-arrow .prev {
  margin-right: 0.12rem;
}

/* 集合属性（主题样式） */
body.show a,
body.show .transition,
body.show :before,
body.show img {
  -webkit-transition: All 0.3s ease;
  transition: All 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100px;
  overflow-x: hidden;
}

body {
  font-family: var(--sk-font-Regular);
  font-size: 12px;
  color: var(--fcolor-default);
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  background-color: white;
}
body.show {
  opacity: 1;
}

a {
  color: var(--fcolor-default);
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
a:active {
  star: expression(this.onFocus=this.blur());
}
a:link {
  text-decoration: none;
  outline: none;
}
a:visited {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
  outline: none;
}

li {
  list-style: outside none;
}

li {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  font-family: var(--sk-font-Bold);
}

textarea,
input {
  background: transparent;
  color: var(--fcolor-default);
  outline: none;
  border: 0;
  font-family: var(--sk-font-Regular);
}

img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
  object-fit: cover;
}

.demo-page {
  padding-bottom: 3rem;
}
.demo-page .bg-gray {
  background-color: #f5f5f5;
}
.demo-page .bg-wihte {
  background-color: #ffffff;
}
.demo-page img, .demo-page video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo-page .page-main {
  overflow: hidden;
}
.demo-page .page-main .wal {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.demo-page .page-main .wal .-container {
  margin-top: 0.64rem;
}
.demo-page .page-main .wal .-container:first-child {
  margin-top: 0;
}
.demo-page .page-main .wal .-container .-title {
  font-size: 0.28rem;
}
.demo-page .page-main .wal .-container .-body {
  padding: 0.2rem;
  border-radius: 0.08rem;
  margin-top: 0.32rem;
}
.demo-page .page-main .wal .-container .-body.nopading {
  padding: 0;
}

.wal {
  max-width: 13.28rem;
  width: 100%;
  margin: 0 auto;
}

.wal-88 {
  max-width: 8.8rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1700px) {
  body {
    font-size: 16px;
  }
  html {
    font-size: 94px;
  }
}
@media screen and (max-width: 1440px) {
  body {
    font-size: 14px;
  }
  html {
    font-size: 82px;
  }
  .wal,
  .wal-88 {
    width: 92%;
    max-width: initial;
  }
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 74px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 68px;
  }
}
@media screen and (max-width: 1100px) {
  html {
    font-size: 64px;
  }
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 70px;
  }
}
@media screen and (min-width: 800px) {
  .pc-show {
    display: block;
  }
  .phone-show {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 72px;
  }
  .wal,
  .wal-88 {
    width: 100%;
    padding: 0 0.32rem;
  }
  .phone-show {
    display: block;
  }
  .pc-show {
    display: none !important;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 62px;
  }
}
@media screen and (max-width: 320px) {
  html {
    font-size: 50px;
  }
}
.vditor {
  --toolbar-icon-color: #000;
  --toolbar-icon-hover-color: #0068B7;
}

.vditor-emojis {
  width: 210px;
}

.vditor-emojis__tip {
  display: none;
}

.vditor-wysiwyg pre.vditor-reset:focus {
  background-color: #fff;
}

.vditor-wysiwyg > .vditor-reset > h1:before,
.vditor-wysiwyg > .vditor-reset > h2:before,
.vditor-wysiwyg > .vditor-reset > h3:before,
.vditor-wysiwyg > .vditor-reset > h4:before,
.vditor-wysiwyg > .vditor-reset > h5:before,
.vditor-wysiwyg > .vditor-reset > h6:before,
.vditor-wysiwyg div.vditor-wysiwyg__block:before,
.vditor-wysiwyg div[data-type=link-ref-defs-block]:before,
.vditor-wysiwyg div[data-type=footnotes-block]:before,
.vditor-wysiwyg .vditor-toc:before {
  font-size: 0.12rem;
}

.vditor-wysiwyg > .vditor-reset ol li {
  list-style: decimal;
}
.vditor-wysiwyg > .vditor-reset ul li {
  list-style: disc;
}

.vditor-ir pre.vditor-reset:focus {
  background-color: #fff;
}

.vditor-ir > .vditor-reset > h1:before,
.vditor-ir > .vditor-reset > h2:before,
.vditor-ir > .vditor-reset > h3:before,
.vditor-ir > .vditor-reset > h4:before,
.vditor-ir > .vditor-reset > h5:before,
.vditor-ir > .vditor-reset > h6:before,
.vditor-ir div.vditor-ir__block:before,
.vditor-ir div[data-type=link-ref-defs-block]:before,
.vditor-ir div[data-type=footnotes-block]:before,
.vditor-ir .vditor-toc:before {
  font-size: 0.12rem;
}

.vditor-ir > .vditor-reset ol li {
  list-style: decimal;
}
.vditor-ir > .vditor-reset ul li {
  list-style: disc;
}

.vditor-sv:focus {
  background-color: #fff;
}

.vditor-preview {
  background-color: #fff;
}

.vditor-preview__action {
  background-color: #fff;
}

.vditor-toolbar__item {
  padding: 0 0.01rem;
}
.vditor-toolbar__item svg {
  pointer-events: none;
}

.vditor--fullscreen {
  padding-top: 0.71rem;
}

.vditor--fullscreen .vditor-toolbar--pin {
  top: 0;
}

.vditor-toolbar__item .vditor-tooltipped {
  width: 0.24rem;
  height: 0.56rem;
  padding: 0.16rem 0;
}

.vditor-tooltipped.hide-tooltip::before,
.vditor-tooltipped.hide-tooltip::after {
  display: none !important;
}

.vditor-toolbar__item svg {
  width: 0.16rem;
  height: 0.16rem;
}

.vditor-toolbar__divider {
  height: 0.24rem;
  margin-top: 0.16rem;
}

.vditor-reset img {
  display: block;
  margin: 0 auto;
}

.vditor-reset a {
  color: #0068B7;
  text-decoration: underline;
}

.vditor-reset {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Regular);
}

.vditor-reset p {
  margin-bottom: 0.16rem;
}
.vditor-reset ol li {
  list-style: decimal;
}
.vditor-reset ul li {
  list-style: disc;
}

.vditor-reset ul,
.vditor-reset ol {
  margin-bottom: 0.16rem;
}

.vditor-reset h1,
.vditor-reset h2 {
  border-bottom: 0.01rem solid #eaecef;
}

.vditor-reset h1,
.vditor-reset h2,
.vditor-reset h3,
.vditor-reset h4,
.vditor-reset h5,
.vditor-reset h6 {
  margin-top: 0.24rem;
  margin-bottom: 0.16rem;
}

.vditor-reset blockquote {
  margin: 0 0 0.16rem 0;
}

.vditor-reset code:not(.hljs):not(.highlight-chroma) {
  border-radius: 0.03rem;
  background-size: 0.2rem 0.2rem;
}

.vditor-reset pre > code {
  border-radius: 0.05rem;
  background-size: 0.2rem 0.2rem;
}

.vditor-task input {
  font-size: 0.12rem;
}

.vditor-reset table {
  margin-bottom: 0.16rem;
}

.vditor-wysiwyg div[data-type=footnotes-block] {
  border-top: 0.02rem solid var(--heading-border-color);
  padding-top: 0.24rem;
  margin-top: 0.24rem;
}

.vditor-reset iframe.iframe__video {
  display: block;
  margin: 0 auto;
}

.footnotes-defs-div li {
  scroll-margin-top: 30vh;
}

.vditor-panel [data-type=up],
.vditor-panel [data-type=down],
.vditor-panel [data-type=remove] {
  display: none;
}

.vditor-panel.popover-table [data-type=remove] {
  display: block;
}

.vditor-panel.popover-a > span .vditor-input {
  width: 1rem !important;
}

.comments_area_vditor .vditor-reset p,
.reply_area_vditor .vditor-reset p,
.notifications-page .vditor-reset p {
  margin-bottom: 0;
}
.comments_area_vditor .vditor-reset img,
.comments_area_vditor .vditor-reset svg,
.reply_area_vditor .vditor-reset img,
.reply_area_vditor .vditor-reset svg,
.notifications-page .vditor-reset img,
.notifications-page .vditor-reset svg {
  display: inline-block;
  max-width: 1.44rem;
  max-height: 1.44rem;
  margin: 0.16rem;
}
@media screen and (max-width: 800px) {
  .comments_area_vditor .vditor-reset img,
  .comments_area_vditor .vditor-reset svg,
  .reply_area_vditor .vditor-reset img,
  .reply_area_vditor .vditor-reset svg,
  .notifications-page .vditor-reset img,
  .notifications-page .vditor-reset svg {
    max-width: 1.92rem;
    max-height: 1.92rem;
    margin: 0.32rem 0.16rem;
  }
}
.comments_area_vditor .vditor-panel,
.reply_area_vditor .vditor-panel,
.notifications-page .vditor-panel {
  overflow: hidden;
}

#NewComment.noactive .vditor-content .vditor-panel {
  display: none !important;
}

.vditor-hint {
  max-height: 3rem;
  overflow-y: auto;
}
.vditor-hint::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.vditor-hint::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.vditor-hint::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.vditor-hint::-webkit-scrollbar-width {
  width: 0.04rem;
}
.vditor-hint::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}

.vditor-img {
  z-index: 202;
}

@media screen and (max-width: 800px) {
  .vditor-wysiwyg > .vditor-reset > h1:before,
  .vditor-wysiwyg > .vditor-reset > h2:before,
  .vditor-wysiwyg > .vditor-reset > h3:before,
  .vditor-wysiwyg > .vditor-reset > h4:before,
  .vditor-wysiwyg > .vditor-reset > h5:before,
  .vditor-wysiwyg > .vditor-reset > h6:before,
  .vditor-wysiwyg div.vditor-wysiwyg__block:before,
  .vditor-wysiwyg div[data-type=link-ref-defs-block]:before,
  .vditor-wysiwyg div[data-type=footnotes-block]:before,
  .vditor-wysiwyg .vditor-toc:before {
    display: none;
  }
  .vditor-ir > .vditor-reset > h1:before,
  .vditor-ir > .vditor-reset > h2:before,
  .vditor-ir > .vditor-reset > h3:before,
  .vditor-ir > .vditor-reset > h4:before,
  .vditor-ir > .vditor-reset > h5:before,
  .vditor-ir > .vditor-reset > h6:before,
  .vditor-ir div.vditor-ir__block:before,
  .vditor-ir div[data-type=link-ref-defs-block]:before,
  .vditor-ir div[data-type=footnotes-block]:before,
  .vditor-ir .vditor-toc:before {
    display: none;
  }
  .vditor-toolbar__item {
    padding: 0 0.06rem;
  }
  .vditor-toolbar__item:nth-last-child(2) {
    float: right;
  }
  .vditor-toolbar__item .vditor-tooltipped {
    width: 0.48rem;
    height: 1.12rem;
    padding: 0.32rem 0;
  }
  .vditor-toolbar__item svg {
    width: 0.32rem;
    height: 0.32rem;
  }
  .vditor-toolbar__divider {
    height: 0.48rem;
    margin-top: 0.32rem;
  }
  .vditor-tooltipped::before {
    display: none !important;
  }
  .vditor-tooltipped::after {
    display: none !important;
  }
  .vditor-reset {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .vditor--fullscreen {
    padding-top: 0.88rem;
  }
  .vditor-reset ul,
  .vditor-reset ol {
    margin-bottom: 0.32rem;
  }
  .vditor-reset h1,
  .vditor-reset h2 {
    border-bottom: 0.02rem solid #eaecef;
  }
  .vditor-reset h1,
  .vditor-reset h2,
  .vditor-reset h3,
  .vditor-reset h4,
  .vditor-reset h5,
  .vditor-reset h6 {
    margin-top: 0.48rem;
    margin-bottom: 0.32rem;
  }
  .vditor-reset blockquote {
    margin: 0 0 0.32rem 0;
  }
  .vditor-reset code:not(.hljs):not(.highlight-chroma) {
    border-radius: 0.06rem;
    background-size: 0.4rem 0.4rem;
  }
  .vditor-reset pre > code {
    border-radius: 0.1rem;
    background-size: 0.4rem 0.4rem;
  }
  .vditor-task input {
    font-size: 0.24rem;
  }
  .vditor-reset table {
    margin-bottom: 0.32rem;
  }
  .vditor-wysiwyg div[data-type=footnotes-block] {
    border-top: 0.04rem solid var(--heading-border-color);
    padding-top: 0.48rem;
    margin-top: 0.48rem;
  }
  .vditor-reset iframe.iframe__video {
    display: block;
    margin: 0 auto;
    min-width: 100%;
    min-height: 24vh;
  }
  .vditor-panel.popover-a > span .vditor-input {
    width: 2rem !important;
  }
}
.g-header {
  height: 0.72rem;
}
@media screen and (max-width: 800px) {
  .g-header {
    height: 0.88rem;
  }
}
.g-header .g-head {
  height: 0.72rem;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .g-header .g-head {
    height: 0.88rem;
  }
}
.g-header .g-head .g-head-main {
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  display: none;
}
.g-header .g-head .g-head-main.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .left-logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head .g-head-main .left-logo .logo-box {
  height: 0.48rem;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .left-logo .logo-box {
    height: 0.64rem;
  }
}
.g-header .g-head .g-head-main .left-logo .logo-box .img {
  height: 100%;
}
.g-header .g-head .g-head-main .left-logo .title {
  margin-left: 0.16rem;
  padding-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #fff;
  border-left: 0.01rem solid rgba(255, 255, 255, 0.6);
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .left-logo .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin-left: 0.24rem;
    padding-left: 0.24rem;
  }
}
.g-header .g-head .g-head-main .search-box {
  height: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6.56rem;
  display: none;
}
.g-header .g-head .g-head-main .search-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .search-box .input-box {
  width: 100%;
  height: 0.4rem;
  position: relative;
}
.g-header .g-head .g-head-main .search-box .input-box input {
  font-size: 0.14rem;
  height: 100%;
  width: 100%;
  border-radius: 0.2rem;
  background-color: #fff;
  padding-left: 0.16rem;
  padding-right: 0.5rem;
  caret-color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .search-box .input-box input::-webkit-input-placeholder {
  color: #666666;
}
.g-header .g-head .g-head-main .search-box .input-box input::-moz-placeholder {
  color: #666666;
}
.g-header .g-head .g-head-main .search-box .input-box input:-ms-input-placeholder {
  color: #666666;
}
.g-header .g-head .g-head-main .search-box .input-box input::placeholder {
  color: #666666;
}
.g-header .g-head .g-head-main .search-box .input-box .magnifier {
  position: absolute;
  top: 50%;
  right: 0.02rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.36rem;
  width: 0.36rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.g-header .g-head .g-head-main .search-box .input-box .magnifier .svg {
  width: 0.24rem;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box {
  position: absolute;
  left: 0;
  top: calc(100% + 0.08rem);
  width: 100%;
  border-radius: 0.08rem;
  background-color: #fff;
  box-shadow: 0 0.02rem 0.12rem 0 rgba(0, 0, 0, 0.1);
  height: 0;
  overflow: hidden;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as {
  padding: 0.16rem;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box {
  margin-bottom: 0.24rem;
  position: relative;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box:last-child {
  margin-bottom: 0;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .tit {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #000000;
  font-family: var(--sk-font-Bold);
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .del {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .del .svg {
  width: 0.24rem;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .hot-box {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.08rem;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .hot-box .hot-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.08rem 0.12rem 0.08rem 0.08rem;
  border-radius: 0.04rem;
  background-color: #F7F9FA;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .hot-box .hot-card .hot-img {
  height: 0.24rem;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .hot-box .hot-card .name {
  color: #000;
  font-size: 0.14rem;
  line-height: 0.24rem;
  padding-left: 0.08rem;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .search-history {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .search-history .history-a {
  margin-bottom: 0.08rem;
  color: #333333;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .search-box .input-box .sw_as-box .sw_as .item-box .search-history .history-a:last-child {
  margin-bottom: 0;
}
.g-header .g-head .g-head-main .right-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head .g-head-main .right-box .search-svg-box {
  display: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.g-header .g-head .g-head-main .right-box .search-svg-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .right-box .search-svg-box .svg-box {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-header .g-head .g-head-main .right-box .search-svg-box .svg-box .svg {
  width: 0.48rem;
}
.g-header .g-head .g-head-main .right-box .lang-box {
  display: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .lang-box {
    margin-left: 0.16rem;
  }
}
.g-header .g-head .g-head-main .right-box .lang-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .right-box .lang-box .svg-box {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .lang-box .svg-box {
    width: 0.72rem;
    height: 0.72rem;
  }
}
.g-header .g-head .g-head-main .right-box .lang-box .svg-box .svg {
  width: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .lang-box .svg-box .svg {
    width: 0.48rem;
  }
}
.g-header .g-head .g-head-main .right-box .lang-box .layui-box {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 0.08rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .lang-box .layui-box {
    padding-top: 0;
    top: 90%;
    left: auto;
    right: 0;
    -webkit-transform: translateX(0.96rem);
        -ms-transform: translateX(0.96rem);
            transform: translateX(0.96rem);
  }
}
.g-header .g-head .g-head-main .right-box .lang-box .layui-box.show {
  display: block;
}
.g-header .g-head .g-head-main .right-box .lang-box .layui-box .lang-list {
  background: #FFFFFF;
  padding: 0.08rem 0;
  border-radius: 0.08rem;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .lang-box .layui-box .lang-list {
    border-radius: 0.16rem;
    padding: 0.16rem 0;
  }
}
.g-header .g-head .g-head-main .right-box .lang-box .layui-box .lang-list .lang-cell {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 1.68rem;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .lang-box .layui-box .lang-list .lang-cell {
    min-width: 3.36rem;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.g-header .g-head .g-head-main .right-box .lang-box .layui-box .lang-list .lang-cell:hover {
  background: #F7F9FA;
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .right-box .lang-box:hover .svg-box {
  background: #0095D8;
}
.g-header .g-head .g-head-main .right-box .logout-box {
  display: none;
  margin-left: 0.1rem;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .logout-box {
    margin-left: 0.16rem;
  }
}
.g-header .g-head .g-head-main .right-box .logout-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .right-box .logout-box .svg-box {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .logout-box .svg-box {
    width: 0.72rem;
    height: 0.72rem;
  }
}
.g-header .g-head .g-head-main .right-box .logout-box .svg-box .svg {
  width: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .logout-box .svg-box .svg {
    width: 0.48rem;
  }
}
.g-header .g-head .g-head-main .right-box .logout-box:hover .svg-box {
  background: #0095D8;
}
.g-header .g-head .g-head-main .right-box .logout-box .layui-box {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 0.08rem;
  right: -0.16rem;
}
.g-header .g-head .g-head-main .right-box .logout-box .layui-box.show {
  display: block;
}
.g-header .g-head .g-head-main .right-box .logout-box .layui-box .lang-list {
  background: #FFFFFF;
  padding: 0.08rem 0;
  border-radius: 0.08rem;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .logout-box .layui-box .lang-list {
    border-radius: 0.16rem;
    padding: 0.16rem 0;
  }
}
.g-header .g-head .g-head-main .right-box .logout-box .layui-box .lang-list .lang-cell {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 1.68rem;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .logout-box .layui-box .lang-list .lang-cell {
    min-width: 3.36rem;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.g-header .g-head .g-head-main .right-box .logout-box .layui-box .lang-list .lang-cell:hover {
  background: #F7F9FA;
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .right-box .clone-box {
  border-radius: 0.08rem;
  height: 0.4rem;
  width: 0.4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.01rem solid #D9D9D9;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .clone-box {
    height: 0.64rem;
    width: 0.64rem;
    border-radius: 0.16rem;
  }
}
.g-header .g-head .g-head-main .right-box .clone-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .right-box .clone-box .svg {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .g-header .g-head .g-head-main .right-box .clone-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.g-header .g-head .return-box {
  height: 100%;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head .return-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .return-box .return-img {
  height: 0.48rem;
  width: 0.48rem;
}
.g-header .g-head .return-box .return-img .svg {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .g-header .g-head-phone {
    height: 0.88rem;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--sk-global-color);
  }
  .g-header .g-head-phone .g-head-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .g-header .g-head-phone .g-head-main .left-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g-header .g-head-phone .g-head-main .left-logo .logo-box img {
    height: 0.64rem;
  }
  .g-header .g-head-phone .g-head-main .left-logo .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-Bold);
    color: #fff;
    margin-left: 0.24rem;
    padding-left: 0.24rem;
    border-left: 0.01rem solid rgba(255, 255, 255, 0.1);
  }
  .g-header .g-head-phone .g-head-main .right-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .g-header .g-head-phone .g-head-main .right-box .search-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head-phone .g-head-main .right-box .lang-box {
    margin-left: 0.48rem;
  }
  .g-header .g-head-phone .g-head-main .right-box .lang-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head-phone .g-head-main .right-box .logout-box {
    margin-left: 0.48rem;
  }
  .g-header .g-head-phone .g-head-main .right-box .logout-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
}

.post-card__body {
  border-radius: 0.08rem;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .post-card__body {
    border-radius: 0;
    background-color: transparent;
  }
}
.post-card__body .top-filter-box {
  padding: 0.16rem 0.24rem 0.16rem 0.16rem;
  border-bottom: 0.01rem solid #D9D9D9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box {
    padding: 0.16rem 0.32rem;
    border-bottom: none;
    background-color: #fff;
  }
}
.post-card__body .top-filter-box .filter-left-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.post-card__body .top-filter-box .filter-left-box .btn {
  --btn-H: 0.4rem;
  --font-size: 0.14rem;
  --bg-color: #F7F9FA;
  margin-right: 0.08rem;
  --font-color: #000;
  font-family: var(--sk-font-Regular);
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box .filter-left-box .btn {
    --btn-H: 0.64rem;
    --font-size: 0.28rem;
    margin-right: 0.16rem;
    padding: 0 0.32rem;
  }
}
.post-card__body .top-filter-box .filter-left-box .btn.on {
  --bg-color: var(--sk-global-color);
  --font-color: #fff;
  font-family: var(--sk-font-Bold);
}
.post-card__body .top-filter-box .filter-right-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-card__body .top-filter-box .filter-right-box .select-box {
  position: relative;
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box {
    margin-left: 0.32rem;
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box.show .dropdown-link {
    background-color: #F7F9FA;
  }
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box.show .dropdown-link .img {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .post-card__body .top-filter-box .filter-right-box .select-box.show .dropdown-layui {
    display: block;
  }
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding: 0.08rem 0.08rem 0.08rem 0.16rem;
  height: 0.4rem;
  border-radius: 0.2rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-link {
    padding: 0;
  }
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-link .txt {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-link .txt {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-link .img {
  height: 0.24rem;
  width: 0.24rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-link .img {
    height: 0.48rem;
    width: 0.48rem;
  }
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 0.08rem;
  z-index: 10;
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    right: 0;
    left: auto;
  }
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list {
  min-width: 2.08rem;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
  padding: 0.08rem 0;
  border-radius: 0.08rem;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 31vh;
  overflow-y: auto;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar-width {
  width: 0.04rem;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list {
    min-width: 3.36rem;
    padding: 0.16rem 0;
    border-radius: 0.16rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #D9D9D9;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: transparent;
  }
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .category-li {
  display: block;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
@media screen and (max-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .category-li {
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .category-li .color {
  color: var(--sk-global-color);
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .category-li:hover {
  background: #F7F9FA;
  color: var(--sk-global-color);
}
@media screen and (min-width: 800px) and (min-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box:hover .dropdown-link {
    background-color: #F7F9FA;
  }
}
@media screen and (min-width: 800px) {
  .post-card__body .top-filter-box .filter-right-box .select-box:hover .dropdown-link .img {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .post-card__body .top-filter-box .filter-right-box .select-box:hover .dropdown-layui {
    display: block;
  }
}
.post-card__body .post-list-box.hry {
  padding: 0.24rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry {
    padding: 0;
  }
}
.post-card__body .post-list-box.hry .post-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.24rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card {
    margin-top: 0.16rem;
    background-color: #fff;
    padding: 0.32rem 0.3rem 0.48rem 0.32rem;
    border-radius: 0.16rem;
    position: relative;
  }
}
.post-card__body .post-list-box.hry .post-card:last-child {
  margin-bottom: 0;
}
.post-card__body .post-list-box.hry .post-card:last-child .infor-con {
  padding-bottom: 0;
  border-bottom: none;
}
.post-card__body .post-list-box.hry .post-card .head-img-box {
  width: 0.4rem;
  min-width: 0.4rem;
  margin-right: 0.16rem;
  margin-top: 0.02rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.16rem;
  line-height: 0;
}
.post-card__body .post-list-box.hry .post-card .head-img-box a {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .head-img-box {
    width: 0.8rem;
    height: 0.8rem;
    position: absolute;
    top: 0.32rem;
    left: 0.32rem;
  }
}
.post-card__body .post-list-box.hry .post-card .head-img-box .img {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  display: block;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .head-img-box .img {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-bottom: 0.24rem;
  border-bottom: 0.01rem solid #D9D9D9;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con > .name {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con > .name {
    position: relative;
    display: block;
    width: calc(100% - 1.12rem);
    left: 1.12rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con > .name:hover {
  color: var(--sk-global-color);
}
.post-card__body .post-list-box.hry .post-card .infor-con > .date {
  color: #666666;
  font-size: 0.12rem;
  line-height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con > .date {
    color: #99A0A4;
    position: relative;
    width: calc(100% - 1.12rem);
    left: 1.12rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .tit {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  width: 6.16rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .tit {
    margin-top: 0.32rem;
    width: 100%;
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .tit:hover {
  color: var(--sk-global-color);
}
.post-card__body .post-list-box.hry .post-card .infor-con .tag-list {
  margin-top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 0.08rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .tag-list {
    margin-top: 0.16rem;
    row-gap: 0.16rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .tag-list .categories-tag {
  padding: 0 0.08rem;
  border-radius: 0.02rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  background-color: #F7F9FA;
  color: var(--sk-global-color);
  margin-right: 0.08rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .tag-list .categories-tag {
    border-radius: 0.08rem;
    margin-right: 0.16rem;
    padding: 0 0.16rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .tag-list .tag-tag {
  color: #333333;
  font-size: 0.12rem;
  line-height: 0.24rem;
  padding: 0 0.08rem;
  border-radius: 0.04rem;
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .tag-list .tag-tag {
    font-size: 0.24rem;
    line-height: 0.48rem;
    padding: 0 0.16rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .tag-list .tag-tag .color {
  color: var(--sk-global-color);
}
.post-card__body .post-list-box.hry .post-card .infor-con .tag-list .tag-tag:hover {
  background-color: #F7F9FA;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect {
    margin-top: 0.16rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .replies-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.08rem;
  padding: 0.08rem;
  border-radius: 0.04rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .replies-box {
    padding: 0.16rem;
    margin-right: 0.16rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .replies-box .img {
  height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .replies-box .img {
    height: 0.32rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .replies-box .txt {
  margin-left: 0.08rem;
  display: inline-block;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #333333;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .replies-box .txt {
    margin-left: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .replies-box:hover {
  background-color: #F7F9FA;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .time-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.08rem;
  border-radius: 0.04rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .time-box {
    padding: 0.16rem;
    margin-right: 0.16rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .time-box .img {
  height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .time-box .img {
    height: 0.32rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .time-box .txt {
  margin-left: 0.08rem;
  display: inline-block;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #333333;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .time-box .txt {
    margin-left: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .time-box:hover {
  background-color: #F7F9FA;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .collect-box {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.08rem;
  border-radius: 0.04rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .collect-box {
    padding: 0.16rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .collect-box .img {
  height: 0.16rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .collect-box .img {
    height: 0.32rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .collect-box .img.show {
  display: block;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .collect-box .txt {
  margin-left: 0.08rem;
  display: inline-block;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #333333;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .collect-box .txt {
    font-size: 0.24rem;
    line-height: 0.32rem;
    margin-left: 0.16rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .collect-box:hover {
  background-color: #F7F9FA;
}
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card {
  margin-top: 0.08rem;
  padding: 0.16rem;
  background-color: #F7F9FA;
  border-radius: 0.08rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card {
    margin-top: 0.32rem;
    border-radius: 0.16rem;
    padding: 0.32rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card::before {
  content: "";
  position: absolute;
  top: 0.16rem;
  left: 0.08rem;
  height: calc(100% - 0.32rem);
  width: 0.01rem;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card::before {
    top: 0.32rem;
    left: 0.16rem;
    height: calc(100% - 0.64rem);
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .name-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .name-date .name {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .name-date .name {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .name-date .date {
  margin-left: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .name-date .date {
    font-size: 0.24rem;
    line-height: 0.32rem;
    margin-left: 0.16rem;
    color: #99A0A4;
  }
}
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .con-txt {
  margin-top: 0.08rem;
  color: #333333;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: 6.08rem;
}
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .con-txt img {
  display: inline-block;
  max-width: 1.44rem;
  max-height: 1.44rem;
  margin: 0.16rem;
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .con-txt img {
    max-width: 1.92rem;
    max-height: 1.92rem;
    margin: 0.32rem 0.16rem;
  }
}
@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .con-txt {
    margin-top: 0.16rem;
    width: 100%;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}

.leftSidebar {
  width: 2.08rem;
  margin-right: 0.16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0.96rem;
}
@media screen and (max-width: 800px) {
  .leftSidebar {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 150;
    padding-bottom: 0;
  }
  .leftSidebar .tree__body {
    background-color: #fff;
    padding: 0.32rem 0.16rem 0.39rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 800px) and (max-width: 800px) {
  .leftSidebar .tree__body {
    position: relative;
  }
}
@media screen and (max-width: 800px) {
  .leftSidebar .tree__body .tree-box {
    width: 1.76rem;
    height: 0.96rem;
    border-radius: 0.48rem;
    background-color: rgba(0, 104, 183, 0.05);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .leftSidebar .tree__body .tree-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .leftSidebar .tree__body .tree-box .clone {
    display: none;
  }
  .leftSidebar .tree__body .g_btn {
    padding: 0 0.42rem 0 0.16rem;
    --btn-H: 0.96rem;
    --left-size: 0.64rem;
    --font-size: 0.28rem;
    --left-icon-size: 0.48rem;
  }
  .leftSidebar .tree__body .g_btn ._left {
    margin-right: 0.16rem;
  }
  .leftSidebar .tree__body .my-box {
    width: 1.76rem;
    height: 0.96rem;
    border-radius: 0.48rem;
    background-color: rgba(0, 104, 183, 0.05);
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0.16rem;
  }
  .leftSidebar .tree__body .my-box.not {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .leftSidebar .tree__body .my-box.not .img {
    height: 0.48rem;
    width: 0.48rem;
  }
  .leftSidebar .tree__body .my-box.on {
    background-color: var(--sk-global-color);
  }
  .leftSidebar .tree__body .my-box.on .text {
    color: #fff;
  }
  .leftSidebar .tree__body .my-box.show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .leftSidebar .tree__body .my-box .img {
    height: 0.64rem;
    width: 0.64rem;
  }
  .leftSidebar .tree__body .my-box .text {
    font-size: 0.28rem;
    line-height: 0.32rem;
    font-family: var(--sk-font-Bold);
    margin-left: 0.16rem;
  }
  .leftSidebar.show .tree__body .tree-box {
    background-color: var(--sk-global-color);
  }
  .leftSidebar.show .tree__body .tree-box .tree {
    display: none;
  }
  .leftSidebar.show .tree__body .tree-box .clone {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.42);
    overflow: hidden;
    width: 0;
    -webkit-transition: 0;
    transition: 0;
  }
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box {
    width: 5.1rem;
    height: 100%;
    background: #F7F9FA;
    overflow-y: auto;
    padding: 0.88rem 0.94rem 2.7rem 0.48rem;
    position: relative;
    left: -100vw;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
.leftSidebar .sticky_wrapper .sticky-box .new-topics {
  padding: 0.08rem;
  background-color: var(--sk-global-color);
  border-radius: 0.24rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.leftSidebar .sticky_wrapper .sticky-box .new-topics .add-box {
  height: 0.32rem;
  width: 0.32rem;
  border-radius: 50%;
  background-color: #0095D8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.leftSidebar .sticky_wrapper .sticky-box .new-topics .add-box .svg {
  width: 0.24rem;
}
.leftSidebar .sticky_wrapper .sticky-box .new-topics .name {
  padding-left: 0.08rem;
  padding-right: 0.13rem;
  color: #fff;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box {
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box {
    margin-top: 0;
  }
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list {
  padding: 0.16rem 0 0.08rem;
  border-bottom: 0.01rem solid #D9D9D9;
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list {
    padding: 0.16rem 0 0.16rem;
  }
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list:last-child {
  border-bottom: none;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .label {
  padding-left: 0.08rem;
  padding-bottom: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #99A0A4;
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .label {
    padding-left: 0.16rem;
    padding-bottom: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell {
  padding: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.04rem;
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell {
    padding: 0.16rem;
  }
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell:first-child {
  margin-top: 0;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell .img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell .img {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell .txt {
  margin-left: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #000;
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell .txt {
    margin-left: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell.on .txt {
  color: var(--sk-global-color);
  font-family: var(--sk-font-Bold);
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell:hover {
  background-color: #fff;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell:hover .txt {
  color: var(--sk-global-color);
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 0.48rem;
  background-color: #fff;
  border-radius: 0.08rem;
  --btn-H: 0.48rem;
  --left-size: 0.16rem;
  --left-icon-size: 0.24rem;
  --left-bg-color: #fff;
  font-family: var(--sk-font-Regular);
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website {
    height: 0.96rem;
    border-radius: 0.16rem;
    --btn-H: 0.96rem;
    --left-size: 0.32rem;
  }
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website ._left {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website ._left .img {
  width: 0.16rem;
  height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website ._left .img {
    width: 0.32rem;
    height: 0.32rem;
  }
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website ._right {
  color: #000;
  font-size: 0.12rem;
  line-height: 0.16rem;
}
@media screen and (max-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website ._right {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
@media screen and (min-width: 800px) {
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website:hover .img rect {
    stroke: var(--sk-global-color);
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website:hover .img path {
    fill: var(--sk-global-color);
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website:hover ._right {
    color: var(--sk-global-color);
  }
}

.index-page {
  background: #F7F9FA;
  min-height: 100vh;
  padding-bottom: 0.8rem;
  --menuH: 1.68rem !important;
}
@media screen and (max-width: 800px) {
  .index-page {
    overflow: hidden;
  }
}
.index-page .main-con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .index-page .main-con {
    padding: 0;
  }
}
.index-page .main-con .con-main {
  margin: 0 auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.index-page .main-con .right-box {
  width: 3.2rem;
  margin-left: 0.16rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0.96rem;
}
.index-page .main-con .right-box .not-logged-in-card {
  padding: 0.16rem;
  background-color: #fff;
  border-radius: 0.08rem;
  display: none;
}
.index-page .main-con .right-box .not-logged-in-card.show {
  display: block;
}
.index-page .main-con .right-box .not-logged-in-card .tit {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
.index-page .main-con .right-box .not-logged-in-card .txt {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333333;
}
.index-page .main-con .right-box .not-logged-in-card .sign-up-btn {
  margin-top: 0.16rem;
  width: 100%;
}
.index-page .main-con .right-box .not-logged-in-card .log-in-box {
  margin-top: 0.08rem;
  width: 100%;
}
.index-page .main-con .right-box .log-on-card {
  padding: 0.16rem;
  background-color: #fff;
  border-radius: 0.08rem;
  display: none;
}
.index-page .main-con .right-box .log-on-card.show {
  display: block;
}
.index-page .main-con .right-box .log-on-card .avatar-nickname {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.index-page .main-con .right-box .log-on-card .avatar-nickname .tx-img {
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.index-page .main-con .right-box .log-on-card .avatar-nickname .name-e-mail {
  margin-left: 0.16rem;
}
.index-page .main-con .right-box .log-on-card .avatar-nickname .name-e-mail .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
.index-page .main-con .right-box .log-on-card .avatar-nickname .name-e-mail .e-mail {
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #666666;
}
.index-page .main-con .right-box .log-on-card .avatar-nickname:hover .name-e-mail .name {
  color: var(--sk-global-color);
}
.index-page .main-con .right-box .log-on-card .cell-list-box {
  margin-top: 0.24rem;
}
.index-page .main-con .right-box .log-on-card .cell-list-box .cell-box {
  padding: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.04rem;
}
.index-page .main-con .right-box .log-on-card .cell-list-box .cell-box .svg {
  color: #333;
  height: 0.24rem;
  width: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.index-page .main-con .right-box .log-on-card .cell-list-box .cell-box .txt {
  display: inline-block;
  margin-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.index-page .main-con .right-box .log-on-card .cell-list-box .cell-box.on, .index-page .main-con .right-box .log-on-card .cell-list-box .cell-box:hover {
  background-color: #F7F9FA;
}
.index-page .main-con .right-box .log-on-card .cell-list-box .cell-box.on .svg, .index-page .main-con .right-box .log-on-card .cell-list-box .cell-box:hover .svg {
  color: var(--sk-global-color);
}
.index-page .main-con .right-box .log-on-card .cell-list-box .cell-box.on .svg path, .index-page .main-con .right-box .log-on-card .cell-list-box .cell-box:hover .svg path {
  fill: var(--sk-global-color);
}
.index-page .main-con .right-box .log-on-card .cell-list-box .cell-box.on .svg .stroke, .index-page .main-con .right-box .log-on-card .cell-list-box .cell-box:hover .svg .stroke {
  stroke: var(--sk-global-color);
  fill: none;
}
.index-page .main-con .right-box .log-on-card .cell-list-box .cell-box.on .txt, .index-page .main-con .right-box .log-on-card .cell-list-box .cell-box:hover .txt {
  color: var(--sk-global-color);
}
.index-page .main-con .right-box .active-discussions {
  margin-top: 0.16rem;
  padding: 0.16rem;
  background-color: #fff;
  border-radius: 0.08rem;
}
.index-page .main-con .right-box .active-discussions .tit-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0.16rem;
}
.index-page .main-con .right-box .active-discussions .tit-box .img {
  height: 0.32rem;
  width: 0.32rem;
}
.index-page .main-con .right-box .active-discussions .tit-box .txt {
  margin-left: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
.index-page .main-con .right-box .active-discussions .card-box {
  display: block;
  border-top: 0.01rem solid #D9D9D9;
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
}
.index-page .main-con .right-box .active-discussions .card-box .name {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
}
.index-page .main-con .right-box .active-discussions .card-box .comments {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
}
.index-page .main-con .right-box .active-discussions .card-box:hover .name {
  color: var(--sk-global-color);
}

.search-results-page {
  background: #F7F9FA;
  min-height: 100vh;
  position: relative;
}
@media screen and (max-width: 800px) {
  .search-results-page {
    background: #fff;
  }
}
.search-results-page .main-con {
  padding: 0;
}
.search-results-page .main-con .search-input-remote {
  padding-top: 0.32rem;
  padding-bottom: 1.92rem;
  display: none;
}
.search-results-page .main-con .search-input-remote.show {
  display: block;
}
.search-results-page .main-con .search-input-remote .input-box {
  height: 0.96rem;
  position: relative;
}
.search-results-page .main-con .search-input-remote .input-box input {
  height: 100%;
  border-radius: 0.56rem;
  border: 0.02rem solid rgb(217, 217, 217);
  width: 100%;
  padding-left: 0.32rem;
  padding-right: 1rem;
  font-size: 0.28rem;
}
.search-results-page .main-con .search-input-remote .input-box input::-webkit-input-placeholder {
  color: rgb(102, 102, 102);
}
.search-results-page .main-con .search-input-remote .input-box input::-moz-placeholder {
  color: rgb(102, 102, 102);
}
.search-results-page .main-con .search-input-remote .input-box input:-ms-input-placeholder {
  color: rgb(102, 102, 102);
}
.search-results-page .main-con .search-input-remote .input-box input::placeholder {
  color: rgb(102, 102, 102);
}
.search-results-page .main-con .search-input-remote .input-box .svg-box {
  position: absolute;
  right: 0.32rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 0.48rem;
  width: 0.48rem;
}
.search-results-page .main-con .search-input-remote .input-box .svg-box .svg {
  height: 0.48rem;
  width: 0.48rem;
}
.search-results-page .main-con .search-input-remote .recent-hot-search-terms {
  margin-top: 0.32rem;
  display: none;
}
.search-results-page .main-con .search-input-remote .recent-hot-search-terms.show {
  display: block;
}
.search-results-page .main-con .search-input-remote .recent-hot-search-terms .tit {
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Bold);
}
.search-results-page .main-con .search-input-remote .recent-hot-search-terms .hot-list-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.16rem;
  margin-top: 0.32rem;
}
.search-results-page .main-con .search-input-remote .recent-hot-search-terms .hot-list-box .hot-box {
  padding: 0.16rem 0.24rem 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.08rem;
  background-color: rgb(247, 249, 250);
}
.search-results-page .main-con .search-input-remote .recent-hot-search-terms .hot-list-box .hot-box .img {
  width: 0.48rem;
  height: 0.48rem;
}
.search-results-page .main-con .search-input-remote .recent-hot-search-terms .hot-list-box .hot-box .txt {
  margin-left: 0.16rem;
  font-size: 0.28rem;
  line-height: 0.48rem;
}
.search-results-page .main-con .search-input-remote .search-history {
  margin-top: 0.48rem;
  display: none;
}
.search-results-page .main-con .search-input-remote .search-history.show {
  display: block;
}
.search-results-page .main-con .search-input-remote .search-history .tit-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.search-results-page .main-con .search-input-remote .search-history .tit-box .tit {
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Bold);
}
.search-results-page .main-con .search-input-remote .search-history .tit-box .svg {
  height: 0.48rem;
  width: 0.48rem;
}
.search-results-page .main-con .search-input-remote .search-history .search-history-list {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.search-results-page .main-con .search-input-remote .search-history .search-history-list .history-a {
  margin-bottom: 0.16rem;
  color: #333333;
  font-size: 0.28rem;
  line-height: 0.48rem;
}
.search-results-page .main-con .search-info-list {
  padding-top: 0.32rem;
  padding-bottom: 0.96rem;
  min-height: 100vh;
}
@media screen and (max-width: 800px) {
  .search-results-page .main-con .search-info-list {
    padding-top: 0;
    display: none;
    background: #F7F9FA;
    padding-bottom: 0;
  }
  .search-results-page .main-con .search-info-list.show {
    display: block;
  }
}
.search-results-page .main-con .search-info-list .h1 {
  font-size: 0.32rem;
  line-height: 0.4rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .main-con .search-info-list .h1 {
    padding: 0.48rem 0.32rem 0.32rem;
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.search-results-page .main-con .search-info-list .card-box {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .search-results-page .main-con .search-info-list .card-box {
    margin-top: 0;
  }
}
.search-results-page .main-con .search-info-list .card-box .post-list-box .post-card .infor-con .tit {
  width: auto;
}

.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs {
  gap: 0.12rem;
  padding-right: 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs::-webkit-scrollbar,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs::-webkit-scrollbar,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs::-webkit-scrollbar {
  display: none;
}

.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs .tabs-item,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs .tabs-item,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs .tabs-item {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.topic-detail-page .main_con ._middle .article_area .article_view_summary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.08rem;
  margin-top: 0.16rem;
  padding-bottom: 0.24rem;
  border-bottom: 0.01rem solid #edf2f7;
}

.topic-detail-page .main_con ._middle .article_area .article_view_summary .avatar-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.topic-detail-page .main_con ._middle .article_area .article_view_summary .avatar-list .img {
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -0.06rem;
  border: 0.01rem solid #ffffff;
}

.topic-detail-page .main_con ._middle .article_area .article_view_summary .avatar-list .img:first-child {
  margin-left: 0;
}

.topic-detail-page .main_con ._middle .article_area .article_view_summary .view-count {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #66788a;
}

@media screen and (max-width: 800px) {
  .topic-detail-page .main_con ._middle .article_area .article_view_summary {
    margin-top: 0.12rem;
    padding-bottom: 0.2rem;
  }

  .topic-detail-page .main_con ._middle .article_area .article_view_summary .avatar-list .img {
    width: 0.2rem;
    height: 0.2rem;
  }

  .topic-detail-page .main_con ._middle .article_area .article_view_summary .view-count {
    font-size: 0.12rem;
  }
}
@media screen and (max-width: 800px) {
  .search-results-page .main-con .search-info-list .card-box .post-list-box .post-card .infor-con .tit {
    width: 100%;
  }
}

.my-profile-page {
  background: #F7F9FA;
  min-height: 100vh;
  padding-top: 0.24rem;
  padding-bottom: 0.96rem;
}
@media screen and (max-width: 800px) {
  .my-profile-page {
    padding-top: 0;
    padding-bottom: 2.8rem;
  }
  .my-profile-page .g-header {
    display: none;
  }
}
.my-profile-page .main-con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con {
    padding: 0;
    overflow: hidden;
  }
}
.my-profile-page .main-con .left-main {
  margin-right: 0.16rem;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main {
    margin-right: 0;
  }
}
.my-profile-page .main-con .left-main .b-g-card {
  position: relative;
  height: 1.6rem;
  padding: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .b-g-card {
    border-radius: 0;
    height: 2.4rem;
    overflow: visible;
  }
}
.my-profile-page .main-con .left-main .b-g-card .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.my-profile-page .main-con .left-main .b-g-card .avatar-name {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .b-g-card .avatar-name {
    position: absolute;
    bottom: 0;
    -webkit-transform: translateY(1.28rem);
        -ms-transform: translateY(1.28rem);
            transform: translateY(1.28rem);
  }
}
.my-profile-page .main-con .left-main .b-g-card .avatar-name .avatar-img {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .avatar-img {
    width: 1.76rem;
    height: 1.76rem;
    background: #F7F9FA;
  }
}
.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email {
  margin-left: 0.16rem;
  min-width: 0;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email {
    margin-right: 0.32rem;
    margin-top: 0.64rem;
  }
}
.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .name {
  font-size: 0.24rem;
  line-height: 0.32rem;
  color: #fff;
  font-family: var(--sk-font-Bold);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .name {
    font-size: 0.4rem;
    line-height: 0.48rem;
    color: #000000;
  }
}
.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .email {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #fff;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta {
  margin-top: 0.16rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-width: 6rem;
  padding-top: 0.12rem;
  border-top: 0.01rem solid rgba(255, 255, 255, 0.2);
}
.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item {
  display: flex;
  flex-direction: column;
  gap: 0.04rem;
}
.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__label {
  font-size: 0.12rem;
  line-height: 0.18rem;
  color: rgba(255, 255, 255, 0.72);
}
.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__value {
  font-size: 0.14rem;
  line-height: 0.22rem;
  color: #fff;
  max-width: 100%;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .email {
    font-size: 0.24rem;
    line-height: 0.32rem;
    color: #666666;
  }
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta {
    margin-top: 0.2rem;
    gap: 0.16rem;
    max-width: none;
  }
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__label {
    font-size: 0.22rem;
    line-height: 0.3rem;
    color: #666666;
  }
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__value {
    font-size: 0.24rem;
    line-height: 0.34rem;
    color: #000000;
  }
}
.my-profile-page .main-con .left-main .b-g-card .edit-profile {
  position: relative;
  --bg-color: #fff;
  --left-bg-color: none;
  padding: 0 0.16rem;
  --font-color: #000;
  font-family: var(--sk-font-Regular);
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .b-g-card .edit-profile {
    position: absolute;
    right: 0.3rem;
    bottom: -1.6rem;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    --bg-color: #F7F9FA;
    --btn-H: 0.8rem;
    padding: 0 0.3rem 0 0.32rem;
    --left-size: 0.48rem;
    --left-icon-size: 0.48rem;
    --font-size: 0.24rem ;
  }
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .statistics-box {
    padding-top: 1.6rem;
    padding-bottom: 0.48rem;
    background-color: #fff;
  }
  .my-profile-page .main-con .left-main .statistics-box .statistics-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .my-profile-page .main-con .left-main .statistics-box .statistics-card .item-box {
    width: 1.12rem;
    padding-right: 0.12rem;
  }
  .my-profile-page .main-con .left-main .statistics-box .statistics-card .item-box .value {
    color: var(--sk-global-color);
    font-size: 0.32rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-Medium);
  }
  .my-profile-page .main-con .left-main .statistics-box .statistics-card .item-box .label {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box {
    margin-top: 0;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .post-list-box.hry {
  display: none;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .post-list-box.hry.show {
  display: block;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry {
  display: none;
  padding: 0.24rem 0.24rem 0.32rem;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry {
    margin-top: 0.16rem;
    padding: 0;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry.show {
  display: block;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card {
  padding-bottom: 0.32rem;
  margin-bottom: 0.24rem;
  border-bottom: 0.01rem solid #D9D9D9;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card {
    background: #fff;
    border-radius: 0.16rem;
    border-bottom: none;
    margin-bottom: 0.16rem;
    padding: 0.32rem;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .tit {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .tit {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .tit:hover {
  color: var(--sk-global-color);
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card {
  margin-top: 0.16rem;
  padding: 0.16rem;
  background-color: #F7F9FA;
  border-radius: 0.08rem;
  position: relative;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card {
    margin-top: 0.32rem;
    padding: 0.32rem;
    border-radius: 0.16rem;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card::before {
  content: "";
  position: absolute;
  top: 0.16rem;
  left: 0.08rem;
  height: calc(100% - 0.32rem);
  width: 0.01rem;
  background-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card::before {
    display: none;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more {
  position: absolute;
  top: 0.16rem;
  right: 0.16rem;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more {
    right: 0.32rem;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-img-box .more-img {
  height: 0.24rem;
  width: 0.24rem;
  cursor: pointer;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-img-box .more-img path {
  fill: #000;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-img-box .more-img {
    height: 0.48rem;
    width: 0.48rem;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-img-box:hover .more-img path {
  fill: #000;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-dropdown__wrap {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-dropdown__wrap .edit-list {
  background: #FFFFFF;
  padding: 0.08rem 0;
  border-radius: 0.08rem;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-dropdown__wrap .edit-list {
    border-radius: 0.16rem;
    padding: 0.16rem 0;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-dropdown__wrap .edit-list .edit-li {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 1.68rem;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-dropdown__wrap .edit-list .edit-li {
    min-width: 3.36rem;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more .more-dropdown__wrap .edit-list .edit-li:hover {
  background: #F7F9FA;
  color: var(--sk-global-color);
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .more.show .more-dropdown__wrap {
  display: block;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .name-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .name-date .name {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .name-date .name {
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .name-date .date {
  margin-left: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .name-date .date {
    margin-left: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .con-txt {
  margin-top: 0.08rem;
  color: #333333;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: 6.08rem;
}
@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card .chuck-card .con-txt {
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    width: 100%;
  }
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .like-list-box {
  display: none;
  padding: 0.24rem 0.24rem 0.32rem;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .like-list-box.show {
  display: block;
}
.my-profile-page .main-con .left-main .left-bottom-box .summary-infor-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 3.2rem;
  margin-left: 0.16rem;
}
.my-profile-page .main-con .left-main .left-bottom-box .summary-infor-box .statistics-card {
  padding-top: 0.32rem;
  padding-bottom: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  border-radius: 0.08rem;
}
.my-profile-page .main-con .left-main .left-bottom-box .summary-infor-box .statistics-card .item-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.my-profile-page .main-con .left-main .left-bottom-box .summary-infor-box .statistics-card .item-box .icon {
  width: 0.24rem;
  height: 0.24rem;
}
.my-profile-page .main-con .left-main .left-bottom-box .summary-infor-box .statistics-card .item-box .label {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.my-profile-page .main-con .left-main .left-bottom-box .summary-infor-box .statistics-card .item-box .num {
  margin-top: 0.24rem;
  font-size: 0.24rem;
  line-height: 0.24rem;
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
}
.my-profile-page .main-con .left-main .left-bottom-box .summary-infor-box .advertisement-img {
  display: block;
  margin-top: 0.16rem;
}

.all-tags-details-page {
  min-height: 100vh;
  background: #F7F9FA;
  padding-bottom: 0.96rem;
  --menuH: 1.68rem !important;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .g-header {
    display: none;
  }
  .all-tags-details-page .main-con {
    padding: 0;
  }
}
.all-tags-details-page .main-con {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .b-g-card-box {
    min-height: 0.88rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
  }
}
.all-tags-details-page .RightWrapper .b-g-card {
  position: relative;
  height: 1.6rem;
  padding: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .b-g-card {
    border-radius: 0;
    height: 3.6rem;
    padding: 0.32rem;
    -webkit-transition: none;
    transition: none;
  }
  .all-tags-details-page .RightWrapper .b-g-card .return-img {
    position: absolute;
    top: 0.2rem;
    left: 0.32rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.all-tags-details-page .RightWrapper .b-g-card .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.all-tags-details-page .RightWrapper .b-g-card .tit-box {
  position: relative;
  color: #fff;
}
.all-tags-details-page .RightWrapper .b-g-card .tit-box .h1 {
  font-size: 0.24rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .b-g-card .tit-box .h1 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.all-tags-details-page .RightWrapper .b-g-card .tit-box .topics {
  margin-top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .b-g-card .tit-box .topics {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.all-tags-details-page .RightWrapper .b-g-card .tit-box .topics .label {
  font-family: var(--sk-font-Medium);
}
.all-tags-details-page .RightWrapper .b-g-card .top-tit {
  color: #fff;
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Bold);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}
.all-tags-details-page .RightWrapper .left-bottom-box {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .left-bottom-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 3.6rem;
  }
}
.all-tags-details-page .RightWrapper .left-bottom-box .post-card__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .left-bottom-box .post-card__body {
    margin-top: 0.16rem;
  }
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box {
  margin-left: 0.16rem;
  width: 3.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box {
    margin-left: 0;
    width: 100%;
  }
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card {
  padding: 0.16rem;
  background-color: #fff;
  border-radius: 0.08rem;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card {
    border-radius: 0;
    padding: 0.32rem;
  }
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .tit {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .tit {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user-list {
  padding: 0.24rem 0.16rem 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 0.32rem;
     -moz-column-gap: 0.32rem;
          column-gap: 0.32rem;
  row-gap: 0.24rem;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user-list {
    padding: 0.32rem 0 0;
    gap: 0.16rem;
  }
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user-list .user-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 0.4rem;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user-list .user-box {
    width: 0.64rem;
  }
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user-list .user-box .head-img {
  height: 0.4rem;
  width: 0.4rem;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user-list .user-box .head-img {
    height: 0.645rem;
    width: 0.64rem;
  }
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user-list .user-box .name {
  margin-top: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user-list .ellipsis {
  margin-left: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user-list .ellipsis .head-img {
  height: 0.48rem;
  width: 0.48rem;
}

.all-categories-details-page {
  min-height: 100vh;
  background: #F7F9FA;
  padding-bottom: 0.96rem;
  --menuH: 1.68rem !important;
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .g-header {
    display: none;
  }
  .all-categories-details-page .main-con {
    padding: 0;
  }
}
.all-categories-details-page .main-con {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.all-categories-details-page .left-top-box {
  padding: 0.24rem 0.24rem 0.32rem;
  background: #fff;
  border-radius: 0.08rem;
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box {
    margin-top: 3.6rem;
    padding: 0;
    border-radius: 0;
  }
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box .b-g-card-box {
    min-height: 0.88rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
  }
  .all-categories-details-page .left-top-box .b-g-card-box .return-img {
    position: absolute;
    top: 0.2rem;
    left: 0.32rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.all-categories-details-page .left-top-box .b-g-card {
  position: relative;
  height: 1.6rem;
  padding: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box .b-g-card {
    border-radius: 0;
    height: 3.6rem;
    padding: 0.32rem;
    -webkit-transition: none;
    transition: none;
  }
  .all-categories-details-page .left-top-box .b-g-card .return-img {
    position: absolute;
    top: 0.2rem;
    left: 0.32rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.all-categories-details-page .left-top-box .b-g-card .bg-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.all-categories-details-page .left-top-box .b-g-card .tit-box {
  position: relative;
  color: #fff;
}
.all-categories-details-page .left-top-box .b-g-card .tit-box .h1 {
  font-size: 0.24rem;
  line-height: 0.32rem;
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box .b-g-card .tit-box .h1 {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
}
.all-categories-details-page .left-top-box .b-g-card .tit-box .topics {
  margin-top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box .b-g-card .tit-box .topics {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.all-categories-details-page .left-top-box .b-g-card .tit-box .topics .label {
  font-family: var(--sk-font-Medium);
}
.all-categories-details-page .left-top-box .b-g-card .top-tit {
  color: #fff;
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Bold);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}
.all-categories-details-page .left-top-box .card-list-box {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 0.24rem;
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box .card-list-box {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0.32rem;
    row-gap: 0;
  }
}
.all-categories-details-page .left-top-box .card-list-box .card-box {
  width: calc((100% - 0.48rem) / 3);
  margin-right: 0.24rem;
  padding: 0.24rem;
  background-color: #F7F9FA;
  border-radius: 0.08rem;
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box .card-list-box .card-box {
    width: 100%;
    padding: 0.32rem;
    border-radius: 0.16rem;
    margin-right: 0;
    margin-bottom: 0.16rem;
  }
  .all-categories-details-page .left-top-box .card-list-box .card-box:last-child {
    margin-right: 0;
  }
}
.all-categories-details-page .left-top-box .card-list-box .card-box:nth-child(3n) {
  margin-right: 0;
}
.all-categories-details-page .left-top-box .card-list-box .card-box .icon-name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.all-categories-details-page .left-top-box .card-list-box .card-box .icon-name .svg {
  height: 0.24rem;
  width: 0.24rem;
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box .card-list-box .card-box .icon-name .svg {
    height: 0.48rem;
    width: 0.48rem;
  }
}
.all-categories-details-page .left-top-box .card-list-box .card-box .icon-name .txt {
  margin-left: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box .card-list-box .card-box .icon-name .txt {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.all-categories-details-page .left-top-box .card-list-box .card-box .con-txt {
  margin-top: 0.16rem;
  color: #333;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .all-categories-details-page .left-top-box .card-list-box .card-box .con-txt {
    font-size: 0.24rem;
    line-height: 0.4rem;
  }
}
.all-categories-details-page .left-bottom-box {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.all-categories-details-page .left-bottom-box .post-card__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.all-categories-details-page .left-bottom-box .car-ind-box {
  width: 3.2rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.16rem;
}
.all-categories-details-page .left-bottom-box .car-ind-box .recommend-card {
  background-color: #fff;
  border-radius: 0.08rem;
  margin-bottom: 0.16rem;
}
.all-categories-details-page .left-bottom-box .car-ind-box .recommend-card .tit {
  padding: 0.24rem 0.16rem;
  border-bottom: 0.01rem solid #D9D9D9;
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
.all-categories-details-page .left-bottom-box .car-ind-box .recommend-card .recommend-list {
  padding: 0.16rem 0.16rem 0.24rem;
}
.all-categories-details-page .left-bottom-box .car-ind-box .recommend-card .recommend-list .recommend-li {
  display: block;
  padding-bottom: 0.16rem;
  margin-bottom: 0.16rem;
  border-bottom: 0.01rem solid #D9D9D9;
}
.all-categories-details-page .left-bottom-box .car-ind-box .recommend-card .recommend-list .recommend-li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.all-categories-details-page .left-bottom-box .car-ind-box .recommend-card .recommend-list .recommend-li .name {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
}
.all-categories-details-page .left-bottom-box .car-ind-box .recommend-card .recommend-list .recommend-li .comments {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
}
.all-categories-details-page .left-bottom-box .car-ind-box .recommend-card .recommend-list .recommend-li:hover .name {
  color: var(--sk-global-color);
}

.sign-up-page {
  height: 100vh;
  position: relative;
}
.sign-up-page .return-btn {
  position: absolute;
  top: 0.56rem;
  left: 0.56rem;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.08rem;
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .sign-up-page .return-btn {
    height: 0.8rem;
    width: 0.8rem;
    border-radius: 0.16rem;
    top: 0.24rem;
    left: 0.32rem;
  }
}
.sign-up-page .return-btn .return-img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .return-btn .return-img {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.sign-up-page .clone-btn {
  position: absolute;
  top: 0.56rem;
  right: 0.56rem;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.08rem;
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .sign-up-page .clone-btn {
    height: 0.8rem;
    width: 0.8rem;
    border-radius: 0.16rem;
    top: 0.24rem;
    right: 0.32rem;
  }
}
.sign-up-page .clone-btn .clone-img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .clone-btn .clone-img {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.sign-up-page .main-con {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con {
    padding-bottom: 9.5%;
  }
}
.sign-up-page .main-con .logo-img {
  height: 0.88rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .logo-img {
    height: 1.6rem;
  }
}
.sign-up-page .main-con .welcome {
  display: none;
}
.sign-up-page .main-con .welcome.show {
  display: block;
}
.sign-up-page .main-con .welcome .welcome-txt {
  margin-top: 0.24rem;
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .welcome .welcome-txt {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.sign-up-page .main-con .welcome .email-input {
  margin-top: 0.24rem;
  height: 0.48rem;
  width: 4.32rem;
  border-radius: 0.08rem;
  border: 0.01rem solid #D9D9D9;
  padding-left: 0.16rem;
  font-size: 0.14rem;
  caret-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .welcome .email-input {
    margin-top: 0.48rem;
    width: 100%;
    height: 0.96rem;
    padding-left: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    border-radius: 0.16rem;
  }
}
.sign-up-page .main-con .welcome .email-input::-webkit-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .welcome .email-input::-moz-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .welcome .email-input:-ms-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .welcome .email-input::placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .welcome .email-input:hover, .sign-up-page .main-con .welcome .email-input:focus {
  border: 0.01rem solid #99A0A4;
}
.sign-up-page .main-con .welcome .error {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #C92B27;
  width: 4.32rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .welcome .error {
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    width: 100%;
  }
}
.sign-up-page .main-con .welcome .error.show {
  display: block;
}
.sign-up-page .main-con .welcome .hry-btn {
  margin-top: 0.24rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .welcome .hry-btn {
    margin-top: 0.48rem;
  }
}
.sign-up-page .main-con .welcome .terms-sign {
  margin-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .welcome .terms-sign {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.sign-up-page .main-con .welcome .terms-sign a {
  color: inherit;
  text-decoration: underline;
}
.sign-up-page .main-con .welcome .sign-in {
  text-align: center;
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .welcome .sign-in {
    margin-top: 0.32rem;
  }
}
.sign-up-page .main-con .welcome .sign-in a {
  margin-left: 0.1rem;
  text-decoration: underline;
  color: var(--sk-global-color);
}
.sign-up-page .main-con .create-account {
  display: none;
}
.sign-up-page .main-con .create-account.show {
  display: block;
}
.sign-up-page .main-con .create-account .tit {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  margin-top: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .create-account .tit {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.sign-up-page .main-con .create-account .sent-code-check-inbox {
  margin-top: 0.24rem;
  text-align: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .create-account .sent-code-check-inbox {
    margin-top: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.sign-up-page .main-con .create-account .split-inputs {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .create-account .split-inputs {
    margin-top: 0.48rem;
  }
}
.sign-up-page .main-con .create-account .split-inputs input {
  width: 0.64rem;
  height: 0.64rem;
  text-align: center;
  border-radius: 0.08rem;
  margin-right: 0.08rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  caret-color: var(--sk-global-color);
  font-family: var(--sk-font-Bold);
  border: 0.01rem solid #D9D9D9;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .create-account .split-inputs input {
    width: calc((100% - 1.12rem) / 6);
    height: 0.96rem;
    border-radius: 0.16rem;
    margin-right: 0.16rem;
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.sign-up-page .main-con .create-account .split-inputs input:last-child {
  margin-right: 0;
}
.sign-up-page .main-con .create-account .split-inputs input:invalid {
  background-color: #F7F9FA;
}
.sign-up-page .main-con .create-account .split-inputs input:hover, .sign-up-page .main-con .create-account .split-inputs input:focus {
  border: 0.01rem solid #99A0A4;
}
.sign-up-page .main-con .create-account .try-again {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #C92B27;
  margin: 0.24rem auto 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .create-account .try-again {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.sign-up-page .main-con .create-account .try-again.show {
  display: block;
}
.sign-up-page .main-con .create-account .passcode-resent {
  margin: 0.24rem auto 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .create-account .passcode-resent {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    color: #231815;
  }
}
.sign-up-page .main-con .create-account .passcode-resent.show {
  display: block;
}
.sign-up-page .main-con .create-account .resend-code {
  color: #666666;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin: 0.24rem auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .create-account .resend-code {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.sign-up-page .main-con .set-password {
  display: none;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .set-password {
    width: 100%;
  }
}
.sign-up-page .main-con .set-password.show {
  display: block;
}
.sign-up-page .main-con .set-password .tit {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  margin-top: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .set-password .tit {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.sign-up-page .main-con .set-password .from-box {
  margin-top: 0.24rem;
  width: 4.32rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .set-password .from-box {
    margin-top: 0.48rem;
    width: 100%;
  }
}
.sign-up-page .main-con .set-password .from-box .item-box {
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .set-password .from-box .item-box {
    margin-top: 0.32rem;
  }
}
.sign-up-page .main-con .set-password .from-box .item-box:first-child {
  margin-top: 0;
}
.sign-up-page .main-con .set-password .from-box .item-box .label {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .set-password .from-box .item-box .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.sign-up-page .main-con .set-password .from-box .item-box .label .red {
  color: #C92B27;
}
.sign-up-page .main-con .set-password .from-box .item-box .value {
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .set-password .from-box .item-box .value {
    margin-top: 0.16rem;
  }
}
.sign-up-page .main-con .set-password .from-box .item-box .value input {
  height: 0.48rem;
  width: 100%;
  padding: 0 0.16rem;
  border-radius: 0.08rem;
  border: 0.01rem solid #D9D9D9;
  font-size: 0.14rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .set-password .from-box .item-box .value input {
    height: 0.96rem;
    padding: 0 0.32rem;
    font-size: 0.28rem;
    border-radius: 0.16rem;
  }
}
.sign-up-page .main-con .set-password .from-box .item-box .value input::-webkit-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .set-password .from-box .item-box .value input::-moz-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .set-password .from-box .item-box .value input:-ms-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .set-password .from-box .item-box .value input::placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .set-password .from-box .item-box .value input:hover, .sign-up-page .main-con .set-password .from-box .item-box .value input:focus {
  border: 0.01rem solid #99A0A4;
}
.sign-up-page .main-con .set-password .from-box .hry-btn {
  cursor: pointer;
  width: 100%;
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .set-password .from-box .hry-btn {
    margin-top: 0.48rem;
  }
}
.sign-up-page .main-con .tell-us {
  display: none;
  width: 4.32rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us {
    width: 100%;
  }
}
.sign-up-page .main-con .tell-us.show {
  display: block;
}
.sign-up-page .main-con .tell-us .tit {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  margin-top: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .tit {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.sign-up-page .main-con .tell-us .upload-files {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .upload-files {
    margin-top: 0.48rem;
  }
}
.sign-up-page .main-con .tell-us .upload-files .file-label {
  cursor: pointer;
  display: none;
}
.sign-up-page .main-con .tell-us .upload-files .file-label.show {
  display: block;
}
.sign-up-page .main-con .tell-us .upload-files .file-label .file-input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}
.sign-up-page .main-con .tell-us .upload-files .file-label .fa-image-box {
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F7F9FA;
  position: relative;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .upload-files .file-label .fa-image-box {
    width: 1.28rem;
    height: 1.28rem;
  }
}
.sign-up-page .main-con .tell-us .upload-files .file-label .fa-image-box .svg {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.sign-up-page .main-con .tell-us .upload-files .head-img {
  display: none;
  height: 0.64rem;
  width: 0.64rem;
  border-radius: 50%;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .upload-files .head-img {
    height: 1.28rem;
    width: 1.28rem;
  }
}
.sign-up-page .main-con .tell-us .upload-files .head-img.show {
  display: block;
}
.sign-up-page .main-con .tell-us .upload-files .upload__tip {
  margin-left: 0.24rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .upload-files .upload__tip {
    margin-left: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.sign-up-page .main-con .tell-us .upload-files .upload__tip .suffix-txt {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box {
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .input-box {
    margin-top: 0.32rem;
  }
}
.sign-up-page .main-con .tell-us .input-box .label {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .input-box .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.sign-up-page .main-con .tell-us .input-box .value {
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .input-box .value {
    margin-top: 0.16rem;
  }
}
.sign-up-page .main-con .tell-us .input-box .value input {
  height: 0.48rem;
  width: 100%;
  padding: 0 0.16rem;
  border-radius: 0.08rem;
  border: 0.01rem solid #D9D9D9;
  font-size: 0.14rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .input-box .value input {
    height: 0.96rem;
    border-radius: 0.16rem;
    font-size: 0.28rem;
    padding: 0 0.32rem;
  }
}
.sign-up-page .main-con .tell-us .input-box .value input::-webkit-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box .value input::-moz-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box .value input:-ms-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box .value input::placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box .value input:hover, .sign-up-page .main-con .tell-us .input-box .value input:focus {
  border: 0.01rem solid #99A0A4;
}
.sign-up-page .main-con .tell-us .hry-btn {
  cursor: pointer;
  width: 100%;
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .hry-btn {
    margin-top: 0.48rem;
  }
}
.sign-up-page .main-con .tell-us .skip {
  display: block;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.24rem auto 0;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .sign-up-page .main-con .tell-us .skip {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}

.log-in-page {
  height: 100vh;
  position: relative;
}
.log-in-page .return-btn {
  position: absolute;
  top: 0.56rem;
  left: 0.56rem;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.08rem;
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .log-in-page .return-btn {
    height: 0.8rem;
    width: 0.8rem;
    border-radius: 0.16rem;
    top: 0.24rem;
    left: 0.32rem;
  }
}
.log-in-page .return-btn .return-img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .return-btn .return-img {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.log-in-page .clone-btn {
  position: absolute;
  top: 0.56rem;
  right: 0.56rem;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.08rem;
  width: 0.4rem;
  height: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .log-in-page .clone-btn {
    height: 0.8rem;
    width: 0.8rem;
    border-radius: 0.16rem;
    top: 0.24rem;
    right: 0.32rem;
  }
}
.log-in-page .clone-btn .clone-img {
  width: 0.24rem;
  height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .clone-btn .clone-img {
    width: 0.48rem;
    height: 0.48rem;
  }
}
.log-in-page .main-con {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con {
    padding-bottom: 9.5%;
  }
}
.log-in-page .main-con .logo-img {
  height: 0.88rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .logo-img {
    height: 1.6rem;
  }
}
.log-in-page .main-con .welcome {
  display: none;
}
.log-in-page .main-con .welcome.show {
  display: block;
}
.log-in-page .main-con .welcome .welcome-txt {
  margin-top: 0.24rem;
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .welcome .welcome-txt {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.log-in-page .main-con .welcome .email-input {
  margin-top: 0.24rem;
  height: 0.48rem;
  width: 4.32rem;
  border-radius: 0.08rem;
  border: 0.01rem solid #D9D9D9;
  padding-left: 0.16rem;
  font-size: 0.14rem;
  caret-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .welcome .email-input {
    margin-top: 0.48rem;
    border-radius: 0.16rem;
    width: 100%;
    height: 0.96rem;
    padding-left: 0.32rem;
    font-size: 0.28rem;
  }
}
.log-in-page .main-con .welcome .email-input::-webkit-input-placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .welcome .email-input::-moz-placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .welcome .email-input:-ms-input-placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .welcome .email-input::placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .welcome .email-input:hover, .log-in-page .main-con .welcome .email-input:focus {
  border: 0.01rem solid #99A0A4;
}
.log-in-page .main-con .welcome .error {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #C92B27;
  width: 4.32rem;
  display: none;
}
.log-in-page .main-con .welcome .error.show {
  display: block;
}
.log-in-page .main-con .welcome .hry-btn {
  margin-top: 0.24rem;
  width: 100%;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .welcome .hry-btn {
    margin-top: 0.48rem;
  }
}
.log-in-page .main-con .welcome .terms-sign {
  margin-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .welcome .terms-sign {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .welcome .terms-sign a {
  color: inherit;
  text-decoration: underline;
}
.log-in-page .main-con .welcome .sign-in {
  text-align: center;
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .welcome .sign-in {
    margin-top: 0.32rem;
  }
}
.log-in-page .main-con .welcome .sign-in a {
  margin-left: 0.1rem;
  text-decoration: underline;
  color: var(--sk-global-color);
}
.log-in-page .main-con .create-account {
  display: none;
}
.log-in-page .main-con .create-account.show {
  display: block;
}
.log-in-page .main-con .create-account .tit {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  margin-top: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .create-account .tit {
    font-size: 0.4rem;
    line-height: 0.64rem;
    margin-top: 0.48rem;
  }
}
.log-in-page .main-con .create-account .sent-code-check-inbox {
  margin-top: 0.24rem;
  text-align: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .create-account .sent-code-check-inbox {
    margin-top: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .create-account .split-inputs {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .create-account .split-inputs {
    margin-top: 0.48rem;
  }
}
.log-in-page .main-con .create-account .split-inputs input {
  width: 0.64rem;
  height: 0.64rem;
  text-align: center;
  border-radius: 0.08rem;
  margin-right: 0.08rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  caret-color: var(--sk-global-color);
  font-family: var(--sk-font-Bold);
  border: 0.01rem solid #D9D9D9;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .create-account .split-inputs input {
    width: calc((100% - 1.12rem) / 6);
    height: 0.96rem;
    border-radius: 0.16rem;
    margin-right: 0.16rem;
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .create-account .split-inputs input:last-child {
  margin-right: 0;
}
.log-in-page .main-con .create-account .split-inputs input:invalid {
  background-color: #F7F9FA;
}
.log-in-page .main-con .create-account .split-inputs input:hover, .log-in-page .main-con .create-account .split-inputs input:focus {
  border: 0.01rem solid #99A0A4;
}
.log-in-page .main-con .create-account .try-again {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #C92B27;
  margin: 0.24rem auto 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .create-account .try-again {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .create-account .try-again.show {
  display: block;
}
.log-in-page .main-con .create-account .passcode-resent {
  margin: 0.24rem auto 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .create-account .passcode-resent {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .create-account .passcode-resent.show {
  display: block;
}
.log-in-page .main-con .create-account .resend-code {
  color: #666666;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin: 0.24rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .create-account .resend-code {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .create-account .use-pas {
  margin: 0.24rem auto 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .create-account .use-pas {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .create-account .use-pas a {
  text-decoration: underline;
  color: var(--sk-global-color);
}
.log-in-page .main-con .set-password {
  display: none;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .set-password {
    width: 100%;
  }
}
.log-in-page .main-con .set-password.show {
  display: block;
}
.log-in-page .main-con .set-password .tit {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  margin-top: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .set-password .tit {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.log-in-page .main-con .set-password .from-box {
  margin-top: 0.24rem;
  width: 4.32rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .set-password .from-box {
    width: 100%;
    margin-top: 0.48rem;
  }
}
.log-in-page .main-con .set-password .from-box .item-box {
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .set-password .from-box .item-box {
    margin-top: 0.32rem;
  }
}
.log-in-page .main-con .set-password .from-box .item-box:first-child {
  margin-top: 0;
}
.log-in-page .main-con .set-password .from-box .item-box .label {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .set-password .from-box .item-box .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .set-password .from-box .item-box .label .red {
  color: #C92B27;
}
.log-in-page .main-con .set-password .from-box .item-box .value {
  margin-top: 0.08rem;
}
.log-in-page .main-con .set-password .from-box .item-box .value input {
  height: 0.48rem;
  width: 100%;
  padding: 0 0.16rem;
  border-radius: 0.08rem;
  border: 0.01rem solid #D9D9D9;
  font-size: 0.14rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .set-password .from-box .item-box .value input {
    height: 0.96rem;
    padding: 0 0.32rem;
    font-size: 0.28rem;
    border-radius: 0.16rem;
  }
}
.log-in-page .main-con .set-password .from-box .item-box .value input::-webkit-input-placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .set-password .from-box .item-box .value input::-moz-placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .set-password .from-box .item-box .value input:-ms-input-placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .set-password .from-box .item-box .value input::placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .set-password .from-box .item-box .value input:hover, .log-in-page .main-con .set-password .from-box .item-box .value input:focus {
  border: 0.01rem solid #99A0A4;
}
.log-in-page .main-con .set-password .from-box .error {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #C92B27;
  width: 4.32rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .set-password .from-box .error {
    width: 100%;
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
}
.log-in-page .main-con .set-password .from-box .error.show {
  display: block;
}
.log-in-page .main-con .set-password .from-box .hry-btn {
  cursor: pointer;
  width: 100%;
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .set-password .from-box .hry-btn {
    margin-top: 0.48rem;
  }
}
.log-in-page .main-con .set-password .from-box .forgot-password {
  margin: 0.24rem auto 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .set-password .from-box .forgot-password {
    margin: 0.48rem auto 0;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .set-password .from-box .forgot-password a {
  text-decoration: underline;
  color: var(--sk-global-color);
}
.log-in-page .main-con .reset-password {
  display: none;
}
.log-in-page .main-con .reset-password.show {
  display: block;
}
.log-in-page .main-con .reset-password .tit {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  margin-top: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .reset-password .tit {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.log-in-page .main-con .reset-password .sent-code-check-inbox {
  margin-top: 0.24rem;
  text-align: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .reset-password .sent-code-check-inbox {
    margin-top: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .reset-password .split-inputs {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .reset-password .split-inputs {
    margin-top: 0.48rem;
  }
}
.log-in-page .main-con .reset-password .split-inputs input {
  width: 0.64rem;
  height: 0.64rem;
  text-align: center;
  border-radius: 0.08rem;
  margin-right: 0.08rem;
  font-size: 0.24rem;
  line-height: 0.32rem;
  caret-color: var(--sk-global-color);
  font-family: var(--sk-font-Bold);
  border: 0.01rem solid #D9D9D9;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .reset-password .split-inputs input {
    width: calc((100% - 1.12rem) / 6);
    height: 0.96rem;
    border-radius: 0.16rem;
    margin-right: 0.16rem;
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .reset-password .split-inputs input:last-child {
  margin-right: 0;
}
.log-in-page .main-con .reset-password .split-inputs input:invalid {
  background-color: #F7F9FA;
}
.log-in-page .main-con .reset-password .split-inputs input:hover, .log-in-page .main-con .reset-password .split-inputs input:focus {
  border: 0.01rem solid #99A0A4;
}
.log-in-page .main-con .reset-password .try-again {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #C92B27;
  margin: 0.24rem auto;
  font-size: 0.14rem;
  line-height: 0.24rem;
  display: none;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .reset-password .try-again {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .reset-password .try-again.show {
  display: block;
}
.log-in-page .main-con .reset-password .passcode-resent {
  margin: 0.24rem auto 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: none;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .reset-password .passcode-resent {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .reset-password .passcode-resent.show {
  display: block;
}
.log-in-page .main-con .reset-password .resend-code {
  color: #666666;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin: 0.24rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .reset-password .resend-code {
    margin-top: 0.48rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .reset-password .use-pas {
  margin: 0.24rem auto 0;
  font-size: 0.14rem;
  line-height: 0.24rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .reset-password .use-pas {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .reset-password .use-pas a {
  text-decoration: underline;
  color: var(--sk-global-color);
}
.log-in-page .main-con .tell-us {
  display: none;
  width: 4.32rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .tell-us {
    width: 100%;
  }
}
.log-in-page .main-con .tell-us.show {
  display: block;
}
.log-in-page .main-con .tell-us .tit {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.32rem;
  margin-top: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .tell-us .tit {
    margin-top: 0.48rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
}
.log-in-page .main-con .tell-us .from-box {
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .tell-us .from-box {
    margin-top: 0.48rem;
  }
}
.log-in-page .main-con .tell-us .from-box .input-box {
  margin-top: 0.16rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .tell-us .from-box .input-box {
    margin-top: 0.32rem;
  }
}
.log-in-page .main-con .tell-us .from-box .input-box .label {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .tell-us .from-box .input-box .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.log-in-page .main-con .tell-us .from-box .input-box .value {
  margin-top: 0.08rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .tell-us .from-box .input-box .value {
    margin-top: 0.16rem;
  }
}
.log-in-page .main-con .tell-us .from-box .input-box .value input {
  height: 0.48rem;
  width: 100%;
  padding: 0 0.16rem;
  border-radius: 0.08rem;
  border: 0.01rem solid #D9D9D9;
  font-size: 0.14rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .tell-us .from-box .input-box .value input {
    height: 0.96rem;
    padding: 0 0.32rem;
    font-size: 0.28rem;
    border-radius: 0.16rem;
  }
}
.log-in-page .main-con .tell-us .from-box .input-box .value input::-webkit-input-placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .tell-us .from-box .input-box .value input::-moz-placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .tell-us .from-box .input-box .value input:-ms-input-placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .tell-us .from-box .input-box .value input::placeholder {
  color: #99A0A4;
}
.log-in-page .main-con .tell-us .from-box .input-box .value input:hover, .log-in-page .main-con .tell-us .from-box .input-box .value input:focus {
  border: 0.01rem solid #99A0A4;
}
.log-in-page .main-con .tell-us .hry-btn {
  cursor: pointer;
  width: 100%;
  margin-top: 0.24rem;
}
@media screen and (max-width: 800px) {
  .log-in-page .main-con .tell-us .hry-btn {
    margin-top: 0.48rem;
  }
}

.access__verification {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 250;
}
@media screen and (max-width: 800px) {
  .access__verification {
    background: rgba(0, 0, 0, 0.6);
  }
}
.access__verification.show {
  opacity: 1;
  visibility: visible;
}
.access__verification .dialog__wrapper {
  position: absolute;
  top: calc(50% - 0.08rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4.32rem;
  padding: 0.24rem 0.24rem 0.32rem;
  border-radius: 0.16rem;
  position: relative;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper {
    width: calc(100vw - 0.64rem);
    padding: 0.48rem 0.48rem 0.64rem;
  }
}
.access__verification .dialog__wrapper .clone__img-box {
  position: absolute;
  top: 0.24rem;
  right: 0.24rem;
  height: 0.24rem;
  width: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .clone__img-box {
    top: -0.62rem;
    right: 0.48rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.access__verification .dialog__wrapper .clone__img-box .img {
  height: 100%;
  width: 100%;
}
.access__verification .dialog__wrapper .dialog__tit {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .dialog__tit {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.access__verification .dialog__wrapper .dialog-txt {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .dialog-txt {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.access__verification .dialog__wrapper .input {
  margin-top: 0.32rem;
  height: 0.48rem;
  width: 100%;
  border-radius: 0.08rem;
  border: 0.01rem solid #D9D9D9;
  padding: 0 0.16rem;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .input {
    margin-top: 0.64rem;
    height: 0.96rem;
    border: 0.02rem solid #D9D9D9;
    border-radius: 0.32rem;
    padding: 0 0.32rem;
  }
}
.access__verification .dialog__wrapper .code-img {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .code-img {
    margin-top: 0.32rem;
  }
}
.access__verification .dialog__wrapper .code-img .img {
  width: 1.04rem;
  height: 0.32rem;
  object-fit: fill;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .code-img .img {
    width: 2.08rem;
    height: 0.64rem;
  }
}
.access__verification .dialog__wrapper .code-img .switch-btn {
  cursor: pointer;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: var(--sk-global-color);
  margin-left: 0.08rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .code-img .switch-btn {
    margin-left: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.access__verification .dialog__wrapper .dialog__footer {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .dialog__footer {
    margin-top: 0.64rem;
  }
}
.access__verification .dialog__wrapper .dialog__footer .g_btn {
  font-family: var(--sk-font-Regular);
  --btn-H: 0.4rem;
  --font-size: 0.14rem;
  min-width: 0.96rem;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .dialog__footer .g_btn {
    --btn-H: 0.8rem;
    --font-size: 0.28rem;
    min-width: 1.92rem;
  }
}
.access__verification .dialog__wrapper .dialog__footer .g_btn.cancel {
  border: 0.01rem solid #99A0A4;
  background: none;
  color: #000;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .dialog__footer .g_btn.cancel {
    border: 0.02rem solid #99A0A4;
  }
}
.access__verification .dialog__wrapper .dialog__footer .g_btn.submit {
  margin-left: 0.08rem;
}
@media screen and (max-width: 800px) {
  .access__verification .dialog__wrapper .dialog__footer .g_btn.submit {
    margin-left: 0.16rem;
  }
}

.delete-confirmation-dialog {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 250;
}
@media screen and (max-width: 800px) {
  .delete-confirmation-dialog {
    background: rgba(0, 0, 0, 0.6);
  }
}
.delete-confirmation-dialog.show {
  opacity: 1;
  visibility: visible;
}
.delete-confirmation-dialog .dialog__wrapper {
  position: absolute;
  top: calc(50% - 0.08rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4.32rem;
  padding: 0.24rem 0.24rem 0.32rem;
  border-radius: 0.16rem;
  position: relative;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .delete-confirmation-dialog .dialog__wrapper {
    width: calc(100vw - 0.64rem);
    padding: 0.48rem 0.48rem 0.64rem;
  }
}
.delete-confirmation-dialog .dialog__wrapper .clone__img-box {
  position: absolute;
  top: 0.24rem;
  right: 0.24rem;
  height: 0.24rem;
  width: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .delete-confirmation-dialog .dialog__wrapper .clone__img-box {
    top: -0.62rem;
    right: 0.48rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.delete-confirmation-dialog .dialog__wrapper .clone__img-box .img {
  height: 100%;
  width: 100%;
}
.delete-confirmation-dialog .dialog__wrapper .dialog__tit {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .delete-confirmation-dialog .dialog__wrapper .dialog__tit {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.delete-confirmation-dialog .dialog__wrapper .dialog-txt {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .delete-confirmation-dialog .dialog__wrapper .dialog-txt {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.delete-confirmation-dialog .dialog__wrapper .dialog__footer {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .delete-confirmation-dialog .dialog__wrapper .dialog__footer {
    margin-top: 0.64rem;
  }
}
.delete-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn {
  font-family: var(--sk-font-Regular);
  --btn-H: 0.4rem;
  --font-size: 0.14rem;
  min-width: 0.96rem;
}
@media screen and (max-width: 800px) {
  .delete-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn {
    --btn-H: 0.8rem;
    --font-size: 0.28rem;
    min-width: 1.92rem;
  }
}
.delete-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn.cancel {
  border: 0.01rem solid #99A0A4;
  background: none;
  color: #000;
}
@media screen and (max-width: 800px) {
  .delete-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn.cancel {
    border: 0.02rem solid #99A0A4;
  }
}
.delete-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn.submit {
  margin-left: 0.08rem;
  --bg-color: #C92B27;
}
@media screen and (max-width: 800px) {
  .delete-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn.submit {
    margin-left: 0.16rem;
  }
}

.adopt-confirmation-dialog {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 250;
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog {
    background: rgba(0, 0, 0, 0.6);
  }
}
.adopt-confirmation-dialog.show {
  opacity: 1;
  visibility: visible;
}
.adopt-confirmation-dialog .dialog__wrapper {
  position: absolute;
  top: calc(50% - 0.08rem);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4.48rem;
  padding: 0.24rem 0.24rem 0.32rem;
  border-radius: 0.16rem;
  position: relative;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog .dialog__wrapper {
    width: calc(100vw - 0.64rem);
    padding: 0.48rem 0.48rem 0.64rem;
  }
}
.adopt-confirmation-dialog .dialog__wrapper .clone__img-box {
  position: absolute;
  top: 0.24rem;
  right: 0.24rem;
  height: 0.24rem;
  width: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog .dialog__wrapper .clone__img-box {
    top: -0.62rem;
    right: 0.48rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.adopt-confirmation-dialog .dialog__wrapper .clone__img-box .img {
  height: 100%;
  width: 100%;
}
.adopt-confirmation-dialog .dialog__wrapper .dialog__tit {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog .dialog__wrapper .dialog__tit {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.adopt-confirmation-dialog .dialog__wrapper .dialog-txt {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog .dialog__wrapper .dialog-txt {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
}
.adopt-confirmation-dialog__checkbox {
  margin-top: 0.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
  font-size: 0.14rem;
  line-height: 0.22rem;
  color: #4A5560;
}
.adopt-confirmation-dialog__checkbox input {
  margin-top: 0.03rem;
  width: 0.16rem;
  height: 0.16rem;
  flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog__checkbox {
    margin-top: 0.32rem;
    gap: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.4rem;
  }
  .adopt-confirmation-dialog__checkbox input {
    margin-top: 0.06rem;
    width: 0.28rem;
    height: 0.28rem;
  }
}
.adopt-confirmation-dialog .dialog__wrapper .dialog__footer {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog .dialog__wrapper .dialog__footer {
    margin-top: 0.64rem;
  }
}
.adopt-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn {
  font-family: var(--sk-font-Regular);
  --btn-H: 0.4rem;
  --font-size: 0.14rem;
  min-width: 0.96rem;
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn {
    --btn-H: 0.8rem;
    --font-size: 0.28rem;
    min-width: 1.92rem;
  }
}
.adopt-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn.cancel {
  border: 0.01rem solid #99A0A4;
  background: none;
  color: #000;
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn.cancel {
    border: 0.02rem solid #99A0A4;
  }
}
.adopt-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn.adopt-submit {
  margin-left: 0.08rem;
  --bg-color: var(--sk-global-color);
}
@media screen and (max-width: 800px) {
  .adopt-confirmation-dialog .dialog__wrapper .dialog__footer .g_btn.adopt-submit {
    margin-left: 0.16rem;
  }
}

.image-viewer__mask {
  position: fixed;
  z-index: 300;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.image-viewer__mask.show {
  opacity: 1;
  visibility: visible;
}
.image-viewer__mask .image-viewer-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.image-viewer__mask .image-viewer-box .img {
  max-width: 90vw;
  max-height: 90vh;
}
.image-viewer__mask .image-viewer-box .clone-svg {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate(100%, -100%);
      -ms-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
}
@media screen and (max-width: 800px) {
  .image-viewer__mask .image-viewer-box .clone-svg {
    width: 0.48rem;
    height: 0.48rem;
    -webkit-transform: translateY(-0.54rem);
        -ms-transform: translateY(-0.54rem);
            transform: translateY(-0.54rem);
  }
}

html {
  scroll-behavior: smooth;
}

input {
  caret-color: #0068B7;
}

.main_layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.24rem;
}
.main_layout .leftSidebar {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.main_layout .RightWrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.g_page {
  --menuH: 0rem;
  position: relative;
  background: #F7F9FA;
  min-height: 100vh;
  padding-bottom: var(--footH);
}

.g_footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #666;
}
.g_footer a {
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #666;
}
.g_footer .policy {
  margin-left: 0.2rem;
  position: relative;
}
.g_footer .policy::before {
  position: absolute;
  left: -0.1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.01rem;
  height: 0.08rem;
  background: #666;
}

.g_cookie {
  position: fixed;
  left: 0.16rem;
  bottom: 0.16rem;
  background-color: #FFFFFF;
  border-radius: 0.08rem;
  width: 3.6rem;
  min-height: 2.08rem;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.1);
  z-index: 201;
  -webkit-transform: translate(calc(-100% - 0.16rem), 0);
      -ms-transform: translate(calc(-100% - 0.16rem), 0);
          transform: translate(calc(-100% - 0.16rem), 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.g_cookie.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}
.g_cookie ._wrapper {
  padding: 0.24rem;
}
.g_cookie ._wrapper .title {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
.g_cookie ._wrapper .desc {
  margin-top: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #666;
}
.g_cookie ._wrapper .btn_box {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.08rem;
}
.g_cookie ._wrapper .btn_box .g_btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  --btn-H: 0.4rem;
  --font-size: 0.14rem;
}

.g_btn {
  --btn-H: 0.4rem;
  --left-size: 0.32rem;
  --left-icon-size: 0.24rem;
  --left-bg-color: #0095D8;
  --font-size: 0.16rem;
  --line-height: 0.24rem;
  --font-color: #fff;
  --bg-color: #0068B7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: var(--btn-H);
  padding: 0 0.24rem;
  background: var(--bg-color);
  border-radius: calc(var(--btn-H) / 2);
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-family: var(--sk-font-Bold);
  color: var(--font-color);
  overflow: hidden;
  cursor: pointer;
}
.g_btn.hasicon {
  --font-size: 0.14rem;
  --line-height: 0.24rem;
  padding: 0 0.21rem 0 0.08rem;
}
.g_btn.white {
  --bg-color: #fff;
  --font-color: #000000;
  border: 0.01rem solid #D9D9D9;
  font-family: var(--sk-font-Regular);
}
.g_btn.red {
  --bg-color: #C92B27;
  --font-color: #FFFFFF;
}
.g_btn ._left {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--left-size);
  height: var(--left-size);
  border-radius: 50%;
  background: var(--left-bg-color);
  margin-top: calc((var(--btn-H) - var(--left-size)) / 2);
  margin-right: 0.08rem;
}
.g_btn ._left .svg-ctx {
  width: var(--left-icon-size);
  height: var(--left-icon-size);
}
.g_btn ._right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.g_btn ._right span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: var(--btn-H);
}
@media screen and (min-width: 800px) {
  .g_btn:hover ._right {
    -webkit-transform: translateY(calc(var(--btn-H) * -1));
        -ms-transform: translateY(calc(var(--btn-H) * -1));
            transform: translateY(calc(var(--btn-H) * -1));
  }
}

.all-categories-page .RightWrapper .wrapper_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.all-categories-page .RightWrapper .wrapper_top .title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Bold);
}
.all-categories-page .RightWrapper .wrapper_top .search_box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 3.2rem;
  padding: 0.02rem;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.24rem;
}
.all-categories-page .RightWrapper .wrapper_top .search_box input::-webkit-input-placeholder {
  color: #666666;
}
.all-categories-page .RightWrapper .wrapper_top .search_box input::-moz-placeholder {
  color: #666666;
}
.all-categories-page .RightWrapper .wrapper_top .search_box input:-moz-placeholder {
  color: #666666;
}
.all-categories-page .RightWrapper .wrapper_top .search_box input:-ms-input-placeholder {
  color: #666666;
}
.all-categories-page .RightWrapper .wrapper_top .search_box textarea::-webkit-input-placeholder {
  color: #666666;
}
.all-categories-page .RightWrapper .wrapper_top .search_box textarea::-moz-placeholder {
  color: #666666;
}
.all-categories-page .RightWrapper .wrapper_top .search_box textarea:-moz-placeholder {
  color: #666666;
}
.all-categories-page .RightWrapper .wrapper_top .search_box textarea:-ms-input-placeholder {
  color: #666666;
}
.all-categories-page .RightWrapper .wrapper_top .search_box input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.1rem 0.14rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  padding-right: 0.16rem;
}
.all-categories-page .RightWrapper .wrapper_top .search_box .search_icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.44rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all-categories-page .RightWrapper .wrapper_top .search_box .search_icon .svg-ctx {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.24rem;
  height: 0.24rem;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all-categories-page .RightWrapper .categories_list {
  margin-top: 0.24rem;
}
.all-categories-page .RightWrapper .categories_list .categories_item {
  display: block;
  padding: 0.24rem;
  background-color: #FFF;
  border-radius: 0.08rem;
}
.all-categories-page .RightWrapper .categories_list .categories_item:not(:last-child) {
  margin-bottom: 0.16rem;
}
.all-categories-page .RightWrapper .categories_list .categories_item ._top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.all-categories-page .RightWrapper .categories_list .categories_item ._top .categories_icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.64rem;
  height: 0.64rem;
  margin-right: 0.24rem;
}
.all-categories-page .RightWrapper .categories_list .categories_item ._top .middle {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.all-categories-page .RightWrapper .categories_list .categories_item ._top .middle .categories_title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all-categories-page .RightWrapper .categories_list .categories_item ._top .middle .categories_desc {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333333;
}
.all-categories-page .RightWrapper .categories_list .categories_item ._top .topic_count {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.88rem;
  padding: 0.08rem 0.16rem;
  border-left: 0.01rem dashed #D9D9D9;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333333;
}
.all-categories-page .RightWrapper .categories_list .categories_item ._top .topic_count .count {
  color: #000000;
  font-family: var(--sk-font-Medium);
}
.all-categories-page .RightWrapper .categories_list .categories_item .sub_list {
  margin-top: 0.24rem;
}
.all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item {
  background-color: #F7F9FA;
  padding: 0.24rem;
  border-radius: 0.08rem;
}
.all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item .title_con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item .title_con .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
  color: var(--sk-global-color);
  margin-right: 0.16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item .title_con p {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
.all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item .desc_con {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333333;
}
@media screen and (min-width: 800px) {
  .all-categories-page .RightWrapper .categories_list .categories_item:hover ._top .middle .categories_title {
    color: var(--sk-global-color);
  }
}

.all-tags-page .RightWrapper .wrapper_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.all-tags-page .RightWrapper .wrapper_top .title {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.32rem;
  line-height: 0.48rem;
  font-family: var(--sk-font-Bold);
}
.all-tags-page .RightWrapper .wrapper_top .search_box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 3.2rem;
  padding: 0.02rem;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.24rem;
}
.all-tags-page .RightWrapper .wrapper_top .search_box input::-webkit-input-placeholder {
  color: #666666;
}
.all-tags-page .RightWrapper .wrapper_top .search_box input::-moz-placeholder {
  color: #666666;
}
.all-tags-page .RightWrapper .wrapper_top .search_box input:-moz-placeholder {
  color: #666666;
}
.all-tags-page .RightWrapper .wrapper_top .search_box input:-ms-input-placeholder {
  color: #666666;
}
.all-tags-page .RightWrapper .wrapper_top .search_box textarea::-webkit-input-placeholder {
  color: #666666;
}
.all-tags-page .RightWrapper .wrapper_top .search_box textarea::-moz-placeholder {
  color: #666666;
}
.all-tags-page .RightWrapper .wrapper_top .search_box textarea:-moz-placeholder {
  color: #666666;
}
.all-tags-page .RightWrapper .wrapper_top .search_box textarea:-ms-input-placeholder {
  color: #666666;
}
.all-tags-page .RightWrapper .wrapper_top .search_box input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0.1rem 0.14rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  padding-right: 0.16rem;
}
.all-tags-page .RightWrapper .wrapper_top .search_box .search_icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.44rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all-tags-page .RightWrapper .wrapper_top .search_box .search_icon .svg-ctx {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.24rem;
  height: 0.24rem;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all-tags-page .RightWrapper .chips_list {
  margin-top: 0.24rem;
}
.all-tags-page .RightWrapper .chips_list .chips_item {
  padding: 0.24rem;
  background-color: #FFF;
  border-radius: 0.08rem;
}
.all-tags-page .RightWrapper .chips_list .chips_item:not(:last-child) {
  margin-bottom: 0.16rem;
}
.all-tags-page .RightWrapper .chips_list .chips_item ._top {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
.all-tags-page .RightWrapper .chips_list .chips_item .tags_list {
  margin-top: 0.08rem;
}
.all-tags-page .RightWrapper .chips_list .chips_item .tags_list .tags_list_item {
  padding: 0.24rem 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.14rem;
  line-height: 0.24rem;
  background-color: #F7F9FA;
  border-radius: 0.08rem;
}
.all-tags-page .RightWrapper .chips_list .chips_item .tags_list .tags_list_item .svg-ctx {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.24rem;
  height: 0.24rem;
  color: var(--sk-global-color);
  margin-right: 0.08rem;
}
.all-tags-page .RightWrapper .chips_list .chips_item .tags_list .tags_list_item .title {
  margin-right: 0.08rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.all-tags-page .RightWrapper .chips_list .chips_item .tags_list .tags_list_item .count {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: auto;
  color: #666666;
}
@media screen and (min-width: 800px) {
  .all-tags-page .RightWrapper .chips_list .chips_item .tags_list .tags_list_item:hover .title {
    color: var(--sk-global-color);
  }
}

.topic-detail-page #Comment {
  scroll-margin-top: 0.96rem;
}
.topic-detail-page .main_con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.24rem;
}
.topic-detail-page .main_con ._left {
  width: 1.12rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.topic-detail-page .main_con ._left .article_operation {
  position: -webkit-sticky;
  position: sticky;
  top: 1.44rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.topic-detail-page .main_con ._left .article_operation .operation_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.topic-detail-page .main_con ._left .article_operation .operation_item:not(:last-child) {
  margin-bottom: 0.32rem;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#favIcon .false {
  display: block;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#favIcon .true {
  display: none;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#thumbAction .false {
  display: block;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#thumbAction .true {
  display: none;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#favIcon.active .false {
  display: none;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#favIcon.active .true {
  display: block;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#thumbAction.active .false {
  display: none;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#thumbAction.active .true {
  display: block;
}
.topic-detail-page .main_con ._left .article_operation .operation_item .svg {
  width: 0.24rem;
  height: 0.24rem;
  color: #333333;
}
.topic-detail-page .main_con ._left .article_operation .operation_item .text {
  margin-top: 0.08rem;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #333333;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#thumbAction.active .text {
  color: #EB3B3B;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#thumbAction.active .svg-ctx.false,
.topic-detail-page .main_con ._left .article_operation .operation_item#thumbAction.active .svg.false {
  display: none;
}
.topic-detail-page .main_con ._left .article_operation .operation_item#thumbAction.active .svg-ctx.true,
.topic-detail-page .main_con ._left .article_operation .operation_item#thumbAction.active .svg.true {
  display: block;
}
.topic-detail-page .main_con ._middle {
  width: 8.8rem;
  background-color: #fff;
  border-radius: 0.08rem;
}
.topic-detail-page .main_con ._middle .article_area {
  padding: 0.48rem 0.48rem 0.64rem;
}
.topic-detail-page .main_con ._middle .article_area ._top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.topic-detail-page .main_con ._middle .article_area ._top .publish_info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.topic-detail-page .main_con ._middle .article_area ._top .publish_info .avatar {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.16rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  overflow: hidden;
}
.topic-detail-page .main_con ._middle .article_area ._top .publish_info .info .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 100%;
}
.topic-detail-page .post-integral-level-badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  flex-shrink: 0;
  margin-left: 0.1rem;
  min-height: 0.22rem;
  padding: 0.02rem 0.11rem 0.01rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #00B0FF 0%, #0052E3 52%, #002BFF 100%);
  color: #ffffff;
  font-size: 0.1rem;
  line-height: 0.12rem;
  font-weight: 600;
  font-family: var(--sk-font-Bold);
  text-decoration: none;
  letter-spacing: 0;
  vertical-align: middle;
  box-shadow: 0 0.02rem 0.08rem rgba(0, 71, 201, 0.2);
}
.topic-detail-page .post-integral-level-badge .post-integral-level-badge__text {
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  font-style: italic;
  transform: skewX(-10deg);
  transform-origin: center;
}
.topic-detail-page .main_con ._middle .article_area ._top .publish_info .info .time {
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #666666;
}
.topic-detail-page .main_con ._middle .article_area ._top .operation_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.16rem;
}
.topic-detail-page .main_con ._middle .article_area ._top .operation_box .operation_item {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.topic-detail-page .main_con ._middle .article_area ._top .operation_box .operation_item:not(:last-child) {
  margin-right: 0.16rem;
}
.topic-detail-page .main_con ._middle .article_area ._top .operation_box .operation_item .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
  color: var(--sk-global-color);
}
.topic-detail-page .main_con ._middle .article_area ._top .operation_box .operation_item:hover {
  background-color: #F7F9FA;
}
.topic-detail-page .main_con ._middle .article_area .article_title {
  margin-top: 0.24rem;
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-Bold);
}
.topic-detail-page .main_con ._middle .article_area .categories_tags {
  margin-top: 0.24rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.08rem;
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list {
  margin-left: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list .tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.08rem;
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list .tag .icon {
  color: var(--sk-global-color);
  margin-right: 0.04rem;
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .categories,
.topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list .tag {
  border-radius: 0.02rem;
  cursor: pointer;
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .categories:hover,
.topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list .tag:hover {
  background-color: #F7F9FA;
  color: var(--sk-global-color);
}
.topic-detail-page .main_con ._middle .article_area .article_content {
  min-height: 2rem;
  margin-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.topic-detail-page .main_con ._middle .comments_area {
  padding: 0.4rem 0 0.64rem;
  border-top: 0.01rem solid #D9D9D9;
}
.topic-detail-page .main_con ._middle .comments_area .comments_count {
  padding: 0 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.topic-detail-page .main_con ._middle .comments_area .comments_count .count {
  font-size: 0.24rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-Bold);
}
.topic-detail-page .main_con ._middle .comments_area .comments_count .sort {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: 0.16rem;
  cursor: pointer;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment {
  position: -webkit-sticky;
  position: sticky;
  top: 0.72rem;
  z-index: 90;
  padding: 0.24rem 0.48rem;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .comment_avatar {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0 0.16rem 0 0.08rem;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .comment_avatar img {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  overflow: hidden;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor {
  width: 7.2rem;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper {
  height: 0.8rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor {
  height: 100% !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.08rem;
  overflow: hidden;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor.vditor--fullscreen {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor.vditor--fullscreen .vditor-toolbar {
  border-radius: 0;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor.vditor--fullscreen .vditor-content {
  border-radius: 0;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-toolbar {
  height: 0rem;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 0 0.16rem !important;
  background-color: #fff;
  border-radius: 0.08rem;
  border-bottom: none;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content {
  height: 0.8rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  border-radius: 0.08rem;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset {
  border-radius: 0.08rem;
  padding: 0.08rem !important;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset::before {
  color: #333333;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h1:before,
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h2:before,
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h3:before,
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h4:before,
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h5:before,
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h6:before,
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg div.vditor-wysiwyg__block:before,
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg div[data-type=link-ref-defs-block]:before,
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg div[data-type=footnotes-block]:before,
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-toc:before {
  display: none;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .g_btn {
  margin-top: 0;
  opacity: 0;
  --btn-H: 0rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .g_btn ._right span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment.active .right_editor .vditor_wrapper {
  height: 1.6rem;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment.active .right_editor .vditor_wrapper #vditor_editor .vditor-toolbar {
  height: 0.56rem;
  opacity: 1;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment.active .right_editor .vditor_wrapper #vditor_editor .vditor-content {
  height: 1.6rem;
}
.topic-detail-page .main_con ._middle .comments_area .new_comment.active .right_editor .g_btn {
  margin-top: 0.16rem;
  opacity: 1;
  --btn-H: 0.4rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list {
  padding: 0 0.48rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item {
  padding: 0.24rem 0 0.32rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item:not(:last-child) {
  border-bottom: 0.01rem solid #D9D9D9;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .avatar {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.08rem;
  margin-right: 0.16rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  overflow: hidden;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .info .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 100%;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .info .time {
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #666666;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more {
  position: relative;
  margin-left: auto;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more .more-img-box .more-img {
  height: 0.24rem;
  width: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more .more-img-box .more-img {
    height: 0.48rem;
    width: 0.48rem;
  }
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more .more-img-box:hover .more-img path {
  fill: #000;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more .more-dropdown__wrap {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 2;
  display: none;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more .more-dropdown__wrap .edit-list {
  background: #FFFFFF;
  padding: 0.08rem 0;
  border-radius: 0.08rem;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more .more-dropdown__wrap .edit-list {
    border-radius: 0.16rem;
    padding: 0.16rem 0;
  }
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more .more-dropdown__wrap .edit-list .edit-li {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 1.68rem;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more .more-dropdown__wrap .edit-list .edit-li {
    min-width: 3.36rem;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more .more-dropdown__wrap .edit-list .edit-li:hover {
  background: #F7F9FA;
  color: var(--sk-global-color);
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .more.show .more-dropdown__wrap {
  display: block;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper {
  padding-left: 0.64rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_detail {
  margin-top: 0.16rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_detail p {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation {
  margin-top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.08rem;
  border-radius: 0.04rem;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply .svg-ctx {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 0.08rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply .text {
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #333333;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list {
  margin-top: 0.16rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item {
  position: relative;
  background-color: #F7F9FA;
  border-radius: 0.08rem;
  padding: 0.16rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item:not(:last-child) {
  margin-bottom: 0.08rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item::before {
  position: absolute;
  left: 0.08rem;
  top: 0.16rem;
  content: "";
  display: block;
  width: 0.01rem;
  height: calc(100% - 0.32rem);
  background-color: var(--sk-global-color);
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .name {
  color: var(--sk-global-color);
  font-family: var(--sk-font-Medium);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 100%;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .time {
  margin-left: 0.08rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more {
  position: relative;
  margin-left: auto;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more .more-img-box .more-img {
  height: 0.24rem;
  width: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more .more-img-box .more-img {
    height: 0.48rem;
    width: 0.48rem;
  }
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more .more-img-box:hover .more-img path {
  fill: #000;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more .more-dropdown__wrap {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 2;
  display: none;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more .more-dropdown__wrap .edit-list {
  background: #FFFFFF;
  padding: 0.08rem 0;
  border-radius: 0.08rem;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 800px) {
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more .more-dropdown__wrap .edit-list {
    border-radius: 0.16rem;
    padding: 0.16rem 0;
  }
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more .more-dropdown__wrap .edit-list .edit-li {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 1.68rem;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
@media screen and (max-width: 800px) {
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more .more-dropdown__wrap .edit-list .edit-li {
    min-width: 3.36rem;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more .more-dropdown__wrap .edit-list .edit-li:hover {
  background: #F7F9FA;
  color: var(--sk-global-color);
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .more.show .more-dropdown__wrap {
  display: block;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .reply_detail {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item #reply_right_editor {
  width: 6.88rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .see_more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  border-radius: 0.04rem;
  cursor: pointer;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .see_more:hover {
  background-color: #F7F9FA;
}
.topic-detail-page .main_con ._middle .comments_area .comment_pagination {
  border-top: 0.01rem solid #D9D9D9;
  padding-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333333;
}
.topic-detail-page .main_con ._middle .comments_area .comment_pagination .prev,
.topic-detail-page .main_con ._middle .comments_area .comment_pagination .next {
  display: block;
  border-radius: 0.08rem;
  border: 0.01rem solid #D9D9D9;
  padding: 0.08rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_pagination .prev .svg-ctx,
.topic-detail-page .main_con ._middle .comments_area .comment_pagination .next .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_pagination .current_of_total {
  margin: 0 0.24rem;
  padding: 0.08rem 0.23rem 0.08rem 0.18rem;
  border-radius: 0.08rem;
  border: 0.01rem solid #D9D9D9;
}
.topic-detail-page .main_con ._middle .comments_area .comment_pagination .current_of_total .of {
  margin-left: 0.25rem;
}
.topic-detail-page .main_con > ._right {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 0.16rem;
  width: 3.2rem;
}
.topic-detail-page .main_con > ._right .author_card {
  position: -webkit-sticky;
  position: sticky;
  top: 0.96rem;
  padding: 0.32rem 0.16rem 0.24rem;
  background-color: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
}
.topic-detail-page .main_con > ._right .author_card .author_bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 0.48rem;
}
.topic-detail-page .main_con > ._right .author_card .author_bg img {
  width: 100%;
  height: 100%;
}
.topic-detail-page .main_con > ._right .author_card .base_info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.topic-detail-page .main_con > ._right .author_card .base_info .avatar {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  overflow: hidden;
}
.topic-detail-page .main_con > ._right .author_card .base_info .avatar img {
  width: 100%;
  height: 100%;
}
.topic-detail-page .main_con > ._right .author_card .base_info .name {
  margin-left: 0.16rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
.topic-detail-page .main_con > ._right .author_card .other_info {
  margin-top: 0.24rem;
}
.topic-detail-page .main_con > ._right .author_card .other_info .info_item {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333333;
}
.topic-detail-page .main_con > ._right .author_card .other_info .info_item:not(:last-child) {
  margin-bottom: 0.16rem;
}
.topic-detail-page .main_con > ._right .author_card .other_info .info_item .key {
  font-family: var(--sk-font-Bold);
}

.new-topics-page .publish_post_con {
  margin: 0.24rem 0;
  background-color: #fff;
  border-radius: 0.08rem;
  overflow: hidden;
}
.new-topics-page .publish_post_con ._top {
  padding: 0.24rem 0.48rem 0.32rem;
}
.new-topics-page .publish_post_con ._top .choose_category {
  position: relative;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select {
  width: 2.08rem;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.04rem;
  position: initial;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front {
  padding: 0.12rem 0.12rem 0.12rem 0.16rem;
  border-radius: 0.04rem;
  overflow: hidden;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front input::-webkit-input-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front input::-moz-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front input:-moz-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front input:-ms-input-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front textarea::-webkit-input-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front textarea::-moz-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front textarea:-moz-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front textarea:-ms-input-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front input {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front::after {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: 0.12rem;
  background: url(../image/target/base/arrow-drop-down.svg) center center no-repeat;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer {
  bottom: -0.08rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.08rem 0 0 0.08rem;
  z-index: 10;
  width: auto;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner {
  padding: 0.08rem 0;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll {
  max-height: 1.6rem;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
  width: 0.04rem;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul {
  width: 3.92rem;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li {
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #000000;
  cursor: pointer;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cell-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cell-box .img-box {
  height: 0.24rem;
  width: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  width: 3.92rem;
  background-color: white;
  border-radius: 0 0.08rem 0.08rem 0;
  box-shadow: 5px 0px 20px -6px rgba(0, 0, 0, 0.1);
  border-left: 0.01rem solid #D9D9D9;
  padding: 0.08rem 0;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu.show {
  display: block;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu ul li {
  padding: 0.08rem 0.16rem;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu ul li:hover {
  color: var(--sk-global-color);
  background-color: #F7F9FA;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li:hover {
  background-color: #F7F9FA;
}
.new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li:hover .cell-box {
  color: var(--sk-global-color);
}
@media screen and (min-width: 800px) {
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li:hover .cascader-menu {
    display: block;
  }
}
.new-topics-page .publish_post_con ._top .input_post_title {
  margin-top: 0.24rem;
}
.new-topics-page .publish_post_con ._top .input_post_title input::-webkit-input-placeholder {
  color: #99A0A4;
}
.new-topics-page .publish_post_con ._top .input_post_title input::-moz-placeholder {
  color: #99A0A4;
}
.new-topics-page .publish_post_con ._top .input_post_title input:-moz-placeholder {
  color: #99A0A4;
}
.new-topics-page .publish_post_con ._top .input_post_title input:-ms-input-placeholder {
  color: #99A0A4;
}
.new-topics-page .publish_post_con ._top .input_post_title textarea::-webkit-input-placeholder {
  color: #99A0A4;
}
.new-topics-page .publish_post_con ._top .input_post_title textarea::-moz-placeholder {
  color: #99A0A4;
}
.new-topics-page .publish_post_con ._top .input_post_title textarea:-moz-placeholder {
  color: #99A0A4;
}
.new-topics-page .publish_post_con ._top .input_post_title textarea:-ms-input-placeholder {
  color: #99A0A4;
}
.new-topics-page .publish_post_con ._top .input_post_title input, .new-topics-page .publish_post_con ._top .input_post_title textarea {
  width: 100%;
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-Bold);
}
.new-topics-page .publish_post_con ._top .choose_tags {
  margin-top: 0.32rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 0.16rem;
     -moz-column-gap: 0.16rem;
          column-gap: 0.16rem;
  row-gap: 0.08rem;
  position: relative;
}
.new-topics-page .publish_post_con ._top .choose_tags .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  border-radius: 0.08rem;
  padding: 0.08rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #F7F9FA;
}
.new-topics-page .publish_post_con ._top .choose_tags .item .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.new-topics-page .publish_post_con ._top .choose_tags .item .tag_icon {
  margin-right: 0.08rem;
}
.new-topics-page .publish_post_con ._top .choose_tags .item .del_icon {
  margin-left: 0.08rem;
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
.new-topics-page .publish_post_con ._top .choose_tags .item p {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add {
  padding: 0;
  background-color: transparent;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select {
  --h: .4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  border-radius: 0.04rem;
  position: initial;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front {
  padding: 0.08rem 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front input::-webkit-input-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front input::-moz-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front input:-moz-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front input:-ms-input-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front textarea::-webkit-input-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front textarea::-moz-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front textarea:-moz-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front textarea:-ms-input-placeholder {
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front input,
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front span {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #000000;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front::after {
  display: none;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer {
  bottom: -0.08rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.08rem;
  overflow: hidden;
  z-index: 10;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner {
  padding: 0.08rem 0;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll {
  max-height: 1.6rem;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
  width: 0.04rem;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll dl dd {
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll dl dd:hover {
  background-color: #F7F9FA;
  color: var(--sk-global-color);
}
.new-topics-page .publish_post_con ._bottom .quill_wrapper {
  height: 5.28rem;
}
.new-topics-page .publish_post_con ._bottom .quill_wrapper #quill_editor {
  height: 4.72rem;
  border: none;
}
.new-topics-page .publish_post_con ._bottom .quill_wrapper #quill_editor .ql-editor {
  padding: 0.24rem 0.48rem;
}
.new-topics-page .publish_post_con ._bottom .vditor_wrapper {
  height: 5.28rem;
}
.new-topics-page .publish_post_con ._bottom .vditor_wrapper #vditor_editor {
  height: 100% !important;
  border: none;
}
.new-topics-page .publish_post_con ._bottom .vditor_wrapper #vditor_editor .vditor-toolbar {
  border-bottom: none;
  background-color: #F7F9FA;
  padding: 0 0.56rem !important;
  padding-left: 0.56rem;
  padding-right: 0.56rem;
}
.new-topics-page .publish_post_con ._bottom .vditor_wrapper #vditor_editor .vditor-content {
  height: 5.28rem;
}
.new-topics-page .publish_post_con ._bottom .vditor_wrapper #vditor_editor .vditor-content .vditor-reset {
  padding: 0.24rem 0.48rem !important;
}
.new-topics-page .btn_box {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.profile-edit-page .main_con {
  margin-top: 0.24rem;
}
.profile-edit-page .main_con .profile_con {
  background-color: #FFF;
  padding: 0.24rem 0.24rem 0.64rem;
  border-radius: 0.08rem;
}
.profile-edit-page .main_con .profile_con ._top {
  position: relative;
  width: 100%;
  height: 1.6rem;
}
.profile-edit-page .main_con .profile_con ._top .background_img {
  width: 100%;
  height: 100%;
}
.profile-edit-page .main_con .profile_con ._top .background_img img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-edit-page .main_con .profile_con ._top .back_btn {
  position: absolute;
  left: 0.08rem;
  top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.08rem 0.16rem 0.08rem 0.08rem;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.2rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #fff;
  font-family: var(--sk-font-Bold);
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.profile-edit-page .main_con .profile_con ._top .back_btn .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
  color: #fff;
}
@media screen and (min-width: 800px) {
  .profile-edit-page .main_con .profile_con ._top .back_btn:hover {
    background-color: rgba(0, 0, 0, 0.4);
  }
}
.profile-edit-page .main_con .profile_con ._top .switch_img {
  position: absolute;
  right: 0.08rem;
  top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.profile-edit-page .main_con .profile_con ._top .switch_img .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
  color: #fff;
}
@media screen and (min-width: 800px) {
  .profile-edit-page .main_con .profile_con ._top .switch_img:hover {
    background-color: #000000;
  }
}
.profile-edit-page .main_con .profile_con ._bottom {
  margin-top: 0.48rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_left {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 1.68rem;
  margin-right: 0.32rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_left .nav_list .nav_item {
  display: block;
  padding: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  border-radius: 0.04rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_left .nav_list .nav_item._delete_account {
  color: #C92B27;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_left .nav_list .nav_item.active, .profile-edit-page .main_con .profile_con ._bottom ._bottom_left .nav_list .nav_item:hover {
  background-color: #F7F9FA;
  font-family: var(--sk-font-Bold);
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_left .nav_list .line {
  margin: 0.08rem 0;
  border-bottom: 0.01rem solid #D9D9D9;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 0.88rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .title_con .title {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-Bold);
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .title_con .desc {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .desc_con {
  margin-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con {
  margin-top: 0.24rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item:not(:last-child) {
  margin-bottom: 0.24rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._required .label::after {
  content: "*";
  color: red;
  margin-left: 0.04rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input {
  margin-top: 0.08rem;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.08rem;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input input::-webkit-input-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input input::-moz-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input input:-moz-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input input:-ms-input-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input textarea::-webkit-input-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input textarea::-moz-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input textarea:-moz-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input textarea:-ms-input-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > input,
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input .input_wrapper > input {
  display: block;
  width: 100%;
  padding: 0.12rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea {
  display: block;
  width: 100%;
  resize: vertical;
  padding: 0.12rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  min-height: 1.2rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar-width {
  width: 0.04rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input:focus-within {
  border: 0.01rem solid #99A0A4;
}
@media screen and (min-width: 800px) {
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input:hover {
    border: 0.01rem solid #99A0A4;
  }
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .tips {
  margin-top: 0.08rem;
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._avtar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._avtar .avtar_img {
  margin-right: 0.24rem;
  width: 0.72rem;
  height: 0.72rem;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._avtar .upload_avtar_btn {
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  border-radius: 0.2rem;
  border: 0.01rem solid #D9D9D9;
  cursor: pointer;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: initial;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-front {
  padding: 0 0.04rem 0 0.16rem;
  background-color: transparent;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-front::after {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: 0.01rem;
  background: url(../image/target/base/arrow-drop-down.svg) center center no-repeat;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll {
  width: 100%;
  padding-right: 0.1rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
  width: 0.04rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .input_wrapper {
  width: 100%;
  position: relative;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .input_wrapper::before {
  content: "";
  display: block;
  width: 0.01rem;
  height: 0.24rem;
  background-color: #D9D9D9;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input {
  position: relative;
  overflow: initial;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select {
  --h: .48rem;
  width: 100%;
  border: none;
  border-radius: 0.04rem;
  position: initial;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front {
  padding: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front input::-webkit-input-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front input::-moz-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front input:-moz-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front input:-ms-input-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front textarea::-webkit-input-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front textarea::-moz-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front textarea:-moz-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front textarea:-ms-input-placeholder {
  color: #99A0A4;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front input {
  padding: 0.12rem 0.16rem;
  pointer-events: initial;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front input,
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front span {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #000000;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front::after {
  display: none;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer {
  bottom: -0.08rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.08rem;
  overflow: hidden;
  z-index: 10;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner {
  padding: 0.08rem 0;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll {
  max-height: 1.6rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
  width: 0.04rem;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll dl dd {
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll dl dd:hover {
  background-color: #F7F9FA;
  color: var(--sk-global-color);
}
.profile-edit-page .main_con .profile_con ._bottom ._bottom_right .btn_con {
  margin-top: 0.48rem;
}

.profile-delete-confirm-page .top_prompt {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  padding: 0.12rem 0.24rem;
  background-color: #000000;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #FFFFFF;
  text-align: center;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-delete-confirm-page .top_prompt.show {
  -webkit-transform: translateY(0.72rem);
      -ms-transform: translateY(0.72rem);
          transform: translateY(0.72rem);
}
.profile-delete-confirm-page .main_con .confirm_con {
  margin: 0 auto;
  margin-top: 0.88rem;
  width: 4.32rem;
  padding: 0.24rem 0.24rem 0.32rem;
  background-color: #fff;
  border-radius: 0.08rem;
}
.profile-delete-confirm-page .main_con .confirm_con .fit-image {
  position: relative;
  width: 100%;
  padding-top: calc((0.5625) * 100%);
}
.profile-delete-confirm-page .main_con .confirm_con .fit-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.profile-delete-confirm-page .main_con .confirm_con .title {
  margin-top: 0.24rem;
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-Bold);
}
.profile-delete-confirm-page .main_con .confirm_con .desc {
  margin-top: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666;
}
.profile-delete-confirm-page .main_con .confirm_con .btn_box {
  margin-top: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.profile-delete-confirm-page .main_con .confirm_con .btn_box .g_btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.profile-delete-confirm-page .main_con .confirm_con .btn_box .g_btn:not(:last-child) {
  margin-right: 0.16rem;
}

.privacy-policy-page .main_con {
  margin-top: 0.24rem;
}
.privacy-policy-page .main_con .article {
  padding: 0.48rem 0.48rem 0.64rem;
  border-radius: 0.08rem;
  background-color: #fff;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333333;
}
.privacy-policy-page .main_con .article h1 {
  font-size: 0.32rem;
  line-height: 0.4rem;
  font-family: var(--sk-font-Bold);
}
.privacy-policy-page .main_con .article h2 {
  margin-top: 0.32rem;
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
.privacy-policy-page .main_con .article h3 {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
.privacy-policy-page .main_con .article strong {
  font-weight: normal;
  font-family: var(--sk-font-Bold);
}
.privacy-policy-page .main_con .article a {
  text-decoration: underline;
}
.privacy-policy-page .main_con .article h1:not(:first-child),
.privacy-policy-page .main_con .article h3:not(:first-child),
.privacy-policy-page .main_con .article p:not(:first-child),
.privacy-policy-page .main_con .article ul:not(:first-child) {
  margin-top: 0.16rem;
}
.privacy-policy-page .main_con .article ul li:not(:first-child) {
  margin-top: 0.08rem;
}

.not-found-page .main_con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.not-found-page .main_con img {
  margin-top: 2rem;
  width: 3.2rem;
  height: 3.2rem;
}
.not-found-page .main_con .desc {
  margin-top: 0.24rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.not-found-page .main_con .g_btn {
  margin-top: 0.24rem;
}

.sign-up-page .main-con .tell-us .input-box.js_region_match .value {
  position: relative;
  overflow: initial;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select {
  --h: .48rem;
  width: 100%;
  border: none;
  border-radius: 0.04rem;
  position: initial;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front {
  padding: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front input::-webkit-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front input::-moz-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front input:-moz-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front input:-ms-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front textarea::-webkit-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front textarea::-moz-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front textarea:-moz-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front textarea:-ms-input-placeholder {
  color: #99A0A4;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front input {
  padding: 0.12rem 0.16rem;
  pointer-events: initial;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front input,
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front span {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #000000;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front::after {
  display: none;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer {
  bottom: -0.08rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.08rem;
  overflow: hidden;
  z-index: 10;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner {
  padding: 0.08rem 0;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll {
  max-height: 1.6rem;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
  width: 0.04rem;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll dl dd {
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll dl dd:hover {
  background-color: #F7F9FA;
  color: var(--sk-global-color);
}

.edit-comment-dialog {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 250;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .edit-comment-dialog {
    background: rgba(0, 0, 0, 0.6);
  }
}
.edit-comment-dialog.show {
  opacity: 1;
  visibility: visible;
}
.edit-comment-dialog .dialog__wrapper {
  margin-top: -0.96rem;
  width: 7.84rem;
  padding: 0.32rem 0.32rem 0.32rem;
  border-radius: 0.16rem;
  position: relative;
  background: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .edit-comment-dialog .dialog__wrapper {
    width: calc(100vw - 0.64rem);
    padding: 0.48rem 0.48rem;
    border-radius: 0.32rem;
  }
}
.edit-comment-dialog .dialog__wrapper .clone__img-box {
  position: absolute;
  top: 0.32rem;
  right: 0.32rem;
  height: 0.24rem;
  width: 0.24rem;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .edit-comment-dialog .dialog__wrapper .clone__img-box {
    top: 0.48rem;
    right: 0.48rem;
    width: 0.48rem;
    height: 0.48rem;
  }
}
.edit-comment-dialog .dialog__wrapper .clone__img-box .img {
  height: 100%;
  width: 100%;
}
.edit-comment-dialog .dialog__wrapper .dialog__tit {
  font-size: 0.2rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
@media screen and (max-width: 800px) {
  .edit-comment-dialog .dialog__wrapper .dialog__tit {
    font-size: 0.4rem;
    line-height: 0.48rem;
  }
}
.edit-comment-dialog .dialog__wrapper .dialog__content {
  margin-top: 0.32rem;
}
@media screen and (max-width: 800px) {
  .edit-comment-dialog .dialog__wrapper .dialog__content {
    margin-top: 0.48rem;
  }
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper {
  height: 1.6rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor {
  height: 100% !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.08rem;
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor.vditor--fullscreen {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor.vditor--fullscreen .vditor-toolbar {
  border-radius: 0;
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor.vditor--fullscreen .vditor-content {
  border-radius: 0;
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-toolbar {
  height: 0.56rem;
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 0 0.16rem !important;
  background-color: #fff;
  border-radius: 0.08rem;
  border-bottom: none;
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content {
  height: 1.6rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  border-radius: 0.08rem;
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset {
  border-radius: 0.08rem;
  padding: 0.08rem !important;
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset::before {
  color: #333333;
}
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h1:before,
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h2:before,
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h3:before,
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h4:before,
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h5:before,
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h6:before,
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg div.vditor-wysiwyg__block:before,
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg div[data-type=link-ref-defs-block]:before,
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg div[data-type=footnotes-block]:before,
.edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-toc:before {
  display: none;
}
@media screen and (max-width: 800px) {
  .edit-comment-dialog .dialog__wrapper .dialog__content {
    margin-top: 0.48rem;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper {
    height: 2.56rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor {
    height: 100% !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    border: 0.01rem solid #D9D9D9;
    border-radius: 0.16rem;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor.vditor--fullscreen {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor.vditor--fullscreen .vditor-toolbar {
    border-radius: 0;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor.vditor--fullscreen .vditor-content {
    border-radius: 0;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-toolbar {
    height: 0.8rem;
    opacity: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding: 0 0.08rem !important;
    background-color: #fff;
    border-radius: 0.16rem;
    border-bottom: none;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-toolbar .vditor-toolbar__item .vditor-tooltipped {
    height: 0.8rem;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content {
    height: 2.56rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-color: #fff;
    border-radius: 0.16rem;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset {
    border-radius: 0.16rem;
    padding: 0.16rem !important;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset::before {
    color: #333333;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h1:before,
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h2:before,
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h3:before,
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h4:before,
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h5:before,
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h6:before,
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg div.vditor-wysiwyg__block:before,
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg div[data-type=link-ref-defs-block]:before,
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg div[data-type=footnotes-block]:before,
  .edit-comment-dialog .dialog__wrapper .dialog__content .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-toc:before {
    display: none;
  }
}
.edit-comment-dialog .dialog__wrapper .dialog__footer {
  margin-top: 0.16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 800px) {
  .edit-comment-dialog .dialog__wrapper .dialog__footer {
    margin-top: 0.32rem;
  }
  .edit-comment-dialog .dialog__wrapper .dialog__footer .g_btn {
    --btn-H: 0.8rem;
    padding: 0 0.32rem;
  }
}

.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .con-txt a {
  text-decoration: underline;
  color: var(--sk-global-color);
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_detail a {
  text-decoration: underline;
  color: var(--sk-global-color);
}

#reply_right_editor {
  display: none;
  margin-top: 0.16rem;
  width: 7.2rem;
}
#reply_right_editor .reply_vditor_wrapper {
  height: 1.6rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor {
  height: 100% !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.08rem;
}
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor.vditor--fullscreen {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor.vditor--fullscreen .vditor-toolbar {
  border-radius: 0;
}
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor.vditor--fullscreen .vditor-content {
  border-radius: 0;
}
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-toolbar {
  height: 0.56rem;
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 0 0.16rem !important;
  background-color: #fff;
  border-radius: 0.08rem;
  border-bottom: none;
}
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content {
  height: 1.6rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
  border-radius: 0.08rem;
}
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset {
  border-radius: 0.08rem;
  padding: 0.08rem !important;
}
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset::before {
  color: #333333;
}
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h1:before,
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h2:before,
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h3:before,
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h4:before,
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h5:before,
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg > .vditor-reset > h6:before,
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg div.vditor-wysiwyg__block:before,
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg div[data-type=link-ref-defs-block]:before,
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg div[data-type=footnotes-block]:before,
#reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg .vditor-toc:before {
  display: none;
}
#reply_right_editor .g_btn {
  margin-top: 0.16rem;
  opacity: 1;
  --btn-H: 0.4rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#reply_right_editor .g_btn ._right span {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 800px) {
  .main_layout {
    padding-top: 0.32rem;
  }
  .g_page {
    --menuH: 0rem;
    padding-bottom: calc(var(--footH) + var(--menuH));
  }
  .g_footer {
    position: absolute;
    bottom: var(--menuH);
    width: 100%;
    padding-bottom: 0.68rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .g_footer a {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .g_footer .policy {
    margin-left: 0;
  }
  .g_footer .policy::before {
    display: none;
  }
  .g_cookie {
    position: fixed;
    left: 0.32rem;
    bottom: 0.4rem;
    background-color: #FFFFFF;
    border-radius: 0.16rem;
    width: calc(100% - 0.64rem);
    min-height: auto;
    -webkit-transform: translate(0, calc(100% + 0.2rem));
        -ms-transform: translate(0, calc(100% + 0.2rem));
            transform: translate(0, calc(100% + 0.2rem));
  }
  .g_cookie ._wrapper {
    padding: 0.48rem;
  }
  .g_cookie ._wrapper .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .g_cookie ._wrapper .desc {
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .g_cookie ._wrapper .btn_box {
    margin-top: 0.48rem;
    gap: 0.16rem;
  }
  .g_cookie ._wrapper .btn_box .g_btn {
    --btn-H: 0.8rem;
    --font-size: 0.28rem;
  }
  .g_btn {
    --btn-H: 0.8rem;
    --left-size: 0.64rem;
    --left-icon-size: 0.48rem;
    --font-size: 0.28rem;
    --line-height: 0.48rem;
    padding: 0 0.48rem;
  }
  .g_btn.hasicon {
    --font-size: 0.28rem;
    --line-height: 0.48rem;
    padding: 0 0.42rem 0 0.16rem;
  }
  .all-categories-page {
    --menuH: 1.68rem;
  }
  .all-categories-page .main_layout {
    padding: 0;
    padding-top: 0.32rem;
  }
  .all-categories-page .RightWrapper .wrapper_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0.24rem;
  }
  .all-categories-page .RightWrapper .wrapper_top .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .all-categories-page .RightWrapper .wrapper_top .search_box {
    margin-top: 0.32rem;
    width: 100%;
    padding: 0;
    border: 0.02rem solid #D9D9D9;
    border-radius: 0.56rem;
  }
  .all-categories-page .RightWrapper .wrapper_top .search_box input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    padding-right: 0.24rem;
  }
  .all-categories-page .RightWrapper .wrapper_top .search_box .search_icon {
    width: 0.72rem;
    padding-right: 0.24rem;
  }
  .all-categories-page .RightWrapper .wrapper_top .search_box .search_icon .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
  }
  .all-categories-page .RightWrapper .categories_list {
    margin-top: 0.32rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item {
    padding: 0.32rem;
    border-radius: 0.16rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item:not(:last-child) {
    margin-bottom: 0.32rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item ._top {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item ._top .categories_icon {
    width: 0.96rem;
    height: 0.96rem;
    margin-right: 0.32rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item ._top .middle .categories_title {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item ._top .topic_count {
    width: 1.6rem;
    padding: 0 0 0 0.32rem;
    border-left: 0.01rem solid #D9D9D9;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item .categories_desc {
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item .sub_list {
    margin-top: 0.32rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item {
    background-color: #F7F9FA;
    padding: 0.32rem;
    border-radius: 0.16rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item .title_con {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item .title_con .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
    margin-right: 0.32rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item .title_con p {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item .sub_list .sub_list_item .desc_con {
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.4rem;
  }
  .all-tags-page {
    --menuH: 1.68rem;
  }
  .all-tags-page .main_layout {
    padding: 0;
    padding-top: 0.32rem;
  }
  .all-tags-page .RightWrapper .wrapper_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0.24rem;
  }
  .all-tags-page .RightWrapper .wrapper_top .title {
    font-size: 0.48rem;
    line-height: 0.64rem;
  }
  .all-tags-page .RightWrapper .wrapper_top .search_box {
    margin-top: 0.32rem;
    width: 100%;
    padding: 0;
    border: 0.02rem solid #D9D9D9;
    border-radius: 0.56rem;
  }
  .all-tags-page .RightWrapper .wrapper_top .search_box input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    padding-right: 0.24rem;
  }
  .all-tags-page .RightWrapper .wrapper_top .search_box .search_icon {
    width: 0.72rem;
    padding-right: 0.24rem;
  }
  .all-tags-page .RightWrapper .wrapper_top .search_box .search_icon .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
  }
  .all-tags-page .RightWrapper .chips_list {
    margin-top: 0.32rem;
  }
  .all-tags-page .RightWrapper .chips_list .chips_item {
    padding: 0.32rem;
    border-radius: 0.16rem;
  }
  .all-tags-page .RightWrapper .chips_list .chips_item:not(:last-child) {
    margin-bottom: 0.32rem;
  }
  .all-tags-page .RightWrapper .chips_list .chips_item ._top {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .all-tags-page .RightWrapper .chips_list .chips_item .tags_list {
    margin-top: 0.16rem;
  }
  .all-tags-page .RightWrapper .chips_list .chips_item .tags_list .tags_list_item {
    padding: 0.32rem 0.32rem 0.32rem 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    border-radius: 0.16rem;
  }
  .all-tags-page .RightWrapper .chips_list .chips_item .tags_list .tags_list_item .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
    margin-right: 0.16rem;
  }
  .all-tags-page .RightWrapper .chips_list .chips_item .tags_list .tags_list_item .title {
    margin-right: 0.16rem;
  }
  .topic-detail-page #Comment {
    scroll-margin-top: 0.96rem;
  }
  .topic-detail-page .main_con {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 0;
    padding: 0;
  }
  .topic-detail-page .main_con ._left {
    width: 100%;
  }
  .topic-detail-page .main_con ._left .article_operation {
    padding: 0.48rem 0.16rem 0.32rem;
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .topic-detail-page .main_con ._left .article_operation .operation_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .topic-detail-page .main_con ._left .article_operation .operation_item:not(:last-child) {
    margin-bottom: 0;
  }
  .topic-detail-page .main_con ._left .article_operation .operation_item .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
  }
  .topic-detail-page .main_con ._left .article_operation .operation_item .text {
    margin-top: 0;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .topic-detail-page .main_con ._middle {
    width: 100%;
    border-radius: 0;
  }
  .topic-detail-page .main_con ._middle .article_area {
    padding: 0.48rem 0.32rem 0.64rem;
  }
  .topic-detail-page .main_con ._middle .article_area ._top .publish_info .avatar {
    margin-right: 0.32rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .topic-detail-page .main_con ._middle .article_area ._top .publish_info .info .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .topic-detail-page .post-integral-level-badge {
    margin-left: 0.1rem;
    min-height: 0.28rem;
    padding: 0.02rem 0.14rem 0.01rem;
    font-size: 0.2rem;
    line-height: 0.24rem;
  }
  .topic-detail-page .main_con ._middle .article_area ._top .publish_info .info .time {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .article_area ._top .operation_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-left: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .article_area ._top .operation_box .operation_item {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
  }
  .topic-detail-page .main_con ._middle .article_area ._top .operation_box .operation_item:not(:last-child) {
    margin-right: 0.16rem;
  }
  .topic-detail-page .main_con ._middle .article_area ._top .operation_box .operation_item .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
    color: var(--sk-global-color);
  }
}
@media screen and (max-width: 800px) and (min-width: 800px) {
  .topic-detail-page .main_con ._middle .article_area ._top .operation_box .operation_item:hover {
    background-color: #F7F9FA;
  }
}
@media screen and (max-width: 800px) {
  .topic-detail-page .main_con ._middle .article_area .article_title {
    margin-top: 0.32rem;
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
  .topic-detail-page .main_con ._middle .article_area .categories_tags {
    margin-top: 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .topic-detail-page .main_con ._middle .article_area .categories_tags .categories {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0.16rem;
  }
  .topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list {
    margin-left: 0.16rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list .tag {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0.16rem;
  }
  .topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list .tag .icon {
    color: var(--sk-global-color);
    margin-right: 0.08rem;
  }
  .topic-detail-page .main_con ._middle .article_area .categories_tags .categories,
  .topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list .tag {
    border-radius: 0.04rem;
  }
  .topic-detail-page .main_con ._middle .article_area .article_content {
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .topic-detail-page .main_con ._middle .comments_area {
    padding: 0.48rem 0.32rem;
    border-top: 0.01rem solid #D9D9D9;
  }
  .topic-detail-page .main_con ._middle .comments_area .comments_count {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .topic-detail-page .main_con ._middle .comments_area .comments_count .count {
    font-size: 0.48rem;
    line-height: 0.8rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comments_count .sort {
    width: 0.48rem;
    height: 0.48rem;
    margin-left: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment {
    position: -webkit-sticky;
    position: sticky;
    top: 0.88rem;
    padding: 0.32rem 0 0.12rem;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .comment_avatar {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    padding: 0 0.32rem 0 0;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .comment_avatar img {
    width: 0.8rem;
    height: 0.8rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor {
    width: 5.76rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper {
    height: 1.6rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor {
    height: 100% !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    border: 0.02rem solid #D9D9D9;
    border-radius: 0.16rem;
    overflow: hidden;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-toolbar {
    height: 0rem;
    opacity: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding: 0 0.08rem !important;
    background-color: #fff;
    border-radius: 0.16rem;
    border-bottom: none;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-toolbar .vditor-toolbar__item {
    padding: 0 0.04rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-toolbar .vditor-toolbar__item .vditor-tooltipped {
    width: 0.48rem;
    height: 0.8rem;
    padding: 0.16rem 0;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-toolbar .vditor-toolbar__item svg {
    width: 0.32rem;
    height: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content {
    height: 1.6rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-color: #fff;
    border-radius: 0.16rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment .right_editor .vditor_wrapper #vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset {
    border-radius: 0.16rem;
    padding: 0.16rem !important;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment.active .right_editor .vditor_wrapper {
    height: 2.56rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment.active .right_editor .vditor_wrapper #vditor_editor .vditor-toolbar {
    height: 0.8rem;
    opacity: 1;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment.active .right_editor .vditor_wrapper #vditor_editor .vditor-content {
    height: 2.56rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .new_comment.active .right_editor .g_btn {
    margin-top: 0.32rem;
    opacity: 1;
    --btn-H: 0.8rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list {
    margin-top: 0.16rem;
    padding: 0;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item {
    padding: 0.32rem 0 0.48rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item:not(:last-child) {
    border-bottom: 0.01rem solid #D9D9D9;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .avatar {
    margin-right: 0.32rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .info .name {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .info .time {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper {
    padding-left: 1.12rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_detail {
    margin-top: 0.16rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_detail p {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation {
    margin-top: 0.16rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0.16rem;
    border-radius: 0.08rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply .svg-ctx {
    width: 0.32rem;
    height: 0.32rem;
    margin-right: 0.16rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply .text {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list {
    margin-top: 0.16rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item {
    position: relative;
    background-color: #F7F9FA;
    border-radius: 0.16rem;
    padding: 0.24rem 0.32rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item:not(:last-child) {
    margin-bottom: 0.16rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item::before {
    position: absolute;
    left: 0.16rem;
    top: 0.24rem;
    content: "";
    display: block;
    width: 0.01rem;
    height: calc(100% - 0.48rem);
    background-color: var(--sk-global-color);
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 0.28rem;
    line-height: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .time {
    margin-left: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .reply_detail {
    margin-top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item #reply_right_editor {
    width: 5.12rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item #reply_right_editor .vditor-toolbar .vditor-toolbar__item {
    padding: 0 0.02rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .see_more {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    border-radius: 0.08rem;
    cursor: pointer;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_pagination {
    border-top: 0.01rem solid #D9D9D9;
    padding-top: 0.48rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_pagination .prev,
  .topic-detail-page .main_con ._middle .comments_area .comment_pagination .next {
    display: block;
    border-radius: 0.16rem;
    border: 0.02rem solid #D9D9D9;
    padding: 0.16rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_pagination .prev .svg-ctx,
  .topic-detail-page .main_con ._middle .comments_area .comment_pagination .next .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_pagination .current_of_total {
    margin: 0;
    padding: 0.16rem 0.46rem 0.16rem 0.36rem;
    border-radius: 0.16rem;
    border: 0.02rem solid #D9D9D9;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_pagination .current_of_total .of {
    margin-left: 0.25rem;
  }
  .topic-detail-page .main_con > ._right {
    display: none;
  }
  .new-topics-page .main-con {
    padding: 0;
  }
  .new-topics-page .publish_post_con {
    margin: 0;
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
  }
  .new-topics-page .publish_post_con ._top {
    padding: 0.48rem 0.32rem 0.48rem;
  }
  .new-topics-page .publish_post_con ._top .choose_category {
    position: relative;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select {
    width: 4.16rem;
    border: 0.02rem solid #D9D9D9;
    border-radius: 0.16rem;
    position: initial;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front {
    border-radius: 0.16rem;
    padding: 0.24rem 0.24rem 0.24rem 0.32rem;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front input {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-front::after {
    width: 0.48rem;
    height: 0.48rem;
    margin-left: 0.24rem;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer {
    bottom: -0.16rem;
    border-radius: 0.16rem;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner {
    padding: 0.16rem 0;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll {
    max-height: none;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
    width: 0.8rem;
    height: 0.8rem;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.8rem;
    background: #D9D9D9;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
    width: 0.8rem;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
    border-radius: 0.8rem;
    background-color: transparent;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul {
    width: calc(50vw - 0.32rem);
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li {
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cell-box .img-box {
    height: 0.48rem;
    width: 0.48rem;
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu {
    width: calc(50vw - 0.32rem);
  }
  .new-topics-page .publish_post_con ._top .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu ul li {
    padding: 0.16rem 0.32rem;
  }
  .new-topics-page .publish_post_con ._top .input_post_title {
    margin-top: 0.48rem;
  }
  .new-topics-page .publish_post_con ._top .input_post_title input, .new-topics-page .publish_post_con ._top .input_post_title textarea {
    font-size: 0.64rem;
    line-height: 0.8rem;
    font-family: var(--sk-font-Bold);
  }
  .new-topics-page .publish_post_con ._top .choose_tags {
    margin-top: 0.48rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-column-gap: 0.32rem;
       -moz-column-gap: 0.32rem;
            column-gap: 0.32rem;
    row-gap: 0.16rem;
    position: relative;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
    border-radius: 0.16rem;
    padding: 0.16rem;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item .tag_icon {
    margin-right: 0.16rem;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item .del_icon {
    margin-left: 0.16rem;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item p {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add {
    padding: 0;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select {
    --h: .8rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    border-radius: 0.16rem;
    position: initial;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front {
    padding: 0.16rem 0;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front input,
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front span {
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #000000;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-front::after {
    display: none;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer {
    bottom: -0.16rem;
    border-radius: 0.16rem;
    overflow: hidden;
    z-index: 10;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner {
    padding: 0.16rem 0;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll {
    max-height: 3.2rem;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #D9D9D9;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: transparent;
  }
  .new-topics-page .publish_post_con ._top .choose_tags .item._add .sk_select .-select-layer .-inner .-scroll dl dd {
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .new-topics-page .publish_post_con ._bottom .vditor_wrapper {
    height: 7.68rem;
  }
  .new-topics-page .publish_post_con ._bottom .vditor_wrapper #vditor_editor {
    height: 100% !important;
    border: none;
  }
  .new-topics-page .publish_post_con ._bottom .vditor_wrapper #vditor_editor .vditor-toolbar {
    border-bottom: none;
    background-color: #F7F9FA;
    padding: 0 0.48rem !important;
    padding-left: 0.48rem;
    padding-right: 0.48rem;
  }
  .new-topics-page .publish_post_con ._bottom .vditor_wrapper #vditor_editor .vditor-content {
    height: 7.68rem;
  }
  .new-topics-page .publish_post_con ._bottom .vditor_wrapper #vditor_editor .vditor-content .vditor-reset {
    padding: 0.48rem 0.32rem !important;
  }
  .new-topics-page .btn_box {
    padding: 0 0.32rem;
    margin-top: 0.32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .profile-edit-page {
    background-color: #FFF;
  }
  .profile-edit-page .g-header {
    display: none;
  }
  .profile-edit-page .main_con {
    margin-top: 0;
    padding: 0;
  }
  .profile-edit-page .main_con .profile_con {
    padding: 0;
    border-radius: 0;
  }
  .profile-edit-page .main_con .profile_con ._top {
    position: relative;
    width: 100%;
    height: 2.4rem;
  }
  .profile-edit-page .main_con .profile_con ._top .back_btn {
    position: absolute;
    left: 0.32rem;
    top: unset;
    bottom: 0.48rem;
    padding: 0.16rem 0.32rem 0.16rem 0.16rem;
    border-radius: 0.4rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._top .back_btn .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._top .switch_img {
    position: absolute;
    right: 0.32rem;
    top: unset;
    bottom: 0.48rem;
    width: 0.8rem;
    height: 0.8rem;
  }
  .profile-edit-page .main_con .profile_con ._top .switch_img .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom {
    margin-top: 0.32rem;
    padding: 0 0.32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select {
    --h: .8rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-front {
    padding: 0.16rem;
    background-color: #F7F9FA;
    border-radius: 0.16rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-front input {
    font-size: 0.28rem;
    font-family: var(--sk-font-Bold);
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-front input._delete {
    color: #C92B27;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-front::after {
    width: 0.48rem;
    height: 0.48rem;
    margin-left: 0.16rem;
    background: url(../image/target/article/icon_07.svg) center center no-repeat;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer {
    bottom: -0.16rem;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0.16rem;
    overflow: hidden;
    z-index: 10;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner {
    padding: 0.16rem 0;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner .-scroll {
    max-height: 50vh;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #D9D9D9;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: transparent;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner .-scroll dl dd {
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #000;
    margin-top: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner .-scroll dl dd:hover {
    background-color: #F7F9FA;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select .-select-layer .-inner .-scroll dl dd._delete {
    color: #C92B27;
  }
  .profile-edit-page .main_con .profile_con ._bottom .side_nav_m .sk_select.on .-select-front::after {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right {
    margin-top: 0.48rem;
    padding: 0 0.12rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 0;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .title_con .title {
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .title_con .desc {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .desc_con {
    margin-top: 0.48rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con {
    margin-top: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item:not(:last-child) {
    margin-bottom: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._required .label::after {
    content: "*";
    color: red;
    margin-left: 0.08rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input {
    margin-top: 0.16rem;
    border: 0.02rem solid #D9D9D9;
    border-radius: 0.16rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > input,
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input .input_wrapper > input {
    padding: 0.24rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea {
    padding: 0.24rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    min-height: 2.4rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #D9D9D9;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input > textarea::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: transparent;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .input:focus-within {
    border: 0.02rem solid #99A0A4;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item .tips {
    margin-top: 0.16rem;
    font-size: 0.24rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._avtar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._avtar .avtar_img {
    margin-right: 0.48rem;
    width: 1.44rem;
    height: 1.44rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._avtar .upload_avtar_btn {
    padding: 0.16rem 0.32rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
    border-radius: 0.4rem;
    border: 0.02rem solid #D9D9D9;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: initial;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-front {
    padding: 0 0.08rem 0 0.32rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-front::after {
    width: 0.48rem;
    height: 0.48rem;
    margin-left: 0.04rem;
    background: url(../image/target/base/arrow-drop-down.svg) center center no-repeat;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 100%;
    z-index: 10;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll {
    width: 100%;
    padding-right: 0.1rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
    width: 0.04rem;
    height: 0.04rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.04rem;
    background: #D9D9D9;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
    width: 0.04rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
    border-radius: 0.04rem;
    background-color: transparent;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .input_wrapper {
    width: 100%;
    position: relative;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item._phone .input .input_wrapper::before {
    width: 0.02rem;
    height: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input {
    position: relative;
    overflow: initial;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select {
    --h: .96rem;
    width: 100%;
    border: none;
    border-radius: 0.16rem;
    position: initial;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front {
    padding: 0;
    border-radius: 0.16rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front input {
    padding: 0.24rem 0.32rem;
    pointer-events: initial;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front input,
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front span {
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #000000;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-front::after {
    display: none;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer {
    bottom: -0.16rem;
    border-radius: 0.16rem;
    overflow: hidden;
    z-index: 10;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner {
    padding: 0.16rem 0;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll {
    max-height: 3.2rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #D9D9D9;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: transparent;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .form_con .form_item.js_region_match .input .sk_select .-select-layer .-inner .-scroll dl dd {
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .profile-edit-page .main_con .profile_con ._bottom ._bottom_right .btn_con {
    margin-top: 0.96rem;
  }
  .profile-delete-confirm-page .top_prompt {
    position: static;
    padding: 0.32rem 0.48rem;
    font-size: 0.24rem;
    line-height: 0.32rem;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    display: none;
  }
  .profile-delete-confirm-page .top_prompt.show {
    display: block;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .profile-delete-confirm-page .main_con {
    padding: 0;
  }
  .profile-delete-confirm-page .main_con .confirm_con {
    margin: 0;
    margin-top: 0;
    width: 100%;
    padding: 0.48rem 0.48rem 1.28rem;
    border-radius: 0;
  }
  .profile-delete-confirm-page .main_con .confirm_con .fit-image {
    position: relative;
    width: 100%;
    padding-top: calc((0.5609756098) * 100%);
  }
  .profile-delete-confirm-page .main_con .confirm_con .fit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .profile-delete-confirm-page .main_con .confirm_con .title {
    margin-top: 0.48rem;
    font-size: 0.64rem;
    line-height: 0.8rem;
  }
  .profile-delete-confirm-page .main_con .confirm_con .desc {
    margin-top: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .profile-delete-confirm-page .main_con .confirm_con .btn_box {
    margin-top: 0.96rem;
  }
  .privacy-policy-page .main_con {
    margin-top: 0;
    padding: 0;
  }
  .privacy-policy-page .main_con .article {
    padding: 0.48rem 0.48rem 0.96rem;
    border-radius: 0;
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #333333;
  }
  .privacy-policy-page .main_con .article h1 {
    font-size: 0.64rem;
    line-height: 0.8rem;
    font-family: var(--sk-font-Bold);
  }
  .privacy-policy-page .main_con .article h2 {
    margin-top: 0.64rem;
    font-size: 0.32rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-Bold);
  }
  .privacy-policy-page .main_con .article h3 {
    font-size: 0.28rem;
    line-height: 0.48rem;
    font-family: var(--sk-font-Bold);
  }
  .privacy-policy-page .main_con .article strong {
    font-weight: normal;
    font-family: var(--sk-font-Bold);
  }
  .privacy-policy-page .main_con .article a {
    text-decoration: underline;
  }
  .privacy-policy-page .main_con .article h1:not(:first-child),
  .privacy-policy-page .main_con .article h3:not(:first-child),
  .privacy-policy-page .main_con .article p:not(:first-child),
  .privacy-policy-page .main_con .article ul:not(:first-child) {
    margin-top: 0.32rem;
  }
  .privacy-policy-page .main_con .article ul li:not(:first-child) {
    margin-top: 0.16rem;
  }
  .not-found-page .main_con {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .not-found-page .main_con img {
    margin-top: 3.04rem;
    width: 4.8rem;
    height: 4.8rem;
  }
  .not-found-page .main_con .desc {
    margin-top: 0.64rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .not-found-page .main_con .g_btn {
    margin-top: 0.48rem;
    width: 2.72rem;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value {
    position: relative;
    overflow: initial;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select {
    --h: .96rem;
    width: 100%;
    border: none;
    border-radius: 0.16rem;
    position: initial;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front {
    padding: 0;
    border-radius: 0.16rem;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front input {
    padding: 0.24rem 0.32rem;
    pointer-events: initial;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front input,
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front span {
    font-size: 0.28rem;
    line-height: 0.48rem;
    color: #000000;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-front::after {
    display: none;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer {
    bottom: -0.16rem;
    border-radius: 0.16rem;
    overflow: hidden;
    z-index: 10;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner {
    padding: 0.16rem 0;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll {
    max-height: 3.2rem;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #D9D9D9;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: transparent;
  }
  .sign-up-page .main-con .tell-us .input-box.js_region_match .value .sk_select .-select-layer .-inner .-scroll dl dd {
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  #reply_right_editor {
    display: none;
    margin-top: 0.16rem;
    width: 5.76rem;
  }
  #reply_right_editor .reply_vditor_wrapper {
    height: 2.56rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #reply_right_editor .reply_vditor_wrapper #reply_vditor_editor {
    height: 100% !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    border: 0.02rem solid #D9D9D9;
    border-radius: 0.16rem;
  }
  #reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-toolbar {
    height: 0.8rem;
    opacity: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    padding: 0 0.08rem !important;
    background-color: #fff;
    border-radius: 0.16rem;
    border-bottom: none;
  }
  #reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-toolbar .vditor-toolbar__item {
    padding: 0 0.04rem;
  }
  #reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-toolbar .vditor-toolbar__item .vditor-tooltipped {
    width: 0.48rem;
    height: 0.8rem;
    padding: 0.16rem 0;
  }
  #reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-toolbar .vditor-toolbar__item svg {
    width: 0.32rem;
    height: 0.32rem;
  }
  #reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content {
    height: 2.56rem;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    background-color: #fff;
    border-radius: 0.16rem;
  }
  #reply_right_editor .reply_vditor_wrapper #reply_vditor_editor .vditor-content .vditor-wysiwyg .vditor-reset {
    border-radius: 0.16rem;
    padding: 0.08rem !important;
  }
  #reply_right_editor .g_btn {
    margin-top: 0.32rem;
    opacity: 1;
    --btn-H: 0.8rem;
  }
}
.empty__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.8rem;
}
.empty__box .text1 {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
.empty__box .text2 {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
}

.hidden_scrollbar {
  -ms-overflow-style: none;
  /* IE 和 Edge */
  scrollbar-width: none;
  /* Firefox */
}
.hidden_scrollbar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.vditor--fullscreen {
  padding-top: calc(var(--headH) - 0.04rem);
}

.vditor-reset::-webkit-scrollbar {
  width: 0.08rem;
  height: 0.08rem;
}
.vditor-reset::-webkit-scrollbar-thumb {
  border-radius: 0.08rem;
  background: #D9D9D9;
}
.vditor-reset::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.vditor-reset::-webkit-scrollbar-width {
  width: 0.08rem;
}
.vditor-reset::-webkit-scrollbar-track {
  border-radius: 0.08rem;
  background-color: transparent;
}

.right_editor,
#reply_right_editor {
  position: relative;
}

.vditor-counter {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.vditor-reset svg {
  max-width: 100%;
}

.sk_select {
  border-radius: 0.08rem !important;
}
.sk_select .-select-front {
  border-radius: 0.08rem !important;
}
@media (max-width: 800px) {
  .sk_select {
    border-radius: 0.16rem !important;
  }
  .sk_select .-select-front {
    border-radius: 0.16rem !important;
  }
}

.g-header {
  height: var(--headH);
}
.g-header .g-head {
  background-color: #FFFFFF;
  height: var(--headH);
}
.g-header .g-head .g-head-top {
  padding: 0.08rem 0;
  background-color: var(--sk-global-color);
}
.g-header .g-head .g-head-top .wal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.g-header .g-head .g-head-top .wal .copy-site {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 0.06rem;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 0.12rem;
  line-height: 0.16rem;
}
.g-header .g-head .g-head-top .wal .copy-site .svg {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 0.08rem;
}
.g-header .g-head .g-head-top .wal .lang-box {
  display: none;
  cursor: pointer;
  position: relative;
  padding-right: 0.06rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #FFFFFF;
  font-size: 0.12rem;
  line-height: 0.16rem;
}
.g-header .g-head .g-head-top .wal .lang-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-top .wal .lang-box .svg-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  vertical-align: middle;
}
.g-header .g-head .g-head-top .wal .lang-box .svg-box .svg {
  width: 0.16rem;
  height: 0.16rem;
  margin-right: 0.08rem;
}
.g-header .g-head .g-head-top .wal .lang-box .layui-box {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 0.08rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.g-header .g-head .g-head-top .wal .lang-box .layui-box.show {
  display: block;
}
.g-header .g-head .g-head-top .wal .lang-box .layui-box .lang-list {
  background: #FFFFFF;
  padding: 0.08rem 0;
  border-radius: 0.08rem;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
}
.g-header .g-head .g-head-top .wal .lang-box .layui-box .lang-list .lang-cell {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 1.68rem;
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-top .wal .lang-box .layui-box .lang-list .lang-cell:hover {
  background: #F7F9FA;
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-top .wal .clone-box {
  border-radius: 0.08rem;
  height: 0.4rem;
  width: 0.4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.01rem solid #D9D9D9;
  cursor: pointer;
  display: none;
  position: absolute;
  top: calc(100% + 0.16rem);
  right: 0;
  background: #F7F9FA;
}
.g-header .g-head .g-head-top .wal .clone-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-top .wal .clone-box .svg {
  width: 0.24rem;
  height: 0.24rem;
}
.g-header .g-head .g-head-main {
  height: 0.72rem;
}
.g-header .g-head .g-head-main .search-box .input-box input {
  background-color: #EEF4F6;
  padding-left: 0.48rem;
  padding-right: 0.16rem;
}
.g-header .g-head .g-head-main .search-box .input-box .magnifier {
  width: 0.24rem;
  right: unset;
  left: 0.16rem;
}
.g-header .g-head .g-head-main .right-box {
  gap: 0.24rem;
}
.g-header .g-head .g-head-main .right-box .new-topic {
  --btn-H: 0.4rem;
  --left-size: 0.24rem;
  --left-bg-color: transparent;
  --bg-color: linear-gradient(90deg, #00B0FF 0%, #002BFF 100%);
  padding: 0 0.14rem 0 0.12rem;
}
.g-header .g-head .g-head-main .right-box .message-box,
.g-header .g-head .g-head-main .right-box .login-box,
.g-header .g-head .g-head-main .right-box .peofile-box {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #EEF4F6;
}
.g-header .g-head .g-head-main .right-box .message-box .svg-box,
.g-header .g-head .g-head-main .right-box .login-box .svg-box,
.g-header .g-head .g-head-main .right-box .peofile-box .svg-box {
  width: 0.24rem;
  height: 0.24rem;
  cursor: pointer;
}
.g-header .g-head .g-head-main .right-box .message-box .svg-box .svg,
.g-header .g-head .g-head-main .right-box .login-box .svg-box .svg,
.g-header .g-head .g-head-main .right-box .peofile-box .svg-box .svg {
  width: 100%;
  height: 100%;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box,
.g-header .g-head .g-head-main .right-box .login-box .layui-box,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box.show,
.g-header .g-head .g-head-main .right-box .login-box .layui-box.show,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box.show {
  display: block;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box {
  width: 3.68rem;
  background-color: #fff;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.15);
  border-radius: 0.16rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 0.005rem solid #d9d9d9;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .title,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .title,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .title {
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0.16rem;
  font-family: var(--sk-font-Bold);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #99a0a4;
  padding-right: 0.16rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs .tabs-item,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs .tabs-item,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs .tabs-item {
  padding: 0.16rem 0;
  position: relative;
  cursor: pointer;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs .tabs-item.active,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs .tabs-item.active,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs .tabs-item.active {
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs .tabs-item.active::after,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs .tabs-item.active::after,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs .tabs-item.active::after {
  display: block;
  content: "";
  width: 100%;
  height: 0.02rem;
  position: absolute;
  left: 0;
  bottom: -0.01rem;
  background-color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont {
  height: 3.92rem;
  overflow-y: auto;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb:vertical,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb:vertical,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-width,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-width,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-width {
  width: 0.04rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-track,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-track,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .empty,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .empty,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .empty {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .empty .empty-img,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .empty .empty-img,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .empty .empty-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #eef4f6;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .empty .empty-img .svg-ctx,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .empty .empty-img .svg-ctx,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .empty .empty-img .svg-ctx {
  width: 0.48rem;
  height: 0.48rem;
  color: #99a0a4;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .empty .empty-text,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .empty .empty-text,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .empty .empty-text {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
  margin-top: 0.16rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list {
  padding: 0 0.16rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.12rem 0 0.08rem 0;
  border-bottom: 0.005rem solid #d9d9d9;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .avatar,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .avatar,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .avatar {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  position: relative;
  margin-right: 0.16rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .avatar img,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .avatar img,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .avatar img {
  border-radius: 50%;
  overflow: hidden;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info {
  width: calc(100% - 0.56rem);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name {
  font-size: 0.14rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name .certifi,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name .certifi,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name .certifi {
  width: 0.24rem;
  height: 0.24rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name .certifi .img,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name .certifi .img,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name .certifi .img {
  width: 100%;
  height: 100%;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .behavior_time,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .behavior_time,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .behavior_time {
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #666666;
  padding-bottom: 0.04rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .cont,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .cont,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .cont {
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item.not_read .avatar .img,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item.not_read .avatar .img,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item.not_read .avatar .img {
  width: 100%;
  height: 100%;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item.not_read .avatar::before,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item.not_read .avatar::before,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item.not_read .avatar::before {
  content: "";
  display: block;
  position: absolute;
  left: -0.11rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background-color: #e51717;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_bottom,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_bottom,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_bottom {
  padding: 0.12rem;
  border-top: 0.005rem solid #d9d9d9;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_bottom .view_all,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_bottom .view_all,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_bottom .view_all {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_bottom .view_all .svg-ctx,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_bottom .view_all .svg-ctx,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_bottom .view_all .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box {
  width: 3.2rem;
  padding: 0.24rem 0.16rem;
  background-color: #fff;
  border-radius: 0.16rem;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.15);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box .tit,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box .tit,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box .tit {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box .txt,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box .txt,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box .txt {
  margin-top: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333333;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box .sign-up-btn,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box .sign-up-btn,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box .sign-up-btn {
  margin-top: 0.16rem;
  width: 100%;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box .log-in-box,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box .log-in-box,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box .log-in-box {
  margin-top: 0.08rem;
  width: 100%;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box {
  width: 3.2rem;
  padding: 0.16rem 0.16rem 0.08rem;
  background-color: #fff;
  border-radius: 0.16rem;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.15);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.16rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname .tx-img,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname .tx-img,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname .tx-img {
  height: 0.56rem;
  width: 0.56rem;
  border-radius: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname .name-e-mail,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname .name-e-mail,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname .name-e-mail {
  margin-left: 0.16rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname .name-e-mail .name,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname .name-e-mail .name,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname .name-e-mail .name {
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname .name-e-mail .e-mail,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname .name-e-mail .e-mail,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname .name-e-mail .e-mail {
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #666666;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname:hover .name-e-mail .name,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname:hover .name-e-mail .name,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname:hover .name-e-mail .name {
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box {
  padding: 0.08rem 0;
  border-top: 0.005rem solid #d9d9d9;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box {
  padding: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.08rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box .svg-stroke,
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box .svg-ctx,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box .svg-stroke,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box .svg-ctx,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box .svg-stroke,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box .svg-ctx {
  color: #333;
  height: 0.24rem;
  width: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box .txt,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box .txt,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box .txt {
  display: inline-block;
  margin-left: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box.on, .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box:hover,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box.on,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box:hover,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box.on,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box:hover {
  background-color: #F7F9FA;
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box.on .svg-stroke,
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box.on .svg-ctx, .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box:hover .svg-stroke,
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box:hover .svg-ctx,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box.on .svg-stroke,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box.on .svg-ctx,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box:hover .svg-stroke,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box:hover .svg-ctx,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box.on .svg-stroke,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box.on .svg-ctx,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box:hover .svg-stroke,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box:hover .svg-ctx {
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box.on .txt, .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box:hover .txt,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box.on .txt,
.g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box:hover .txt,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box.on .txt,
.g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box:hover .txt {
  color: var(--sk-global-color);
}
.g-header .g-head .g-head-main .right-box .peofile-box .svg-box {
  width: 100%;
  height: 100%;
}
.g-header .g-head .g-head-main .right-box .login-box,
.g-header .g-head .g-head-main .right-box .peofile-box {
  display: none;
}
.g-header .g-head .g-head-main .right-box .login-box.show,
.g-header .g-head .g-head-main .right-box .peofile-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .right-box .message-box .message-count {
  position: absolute;
  right: -0.08rem;
  top: -0.04rem;
  background-color: #E51717;
  padding: 0 0.03rem;
  font-size: 0.1rem;
  line-height: 0.16rem;
  font-family: var(--sk-font-Bold);
  border-radius: 0.08rem;
  color: #FFFFFF;
}
.g-header .g-head .g-head-main .right-box .peofile-box .svg-box {
  border-radius: 50%;
  overflow: hidden;
}
.g-header .g-head .g-head-main .right-box .peofile-box .online-status {
  position: absolute;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background-color: #00DE5C;
  right: 0;
  bottom: 0;
}
.g-header .g-head .g-head-main .right-box .back-box {
  border-radius: 0.08rem;
  height: 0.4rem;
  width: 0.4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.01rem solid #D9D9D9;
  cursor: pointer;
  display: none;
  position: absolute;
  top: calc(100% + 0.16rem);
  left: 0;
  background: #F7F9FA;
}
.g-header .g-head .g-head-main .right-box .back-box.show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.g-header .g-head .g-head-main .right-box .back-box .svg {
  width: 0.24rem;
  height: 0.24rem;
}

.leftSidebar {
  top: calc(var(--headH) + 0.24rem);
}

.leftSidebar .sticky_wrapper .sticky-box .g_btn.hasicon {
  display: none;
}

.leftSidebar .sticky_wrapper .sticky-box .link-list-box {
  margin-top: 0;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list {
  padding: 0.08rem;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list:first-child {
  padding-top: 0;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .label {
  font-size: 0.14rem;
  line-height: 0.24rem;
  padding: 0.08rem;
  font-family: var(--sk-font-Bold);
  color: initial;
  cursor: pointer;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .label .svg {
  width: 0.24rem;
  height: 0.24rem;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list.on .label .svg {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell .color {
  width: 0.24rem;
  height: 0.24rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell .color::before {
  display: block;
  content: "";
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 0.02rem;
  background-color: var(--categorie-color);
}

.post-card__body {
  background-color: transparent;
}
.post-card__body .top-filter-box {
  padding: 0.16rem 0;
  border-bottom: none;
}
.post-card__body .top-filter-box .filter-left-box .tab_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.16rem;
  line-height: 0.24rem;
  padding: 0.08rem 0.16rem;
  position: relative;
}
.post-card__body .top-filter-box .filter-left-box .tab_item .ico {
  margin-right: 0.08rem;
  width: 0.24rem;
  height: 0.24rem;
}
.post-card__body .top-filter-box .filter-left-box .tab_item .count {
  margin-left: 0.08rem;
}
.post-card__body .top-filter-box .filter-left-box .tab_item.on {
  color: var(--sk-global-color);
  font-family: var(--sk-font-Bold);
}
.post-card__body .top-filter-box .filter-left-box .tab_item.on::before {
  display: block;
  content: "";
  position: absolute;
  left: 0.16rem;
  bottom: 0;
  width: calc(100% - 0.32rem);
  height: 0.02rem;
  background-color: var(--sk-global-color);
}
.post-card__body .top-filter-box .filter-right-box .select-box {
  border: 0.01rem solid #d6dde0;
  border-radius: 0.08rem;
}
.post-card__body .top-filter-box .filter-right-box .select-box:not(:first-child) {
  margin-left: 0.08rem;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui {
  padding: 0.16rem 0.08rem 0.16rem 0.16rem;
  border-radius: 0.16rem;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
  left: auto;
  right: 0;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list {
  padding: 0 0.08rem 0 0;
  border-radius: 0;
  box-shadow: none;
  min-width: 2.88rem;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .search_wrapper {
  padding: 0;
  background-color: #eef4f6;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  border: none;
  border-radius: 0.08rem;
  margin-bottom: 0.08rem;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .search_wrapper .search_box {
  padding: 0.08rem;
  border-radius: 0.2rem;
  height: 0.4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .search_wrapper .search_box .search_icon {
  margin-right: 0.08rem;
  width: 0.24rem;
  height: 0.24rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .search_wrapper .search_box input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .category-li {
  border-radius: 0.08rem;
}
.post-card__body .post-list-box.hry {
  padding: 0;
}
.post-card__body .post-list-box.hry .post-card {
  padding: 0.16rem;
  border-radius: 0.16rem;
  background-color: #FFFFFF;
  margin-bottom: 0.08rem;
}
.post-card__body .post-list-box.hry .post-card .infor-con {
  padding-bottom: 0;
  border-bottom: none;
}
.post-card__body .post-list-box.hry .post-card .infor-con .info_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 0.56rem;
  column-gap: 0.12rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
  font-size: 0.15rem;
  line-height: 0.22rem;
  min-height: 0.56rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-integral-level-badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  flex-shrink: 0;
  min-height: 0.2rem;
  margin-left: 0.1rem;
  padding: 0.01rem 0.12rem 0;
  border-radius: 9999px;
  background: linear-gradient(90deg, #00B0FF 0%, #0052E3 52%, #002BFF 100%);
  color: #ffffff;
  font-size: 0.1rem;
  line-height: 0.12rem;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 0.02rem 0.08rem rgba(0, 71, 201, 0.22);
}
.post-integral-level-badge .post-integral-level-badge__text {
  display: block;
  font-family: var(--sk-font-Bold);
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-style: italic;
  transform: none;
}
.post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi {
  margin-left: 0.02rem;
  width: 0.24rem;
  height: 0.24rem;
}
.post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img {
  width: 100%;
  height: 100%;
}
.post-card__body .post-list-box.hry .post-card .infor-con .info_top .date {
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #99a0a4;
}
.post-card__body .post-list-box.hry .post-card .infor-con .behavior_time {
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: #666666;
}
.post-card__body .post-list-box.hry .post-card .infor-con .reply_comment {
  margin-top: 0.08rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.post-card__body .post-list-box.hry .post-card .infor-con .reply_comment .key {
  color: #99a0a4;
}
.post-card__body .post-list-box.hry .post-card .infor-con .tag-list .categories-tag {
  display: block;
  padding-left: 0.24rem;
  margin-right: 0;
  position: relative;
  color: initial;
  background-color: initial;
}
.post-card__body .post-list-box.hry .post-card .infor-con .tag-list .categories-tag::before {
  display: block;
  content: "";
  position: absolute;
  left: 0.06rem;
  top: 0.06rem;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 0.02rem;
  background-color: var(--categorie-color);
}
.post-card__body .post-list-box.hry .post-card .infor-con .tag-list .categories-tag:hover {
  background-color: #F7F9FA;
}
.post-card__body .post-list-box.hry .post-card .infor-con .tag-list .tag-tag {
  color: var(--sk-global-color);
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .replies-box {
  display: none;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .time-box {
  display: none;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .view-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .view-box .avatar-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .view-box .avatar-list .img {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  overflow: hidden;
  margin-left: -0.04rem;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .view-box .avatar-list .img:first-child {
  margin-left: 0;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .view-box .view-count {
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #333333;
  margin-left: 0.08rem;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.23rem;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .thumb_box,
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .collect_box,
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .reply_box {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.04rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .thumb_box .img,
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .collect_box .img,
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .reply_box .img {
  width: 0.24rem;
  height: 0.24rem;
  display: none;
}
.post-card__body .post-list-box.hry .post-card .infor-con .info_top .date,
.forum-meta-right {
  min-height: 0.56rem;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .thumb_box .img.show,
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .collect_box .img.show,
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .reply_box .img.show {
  display: block;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .thumb_box .txt,
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .collect_box .txt,
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .reply_box .txt {
  margin-left: 0.08rem;
  display: inline-block;
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #333333;
}
.post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .thumb_box.active .txt {
  color: #EB3B3B;
}
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .con-txt {
  max-height: 1.44rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  position: relative;
}
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .con-txt::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  height: 0.44rem;
  /* 阴影高度，可根据需要调整 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgb(247, 249, 250));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(247, 249, 250));
  pointer-events: none;
}

.index-page .leftSidebar {
  top: calc(var(--headH) + 0.16rem);
}
.index-page .main-con {
  padding-top: 0.16rem;
}
.index-page .main-con .con-main .ad_box {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  border-radius: 0.16rem;
  overflow: hidden;
  margin-bottom: 0.16rem;
}
.index-page .main-con .con-main .ad_box .img {
  width: 100%;
  height: auto;
}
.index-page .main-con .con-main .ad_box .close_icon {
  position: absolute;
  top: 0.08rem;
  right: 0.08rem;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.4rem;
  height: 0.4rem;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.08rem;
}
.index-page .main-con .con-main .ad_box .close_icon .svg {
  width: 0.24rem;
  height: 0.24rem;
}
.index-page .main-con .right-box {
  top: calc(var(--headH) + 0.16rem);
}
.index-page .main-con .right-box .popular_posts {
  background-color: #fff;
  border-radius: 0.16rem;
  padding: 0.16rem 0.16rem 0.24rem 0.16rem;
}
.index-page .main-con .right-box .popular_posts .popular_posts_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.12rem;
  padding-bottom: 0.16rem;
  border-bottom: 0.005rem solid #d9d9d9;
}
.index-page .main-con .right-box .popular_posts .popular_posts_actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-height: 0.32rem;
}
.index-page .main-con .right-box .right-box-banner-toggle-host {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.12rem;
}
.index-page .main-con .right-box .popular_posts .title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
  padding-bottom: 0;
  border-bottom: none;
}
.index-page .main-con .right-box .popular_posts ul .popular_posts_item {
  margin-top: 0.16rem;
}
.index-page .main-con .right-box .popular_posts ul .popular_posts_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.14rem;
  line-height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .main-con .right-box .popular_posts ul .popular_posts_item a .num {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #99a0a4;
  font-family: var(--sk-font-Bold);
  margin-right: 0.08rem;
}
.index-page .main-con .right-box .popular_posts ul .popular_posts_item a:hover {
  color: var(--sk-global-color);
}
.index-page .main-con .right-box .popular_posts ul .popular_posts_item:nth-child(1) a .num {
  color: #df0f00;
}
.index-page .main-con .right-box .popular_posts ul .popular_posts_item:nth-child(2) a .num {
  color: #ff5900;
}
.index-page .main-con .right-box .popular_posts ul .popular_posts_item:nth-child(3) a .num {
  color: #fb8c00;
}
.index-page .main-con .right-box .top_reply_users {
  margin-top: 0.16rem;
  background-color: #fff;
  border-radius: 0.16rem;
  padding: 0.16rem;
}
.index-page .main-con .right-box .top_reply_users .title {
  font-size: 0.2rem;
  line-height: 0.32rem;
  font-family: var(--sk-font-Bold);
  padding-bottom: 0.16rem;
  border-bottom: 0.005rem solid #d9d9d9;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item {
  margin-top: 0.16rem;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item a .num {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #99a0a4;
  font-family: var(--sk-font-Bold);
  margin-right: 0.08rem;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item a .info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item a .info .avatar {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item a .info .avatar .img {
  width: 100%;
  height: 100%;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item a .info .name {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item a .info .count {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: #8a9299;
  font-size: 0.13rem;
  line-height: 0.2rem;
  padding-right: 0.08rem;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item a:hover .info .name {
  color: var(--sk-global-color);
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item:nth-child(1) a .num {
  color: #df0f00;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item:nth-child(2) a .num {
  color: #ff5900;
}
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item:nth-child(3) a .num {
  color: #fb8c00;
}
.index-page .main-con .right-box .ad-card {
  display: block;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0.16rem;
  overflow: hidden;
  margin-top: 0.16rem;
}
.index-page .main-con .right-box .ad-card .img {
  width: 100%;
  height: auto;
}
.index-page .main-con .right-box .active-discussions {
  display: none;
}
.index-page .main-con .right-box .active-discussions.show {
  display: block;
}

.g_footer {
  color: #99a0a4;
}
.g_footer .policy::before {
  background: #99a0a4;
}
.g_footer a {
  color: #99a0a4;
}

.notifications-page .g-header .g-head .g-head-main .left-menu .tree-box {
  display: none;
}
.notifications-page .main_con {
  margin-top: 0.24rem;
}
.notifications-page .main_con h1 {
  font-size: 0.48rem;
  line-height: 0.64rem;
  font-family: var(--sk-font-Bold);
}
.notifications-page .main_con .post-card__body .top-filter-box .filter-left-box .tab_item {
  padding: 0.08rem 0;
}
.notifications-page .main_con .post-card__body .top-filter-box .filter-left-box .tab_item:not(:first-child) {
  margin-left: 0.32rem;
}
.notifications-page .main_con .post-card__body .top-filter-box .filter-left-box .tab_item.on::before {
  width: 100%;
  left: 0;
}
.notifications-page .main_con .post-card__body .post-list-box .post-card.not_read .head-img-box {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.notifications-page .main_con .post-card__body .post-list-box .post-card.not_read .head-img-box::before {
  content: "";
  display: block;
  position: absolute;
  left: -0.11rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.06rem;
  height: 0.06rem;
  border-radius: 50%;
  background-color: #e51717;
}
.notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .info_top .name {
  font-family: var(--sk-font-Bold);
}
.notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .chuck-card {
  padding: 0.08rem 0.16rem;
}
.notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .chuck-card::before {
  height: calc(100% - 0.16rem);
  top: 0.08rem;
}
.notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .chuck-card .con-txt {
  margin-top: 0;
}
.notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .replies-time-collect {
  margin-top: 0.16rem;
}
.notifications-page .main_con .post-card__body #reply_right_editor {
  width: 7.92rem;
}
.notifications-page .main_con .empty {
  margin-top: 0.32rem;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.notifications-page .main_con .empty .empty-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #eef4f6;
}
.notifications-page .main_con .empty .empty-img .svg-ctx {
  width: 0.48rem;
  height: 0.48rem;
  color: #99a0a4;
}
.notifications-page .main_con .empty .empty-text {
  font-size: 0.14rem;
  line-height: 0.24rem;
  color: #666666;
  margin-top: 0.16rem;
}

.my-profile-page .main-con .left-main .b-g-card {
  border-radius: 0.16rem;
}
.my-profile-page .main-con .left-main .b-g-card .edit-profile {
  --btn-H: 0.4rem;
  --left-size: 0.24rem;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box .tab_item {
  padding: 0.08rem 0;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box {
  flex-wrap: wrap;
  gap: 0.08rem 0.32rem;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box .tab_item:not(:first-child) {
  margin-left: 0;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box .tab_item.on::before {
  width: 100%;
  left: 0;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry {
  padding: 0;
  margin-top: 0;
}
.my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card {
  background-color: #fff;
  padding: 0.16rem;
  border-radius: 0.16rem;
  border-bottom: none;
  margin-bottom: 0.08rem;
}

.all-categories-page .RightWrapper .wrapper_top .title {
  line-height: 0.4rem;
}
.all-categories-page .RightWrapper .wrapper_top .search_box {
  padding: 0.08rem 0.16rem;
  border-radius: 0.2rem;
  height: 0.4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.all-categories-page .RightWrapper .wrapper_top .search_box input {
  padding: 0;
  padding-right: 0;
  padding-left: 0.08rem;
}
.all-categories-page .RightWrapper .wrapper_top .search_box .search_icon {
  width: 0.24rem;
  height: 0.24rem;
}
.all-categories-page .RightWrapper .categories_list .categories_item {
  border-radius: 0.16rem;
}
.all-categories-page .RightWrapper .categories_list .categories_item ._top .middle {
  position: relative;
}
.all-categories-page .RightWrapper .categories_list .categories_item ._top .middle::before {
  display: block;
  content: "";
  position: absolute;
  left: -0.24rem;
  top: 0;
  width: 0.04rem;
  height: 100%;
  background-color: var(--categorie-color);
}

.all-tags-page .RightWrapper .wrapper_top .title {
  line-height: 0.4rem;
}
.all-tags-page .RightWrapper .wrapper_top .search_box {
  padding: 0.08rem 0.16rem;
  border-radius: 0.2rem;
  height: 0.4rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.all-tags-page .RightWrapper .wrapper_top .search_box input {
  padding: 0;
  padding-right: 0;
  padding-left: 0.08rem;
}
.all-tags-page .RightWrapper .wrapper_top .search_box .search_icon {
  width: 0.24rem;
  height: 0.24rem;
}

.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item {
  margin-top: 0.16rem;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item a .num {
  font-size: 0.16rem;
  line-height: 0.24rem;
  color: #99a0a4;
  font-family: var(--sk-font-Bold);
  margin-right: 0.08rem;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item a .info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item a .info .avatar {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item a .info .name {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item a .info .count {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  color: #666666;
  padding-right: 0.08rem;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item:nth-child(1) a .num {
  color: #df0f00;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item:nth-child(2) a .num {
  color: #ff5900;
}
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item:nth-child(3) a .num {
  color: #fb8c00;
}

.new-topics-page {
  --headH: 0.32rem;
  --footH: 1.12rem;
}
.new-topics-page .g-header .g-head .g-head-top .wal .clone-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.new-topics-page .g-head-main {
  display: none !important;
}
.new-topics-page .main-con {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.new-topics-page .main-con ._left {
  width: 8.8rem;
}
.new-topics-page .main-con ._left .publish_post_con {
  background-color: transparent;
  border-radius: 0.16rem;
  margin: 0.16rem 0 0.24rem;
  overflow: initial;
}
.new-topics-page .main-con ._left .publish_post_con ._top {
  padding: 0;
  background-color: #fff;
  border-top-left-radius: 0.16rem;
  border-top-right-radius: 0.16rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top .input_post_title {
  padding: 0.32rem;
  margin-top: 0;
  position: relative;
}
.new-topics-page .main-con ._left .publish_post_con ._top .input_post_title .count_text {
  position: absolute;
  right: 0.16rem;
  top: 0.16rem;
  font-size: 0.12rem;
  line-height: 0.24rem;
  color: #99a0a4;
}
.new-topics-page .main-con ._left .publish_post_con ._bottom {
  padding-bottom: 0.16rem;
  background-color: #fff;
  border-bottom-left-radius: 0.16rem;
  border-bottom-right-radius: 0.16rem;
  overflow: hidden;
}
.new-topics-page .main-con ._left .publish_post_con ._bottom .vditor_wrapper {
  height: 4.48rem;
}
.new-topics-page .main-con ._left .publish_post_con ._bottom .vditor_wrapper #vditor_editor .vditor-toolbar {
  margin: 0 0.16rem;
  padding: 0 0.4rem !important;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 {
  margin-top: 0.16rem;
  padding: 0.32rem;
  border-radius: 0.16rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item:not(:last-child) {
  margin-bottom: 0.16rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_label {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 0.16rem;
  font-size: 0.16rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Bold);
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_label p {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item.isRequied .choose_item_label p::after {
  content: "*";
  color: #df0f00;
  position: absolute;
  right: -0.1rem;
  top: 0;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select {
  width: 100%;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front {
  padding: 0.12rem 0.16rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front input::-webkit-input-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front input::-moz-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front input:-moz-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front input:-ms-input-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front textarea::-webkit-input-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front textarea::-moz-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front textarea:-moz-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front textarea:-ms-input-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll {
  max-height: 1.7rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 1.86rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar-width {
  width: 0.04rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul {
  width: 3rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags {
  margin-top: 0;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer {
  bottom: -0.08rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.16rem;
  overflow: hidden;
  z-index: 10;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner {
  padding: 0.08rem 0;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .tag-search-box {
  padding: 0 0.16rem 0.08rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .tag-search-box input {
  width: 100%;
  height: 0.36rem;
  padding: 0 0.12rem;
  border: 0.01rem solid #D9D9D9;
  border-radius: 0.08rem;
  font-size: 0.14rem;
  line-height: 0.2rem;
  color: #333333;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll {
  max-height: 1.6rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
  width: 0.04rem;
  height: 0.04rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.04rem;
  background: #D9D9D9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
  background-color: #D9D9D9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
  width: 0.04rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
  border-radius: 0.04rem;
  background-color: transparent;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll dl dd {
  padding: 0.08rem 0.16rem;
  font-size: 0.14rem;
  line-height: 0.24rem;
  margin-top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll dl dd:hover {
  background-color: #F7F9FA;
  color: var(--sk-global-color);
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll dl .tags-empty {
  padding: 0.08rem 0.16rem;
  font-size: 0.13rem;
  line-height: 0.24rem;
  color: #8A9299;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select {
  width: 100%;
  border: 0.01rem solid #D9D9D9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front {
  padding: 0.12rem 0.16rem;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front input::-webkit-input-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front input::-moz-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front input:-moz-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front input:-ms-input-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front textarea::-webkit-input-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front textarea::-moz-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front textarea:-moz-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front textarea:-ms-input-placeholder {
  color: #d9d9d9;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front::after {
  width: 0.24rem;
  height: 0.24rem;
  margin-left: auto;
  background: url(../image/target/base/arrow-drop-down.svg) center center no-repeat;
}
.new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front .tags {
  overflow-x: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 6rem;
  gap: 0.16rem;
}
.new-topics-page .main-con ._left .btn_box {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.16rem;
}
.new-topics-page .main-con ._left .btn_box #previewBtn,
.new-topics-page .main-con ._left .btn_box #publishBtn {
  min-width: 1.52rem;
}
.new-topics-page .main-con ._right_con {
  width: 2.24rem;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.new-topics-page .main-con ._right_con .clone-box {
  margin-left: auto;
  border-radius: 0.08rem;
  height: 0.4rem;
  width: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.01rem solid #D9D9D9;
  cursor: pointer;
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--headH) + 0.16rem);
  right: 0;
  background: #F7F9FA;
}
.new-topics-page .main-con ._right_con .clone-box .svg {
  width: 0.24rem;
  height: 0.24rem;
}

.topic-detail-page .g-header .g-head .g-head-main .right-box .back-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.topic-detail-page .main_con {
  margin-top: 0.16rem;
  position: relative;
}
.topic-detail-page .main_con ._left {
  width: 2.24rem;
  padding-right: 0.24rem;
  position: relative;
}
.topic-detail-page .main_con ._left .back-box {
  border-radius: 0.08rem;
  height: 0.4rem;
  width: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.01rem solid #D9D9D9;
  cursor: pointer;
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--headH) + 0.16rem);
  left: 0;
  background: #F7F9FA;
}
.topic-detail-page .main_con ._left .back-box .svg {
  width: 0.24rem;
  height: 0.24rem;
}
.topic-detail-page .main_con ._left .article_operation {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  top: calc(var(--headH) + 1.28rem);
}
.topic-detail-page .main_con ._left .article_operation .operation_item:not(:last-child) {
  margin-bottom: 0.24rem;
}
.topic-detail-page .main_con ._middle {
  border-radius: 0.16rem;
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .categories {
  padding-left: 0.24rem;
  margin-right: 0;
  position: relative;
  color: initial;
  background-color: initial;
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .categories::before {
  display: block;
  content: "";
  position: absolute;
  left: 0.06rem;
  top: 0.06rem;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 0.02rem;
  background-color: var(--categorie-color);
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list {
  margin-left: 0;
}
.topic-detail-page .main_con ._middle .article_area .categories_tags .tags_list .tag {
  color: var(--sk-global-color);
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply {
  padding: 0;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply .svg-ctx {
  width: 0.24rem;
  height: 0.24rem;
}
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply .text {
  font-size: 0.14rem;
  line-height: 0.24rem;
}

.index-page .main-con .right-box .popular_posts ul .popular_posts_item a .name,
.index-page .main-con .right-box .top_reply_users ul .top_reply_users_item a .info .name,
.all-categories-details-page .left-bottom-box .car-ind-box .recommend-card .recommend-list .recommend-li .name,
.all-tags-details-page .RightWrapper .left-bottom-box .tag-active-users-box .tag-active-users-card .user_list .top_reply_users_item a .info .name {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.post-card__body .post-list-box.hry .post-card .infor-con .tit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 800px) {
  .empty__box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.6rem;
  }
  .empty__box .text1 {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
  .empty__box .text2 {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .g-header .g-head .g-head-top {
    display: none;
    padding: 0.16rem 0.32rem;
  }
  .g-header .g-head .g-head-top .wal {
    padding: 0;
  }
  .g-header .g-head .g-head-top .wal .copy-site {
    padding-right: 0;
  }
  .g-header .g-head .g-head-top .wal .copy-site .svg {
    width: 0.32rem;
    height: 0.32rem;
    margin-right: 0.16rem;
  }
  .g-header .g-head .g-head-top .wal .lang-box {
    padding-right: 0;
  }
  .g-header .g-head .g-head-top .wal .lang-box .svg-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .g-header .g-head .g-head-top .wal .lang-box .svg-box .svg {
    width: 0.32rem;
    height: 0.32rem;
    margin-right: 0.16rem;
  }
  .g-header .g-head .g-head-top .wal .lang-box .layui-box {
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .g-header .g-head .g-head-top .wal .lang-box .layui-box .lang-list {
    padding: 0.16rem 0;
    border-radius: 0.16rem;
    box-shadow: 0rem 0rem 0.2rem 0rem rgba(0, 0, 0, 0.1);
  }
  .g-header .g-head .g-head-top .wal .lang-box .layui-box .lang-list .lang-cell {
    min-width: 3rem;
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .g-header .g-head .g-head-top .wal .clone-box {
    display: none;
  }
  .g-header .g-head .g-head-main {
    height: 2rem;
    padding-bottom: 1.12rem;
  }
  .g-header .g-head .g-head-main .left-menu {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .g-header .g-head .g-head-main .left-menu .tree-box,
  .g-header .g-head .g-head-main .left-menu .clone-box,
  .g-header .g-head .g-head-main .left-menu .back-box {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head .g-head-main .left-menu .tree-box .svg,
  .g-header .g-head .g-head-main .left-menu .clone-box .svg,
  .g-header .g-head .g-head-main .left-menu .back-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head .g-head-main .left-menu .tree-box,
  .g-header .g-head .g-head-main .left-menu .clone-box {
    display: none;
  }
  .g-header .g-head .g-head-main .left-logo {
    height: 0.8rem;
  }
  .g-header .g-head .g-head-main .left-logo .logo-box {
    height: 100%;
  }
  .g-header .g-head .g-head-main .search-box {
    position: absolute;
    left: 0.32rem;
    bottom: 0.16rem;
    width: calc(100% - 0.64rem);
    height: 0.8rem;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .g-header .g-head .g-head-main .search-box .input-box {
    height: 0.8rem;
  }
  .g-header .g-head .g-head-main .search-box .input-box input {
    font-size: 0.28rem;
    border-radius: 0.4rem;
    padding-left: 0.96rem;
    padding-right: 0.32rem;
  }
  .g-header .g-head .g-head-main .search-box .input-box .magnifier {
    right: 0.04rem;
    height: 0.72rem;
    width: 0.72rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .g-header .g-head .g-head-main .search-box .input-box .magnifier .svg {
    width: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 0.48rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .g-header .g-head .g-head-main .right-box .search-svg-box {
    display: none !important;
  }
  .g-header .g-head .g-head-main .right-box .search-svg-box .svg-box {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box,
  .g-header .g-head .g-head-main .right-box .login-box,
  .g-header .g-head .g-head-main .right-box .peofile-box {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 0;
    background: transparent;
  }
  .g-header .g-head .g-head-main .right-box .message-box .svg-box,
  .g-header .g-head .g-head-main .right-box .login-box .svg-box,
  .g-header .g-head .g-head-main .right-box .peofile-box .svg-box {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box {
    position: fixed;
    top: 0.88rem;
    right: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box {
    width: calc(100vw - 0.64rem);
    border-radius: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top {
    border-bottom: 0.01rem solid #d9d9d9;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .title,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .title,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .title {
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs {
    gap: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
    padding-right: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs .tabs-item,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs .tabs-item,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs .tabs-item {
    padding: 0.32rem 0;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_top .tabs .tabs-item.active::after,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_top .tabs .tabs-item.active::after,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_top .tabs .tabs-item.active::after {
    height: 0.04rem;
    bottom: -0.02rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont {
    height: 35vh;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #D9D9D9;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb:vertical,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb:vertical,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-width,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-width,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-track,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-track,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: transparent;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .empty .empty-img,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .empty .empty-img,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .empty .empty-img {
    width: 1.6rem;
    height: 1.6rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .empty .empty-img .svg-ctx,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .empty .empty-img .svg-ctx,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .empty .empty-img .svg-ctx {
    width: 0.96rem;
    height: 0.96rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .empty .empty-text,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .empty .empty-text,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .empty .empty-text {
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-top: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list {
    padding: 0 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item {
    padding: 0.24rem 0 0.16rem 0;
    border-bottom: 0.01rem solid #d9d9d9;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .avatar,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .avatar,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .avatar {
    width: 0.8rem;
    height: 0.8rem;
    margin-right: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info {
    width: calc(100% - 1.12rem);
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name .certifi,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name .certifi,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .name .certifi {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .behavior_time,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .behavior_time,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .behavior_time {
    font-size: 0.24rem;
    line-height: 0.32rem;
    padding-bottom: 0.08rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .cont,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .cont,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item .right_info .cont {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item.not_read .avatar::before,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item.not_read .avatar::before,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_cont .msg_list .msg_item.not_read .avatar::before {
    left: -0.22rem;
    width: 0.12rem;
    height: 0.12rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_bottom,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_bottom,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_bottom {
    padding: 0.24rem;
    border-top: 0.01rem solid #d9d9d9;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_bottom .view_all,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_bottom .view_all,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_bottom .view_all {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .notify_box .notify_box_bottom .view_all .svg-ctx,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .notify_box .notify_box_bottom .view_all .svg-ctx,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .notify_box .notify_box_bottom .view_all .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box {
    width: calc(100vw - 0.64rem);
    padding: 0.48rem 0.32rem;
    border-radius: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box .tit,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box .tit,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box .tit {
    font-size: 0.4rem;
    line-height: 0.64rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box .txt,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box .txt,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box .txt {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box .sign-up-btn,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box .sign-up-btn,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box .sign-up-btn {
    margin-top: 0.32rem;
    width: 100%;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .not_login_box .log-in-box,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .not_login_box .log-in-box,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .not_login_box .log-in-box {
    margin-top: 0.16rem;
    width: 100%;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box {
    width: calc(100vw - 0.64rem);
    padding: 0.32rem 0.32rem 0.16rem;
    border-radius: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname {
    margin-bottom: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname .tx-img,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname .tx-img,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname .tx-img {
    height: 1.12rem;
    width: 1.12rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname .name-e-mail,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname .name-e-mail,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname .name-e-mail {
    margin-left: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname .name-e-mail .name,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname .name-e-mail .name,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname .name-e-mail .name {
    font-size: 0.32rem;
    line-height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .avatar-nickname .name-e-mail .e-mail,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .avatar-nickname .name-e-mail .e-mail,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .avatar-nickname .name-e-mail .e-mail {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box {
    padding: 0.16rem 0;
    border-top: 0.01rem solid #d9d9d9;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box {
    padding: 0.16rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0.16rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box .svg-stroke,
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box .svg-ctx,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box .svg-stroke,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box .svg-ctx,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box .svg-stroke,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box .svg-ctx {
    height: 0.48rem;
    width: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .layui-box .log_on_box .cell-list-box .cell-box .txt,
  .g-header .g-head .g-head-main .right-box .login-box .layui-box .log_on_box .cell-list-box .cell-box .txt,
  .g-header .g-head .g-head-main .right-box .peofile-box .layui-box .log_on_box .cell-list-box .cell-box .txt {
    margin-left: 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .g-header .g-head .g-head-main .right-box .message-box .message-count {
    right: -0.16rem;
    top: -0.08rem;
    padding: 0 0.06rem;
    font-size: 0.2rem;
    line-height: 0.32rem;
    border-radius: 0.16rem;
  }
  .g-header .g-head .g-head-main .right-box .back-box {
    border-radius: 0.16rem;
    height: 0.64rem;
    width: 0.64rem;
    border: 0.01rem solid #D9D9D9;
    position: static;
    display: none;
  }
  .g-header .g-head .g-head-main .right-box .back-box.show {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .g-header .g-head .g-head-main .right-box .back-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .leftSidebar {
    top: auto !important;
  }
  .leftSidebar .tree__body {
    padding: 0.16rem 0.32rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
  }
  .leftSidebar .tree__body .tree-box {
    display: none;
    height: 0.8rem;
  }
  .leftSidebar .tree__body .new-topic {
    --btn-H: 0.8rem;
    --left-size: 0.48rem;
    --left-bg-color: transparent;
    --bg-color: linear-gradient(90deg, #00B0FF 0%, #002BFF 100%);
    padding: 0 0.28rem 0 0.24rem;
  }
  .leftSidebar .tree__body .my-box {
    display: none !important;
    height: 0.8rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box {
    position: relative;
  }
  .leftSidebar .sticky_wrapper .sticky-box .close_icon {
    position: absolute;
    right: 0.32rem;
    top: 1.04rem;
    width: 0.48rem;
    height: 0.48rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .leftSidebar .sticky_wrapper .sticky-box .close_icon .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list {
    padding: 0.16rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .label {
    font-size: 0.28rem;
    line-height: 0.48rem;
    padding: 0.16rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .label .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell .color {
    width: 0.48rem;
    height: 0.48rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .link-cell .color::before {
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 0.04rem;
  }
  .post-card__body .top-filter-box {
    padding: 0.16rem 0;
    background-color: transparent;
  }
  .post-card__body .top-filter-box .filter-left-box .tab_item {
    font-size: 0.32rem;
    line-height: 0.48rem;
    padding: 0.16rem 0.32rem;
  }
  .post-card__body .top-filter-box .filter-left-box .tab_item .ico {
    margin-right: 0.16rem;
    width: 0.48rem;
    height: 0.48rem;
  }
  .post-card__body .top-filter-box .filter-left-box .tab_item .count {
    margin-left: 0.16rem;
  }
  .post-card__body .top-filter-box .filter-left-box .tab_item.on::before {
    left: 0.32rem;
    width: calc(100% - 0.64rem);
    height: 0.04rem;
  }
  .post-card__body .top-filter-box .filter-right-box {
    padding-right: 0.3rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box {
    border: 0.01rem solid #d6dde0;
    border-radius: 0.16rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box:not(:first-child) {
    margin-left: 0.16rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-link {
    height: 0.64rem;
    padding: 0.08rem 0.16rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-link .txt {
    max-width: 1.5rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui {
    padding: 0.32rem 0.16rem 0.32rem 0.32rem;
    border-radius: 0.32rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list {
    padding: 0 0.16rem 0 0;
    min-width: unset;
    width: 60vw;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .search_wrapper {
    padding: 0;
    border-radius: 0.16rem;
    margin-bottom: 0.16rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .search_wrapper .search_box {
    padding: 0.16rem;
    border-radius: 0.4rem;
    height: 0.8rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-list .search_wrapper .search_box .search_icon {
    width: 0.48rem;
    height: 0.48rem;
  }
  .post-card__body .top-filter-box .filter-right-box .select-box .dropdown-layui .category-li {
    border-radius: 0.16rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: unset !important;
  }
  .post-card__body .post-list-box.hry .post-card {
    padding: 0.32rem;
    border-radius: 0.16rem;
    margin-bottom: 0.16rem;
    margin-top: 0;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    padding-left: 1.12rem;
    height: 0.8rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi {
    margin-left: 0.04rem;
    width: 0.48rem;
    height: 0.48rem;
  }
  .post-card .infor-con .info_top .name .post-integral-level-badge {
    margin-left: 0.12rem;
    min-height: 0.26rem;
    padding: 0.02rem 0.16rem 0.01rem;
    font-size: 0.18rem;
    line-height: 0.2rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date {
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .tit {
    margin-top: 0.16rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .behavior_time {
    font-size: 0.24rem;
    line-height: 0.32rem;
    margin-top: 0.16rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .reply_comment {
    margin-top: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .tag-list .categories-tag {
    padding-left: 0.48rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .tag-list .categories-tag::before {
    left: 0.12rem;
    top: 0.12rem;
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 0.04rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .view-box .avatar-list .img {
    width: 0.32rem;
    height: 0.32rem;
    margin-left: -0.08rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .replies-time .view-box .view-count {
    font-size: 0.24rem;
    line-height: 0.48rem;
    margin-left: 0.16rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation {
    gap: 0.52rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .thumb_box .img,
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .collect_box .img,
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .reply_box .img {
    width: 0.48rem;
    height: 0.48rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .thumb_box .txt,
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .collect_box .txt,
  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect .right_operation .reply_box .txt {
    margin-left: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .con-txt {
    max-height: 2.88rem;
  }
  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card .con-txt::after {
    content: "";
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 0.88rem;
    /* 阴影高度，可根据需要调整 */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgb(247, 249, 250));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(247, 249, 250));
    pointer-events: none;
  }
  .index-page {
    --menuH: 1.12rem !important;
  }
  .index-page .g-header .g-head .g-head-main .left-menu .tree-box {
    display: block;
  }
  .index-page .main-con {
    padding-top: 0.16rem;
  }
  .notifications-page {
    --headH: 0.88rem;
  }
  .notifications-page .g-header .g-head .g-head-main .left-menu .back-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0.16rem;
    height: 0.8rem;
    width: 0.8rem;
    border: 0.01rem solid #D9D9D9;
  }
  .notifications-page .g-header .g-head .g-head-main .left-menu .back-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .notifications-page .g-header .g-head .g-head-main {
    height: var(--headH);
    padding-bottom: 0;
  }
  .notifications-page .g-header .g-head .g-head-main .left-logo,
  .notifications-page .g-header .g-head .g-head-main .search-box,
  .notifications-page .g-header .g-head .g-head-main .right-box {
    display: none;
  }
  .notifications-page .main_con {
    padding: 0 0;
    margin-top: 0.32rem;
  }
  .notifications-page .main_con h1 {
    padding: 0 0.32rem;
  }
  .notifications-page .main_con .post-card__body {
    margin-top: 0.16rem;
  }
  .notifications-page .main_con .post-card__body .top-filter-box {
    padding: 0 0.32rem;
  }
  .notifications-page .main_con .post-card__body .top-filter-box .filter-left-box .tab_item {
    padding: 0.16rem 0;
  }
  .notifications-page .main_con .post-card__body .top-filter-box .filter-left-box .tab_item:not(:first-child) {
    margin-left: 0.64rem;
  }
  .notifications-page .main_con .post-card__body .post-list-box .post-card.not_read .head-img-box {
    position: absolute;
  }
  .notifications-page .main_con .post-card__body .post-list-box .post-card.not_read .head-img-box::before {
    left: -0.22rem;
    width: 0.12rem;
    height: 0.12rem;
  }
  .notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .info_top {
    height: 0.48rem;
  }
  .notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .behavior_time {
    padding-left: 1.12rem;
    margin-top: 0;
  }
  .notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .chuck-card {
    margin-top: 0.16rem;
    padding: 0.16rem 0.32rem;
  }
  .notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .chuck-card .con-txt {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .chuck-card::before {
    height: calc(100% - 0.32rem);
    top: 0.16rem;
  }
  .notifications-page .main_con .post-card__body .post-list-box .post-card .infor-con .replies-time-collect {
    margin-top: 0.32rem;
  }
  .notifications-page .main_con .post-card__body #reply_right_editor {
    width: 6.88rem;
  }
  .notifications-page .main_con .empty {
    height: calc(100vh - var(--headH) - var(--footH) - 0.64rem - 0.64rem);
  }
  .notifications-page .main_con .empty .empty-img {
    width: 1.6rem;
    height: 1.6rem;
  }
  .notifications-page .main_con .empty .empty-img .svg-ctx {
    width: 0.96rem;
    height: 0.96rem;
  }
  .notifications-page .main_con .empty .empty-text {
    font-size: 0.28rem;
    line-height: 0.48rem;
    margin-top: 0.32rem;
  }
  .my-profile-page .main-con .left-main .b-g-card {
    border-radius: 0;
  }
  .my-profile-page .main-con .left-main .b-g-card .edit-profile {
    --btn-H: 0.8rem;
    --left-size: 0.48rem;
  }
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box {
    padding: 0.16rem 0.32rem;
    max-width: 100vw;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE 和 Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box .tab_item {
    padding: 0.16rem 0;
  }
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box {
    flex-wrap: nowrap;
    gap: 0.48rem;
  }
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box .tab_item:not(:first-child) {
    margin-left: 0;
  }
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry {
    padding: 0;
    margin-top: 0;
  }
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .reply-list-box.hry .reply-card {
    padding: 0.32rem;
    border-radius: 0.32rem;
    margin-bottom: 0.16rem;
  }
  .all-categories-page .RightWrapper .wrapper_top .title {
    line-height: 0.8rem;
  }
  .all-categories-page .RightWrapper .wrapper_top .search_box {
    padding: 0.16rem 0.32rem;
    border-radius: 0.4rem;
    height: 0.8rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .all-categories-page .RightWrapper .wrapper_top .search_box input {
    padding: 0;
    padding-right: 0;
    padding-left: 0.16rem;
  }
  .all-categories-page .RightWrapper .wrapper_top .search_box .search_icon {
    width: 0.48rem;
    height: 0.48rem;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item {
    border-radius: 0;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item ._top .middle {
    position: relative;
  }
  .all-categories-page .RightWrapper .categories_list .categories_item ._top .middle::before {
    width: 0.08rem;
  }
  .all-tags-page .RightWrapper .wrapper_top .title {
    line-height: 0.8rem;
  }
  .all-tags-page .RightWrapper .wrapper_top .search_box {
    padding: 0.16rem 0.32rem;
    border-radius: 0.4rem;
    height: 0.8rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .all-tags-page .RightWrapper .wrapper_top .search_box input {
    padding: 0;
    padding-right: 0;
    padding-left: 0.16rem;
  }
  .all-tags-page .RightWrapper .wrapper_top .search_box .search_icon {
    width: 0.48rem;
    height: 0.48rem;
  }
  .new-topics-page .g-header .g-head .g-head-main {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    height: 0.88rem;
    padding-bottom: 0;
  }
  .new-topics-page .g-header .g-head .g-head-main .left-menu .back-box {
    display: none;
  }
  .new-topics-page .g-header .g-head .g-head-main .left-menu .clone-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0.16rem;
    height: 0.8rem;
    width: 0.8rem;
    border: 0.01rem solid #D9D9D9;
  }
  .new-topics-page .g-header .g-head .g-head-main .left-menu .clone-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .new-topics-page .g-header .g-head .g-head-main .left-logo,
  .new-topics-page .g-header .g-head .g-head-main .search-box,
  .new-topics-page .g-header .g-head .g-head-main .right-box {
    display: none;
  }
  .new-topics-page {
    --headH: 0.88rem;
    --footH: 2.24rem;
  }
  .new-topics-page .main-con {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .new-topics-page .main-con ._left {
    width: 100%;
  }
  .new-topics-page .main-con ._left .publish_post_con {
    border-radius: 0.32rem;
    margin: 0.32rem 0 0.48rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top {
    border-top-left-radius: 0rem;
    border-top-right-radius: 0rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top .input_post_title {
    padding: 0.64rem 0.32rem;
    margin-top: 0;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top .input_post_title .count_text {
    position: absolute;
    right: 0.32rem;
    top: 0.16rem;
    font-size: 0.24rem;
    line-height: 0.48rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._bottom {
    padding-bottom: 0.32rem;
    border-bottom-left-radius: 0.16rem;
    border-bottom-right-radius: 0.16rem;
    overflow: hidden;
  }
  .new-topics-page .main-con ._left .publish_post_con ._bottom .vditor_wrapper {
    height: 8.96rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._bottom .vditor_wrapper #vditor_editor .vditor-toolbar {
    margin: 0 0.32rem;
    padding: 0 !important;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 {
    margin-top: 0.32rem;
    padding: 0.32rem;
    border-radius: 0rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item:not(:last-child) {
    margin-bottom: 0.32rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_label {
    display: none;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-front {
    padding: 0.24rem 0.32rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll {
    max-height: 3rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
    width: 0.04rem;
    height: 0.04rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.04rem;
    background: #D9D9D9;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
    width: 0.04rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
    border-radius: 0.04rem;
    background-color: transparent;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu {
    max-height: 3.32rem;
    box-shadow: 5px 0px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0.16rem 0;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar {
    width: 0.04rem;
    height: 0.04rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar-thumb {
    border-radius: 0.04rem;
    background: #D9D9D9;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar-width {
    width: 0.04rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul li .cascader-menu::-webkit-scrollbar-track {
    border-radius: 0.04rem;
    background-color: transparent;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_category .sk_select .-select-layer .-inner .-scroll ul {
    width: calc(50vw - 0.32rem);
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags {
    margin-top: 0;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer {
    bottom: -0.16rem;
    border-radius: 0.32rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner {
    padding: 0.16rem 0;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .tag-search-box {
    padding: 0 0.24rem 0.16rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .tag-search-box input {
    height: 0.64rem;
    padding: 0 0.2rem;
    border-radius: 0.16rem;
    font-size: 0.26rem;
    line-height: 0.36rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll {
    max-height: 3.2rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar {
    width: 0.08rem;
    height: 0.08rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.08rem;
    background: #D9D9D9;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-width {
    width: 0.08rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll::-webkit-scrollbar-track {
    border-radius: 0.08rem;
    background-color: transparent;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll dl dd {
    padding: 0.16rem 0.32rem;
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-layer .-inner .-scroll dl .tags-empty {
    padding: 0.16rem 0.32rem;
    font-size: 0.24rem;
    line-height: 0.4rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select {
    width: 100%;
    border: 0.01rem solid #D9D9D9;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front {
    padding: 0.24rem 0.32rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front::after {
    width: 0.48rem;
    height: 0.48rem;
  }
  .new-topics-page .main-con ._left .publish_post_con ._top2 .choose_item .choose_item_content .choose_tags .sk_select .-select-front .tags {
    overflow-x: auto;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 6rem;
    gap: 0.16rem;
  }
  .new-topics-page .main-con ._left .btn_box {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100vw;
    overflow: hidden;
  }
  .new-topics-page .main-con ._left .btn_box #previewBtn,
  .new-topics-page .main-con ._left .btn_box #publishBtn {
    min-width: calc((100vw - 0.8rem) / 2);
    padding: 0 0.36rem;
  }
  .new-topics-page .main-con ._right_con {
    display: none;
  }
  .topic-detail-page {
    --menuH: 1.12rem !important;
    --headH: 0.88rem;
  }
  .topic-detail-page .g-header .g-head .g-head-main .left-menu .back-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0.16rem;
    height: 0.8rem;
    width: 0.8rem;
    border: 0.01rem solid #D9D9D9;
  }
  .topic-detail-page .g-header .g-head .g-head-main .left-menu .back-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .topic-detail-page .g-header .g-head .g-head-main {
    height: var(--headH);
    padding-bottom: 0;
  }
  .topic-detail-page .g-header .g-head .g-head-main .left-logo,
  .topic-detail-page .g-header .g-head .g-head-main .search-box,
  .topic-detail-page .g-header .g-head .g-head-main .right-box {
    display: none;
  }
  .topic-detail-page .g-header .g-head .g-head-main .right-box .back-box {
    display: none;
  }
  .topic-detail-page .main_con {
    margin-top: 0.32rem;
  }
  .topic-detail-page .main_con ._left {
    position: fixed;
    bottom: 0;
    z-index: 100;
    width: 100%;
    padding: 0;
  }
  .topic-detail-page .main_con ._left .article_operation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    padding: 0.16rem 0.32rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    top: auto;
  }
  .topic-detail-page .main_con ._left .article_operation .operation_item:not(:last-child) {
    margin-bottom: 0;
  }
  .topic-detail-page .main_con ._middle {
    border-radius: 0;
  }
  .topic-detail-page .main_con ._middle .article_area .categories_tags .categories {
    padding-left: 0.48rem;
    margin-right: 0;
  }
  .topic-detail-page .main_con ._middle .article_area .categories_tags .categories::before {
    left: 0.12rem;
    top: 0.12rem;
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 0.04rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply .svg-ctx {
    width: 0.48rem;
    height: 0.48rem;
  }
  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply .text {
    font-size: 0.28rem;
    line-height: 0.48rem;
  }
  .search-results-page {
    --headH: 0.88rem;
  }
  .search-results-page .g-header .g-head .g-head-main .left-menu .back-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0.16rem;
    height: 0.8rem;
    width: 0.8rem;
    border: 0.01rem solid #D9D9D9;
  }
  .search-results-page .g-header .g-head .g-head-main .left-menu .back-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .search-results-page .g-header .g-head .g-head-main {
    height: var(--headH);
    padding-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .search-results-page .g-header .g-head .g-head-main .left-logo,
  .search-results-page .g-header .g-head .g-head-main .search-box,
  .search-results-page .g-header .g-head .g-head-main .right-box {
    display: none;
  }
  .search-results-page .g-header .g-head .g-head-main .right-box .back-box {
    display: none;
  }
  .my-profile-page .main-con .left-main .b-g-card {
    height: 2.96rem;
    padding: 0.24rem 0.32rem 0.32rem 0.32rem;
  }
  .my-profile-page .main-con .left-main .b-g-card .back-box {
    border-radius: 0.16rem;
    width: 0.48rem;
    height: 0.48rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 0.4rem;
    left: 0.32rem;
    z-index: 1;
  }
  .my-profile-page .main-con .left-main .b-g-card .back-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .my-profile-page .main-con .left-main .b-g-card .back-box .svg path {
    fill: #fff;
  }
  .my-profile-page .main-con .left-main .b-g-card .avatar-name {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    left: 0.32rem;
    bottom: 0.32rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .avatar-img {
    width: 1.12rem;
    height: 1.12rem;
  }
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email {
    margin: 0;
    margin-left: 0.32rem;
  }
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .name {
    color: #fff;
  }
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .email {
    color: #fff;
  }
  .my-profile-page .main-con .left-main .b-g-card .edit-profile {
    right: 0.32rem;
    top: 0.24rem;
    left: auto;
    bottom: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    padding: 0 0.24rem 0 0.16rem;
  }
  .index-page .g-header .g-head .g-head-main .left-menu .tree-box,
  .all-categories-page .g-header .g-head .g-head-main .left-menu .tree-box,
  .all-tags-page .g-header .g-head .g-head-main .left-menu .tree-box {
    display: block;
  }
  .index-page .g-header .g-head .g-head-main .left-menu .back-box,
  .all-categories-page .g-header .g-head .g-head-main .left-menu .back-box,
  .all-tags-page .g-header .g-head .g-head-main .left-menu .back-box {
    display: none;
  }
  .search-results-page .g-header {
    display: none;
  }
  .search-results-page .top_box {
    padding: 0.08rem 0.32rem;
    background-color: #fff;
  }
  .search-results-page .top_box .back-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0.16rem;
    height: 0.8rem;
    width: 0.8rem;
    border: 0.01rem solid #D9D9D9;
  }
  .search-results-page .top_box .back-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website {
    margin-top: 0.16rem;
    height: initial;
    background-color: initial;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .gigaDevice-website ._left {
    margin-right: 0.16rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .switch_lang {
    margin-top: 0.32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .switch_lang ._left {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-right: 0.16rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .switch_lang ._left .svg-stroke {
    width: 0.32rem;
    height: 0.32rem;
    color: #000;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .switch_lang ._right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.16rem;
  }
  .leftSidebar .sticky_wrapper .sticky-box .link-list-box .link-list .switch_lang ._right a.on {
    color: var(--sk-global-color);
  }
}
@media screen and (min-width: 800px) {
  .leftSidebar::-webkit-scrollbar {
    width: 0.04rem;
    height: 0.04rem;
  }
  .leftSidebar::-webkit-scrollbar-thumb {
    border-radius: 0.04rem;
    background: #D9D9D9;
  }
  .leftSidebar::-webkit-scrollbar-thumb:vertical {
    background-color: #D9D9D9;
  }
  .leftSidebar::-webkit-scrollbar-width {
    width: 0.04rem;
  }
  .leftSidebar::-webkit-scrollbar-track {
    border-radius: 0.04rem;
    background-color: transparent;
  }
}

.forum-meta-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0.04rem;
  flex-wrap: nowrap;
}

.forum-mark-list {
  display: flex;
  align-items: center;
  gap: 0.08rem;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.title-meta-row {
  margin-top: 0.12rem;
  display: flex;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 0;
}

.title-meta-row .tit {
  margin-top: 0 !important;
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.title-meta-row .forum-mark-list,
.article_title_row .forum-mark-list {
  flex: 0 0 auto;
  margin-top: 0.02rem;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.forum-mark-list--detail {
  margin-left: auto;
  justify-content: flex-end;
}

.article_title_row {
  margin-top: 0.24rem;
  display: flex;
  align-items: flex-start;
  gap: 0.16rem;
}

.article_title_row .article_title {
  margin-top: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.article_title_row .forum-mark-list--detail {
  margin-left: 0;
}

.forum-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 0.24rem;
  height: 0.24rem;
  min-height: 0.24rem;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  cursor: default;
  outline: none;
}

.forum-mark__icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  fill: currentColor;
}

.forum-mark__text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.forum-mark::before,
.forum-mark::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.forum-mark::before {
  content: "";
  display: none;
  bottom: calc(100% + 0.02rem);
  width: 0.08rem;
  height: 0.08rem;
  background: #111827;
  transform: translateX(-50%) rotate(45deg) scale(0.92);
}

.forum-mark::after {
  content: attr(title);
  bottom: calc(100% + 0.006rem);
  padding: 0.05rem 0.1rem;
  border-radius: 0.08rem;
  background: #111827;
  color: #FFFFFF;
  font-size: 0.12rem;
  line-height: 0.18rem;
  font-family: var(--sk-font-Medium);
  white-space: nowrap;
  box-shadow: 0 0.06rem 0.16rem rgba(17, 24, 39, 0.18);
  transform: translateX(-50%) translateY(0.004rem);
}

.forum-mark:hover::before,
.forum-mark:hover::after,
.forum-mark:focus-visible::before,
.forum-mark:focus-visible::after,
.forum-mark:active::before,
.forum-mark:active::after {
  opacity: 1;
}

.forum-mark:hover::before,
.forum-mark:focus-visible::before,
.forum-mark:active::before {
  transform: translateX(-50%) rotate(45deg) scale(1);
}

.forum-mark:hover::after,
.forum-mark:focus-visible::after,
.forum-mark:active::after {
  transform: translateX(-50%) translateY(0);
}

.forum-mark--top {
  background: rgba(10, 115, 255, 0.14);
  color: #0A73FF;
}

.forum-mark--recommend {
  background: rgba(249, 115, 22, 0.16);
  color: #F97316;
}

.forum-mark--essence {
  background: rgba(220, 38, 38, 0.16);
  color: #DC2626;
}

.forum-adopted-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0.24rem;
  padding: 0 0.14rem 0 0.2rem;
  border-radius: 0;
  background: #E6F2FF;
  color: #0A73FF;
  font-size: 0.12rem;
  line-height: 0.24rem;
  font-family: var(--sk-font-Medium);
  white-space: nowrap;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0.12rem 50%);
}

.forum-adopted-badge--corner {
  position: absolute;
  top: 0.12rem;
  right: 0;
}

.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card {
  position: relative;
}

.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card.chuck-card--adopted .name-date,
.post-card__body .post-list-box.hry .post-card .infor-con .chuck-card.chuck-card--adopted .con-txt {
  padding-right: 0.92rem;
}

.topic-detail-page .main_con ._middle .article_area ._top {
  align-items: flex-start;
  gap: 0.16rem;
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info {
  align-items: center;
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper {
  position: relative;
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper--adopted .comment_detail {
  padding-right: 0.96rem;
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .forum-adopted-badge--detail {
  top: 0.12rem;
  right: 0;
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_operation {
  display: flex;
  align-items: center;
  gap: 0.16rem;
  flex-wrap: wrap;
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_operation .reply {
  display: inline-flex;
  align-items: center;
  gap: 0.06rem;
  cursor: pointer;
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_operation {
  margin-top: 0.12rem;
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_operation .reply .svg-ctx {
  width: 0.14rem;
  height: 0.14rem;
}

.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .comment_operation .reply.adopt .text,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_operation .reply.adopt .text {
  color: #0A73FF;
  font-family: var(--sk-font-Medium);
}

.forum-adopt-dialog {
  padding: 0.08rem 0.04rem 0;
}

.forum-adopt-dialog__description {
  color: #4A5560;
  font-size: 14px;
  line-height: 22px;
}

.forum-adopt-dialog__checkbox {
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #111827;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.forum-adopt-dialog__checkbox input {
  margin-top: 3px;
}

@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    height: auto;
    min-height: 0.8rem;
  }

  .forum-meta-right {
    gap: 0.12rem;
  }

  .forum-mark,
  .forum-adopted-badge {
    min-height: 0.44rem;
    font-size: 0.24rem;
    line-height: 0.44rem;
  }

  .forum-mark {
    width: 0.32rem;
    height: 0.32rem;
    min-height: 0.32rem;
    padding: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
  }

  .forum-mark__icon {
    width: 100%;
    height: 100%;
  }

  .forum-adopted-badge {
    min-height: 0.4rem;
    padding: 0 0.18rem 0 0.26rem;
    line-height: 0.4rem;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0.18rem 50%);
  }

  .forum-adopted-badge--corner {
    top: 0.24rem;
    right: 0;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card.chuck-card--adopted .name-date,
  .post-card__body .post-list-box.hry .post-card .infor-con .chuck-card.chuck-card--adopted .con-txt {
    padding-right: 1.48rem;
  }

  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper--adopted .comment_detail {
    padding-right: 1.52rem;
  }

  .topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_operation .reply .svg-ctx {
    width: 0.28rem;
    height: 0.28rem;
  }

  .forum-adopt-dialog__description {
    font-size: 0.28rem;
    line-height: 0.44rem;
  }

  .forum-adopt-dialog__checkbox {
    gap: 0.16rem;
    font-size: 0.28rem;
    line-height: 0.4rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    min-height: 0.72rem;
    padding-top: 0.01rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
    position: relative;
    top: 0.008rem;
    line-height: 0.2rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right {
    top: 0.01rem;
  }
}

.my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel {
  display: flex;
  justify-content: space-between;
  gap: 0.22rem;
  height: auto;
  min-height: 1.52rem;
  padding: 0.2rem 0.28rem;
  align-items: center;
}

.my-profile-page .main-con .left-main .b-g-card .profile-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 33, 97, 0.18) 0%, rgba(7, 33, 97, 0.08) 28%, rgba(7, 33, 97, 0) 58%);
  pointer-events: none;
}

.my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel .avatar-name {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 0.18rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 1.98rem);
  align-self: flex-end;
  padding-bottom: 0;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .avatar-frame {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0.03rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 0.01rem solid rgba(255, 255, 255, 0.26);
  box-shadow: none;
  flex-shrink: 0;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .avatar-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(247, 249, 250, 0.92);
}

.my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel .avatar-name .name-email {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.08rem;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: 4.8rem;
  margin-left: 0;
  margin-top: 0;
  padding: 0.02rem 0.16rem 0.01rem 0.14rem;
  border-radius: 0;
  background: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel .avatar-name .name-email::before {
  content: "";
  position: absolute;
  left: -0.16rem;
  right: -0.5rem;
  top: -0.14rem;
  bottom: -0.04rem;
  z-index: -1;
  background: radial-gradient(ellipse at 14% 58%, rgba(6, 24, 68, 0.22) 0%, rgba(6, 24, 68, 0.14) 34%, rgba(6, 24, 68, 0.06) 58%, rgba(6, 24, 68, 0) 86%);
  filter: blur(0.24rem);
  pointer-events: none;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-primary-line {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.04rem;
  max-width: 100%;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .name {
  font-size: 0.26rem;
  line-height: 0.32rem;
  max-width: 100%;
  color: #FFFFFF;
  text-shadow: 0 0.03rem 0.1rem rgba(5, 18, 49, 0.34);
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-name-row.member-primary-line {
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.06rem;
  min-width: 0;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .integral-level-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 0.2rem;
  padding: 0.004rem 0.14rem 0;
  border-radius: 9999px;
  background: #ffffff;
  color: #0052E3;
  font-family: var(--sk-font-Bold);
  font-size: 0.13rem;
  line-height: 0.15rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 0.04rem 0.12rem rgba(5, 18, 49, 0.12);
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .integral-level-badge .integral-level-badge__text {
  display: block;
  background: linear-gradient(90deg, #00B0FF 0%, #0052E3 52%, #002BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: 0.02em;
  font-style: italic;
  transform: skewX(-10deg);
  transform-origin: center;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-mail-row.member-primary-line {
  display: block;
  max-width: 100%;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .mail {
  font-size: 0.15rem;
  line-height: 0.22rem;
  color: #ffffff;
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 0.02rem 0.08rem rgba(5, 18, 49, 0.28);
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta {
  margin-top: 0.02rem;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  gap: 0.02rem;
  max-width: 100%;
  width: auto;
  padding-top: 0.08rem;
  border-top: 0.01rem solid rgba(255, 255, 255, 0.22);
  align-items: flex-start;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta.member-profile-meta--placeholder {
  visibility: hidden;
  pointer-events: none;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item {
  display: block;
  min-width: 0;
  max-width: 100%;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--intro {
  display: block;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--country {
  display: block;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__label {
  font-size: 0.1rem;
  line-height: 0.14rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__value {
  font-size: 0.13rem;
  line-height: 0.2rem;
  color: #FFFFFF;
  min-width: 0;
  max-width: 100%;
  text-shadow: 0 0.02rem 0.08rem rgba(5, 18, 49, 0.3);
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__value > span:first-child {
  color: rgba(255, 255, 255, 0.76);
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__value > span:last-child {
  color: #FFFFFF;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--intro .member-profile-meta__value {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  min-width: 0;
  max-width: 100%;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--country .member-profile-meta__value {
  white-space: normal;
}

.my-profile-page .main-con .left-main .b-g-card .profile-side-panel {
  position: relative;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  min-width: 1.56rem;
  flex-shrink: 0;
  align-items: flex-end;
  gap: 0.1rem;
  justify-content: center;
  align-self: center;
}

.my-profile-page .main-con .left-main .b-g-card .profile-side-panel .edit-profile {
  align-self: flex-end;
  min-width: 1.56rem;
  justify-content: center;
  box-shadow: 0 0.06rem 0.14rem rgba(7, 23, 62, 0.08);
}

.my-profile-page .main-con .left-main .b-g-card .profile-points-box {
  width: auto;
  min-height: auto;
  justify-content: flex-end;
  align-items: center;
  gap: 0.06rem;
  padding: 0;
  border-radius: 0;
  border: none;
  background: none;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.my-profile-page .main-con .left-main .b-g-card .profile-points-box .points-left-box {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.my-profile-page .main-con .left-main .b-g-card .profile-points-value {
  font-size: 0.42rem;
  line-height: 0.44rem;
  letter-spacing: 0;
}

.my-profile-page .main-con .left-main .b-g-card .profile-points-label {
  margin-top: 0.04rem;
  max-width: none;
  font-size: 0.12rem;
  line-height: 0.16rem;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.my-profile-page .main-con .left-main .b-g-card .profile-img-box {
  width: 0.16rem;
  height: 0.16rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-profile-page .main-con .left-main .b-g-card .profile-img-box img {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .title-meta-row {
    margin-top: 0.12rem;
    gap: 0.08rem;
  }

  .title-meta-row .forum-mark-list,
  .article_title_row .forum-mark-list {
    gap: 0.04rem;
  }

  .article_title_row {
    margin-top: 0.32rem;
    gap: 0.08rem;
  }
}

@media screen and (min-width: 801px) {
  .post-card__body .post-list-box.hry .post-card .head-img-box {
    margin-top: 0;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con {
    position: relative;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    display: flex;
    align-items: center;
    min-height: 0.4rem;
    margin-bottom: 0;
    padding-right: 1.34rem;
    column-gap: 0.1rem;
    padding-top: 0;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
    display: inline-flex;
    align-items: center;
    align-self: center;
    min-height: 0;
    max-width: 100%;
    margin-top: 0;
    font-size: 0.16rem;
    line-height: 0.24rem;
    padding-bottom: 0;
    white-space: nowrap;
  }

  .post-card .infor-con .info_top .name .post-integral-level-badge {
    margin-left: 0.08rem;
    min-height: 0.2rem;
    padding: 0.01rem 0.16rem 0;
    font-size: 0.1rem;
    line-height: 0.12rem;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right {
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.06rem;
    flex-wrap: nowrap;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date {
    min-height: auto;
    line-height: 0.22rem;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .forum-mark-list {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row {
    margin-top: 0.04rem;
    display: flex;
    align-items: flex-start;
    gap: 0.12rem;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row .forum-mark-list {
    margin-top: 0;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row .tit {
    margin-top: 0 !important;
    width: auto;
    padding-right: 0;
    box-sizing: border-box;
    flex: 1 1 auto;
    min-width: 0;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .tag-list {
    margin-top: 0.06rem;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect {
    margin-top: 0.1rem;
  }
}

@media screen and (max-width: 800px) {
  .my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel {
    display: flex;
    min-height: 3rem;
    padding: 0.24rem 0.24rem 0.28rem;
  }

  .my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel .avatar-name {
    display: flex;
    max-width: calc(100% - 0.48rem);
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .avatar-frame {
    width: 1.76rem;
    height: 1.76rem;
    padding: 0.06rem;
  }

  .my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel .avatar-name .name-email {
    margin-left: 0.28rem;
    margin-top: 0.16rem;
    padding: 0;
    max-width: none;
    width: auto;
    background: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel .avatar-name .name-email::before {
    left: -0.18rem;
    right: -0.24rem;
    top: -0.12rem;
    bottom: -0.1rem;
    background: radial-gradient(ellipse at 18% 54%, rgba(6, 24, 68, 0.15) 0%, rgba(6, 24, 68, 0.08) 36%, rgba(6, 24, 68, 0.024) 60%, rgba(6, 24, 68, 0) 82%);
    filter: blur(0.28rem);
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-primary-line {
    gap: 0.06rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    align-items: flex-start;
    padding-top: 0.16rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--intro,
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--country {
    width: 100%;
    padding: 0;
    border-radius: 0;
    background: none;
    display: block;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__label {
    font-size: 0.2rem;
    line-height: 0.28rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__value {
    font-size: 0.24rem;
    line-height: 0.34rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.06rem;
    flex: 1 1 100%;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--intro .member-profile-meta__value {
    white-space: normal;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-side-panel {
    top: 0.16rem;
    right: 0.24rem;
    bottom: 0.36rem;
    width: 2.2rem;
    min-width: 2.2rem;
    gap: 0.18rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-side-panel .edit-profile {
    min-width: 2.16rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-points-box {
    padding: 0;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-points-value {
    font-size: 0.44rem;
    line-height: 0.48rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-points-label {
    max-width: 1.42rem;
    font-size: 0.2rem;
    line-height: 0.28rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-img-box {
    width: 0.32rem;
    height: 0.32rem;
  }
}

@media screen and (max-width: 800px) {
  .index-page .main-con .post-card__body .post-list-box.hry .post-card {
    padding: 0.28rem 0.24rem 0.32rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .head-img-box {
    width: 0.72rem;
    height: 0.72rem;
    top: 0.28rem;
    left: 0.24rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .head-img-box .img {
    width: 0.72rem;
    height: 0.72rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con {
    position: relative;
    padding-left: 0.96rem;
  }

.index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    height: 0.44rem;
    min-height: 0.44rem;
    align-items: flex-start;
    padding-left: 0;
    padding-right: 1.46rem;
    gap: 0.1rem;
    padding-top: 0.01rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
    display: inline-flex;
    align-items: flex-start;
    align-self: flex-start;
    height: auto;
    min-height: 0;
    margin-top: 0;
    line-height: 0.18rem;
    width: auto;
    max-width: calc(100% - 1.5rem);
    left: auto;
    position: relative;
    top: -0.012rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right {
    position: absolute;
    top: 0.01rem;
    right: 0;
    max-width: none;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0.08rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row {
    margin-top: 0.01rem;
    gap: 0.08rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row .tit {
    margin-top: 0 !important;
    line-height: 0.44rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .tag-list {
    margin-top: 0.06rem;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .replies-time-collect {
    margin-top: 0.1rem;
  }

  .my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel {
    min-height: 2.52rem;
    padding: 0.24rem 0.24rem 0.28rem;
    align-items: stretch;
  }

  .my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel .avatar-name {
    align-items: flex-end;
    max-width: calc(100% - 1.96rem);
    gap: 0.2rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .avatar-frame {
    width: 1.36rem;
    height: 1.36rem;
    padding: 0.05rem;
  }

  .my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel .avatar-name .name-email {
    margin-left: 0;
    margin-top: 0;
    min-height: 1.16rem;
    justify-content: flex-end;
    padding-bottom: 0.04rem;
  }

  .my-profile-page .main-con .left-main .b-g-card.has-profile-side-panel .avatar-name .name-email::before {
    left: -0.16rem;
    right: -0.26rem;
    top: -0.08rem;
    bottom: -0.08rem;
    background: radial-gradient(ellipse at 18% 62%, rgba(6, 24, 68, 0.2) 0%, rgba(6, 24, 68, 0.12) 34%, rgba(6, 24, 68, 0.05) 58%, rgba(6, 24, 68, 0) 84%);
    filter: blur(0.22rem);
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-primary-line {
    gap: 0.04rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .name {
    font-size: 0.34rem;
    line-height: 0.4rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .integral-level-badge {
    font-size: 0.19rem;
    line-height: 0.2rem;
    min-height: 0.26rem;
    padding: 0.01rem 0.18rem 0.004rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .mail {
    font-size: 0.22rem;
    line-height: 0.32rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta {
    gap: 0.08rem;
    padding-top: 0.12rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__label {
    font-size: 0.18rem;
    line-height: 0.24rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__value {
    font-size: 0.24rem;
    line-height: 0.32rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--intro .member-profile-meta__value {
    -webkit-line-clamp: 2;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-side-panel {
    top: 0.18rem;
    right: 0.2rem;
    bottom: 0.28rem;
    width: auto;
    min-width: 1.82rem;
    gap: 0.1rem;
    justify-content: space-between;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-side-panel .edit-profile {
    --btn-H: 0.68rem;
    min-width: 1.82rem;
    padding: 0 0.2rem;
    border-radius: 0.34rem;
    box-shadow: 0 0.08rem 0.2rem rgba(8, 31, 88, 0.12);
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-side-panel .edit-profile ._right {
    white-space: nowrap;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-side-panel .edit-profile ._left {
    width: 0.28rem;
    min-width: 0.28rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-side-panel .edit-profile ._left .svg-ctx {
    width: 0.28rem;
    height: 0.28rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-side-panel .edit-profile ._right span {
    font-size: 0.24rem;
    line-height: 0.28rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-points-box {
    gap: 0.08rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-points-value {
    font-size: 0.54rem;
    line-height: 0.54rem;
  }

  .my-profile-page .main-con .left-main .b-g-card .profile-points-label {
    max-width: none;
    font-size: 0.18rem;
    line-height: 0.24rem;
    white-space: nowrap;
  }

  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box {
    padding: 0.16rem 0.24rem;
    overflow-x: auto;
  }

  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box {
    display: inline-flex;
    flex-wrap: nowrap;
    min-width: max-content;
    gap: 0.32rem;
  }

  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box .tab_item {
    flex: 0 0 auto;
    align-items: center;
    padding: 0.16rem 0;
    white-space: nowrap;
  }

  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box .tab_item .type,
  .my-profile-page .main-con .left-main .left-bottom-box .post-card__body .top-filter-box .filter-left-box .tab_item .count {
    white-space: nowrap;
  }

  .points-page .g-header {
    display: none;
  }

  .points-page .top_box {
    display: block;
    padding: 0.08rem 0.32rem;
    background-color: #fff;
  }

  .points-page .top_box .back-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 0.64rem;
    height: 0.64rem;
    border-radius: 0.16rem;
    border: 0.01rem solid #D9D9D9;
    background: #FFFFFF;
  }

  .points-page .top_box .back-box .svg {
    width: 0.48rem;
    height: 0.48rem;
  }

  .points-page .points-overview-card .banner-back {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    display: flex;
    align-items: center;
    height: 0.44rem;
    min-height: 0.44rem;
    column-gap: 0.08rem;
    padding-top: 0;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
    display: inline-flex;
    align-items: center;
    align-self: center;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 0;
    margin-top: 0;
    padding-bottom: 0;
    font-size: 0.18rem;
    line-height: 0.24rem;
    white-space: nowrap;
  }

  .post-card .infor-con .info_top .name .post-integral-level-badge {
    margin-left: 0.09rem;
    min-height: 0.2rem;
    padding: 0.01rem 0.13rem 0;
    font-size: 0.1rem;
    line-height: 0.12rem;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right {
    gap: 0.06rem;
    top: 0.01rem;
    padding-top: 0;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date {
    line-height: 0.24rem;
  }
}

@media screen and (min-width: 801px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row {
    margin-top: 0.02rem !important;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge {
    min-height: 0.2rem !important;
    padding: 0.01rem 0.18rem 0 !important;
    font-size: 0.1rem !important;
    line-height: 0.12rem !important;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text {
    letter-spacing: 0.14em !important;
    transform: none !important;
  }
}

@media screen and (max-width: 800px) {
  .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    height: 0.44rem !important;
    min-height: 0.44rem !important;
    align-items: center !important;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
    display: inline-flex !important;
    align-items: center !important;
    align-self: center !important;
    flex: 1 1 auto !important;
    max-width: calc(100% - 1.56rem) !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 0.18rem !important;
    line-height: 0.24rem !important;
    padding-bottom: 0 !important;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right {
    top: 0.01rem !important;
    gap: 0.06rem !important;
    padding-top: 0 !important;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date {
    line-height: 0.24rem !important;
  }

  .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge {
    min-height: 0.2rem !important;
    padding: 0.01rem 0.13rem 0 !important;
    font-size: 0.1rem !important;
    line-height: 0.12rem !important;
    margin-left: 0.09rem !important;
  }
}

@media screen and (min-width: 801px) {
  .index-page .main-con .post-card__body .post-list-box.hry .post-card .head-img-box {
    margin-top: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    height: auto !important;
    min-height: 0.34rem !important;
    align-items: center !important;
    gap: 0.12rem !important;
    padding-top: 0 !important;
    padding-right: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
    display: inline-flex !important;
    align-items: center !important;
    align-self: center !important;
    gap: 0.08rem !important;
    position: static !important;
    top: 0 !important;
    max-width: calc(100% - 2.2rem) !important;
    min-height: 0 !important;
    line-height: 0.24rem !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right {
    position: static !important;
    display: inline-flex !important;
    flex-direction: row !important;
    margin-left: auto !important;
    max-width: none !important;
    align-self: center !important;
    align-items: flex-end !important;
    justify-content: center !important;
    gap: 0.04rem !important;
    min-height: 0 !important;
    padding-top: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date {
    white-space: nowrap !important;
    line-height: 0.24rem !important;
    min-height: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge {
    min-height: 0.18rem !important;
    margin-left: 0 !important;
    padding: 0 0.09rem 0.01rem !important;
    font-size: 0.11rem !important;
    line-height: 0.11rem !important;
    align-self: center !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text {
    letter-spacing: 0.04em !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi {
    margin-left: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    flex: 0 0 auto !important;
    line-height: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img {
    display: block !important;
  }
}

@media screen and (max-width: 800px) {
  .index-page .main-con .post-card__body .post-list-box.hry .post-card .head-img-box {
    top: 0.14rem !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    height: 0.44rem !important;
    min-height: 0.44rem !important;
    align-items: center !important;
    padding-top: 0 !important;
    padding-right: 0 !important;
    gap: 0.08rem !important;
    justify-content: space-between !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
    display: inline-flex !important;
    align-items: center !important;
    align-self: center !important;
    gap: 0.06rem !important;
    position: static !important;
    top: 0 !important;
    max-width: calc(100% - 1.92rem) !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 0.28rem !important;
    line-height: 0.32rem !important;
    padding-bottom: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right {
    position: static !important;
    display: inline-flex !important;
    flex-direction: row !important;
    top: auto !important;
    right: auto !important;
    margin-left: 0.12rem !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    gap: 0 !important;
    align-self: center !important;
    align-items: flex-end !important;
    justify-content: center !important;
    min-height: 0 !important;
    padding-top: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date {
    font-size: 0.22rem !important;
    line-height: 0.24rem !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    min-height: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge {
    min-height: 0.22rem !important;
    margin-left: 0 !important;
    padding: 0 0.08rem 0.01rem !important;
    font-size: 0.16rem !important;
    line-height: 0.16rem !important;
    align-self: center !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text {
    letter-spacing: 0.04em !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi {
    margin-left: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    flex: 0 0 auto !important;
    line-height: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img {
    display: block !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row {
    margin-top: 0.12rem !important;
  }
}

/* 帖子板块移动端统一布局修正：首页 / 搜索 / 个人中心 / 标签页 / 分类页 */
@media screen and (max-width: 800px) {
  .index-page .main-con .post-card__body .post-list-box.hry .post-card,
  .index-page .main-con .con-main.post-card__body .post-card,
  .search-results-page .post-card__body .post-list-box.hry .post-card,
  .my-profile-page .post-card__body .post-list-box.hry .post-card,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card {
    padding: 0.28rem 0.24rem 0.32rem !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .head-img-box,
  .index-page .main-con .con-main.post-card__body .post-card .head-img-box,
  .search-results-page .post-card__body .post-list-box.hry .post-card .head-img-box,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .head-img-box,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .head-img-box,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .head-img-box {
    top: 0.28rem !important;
    left: 0.24rem !important;
    width: 0.72rem !important;
    height: 0.72rem !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .head-img-box .img,
  .index-page .main-con .con-main.post-card__body .post-card .head-img-box .img,
  .search-results-page .post-card__body .post-list-box.hry .post-card .head-img-box .img,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .head-img-box .img,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .head-img-box .img,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .head-img-box .img {
    width: 0.72rem !important;
    height: 0.72rem !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con {
    position: relative !important;
    padding-left: 0.96rem !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 0.32rem !important;
    height: auto !important;
    gap: 0.12rem !important;
    padding-top: 0 !important;
    padding-right: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name {
    display: inline-flex !important;
    align-items: center !important;
    align-self: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 1.7rem) !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 0.28rem !important;
    line-height: 0.32rem !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    position: static !important;
    top: auto !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .forum-meta-right,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
    min-height: 0 !important;
    width: auto !important;
    max-width: none !important;
    gap: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .date,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date {
    font-size: 0.24rem !important;
    line-height: 0.32rem !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    min-height: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .post-integral-level-badge,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge {
    min-height: 0.22rem !important;
    padding: 0.01rem 0.1rem 0 !important;
    margin-left: 0.08rem !important;
    font-size: 0.13rem !important;
    line-height: 0.14rem !important;
    align-self: center !important;
    transform: translateY(-0.01rem) !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text {
    letter-spacing: 0.04em !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .certifi,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 0.26rem !important;
    height: 0.26rem !important;
    margin-left: 0.06rem !important;
    line-height: 0 !important;
    flex: 0 0 auto !important;
    transform: translateY(-0.008rem) !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .certifi .img,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .title-meta-row,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row {
    margin-top: 0.14rem !important;
    gap: 0.08rem !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row .tit,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .title-meta-row .tit,
  .search-results-page .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row .tit,
  .my-profile-page .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row .tit,
  .all-tags-details-page .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row .tit,
  .all-categories-details-page .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row .tit {
    margin-top: 0 !important;
    font-size: 0.3rem !important;
    line-height: 0.44rem !important;
    -webkit-line-clamp: 2 !important;
  }
}

/* 官方账号 / 帖子头部 / 个人中心简介补丁 */
.topic-detail-page .main_con ._middle .article_area ._top .publish_info .info .name,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .info .name,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .name {
  display: inline-flex;
  align-items: center;
  gap: 0.08rem;
}

.topic-detail-page .main_con ._middle .article_area ._top .publish_info .info .name .certifi,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .info .name .certifi,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .name .certifi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.22rem;
  height: 0.22rem;
  flex: 0 0 auto;
  line-height: 0;
}

.topic-detail-page .main_con ._middle .article_area ._top .publish_info .info .name .certifi .img,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .publish_info .info .name .certifi .img,
.topic-detail-page .main_con ._middle .comments_area .comment_list .comment_item .content_wrapper .reply_list .reply_item .publish_info .name .certifi .img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--intro .member-profile-meta__value {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
  position: relative;
}

.my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--intro .member-profile-meta__value--tooltip {
  cursor: help;
}

@media screen and (min-width: 801px) {
  .my-profile-page .main-con .left-main .b-g-card .avatar-name .name-email .member-profile-meta__item--intro .member-profile-meta__value--tooltip:hover::after {
    content: attr(data-fulltext);
    position: absolute;
    left: 0;
    top: calc(100% + 0.12rem);
    min-width: 3rem;
    max-width: 4.6rem;
    padding: 0.14rem 0.16rem;
    border-radius: 0.12rem;
    background: rgba(13, 24, 53, 0.94);
    color: #fff;
    font-size: 0.13rem;
    line-height: 1.7;
    box-shadow: 0 0.08rem 0.24rem rgba(6, 20, 49, 0.28);
    backdrop-filter: blur(0.06rem);
    z-index: 12;
    white-space: normal;
  }
}

@media screen and (min-width: 801px) {
  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top {
    display: flex !important;
    align-items: flex-start !important;
    min-height: 0.34rem !important;
    height: auto !important;
    gap: 0.12rem !important;
    padding-top: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name {
    display: inline-flex !important;
    align-items: center !important;
    align-self: flex-start !important;
    gap: 0.08rem !important;
    min-width: 0 !important;
    max-width: calc(100% - 2.08rem) !important;
    min-height: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 0.17rem !important;
    line-height: 0.24rem !important;
    margin-top: -0.012rem !important;
    padding-bottom: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .forum-meta-right {
    position: static !important;
    display: inline-flex !important;
    align-items: flex-start !important;
    align-self: flex-start !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
    margin-top: -0.012rem !important;
    max-width: 44% !important;
    min-height: 0 !important;
    gap: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .date {
    line-height: 0.24rem !important;
    white-space: nowrap !important;
    min-height: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .post-integral-level-badge {
    min-height: 0.18rem !important;
    padding: 0 0.09rem 0.01rem !important;
    margin-left: 0 !important;
    font-size: 0.11rem !important;
    line-height: 0.11rem !important;
    align-self: center !important;
    transform: translateY(-0.024rem) !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text {
    letter-spacing: 0.04em !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .certifi {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 0.26rem !important;
    height: 0.26rem !important;
    margin-left: 0 !important;
    line-height: 0 !important;
    flex: 0 0 auto !important;
    transform: translateY(-0.018rem) !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .certifi .img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .title-meta-row {
    margin-top: 0.1rem !important;
  }
}

@media screen and (max-width: 800px) {
  .index-page .main-con .post-card__body .post-list-box.hry .post-card .head-img-box,
  .index-page .main-con .con-main.post-card__body .post-card .head-img-box {
    top: 0.14rem !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    height: auto !important;
    min-height: 0.44rem !important;
    gap: 0.08rem !important;
    padding-top: 0 !important;
    padding-right: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name {
    display: inline-flex !important;
    align-items: center !important;
    align-self: flex-start !important;
    gap: 0.06rem !important;
    min-width: 0 !important;
    max-width: calc(100% - 1.82rem) !important;
    min-height: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    font-size: 0.24rem !important;
    line-height: 0.3rem !important;
    margin-top: -0.014rem !important;
    padding-bottom: 0 !important;
    position: static !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .forum-meta-right,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .forum-meta-right {
    position: static !important;
    display: inline-flex !important;
    align-items: flex-start !important;
    align-self: flex-start !important;
    justify-content: flex-end !important;
    margin-left: 0.08rem !important;
    margin-top: -0.014rem !important;
    width: auto !important;
    max-width: 1.74rem !important;
    min-height: 0 !important;
    gap: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .date,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .date {
    font-size: 0.2rem !important;
    line-height: 0.3rem !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    min-height: 0 !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .post-integral-level-badge {
    min-height: 0.2rem !important;
    padding: 0 0.07rem 0.01rem !important;
    margin-left: 0 !important;
    font-size: 0.13rem !important;
    line-height: 0.13rem !important;
    align-self: center !important;
    transform: translateY(-0.024rem) !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .post-integral-level-badge .post-integral-level-badge__text {
    letter-spacing: 0.04em !important;
    transform: none !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .certifi {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 0.26rem !important;
    height: 0.26rem !important;
    margin-left: 0 !important;
    line-height: 0 !important;
    flex: 0 0 auto !important;
    transform: translateY(-0.018rem) !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .info_top .name .certifi .img,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .info_top .name .certifi .img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  .index-page .main-con .post-card__body .post-list-box.hry .post-card .infor-con .title-meta-row,
  .index-page .main-con .con-main.post-card__body .post-card .infor-con .title-meta-row {
    margin-top: 0.18rem !important;
  }
}
