.wind_select {
  position: relative;
  width: 100%;
  height: 30px;
  box-sizing: border-box;
  border-radius: 4px;
  color: #606266;
  z-index: 2;
}

.wind_select svg {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  z-index: 1;
  transform-origin: center center;
  width: 14px;
  height: 14px;
  transition: all 0.5s;
}

.wind_select_input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 1px 11px;
  padding-right: 30px;
  box-sizing: border-box;
  border: none;
  outline: none;
  touch-action: manipulation;
  cursor: pointer;
  color: #606266;
  border-radius: 4px;
  background-color: transparent;
  z-index: 2;
  font-size: 15px;
  line-height: 40px;
  padding-left: 0;
}

#show_text {
  white-space: nowrap;
  line-height: 30px;
  padding-right: 40px;
  font-size: 16px;
}

.wind_select li {
  list-style: none;
}

.wind_select_cont {
  display: none;
  position: absolute;
  width: 100%;
  min-width: 100px;
  background-color: #fff;
  box-sizing: border-box;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  padding: 5px 0;
}

.wind_select_cont_top {
  left: 50%;
  bottom: 140%;
  transform: translateX(-50%);
}

.wind_select_cont_bottom {
  left: 50%;
  top: 140%;
  transform: translateX(-50%);
}

.wind_select_cont::after {
  content: 1;
}

.wind_select_ul {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-y: auto;
  margin: 0 auto;
}

.wind_select_ul .active {
  color: #0E5990;
  background-color: rgba(14, 89, 144, 0.1);
}

.wind_select_ul::-webkit-scrollbar {
  width: 6px;
}

.wind_select_ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #dedfe1;
}

.wind_select_cont li {
  line-height: 40px;
  box-sizing: border-box;
  padding: 0 10px;
  background-color: #fff;
  cursor: pointer;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  font-size: 16px;
}

.wind_select_cont li:hover {
  background-color: #f5f7fa;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.wind_select_fadeInDown {
  animation: fadeInDown 0.4s ease-in;
}