* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body,
html {
  user-select: initial;
}

.has-href {
  cursor: pointer;
}

#app {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

.page-wrapper {
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
}
.page-wrapper > .nested-content {
  min-height: 100vh;
}

.page-footer {
  background-color: #f2f2f2;
  color: #aaa;
}
.page-footer-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 50px;
}
.page-footer .report-btn {
  position: absolute;
  right: 20px;
}
@media (max-width: 677px) {
  *::-webkit-scrollbar {
    width: 0;
  }
}

/* copied from nested-content component */
.nested-content {
  position: relative;
  /* width: 100%; */
  /* max-width: 100%; */
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* nested-content默认样式 */
.nested-content * {
  background-size: cover !important;
  background-position: 50% !important;
  word-wrap: break-word;
}
video {
  display: block;
  width: 100%;
}
audio {
  display: block;
  width: 100%;
  height: 32px;
}

.content-item-component {
  display: flex;
  position: relative;
  /* width: 100%; */
  /* height: 100%; */
  /* max-width: 100%; */
  flex-direction: column;
}
.content-item-content {
  overflow: hidden;
  flex-grow: 1;
}
.content-item-image {
  width: 100%;
  object-fit: contain;
  /* 去掉图片下面空白部分 */
  display: block;
}

.content-item-video {
  position: relative;
  display: flex;
  width: 100%;
}
.video-with-poster {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-back-frame {
  visibility: hidden;
}
.content-item-richtext {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  color: rgb(51, 51, 51);
  background-color: transparent;
  text-align: left;
  text-indent: 0em;
  line-height: 1.5;
  letter-spacing: 0px;
  border-radius: 0px;
  border-style: none;
  border-width: 1px;
  border-color: rgb(16, 16, 16);
  padding: 0px;
  margin: 0px;
}
.content-item-text span {
  word-break: normal;
  width: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: hidden;
}

a {
  cursor: pointer;
  color: #409eff;
  text-decoration: none;
}
/* 列表样式 */
/* revert: 使用浏览器自带样式 */
ol,
ul {
  padding: revert;
}
li {
  list-style: revert;
}
