section .list-group {
  padding: 0 .25rem;
  min-height: 75vh;
}

section .list-group li h3 {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

section .list-group li p,
section .list-group li div {
  margin-top: .1rem;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

section .list-group li p span {
  color: red;
}

section .list-group li div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

section .list-group li {
  padding: .25rem 0;
  min-height: 75px;
}

section .list-group li div a {
  display: inline-block;
  padding: 0 .15rem;
  margin-left: .1rem;
  border: 1px solid #333;
  border-radius: 15px;
}

section .list-group li+li {
  border-top: 1px solid #dddddd;
}

#ScrollTop {
  position: fixed;
  bottom: -40px;
  right: 10px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  color: #fff;
}


.tag{
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-bottom: 1px dotted #000;
  margin: .1rem .1rem 0;
  padding: 0 .1rem .05rem .1rem;
  font-weight: bold;
  font-size: .22rem;
}
.tag .select_item{
  width: 4rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tag .search_item.in_th{
  width: auto;
  font-size: .16rem;
  background: #0099cd;
  color: #fff;
  padding: 0.03rem 0.1rem;
  border-radius: .05rem;
}
.tag .search_item.in_th img{
  width: .2rem;
  margin-left: .1rem;
}
/* 参数选择弹框 */
#selectCon{
  width:55%;
  height:auto;
  background:#fff;
  position:absolute;
  z-index:9999;
  top:1rem;
  right:0;
  padding:0 .1rem 0 .1rem;
  box-shadow: -10px 10px 10px #cacaca;
  display: none;
}
.subtitles{
  color: #1e4d75;
  font-size: .2rem;
  border-bottom: 1px dotted #000;
  padding-bottom: .1rem;
  margin-bottom: .1rem;
  margin-top:0.2rem;
}
.item{
  width: 31.5%;
  height: .5rem;
  background: #edf2f5;
  display: inline-block;
  text-align: center;
  line-height: .5rem;
  margin: .03rem .03rem;
  font-size: .2rem;
  border-radius: .05rem;
  color: #1e4d75;
}
.item_active {
  background: #1e4d75;
  color: #fff;
  position: relative;
}
.item_active::after{
  content:'';
  position: absolute;
  bottom:0;
  right:0;
  width: .3rem;
  height: .3rem;
  background:url(../images/false.png) no-repeat center center;
  background-size: cover;
}
li.item.item_special {
  width: 98%;
}
.btnCon{
  font-size:0;
  margin:.2rem 0;
  display:flex;
  justify-content:flex-end
}
.reset {
  font-size: .25rem;
  display: inline-block;
  height: .5rem;
  line-height: .5rem;
  text-align: center;
  width: 1.7rem;
  background: #114670;
  border-radius: .3rem;
  color: #fff;
  margin: 0 .1rem 0 0;
}
.confirm {
  font-size: .25rem;
  display: inline-block;
  height: .5rem;
  line-height: .5rem;
  text-align: center;
  width: 1.7rem;
  border-radius: .3rem;
  background: #ff8601;
  color: #fff;
}
#cancel_hc{
  position: absolute;
  color: #fff;
  right: .3rem;
  top: .2rem;
  font-size: .28rem;
  width: .3rem;
  text-align: center;
  height: .3rem;
  /* align-items: center; */
  line-height: .29rem;
  background: red;
  border-radius: 50%;
}