body {
  background: #f4f8fc;
  overflow-x: hidden;
}

.current-position {
  padding: 0.875rem 0;
  line-height: 1.5rem;
  font-size: 1rem;
  color: #999999;
}

.current-position a {
  color: #999999;
}

.current-position a:last-child {
  color: #333333;
}

.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(address.svg) no-repeat left center;
  background-size: 0.875rem auto;
}

.information-item-assistinfo .information-item-time {
  background: url(phone.svg) no-repeat left center;
}

.information-item-assistinfo .information-item-visit {
  background: url(person.svg) no-repeat left center;
}

.information-item-assistinfo .information-item-total {
  background: url(total.svg) no-repeat left center;
}

/* 下拉菜单 */
.custom-select-wrapper {
  position: relative;
  user-select: none;
  width: 18.125rem;
}
.custom-select {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0.0625rem solid rgba(220, 223, 230, 1);
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 2rem;
  background: #ffffff;
  cursor: pointer;
  border-radius: 0.25rem;
}
.custom-select.open .custom-select__trigger {
  /* border-radius: .25rem .25rem 0 0;
  -webkit-border-radius: .25rem .25rem 0 0;
  -moz-border-radius: .25rem .25rem 0 0;
  -ms-border-radius: .25rem .25rem 0 0;
  -o-border-radius: .25rem .25rem 0 0; */
}
.custom-options {
  border-radius: 0.25rem;
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  border: 0.0625rem solid #ccc;
  background: #fff;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
}
.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.custom-option {
  position: relative;
  display: block;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #3b3b3b;
  line-height: 2;
  cursor: pointer;
  transition: all 0.5s;
}
.custom-option:hover {
  cursor: pointer;
  background-color: #f5f5f5;
}
.custom-option.selected {
  /* color: #ffffff; */
  /* background-color: #305c91; */
}
.custom-select-arrow {
  position: relative;
  height: 1rem;
  width: 1rem;
  background: url(custom-select-arrow.svg) no-repeat center;
  background-size: 100% 100%;
  transition: all 0.5s;
}
.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.custom-select-wrapper .arrow::before,
.custom-select-wrapper .arrow::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 0.15rem;
  height: 100%;
  transition: all 0.5s;
}
.custom-select-wrapper .arrow::before {
  left: -5px;
  transform: rotate(45deg);
  background-color: #394a6d;
}
.custom-select-wrapper .arrow::after {
  left: 5px;
  transform: rotate(-45deg);
  background-color: #394a6d;
}
.custom-select-wrapper .open .arrow::before {
  left: -5px;
  transform: rotate(-45deg);
}
.custom-select-wrapper .open .arrow::after {
  left: 5px;
  transform: rotate(45deg);
}

/* 分页 */
.page-layui-pagination {
  text-align: right;
  margin-right: 1.25rem;
}

.page-layui-pagination .layui-laypage {
  margin: 1.25rem 0 0.9375rem 0;
}

/* 空状态 */
.empty-state {
  display: flex;
  align-items: center;
  /* height: 100%; */
  min-height: 25rem;
  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;
}

/* 多选按钮 */
.search-checkbox-wrapper,
.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-checkbox-wrapper .search-checkbox,
.search-radio-wrapper .search-radio {
  position: relative;
  margin-right: 0.5rem;
}

.search-checkbox-wrapper .search-checkbox-input,
.search-radio-wrapper .search-radio-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  margin: 0;
}
.search-checkbox-wrapper .search-checkbox-inner,
.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: 0.125rem;
  -webkit-border-radius: 0.125rem;
  -moz-border-radius: 0.125rem;
  -ms-border-radius: 0.125rem;
  -o-border-radius: 0.125rem; */
  position: relative;
}
.search-checkbox-wrapper .search-checkbox-inner::after,
.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-checkbox-input:checked + .search-checkbox-inner,
.search-checkbox-input-checked:checked + .search-checkbox-inner,
.search-radio-input:checked + .search-radio-inner,
.search-radio-input-checked:checked + .search-radio-inner {
  background: url(blueg.png) no-repeat;
  background-size: 100% 100%;
  border: none;
}
.search-checkbox-input:checked + .search-checkbox-inner::after,
.search-checkbox-input-checked:checked + .search-checkbox-inner::after {
  /* background-color: #2c68ff; */
}


