body {
  background: #f4f8fc;
  overflow-x: hidden;
}
/* 空状态 */
.empty-state {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  /* height: 100%; */
  flex: 1;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
}
.empty-state img {
  display: block;
  width: 5.8125rem;
}
.empty-state .empty-description {
  color: #8b95a8;
  font-size: 0.875rem;
  margin-top: 0.875rem;
  padding-right: 0.75rem;
}
.current-position {
  padding: 0.875rem 0;
  line-height: 1.5rem;
  font-size: 0.875rem;
  color: #999999;
}
.current-position a {
  color: #999999;
}
.current-position-center a:last-of-type,
.current-position-center span:last-of-type {
    display: none;
}
.information-item-assistinfo {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0.0625rem solid rgba(233, 233, 233, 1);
  padding-bottom: 0.875rem;
}
.information-item-assistinfo span {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.375rem;
  font-weight: 400;
  padding-left: 1.25rem;
}
.information-item-assistinfo span::after {
  display: inline-block;
  content: "";
  width: 0.0625rem;
  height: 0.75rem;
  background: #e9e9e9;
  margin: 0 0.875rem;
}
.information-item-assistinfo span:last-child::after {
  display: none;
}
/* 来源 */
.information-item-assistinfo .information-item-source {
  background: url(source.svg) no-repeat left center;
  background-size: 0.875rem auto;
}
/* 时间 */
.information-item-assistinfo .information-item-time {
  background: url(time.svg) no-repeat left center;
  background-size: 0.875rem auto;
}
/* 浏览量 */
.information-item-assistinfo .information-item-visit {
  background: url(visit.svg) no-repeat left center;
  background-size: 1.125rem auto;
}
/* 公开方式 */
.information-item-assistinfo .information-item-public-manner {
  background: url(public-manner.svg) no-repeat left center;
  background-size: 0.875rem auto;
}

/* 公开范围 */
.information-item-assistinfo .information-item-public-scope {
  background: url(public-scope.svg) no-repeat left center;
  background-size: 0.875rem auto;
}
/* 单选框 */
.search-labels-item-labe-tag {
  display: flex;
  flex-wrap: wrap;
}
.search-radio-wrapper {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 400;
  margin-right: 1.25rem;
  cursor: pointer;
  min-width: 4.25rem;
}
.search-radio-wrapper .search-radio {
  position: relative;
  margin-right: 0.5rem;
}

.search-radio-wrapper .search-radio-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  margin: 0;
}
.search-radio-wrapper .search-radio-inner {
  display: block;
  width: 1rem;
  height: 1rem;
  background: #ffffff;
  border: 0.0625rem solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: relative;
}
.search-radio-wrapper .search-radio-inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 60%;
  height: 60%;
  background-color: transparent;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.search-radio-input:checked + .search-radio-inner,
.search-radio-input-checked:checked + .search-radio-inner {
  border: 0.0625rem solid rgba(44, 104, 255, 1);
}
.search-radio-input:checked + .search-radio-inner::after,
.search-radio-input-checked:checked + .search-radio-inner::after {
  background-color: #2c68ff;
}
/* .search-radio-wrapper.highlighted .search-radio-inner {
  border: 0.0625rem solid rgba(44, 104, 255, 1);
}
.search-radio-wrapper.highlighted .search-radio-inner::after {
  background-color: #2c68ff;
} */