<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.pageDivider {
  height: 70px;
  width: 100%;
  line-height: 70px;
  text-align: center;
}

.pageDivider div {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
  min-width: 35px;
  min-height: 35px;
  text-align: center;
  line-height: 35px;
  border: 1px solid gray;
  border-radius: 5px;
  transition: all 0.2s;
}

.pageDivider div:hover {
  background-color: #b5332f;
  border: 1px solid #b5332f;
  color: white;
}

.pageDivider .active:hover {
  background-color: #e2211c;
}

.pageDivider .active {
  background-color: #e2211c;
  color: white;
  border: 1px solid #e2211c;
}

.pageDivider .disabled {
  cursor: not-allowed;
  opacity: 50%;
  color: gray !important;
}

.pageDivider div:last-child,
.pageDivider div:first-child {
  border: none;
  background-color: transparent;
  color: black;
}

.pageDivider div:last-child:hover,
.pageDivider div:first-child:hover {
  color: #e2211c;
}

#listContainer::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  position: absolute;
}

#listContainer::-webkit-scrollbar-corner {
  background-color: transparent;
}

#listContainer::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.3);
}

#listContainer::-webkit-scrollbar-thumb {
  display: none;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.1);
}

#listContainer:hover::-webkit-scrollbar-thumb {
  display: block;
}

#mapContainer {
  margin-top: 8vh;
  height: 92vh;
  display: flex !important;
}
.mapContainer {
  margin-top: 8vh;
  height: 92vh;
  display: flex !important;
}

#panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 30% !important;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px solid transparent;
  border-radius: 50%;
  border-top-color: #000;
  border-left-color: #000;
  overflow: hidden;
  animation: loading 1s linear infinite;
}

#panel #listContainer {
  flex: 1;
  overflow: hidden;
  overflow-y: auto;
  width: 100%;
  line-height: 1.5;
}

#listContainer .filterList {
  cursor: pointer;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 25px 0 25px 50px;
}

#listContainer .selected-active {
  background-color: rgba(180, 180, 180, 0.2);
}

#listContainer .filterList .textInfo {
  width: 90%;
}

#listContainer .filterList .textInfo h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: rgba(40, 40, 40, 1);
  width: 100%;
  word-break: break-all;
}
#listContainer .filterList .textInfo p {
  color: gray;
  font-size: 16px;
  width: 100%;
  text-wrap: wrap;
  word-break: break-all;
}

#listContainer .filterList .info-icon {
  width: 17px;
  height: 20px;
  margin-right: 15px;
}

/* #panel #listContainer div {
  cursor: pointer;
  padding: 20px 20px 20px 50px;
}

#panel #listContainer div:hover {
  background-color: #f5f5f5;
}

#panel #listContainer div h4 {
  margin-bottom: 20px;
}

#panel #listContainer div p {
  color: rgb(88, 88, 88);
  font-size: 15px;
} */

.filterContainer {
  padding: 20px 30px 0 50px;
  margin-bottom: 10px;
}

.searchContainer {
  display: flex;
  border-bottom: 1px solid #e2211c;
  align-items: center;
  height: 30px;
  width: 100%;
  padding: 5px 0 5px 10px;
}

.searchContainer #searchInput {
  outline: none;
  border: none;
  background-color: transparent;
  padding-right: 10px;
  font-size: 16px;
  width: 80%;
}

.searchContainer .zz-button {
  cursor: pointer;
  margin-left: auto;
  border: none;
  font-size: 20px;
  background-color: transparent;
  padding: 0;
}

.searchContainer .zz-button svg {
  width: 20px;
  height: 20px;
}

.selectContainer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.provinceContainer {
  position: relative;
  width: 48%;
}

.provinceContainer input {
  outline: none;
  font-size: 16px;
  border: 1px solid rgb(208, 208, 208);
  border-radius: 5px;
  width: 100%;
  height: 40px;
  padding: 0 20px 0 10px;
}

.provinceContainer svg {
  position: absolute;
  width: 15%;
  height: 100%;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.input-active svg {
  transform: translateY(50%);
  rotate: 180deg;
}

.selectOptions {
  display: none;
}
.input-active .selectOptions {
  display: block;
  position: absolute;
  z-index: 999;
  background-color: #fff;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  min-height: 40px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.triangle {
  position: absolute;
  z-index: 999;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-bottom-color: white;
}

.selectOptionsContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.selectOptionsContainer h4 {
  height: 40px;
  line-height: 40px;
  font-weight: normal;
  color: gray;
  text-transform: capitalize;
}

.selectOptionsContainer ul {
  display: none;
  width: 100%;
}

.input-active .selectOptionsContainer ul {
  display: block;
  margin-top: 5px;
  overflow: auto;
  height: 300px;
}

.input-active .selectOptionsContainer ul li {
  cursor: pointer;
  height: 30px;
  padding-left: 10px;
  line-height: 30px;
  font-size: 15px;
  transition: all 0.3s;
}

.input-active .selectOptionsContainer ul li:hover {
  background-color: #f0f0f0;
  padding-left: 15px;
}

.select-province {
  background-color: #e2211c !important;
  color: white !important;
}

.selectOptionsContainer ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  position: absolute;
}

.selectOptionsContainer ul::-webkit-scrollbar-corner {
  background-color: transparent;
}

.selectOptionsContainer ul::-webkit-scrollbar-thumb {
  background-color: rgba(100, 100, 100, 0.3);
}

.selectOptionsContainer ul::-webkit-scrollbar-thumb {
  display: none;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.1);
}

.selectOptionsContainer ul:hover::-webkit-scrollbar-thumb {
  display: block;
}
/*分页*/
.pages2{ overflow:hidden; clear:both;  font-family:Arial; padding:10px 0;}
.pages2 .layui-laypage{ float:left; position:relative; left:50%;margin:0}
.pages2 a,
.pages2 span,
.pages2 input,
.pages2 p,
.pages2 button{float:left; padding:0 10px; color:#999; margin-left:6px; position:relative; right:50%; text-align:center;border:1px solid #f3f3f3; background:#fff;}
.pages2 p{ border:0; margin:0; line-height:34px; background:none;}
.pages2 input{ padding:6px 1px 7px 1px; width:30px; margin:0 -8px; text-align:center;}
.pages2 button{ height:34px;}
.pages2 .layui-laypage a:hover,.pages2 .layui-laypage span.current,.pages2 .layui-laypage .layui-laypage-curr .layui-laypage-em{ background: #dc131c; color:#ffffff; border-color:#dc131c;}</pre></body></html>