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;
  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(zyzh.svg) no-repeat left center;
  background-size: 0.875rem auto;
}

.information-item-assistinfo .information-item-time {
  background: url(zyjg.svg) no-repeat left center;
  background-size: 0.875rem auto;
}

.information-item-assistinfo .information-item-visit {
  background: url(lszc.svg) no-repeat left center;
}

.information-item-assistinfo .information-item-address {
  background: url(address.svg) no-repeat left center;
  background-size: 0.875rem auto;
}

.information-more {
  display: flex;
  justify-content: center;
  height: 58px;
  align-items: center;
}

.information-more .anticon-spin {
  display: inline-flex;
  align-items: center;
  font-size: 28px;
  animation: loadingCircle 1s infinite linear;
}

.information-more p.hidden,
.information-more span.hidden {
  display: none;
}

@keyframes loadingCircle {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* 下拉菜单 */
.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%;
  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 {
  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;
  margin-bottom: 0.9375rem;
  cursor: pointer;
  min-width: 4.25rem;
}
.search-checkbox-wrapper .search-checkbox {
  position: relative;
  margin-right: 0.5rem;
}

.search-checkbox-wrapper .search-checkbox-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  margin: 0;
}
.search-checkbox-wrapper .search-checkbox-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 {
  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 {
  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; */
}




.amap-info-content .information-item {
  width: 19.625rem;
  height: auto;
  padding: 0.375rem 0 0.375rem 0.375rem;
  background: #fff;
}

.amap-info-content .information-item .information-item-title {
  font-size: 1rem;
  color: #000000;
  line-height: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.amap-info-content .information-item .information-item-tag {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.amap-info-content .information-item .information-item-tag span {
  display: block;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.375rem;
  font-weight: 400;
  padding: 0 0.5rem;
  background: #f5f5f5;
  margin-right: 0.5rem;
  border: 0.0375rem solid rgba(217, 217, 217, 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;
}
/* .amap-info-content
  .information-item
  .information-item-tag
  .information-item-status {
  background: rgba(30, 120, 255, 0.08);
  color: #1e78ff;
  border: none;
} */
.amap-info-content .information-item-assistinfo {
  display: flex;
  flex-wrap: wrap;
}
.amap-info-content .information-item-assistinfo p {
  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;
}

.amap-info-content .information-item-assistinfo .information-item-address {
  background: url(address.svg) no-repeat left center;
  background-size: 0.875rem auto;
}
.amap-info-content .information-item-assistinfo .information-item-phone {
  background: url(phone.svg) no-repeat left center;
  background-size: 0.875rem auto;
}