.no-scroll-body {
  overflow: hidden;
}

.select-wrap {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99999;
}
.select-wrap.show {
  opacity: 1;
  visibility: visible;
}
.select-wrap,
.select-wrap .mask {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.select-wrap .mask {
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.select-wrap .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 20vh;
  background: #fff;
  transform: translateY(100%);
  transition: 0.3s;
  z-index: 9999;
}
.select-wrap .content.show {
  transform: translateY(0);
}
.select-wrap .content .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.select-wrap .content .head .title {
  font-size: 18px;
  font-weight: 700;
}
.select-wrap .content .head .btn {
  padding: 10px 15px;
  font-size: 16px;
  color: red;
}
.select-wrap .content .body {
  height: 100%;
  overflow: hidden;
  display: flex;
}
.select-wrap .content .body .col {
  box-sizing: border-box;
  flex: 1;
  height: 100%;
  overflow: auto;
  padding-bottom: 45px;
  text-align: center;
}
.select-wrap .content .body .item {
  padding: 10px;
  font-size: 16px;
}
.select-wrap .content .body .item.active {
  color: red;
}/*# sourceMappingURL=style.css.map */