.image-viewer-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1000;
}
.image-viewer-container .image-viewer-row {
  display: flex;
  position: relative;
  width: 100vw;
  height: 100vh;
  transition: left 0;
}
.image-viewer-container .image-viewer-item {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image-viewer-container .image-viewer-img {
  display: block;
  position: relative;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform-origin: center;
  z-index: 20;
}
.image-viewer-container .number-indictor {
  position: absolute;
  top: 15rem;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16rem;
  text-align: center;
  z-index: 30;
}
.image-viewer-container .close-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 15rem;
  right: 12rem;
  color: #fff;
  font-size: 30rem;
  cursor: pointer;
  z-index: 30;
}
.image-viewer-container .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
}
.image-viewer-container.hidden {
  display: none;
}

.video-viewer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}
.video-viewer-container .video {
  position: relative;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 10;
}
.video-viewer-container .video.hidden {
  width: 0;
  opacity: 0;
}
.video-viewer-container .error-image {
  display: block;
  position: relative;
  width: 100%;
  z-index: 10;
}
.video-viewer-container .close-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 15rem;
  right: 12rem;
  color: #fff;
  font-size: 30rem;
  cursor: pointer;
  z-index: 10;
}
.video-viewer-container .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
}
.video-viewer-container.hidden {
  display: none;
}

.header-container {
  position: relative;
  width: 100%;
  background: var(--forum-background-color);
  z-index: 99;
}
.header-container .search-input-area {
  display: flex;
  align-items: center;
  padding: 14px 21rem 0;
}
.header-container .search-input-area .search-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 40rem;
  background: var(--search-background-color);
  border-radius: 250rem;
  overflow: hidden;
}
.header-container .search-input-area .search-input-box .search-icon {
  color: var(--search-placeholder-color);
  font-style: normal;
  font-weight: 400;
  font-size: 18rem;
  margin-left: 10rem;
  margin-right: 12rem;
}
.header-container .search-input-area .search-input-box .search-input {
  width: calc(100% - 56rem);
  color: var(--search-input-color);
  font-size: 14rem;
  padding: 0;
}
.header-container .search-input-area .search-input-box .search-input input::-moz-placeholder {
  color: var(--search-placeholder-color);
}
.header-container .search-input-area .search-input-box .search-input input::placeholder {
  color: var(--search-placeholder-color);
}
.header-container .search-input-area .search-input-box .placeholder {
  color: var(--search-placeholder-color);
  font-style: normal;
  font-weight: 400;
  font-size: 14rem;
  line-height: 1;
}
.header-container .search-input-area .search-input-box .ant-input-clear-icon {
  color: var(--search-clear-icon-color);
}
.header-container .search-input-area .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40rem;
  height: 40rem;
  margin-left: 8rem;
  border-radius: 100%;
  background: var(--search-background-color);
}
.header-container .search-input-area .dot {
  width: 8rem;
  min-width: 8rem;
  height: 8rem;
  --color: #e8604a;
  --top: 3rem;
  --right: 3rem;
}
.header-container .search-input-area .info {
  position: relative;
  color: var(--search-icon-color);
  font-size: 18rem;
  vertical-align: middle;
  outline: none;
}

.forum-tags-container {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 13rem 21rem 26rem;
  overflow: auto;
}
.forum-tags-container .forum-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 34rem;
  color: var(--plate-font-color);
  font-size: 14rem;
  font-weight: 300;
  white-space: nowrap;
  padding: 0 19rem;
  margin-right: 16rem;
  border-radius: 24rem;
  background: var(--plate-background-color);
}
.forum-tags-container .forum-tag:last-child {
  margin-right: 0;
}
.forum-tags-container .forum-tag.active {
  color: var(--plate-active-font-color);
  font-weight: 500;
  white-space: nowrap;
  background: var(--plate-active-background-color);
}

.banner-container {
  position: relative;
  width: 100%;
  background: var(--forum-background-color);
  margin-bottom: 4rem;
}
.banner-container .banner {
  position: relative;
  width: 100%;
  padding: 0 8rem;
}
.banner-container .banner .banner-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8rem;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.avatar-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.avatar-container .pendant {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.avatar-container .avatar {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 500rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-header-container {
  display: flex;
  position: relative;
  width: 100%;
}
.post-header-container .header-info {
  flex: 1;
  display: flex;
  position: relative;
}
.post-header-container .avatar-box {
  position: relative;
  width: 36rem;
  height: 36rem;
}
.post-header-container .content-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 12rem;
}
.post-header-container .content-box .username-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 6rem;
}
.post-header-container .content-box .username-box .name {
  max-width: 160rem;
  color: var(--post-item-header-font-color);
  font-size: 16rem;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.2;
  margin-left: 4rem;
  overflow: hidden;
  z-index: 10;
}
.post-header-container .content-box .username-box .name.vip {
  color: #5f95ff;
  z-index: 20;
}
.post-header-container .content-box .username-box .name.vip::before {
  content: attr(text);
  position: absolute;
  max-width: 160rem;
  color: #a375ff;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-mask: linear-gradient(100deg, transparent 31%, #a375ff);
}
.post-header-container .content-box .username-box .level {
  position: relative;
  top: 3rem;
  display: block;
  height: 10rem;
}
.post-header-container .content-box .username-box .label {
  position: relative;
  top: -1.6rem;
  display: block;
  height: 18rem;
  margin: 0 2rem;
}
.post-header-container .content-box .bottom-box {
  display: flex;
  align-items: center;
  position: relative;
}
.post-header-container .content-box .bottom-box .top-icon-box {
  display: flex;
  align-items: center;
  color: var(--post-item-header-top-font-color);
  padding: 2rem 6rem;
  margin-right: 10rem;
  border-radius: 500rem;
  background: var(--post-item-header-top-background-color);
}
.post-header-container .content-box .bottom-box .top-icon-box .top-icon {
  font-size: 8rem;
  margin-right: 2rem;
}
.post-header-container .content-box .bottom-box .top-icon-box .top-text {
  font-size: 9rem;
  white-space: nowrap;
}
.post-header-container .content-box .bottom-box .date {
  color: var(--post-item-date-font-color);
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
  margin-right: 5rem;
}
.post-header-container .content-box .bottom-box .read-count {
  color: var(--post-item-date-font-color);
  font-size: 10rem;
  font-weight: 400;
  line-height: 1;
}
.post-header-container .more-actions {
  color: var(--post-item-header-font-color);
  font-size: 20rem;
}

.post-content-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  padding: 12rem 0;
  overflow: hidden;
}
.post-content-container .post-content-title {
  color: var(--forum-font-color);
  font-size: 16rem;
  font-weight: bold;
  margin-bottom: 10rem;
  word-break: break-all;
}
.post-content-container .post-content-box {
  position: relative;
  color: var(--forum-font-color);
  font-size: 15rem;
  line-height: 1.5;
  word-break: break-all;
}
.post-content-container .post-content-box img,
.post-content-container .post-content-box video {
  display: block;
  max-width: 100%;
}
.post-content-container .post-content-box.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.post-content-container .more-btn {
  color: #5F95FF;
  font-size: 15rem;
  margin-top: 8rem;
}

.post-media-container {
  position: relative;
  overflow: hidden;
}
.post-media-container .post-media-box {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  padding-bottom: 12rem;
  margin: -2.5rem;
  overflow: hidden;
}
.post-media-container .post-media-item {
  position: relative;
  margin: 2.5rem;
  overflow: hidden;
  z-index: 20;
}
.post-media-container .post-media-item .play-icon {
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 30rem;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.post-media-container .post-media-item .media-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 4rem;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-media-container .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6rem;
  z-index: 10;
}

.post-operator-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.post-operator-container .post-operator-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 14rem;
}
.post-operator-container .post-operator-item .icon-img {
  width: 14rem;
  height: 14rem;
}
.post-operator-container .post-operator-item .icon-svg {
  color: var(--post-item-date-font-color);
  font-size: 16rem;
}
.post-operator-container .post-operator-item .number {
  color: var(--post-item-date-font-color);
  font-size: 10rem;
  font-weight: 400;
  line-height: 2;
  margin-left: 4rem;
}
.post-operator-container .post-operator-item:first-child {
  padding-left: 0;
}
.post-operator-container .interval {
  width: 0.5rem;
  height: 12rem;
  background-color: #3F3F3F;
}
.post-operator-container.space-between {
  justify-content: space-between;
  padding: 0 30rem;
}
.post-operator-container.space-between .post-operator-item:last-child {
  padding-right: 0;
}
.post-operator-container .more-actions {
  position: absolute;
  right: 0;
  color: var(--post-item-header-font-color);
  font-size: 20rem;
}

.post-item-container {
  position: relative;
  width: 100%;
  padding: 4rem 8rem;
  background-color: var(--forum-background-color);
}
.post-item-container .post-item-box {
  position: relative;
  width: 100%;
  padding: 18rem;
  border-radius: 8rem;
  background-color: var(--post-item-background-color);
}
.post-item-container .post-item-plate-tags {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 10rem;
}
.post-item-container .post-item-plate-tags .plate-tag {
  color: var(--post-item-plate-font-color);
  font-size: 12rem;
  line-height: 1;
  padding: 4.5rem 8rem 3.5rem;
  border-radius: 100rem;
  background-color: var(--post-item-plate-background-color);
}

.publish-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20rem;
  bottom: 20rem;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background: linear-gradient(30.87deg, #55b1ff 17.86%, #3247ff 91.77%);
  z-index: 100;
}
.publish-btn-container .publish-btn {
  color: #ffffff;
  font-size: 16rem;
}

.action-sheet-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}
.action-sheet-container .bottom-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 20rem 20rem 0 0;
  background: var(--more-operation-background-color);
  transition: translate 0.3s ease-in-out;
  translate: 0 100%;
  overflow: hidden;
  z-index: 100;
}
.action-sheet-container .bottom-actions .action-items-box {
  position: relative;
  padding: 30rem 22rem 0;
}
.action-sheet-container .bottom-actions .action-item {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 11rem;
  margin-bottom: 16rem;
  border-radius: 8rem;
  background: var(--more-operation-item-background-color);
}
.action-sheet-container .bottom-actions .action-item .icon {
  width: 18rem;
  height: 18rem;
  color: var(--forum-font-color);
  margin-right: 16rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.action-sheet-container .bottom-actions .action-item .text {
  color: var(--forum-font-color);
  font-size: 14rem;
  line-height: 1;
}
.action-sheet-container .bottom-actions .cancel-box {
  position: relative;
  width: 100%;
  padding: 14rem 22rem 30rem;
}
.action-sheet-container .bottom-actions .cancel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 45rem;
  color: #fff;
  font-size: 14rem;
  line-height: 1;
  border-radius: 10rem;
  background: var(--more-operation-button-background-color);
}
.action-sheet-container .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
}

.hot-topics-container {
  position: relative;
  width: 100%;
  padding: 4rem 8rem;
  background-color: var(--forum-background-color);
}
.hot-topics-container .hot-topics-box {
  position: relative;
  width: 100%;
  padding: 11rem 18rem;
  border-radius: 8rem;
  background: var(--hot-topic-background-color);
}
.hot-topics-container .hot-topics-box .title-box {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  margin-bottom: 12rem;
}
.hot-topics-container .hot-topics-box .title-box .title {
  display: block;
  width: 63.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.hot-topics-container .hot-topics-box .title-box .more {
  display: flex;
  align-items: center;
  color: var(--hot-topic-font-color);
  font-size: 12rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}
.hot-topics-container .hot-topics-box .title-box .more .more-icon {
  font-size: 8rem;
  margin-left: 4rem;
}
.hot-topics-container .hot-topics-box .topic-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  width: 100%;
}
.hot-topics-container .hot-topics-box .topic-item .icon {
  display: block;
  width: 12rem;
  margin-right: 11rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.hot-topics-container .hot-topics-box .topic-item .topic-name {
  display: -webkit-box;
  color: var(--hot-topic-font-color);
  font-size: 14rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.hot-topics-container .hot-topics-box .topic-item + .topic-item {
  margin-top: 5rem;
}

.forum-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: var(--forum-background-color);
  overflow: auto;
  scrollbar-width: none;
}
.forum-container .blank-area {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--forum-background-color);
  z-index: 999;
}
.forum-container .pull-down-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14rem;
}
.forum-container .sticky-box {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}
.forum-container .plates {
  position: relative;
  width: 100%;
  height: 62rem;
  background: var(--forum-background-color);
  overflow: hidden;
  box-sizing: border-box;
  z-index: 99;
}
.forum-container .post-list-box {
  position: relative;
  width: 100%;
}
.forum-container::-webkit-scrollbar {
  display: none;
  width: 0;
}

.black {
  --main-background-color: #000;
  --forum-background-color: #181818;
  --forum-font-color: #ffffff;
  --navigate-icon-background-color: rgba(255, 255, 255, 0.15);
  --navigate-icon-color: #e1e1e1;
  --search-background-color: rgba(255, 255, 255, 0.15);
  --search-placeholder-color: #909090;
  --search-icon-color: #e1e1e1;
  --search-input-color: #ffffff;
  --search-clear-icon-color: rgba(255, 255, 255, 0.25);
  --plate-background-color: rgba(255, 255, 255, 0.06);
  --plate-font-color: rgba(255, 255, 255, 0.6);
  --plate-active-background-color: linear-gradient(52deg, #55b1ff 22%, #3247ff 83%);
  --plate-active-font-color: #ffffff;
  --post-border-color: rgba(255, 255, 255, 0.1);
  --post-comment-font-color: rgba(255, 255, 255, 0.5);
  --post-item-background-color: rgba(255, 255, 255, 0.06);
  --post-item-header-font-color: #fff;
  --post-item-header-top-background-color: #434343;
  --post-item-header-top-font-color: #a8a8a8;
  --post-item-date-font-color: #a0a0a0;
  --post-item-plate-background-color: rgba(255, 255, 255, 0.1);
  --post-item-plate-font-color: rgba(255, 255, 255, 0.6);
  --post-publish-input-background-color: #313131;
  --post-publish-input-font-color: #eee;
  --post-publish-input-placeholder-color: #909090;
  --post-publish-plate-background-color: #262626;
  --post-publish-plate-font-color: rgba(255, 255, 255, 0.8);
  --post-publish-plate-item-active-background-color: rgba(95, 149, 255, 0.8);
  --post-publish-plate-item-background-color: #3E3E3E;
  --post-publish-plate-item-font-color: rgba(255, 255, 255, 0.9);
  --post-publish-tab-font-color: rgba(238, 238, 238, 0.5);
  --post-publish-tab-active-font-color: #eeeeee;
  --post-publish-media-background-color: #737373;
  --reply-input-background-color: #181818;
  --reply-position-background-color: #3d3d3d;
  --emoji-background-color: rgba(255, 255, 255, 0.1);
  --emoji-item-background-color: #181818;
  --reply-empty-font-color: rgba(255, 255, 255, 0.5);
  --more-operation-background-color: #323232;
  --more-operation-item-background-color: rgba(255, 255, 255, 0.15);
  --more-operation-button-background-color: rgba(255, 255, 255, 0.15);
  --report-item-background-color: rgba(255, 255, 255, 0.2);
  --report-item-active-background-color: rgba(73, 129, 250, 0.1);
  --report-item-active-font-color: #4981fa;
  --report-item-active-border-color: #4981fa;
  --report-input-background-color: rgba(255, 255, 255, 0.2);
  --report-input-font-color: rgba(255, 255, 255, 0.6);
  --report-input-placeholder-color: rgba(255, 255, 255, 0.3);
  --hot-topic-background-color: linear-gradient(163deg, rgba(255, 135, 126, 0.32) 1%, rgba(205, 205, 205, 0.171) 33%, rgba(13, 9, 255, 0.03) 71%), #232323;
  --hot-topic-font-color: rgba(255, 255, 255, 0.9);
  --all-topic-item-background-color: #000;
  --skeleton-block-color: #383838;
}
.light {
  --main-background-color: #f5f5f6;
  --forum-background-color: #f5f5f6;
  --forum-font-color: #000000;
  --navigate-icon-background-color: #e0e7ee;
  --navigate-icon-color: #0f233a;
  --search-background-color: #e0e7ee;
  --search-placeholder-color: #909090;
  --search-icon-color: #0f233a;
  --search-input-color: #000000;
  --search-clear-icon-color: rgba(0, 0, 0, 0.25);
  --plate-background-color: #e0e7ee;
  --plate-font-color: #000000;
  --plate-active-background-color: #000000;
  --plate-active-font-color: #ffffff;
  --post-border-color: rgba(0, 0, 0, 0.1);
  --post-comment-font-color: rgba(0, 0, 0, 0.5);
  --post-item-background-color: #ffffff;
  --post-item-header-font-color: #000000;
  --post-item-header-top-background-color: rgba(0, 0, 0, 0.4);
  --post-item-header-top-font-color: #fff;
  --post-item-date-font-color: rgba(0, 0, 0, 0.55);
  --post-item-plate-background-color: rgba(60, 129, 246, 0.1);
  --post-item-plate-font-color: rgba(0, 0, 0, 0.5);
  --post-publish-input-background-color: rgba(0, 0, 0, 0.1);
  --post-publish-input-font-color: #000;
  --post-publish-input-placeholder-color: rgba(0, 0, 0, 0.6);
  --post-publish-plate-background-color: #fff;
  --post-publish-plate-font-color: rgba(0, 0, 0, 0.6);
  --post-publish-plate-item-active-background-color: #729df2;
  --post-publish-plate-item-background-color: #e0e7ee;
  --post-publish-plate-item-font-color: rgba(15, 35, 58, 0.9);
  --post-publish-tab-font-color: rgba(0, 0, 0, 0.6);
  --post-publish-tab-active-font-color: #000;
  --post-publish-media-background-color: rgba(0, 0, 0, 0.1);
  --reply-input-background-color: #ffffff;
  --reply-position-background-color: #e0e7ee;
  --emoji-background-color: #f5f5f6;
  --emoji-item-background-color: #ffffff;
  --reply-empty-font-color: rgba(61, 61, 61, 0.5);
  --more-operation-background-color: #ffffff;
  --more-operation-item-background-color: rgba(0, 0, 0, 0.06);
  --more-operation-button-background-color: rgba(95, 149, 255, 0.8);
  --report-item-background-color: rgba(62, 91, 121, 0.5);
  --report-item-active-background-color: rgba(95, 149, 255, 0.8);
  --report-item-active-font-color: #ffffff;
  --report-item-active-border-color: rgba(95, 149, 255, 0.8);
  --report-input-background-color: #e0e7ee;
  --report-input-font-color: #000000;
  --report-input-placeholder-color: rgba(0, 0, 0, 0.4);
  --hot-topic-background-color: linear-gradient(161deg, rgba(255, 135, 126, 0.32) 4%, rgba(126, 161, 255, 0.171) 40%, rgba(167, 100, 0, 0) 95%), #ffffff;
  --hot-topic-font-color: #000;
  --all-topic-item-background-color: #fff;
  --skeleton-block-color: #d0d0d0;
}

@font-face {
  font-family: 'HarmonyOS Sans';
  src: url(https://static.rokidcdn.com/prod/rokid-ar-community/2.1.5/28c7a5780ddd11ae2446.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS Sans';
  src: url(https://static.rokidcdn.com/prod/rokid-ar-community/2.1.5/a62b956f4f1ad97a2950.ttf);
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'HarmonyOS Sans';
  src: url(https://static.rokidcdn.com/prod/rokid-ar-community/2.1.5/d625716e152049c1c80e.ttf);
  font-weight: 700;
  font-style: normal;
}
* {
  font-family: 'HarmonyOS Sans';
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
svg {
  overflow: visible;
}
.app-container {
  position: relative;
  width: 100%;
}

