.mf-select__wrapper {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
}

.mf-select {
  position: fixed;
  z-index: 1000;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  border-radius: 12px 12px 0 0;
  padding: 17px 20px 0px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.mf-select__fade-enter-active {
  transition: all 0.3s ease;
}

.mf-select__fade-leave-active {
  transition: all 0.3s ease;
}

.mf-select__fade-leave-to {
  transform: translateY(100%);
  opacity: 0;
}

.mf-select__fade-enter {
  transform: translateY(100%);
  opacity: 0;
}

.mf-select__title {
  position: relative;
  border-bottom: 0.5px solid #d7dee2;
  padding: 0 0 17px;
}

.mf-select__title-text {
  font-size: 20px;
  line-height: 20px;
}

.mf-select__title-icon {
  position: absolute;
  right: 0;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  top: -4px;
}

.mf-icon-guanbi1 {
  display: block;
  width: 12px;
  height: 12px;
  background: url(../../assets/img/icon_close@2x.png);
  background-size: 100% 100%;
}

.mf-select__cont {
  max-height: 400px;
  min-height: 200px;
  overflow: auto;
  margin-top: 15px;
  margin-bottom: 20px;
  padding: 0;
}