
.el-cascader{
  position: relative;
  cursor: pointer;
}
.el-cascader__label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  right: 20px;
  /* border: 1px solid #f00; */
  display: flex;
  align-items: center;
  font-size: 20px;
}
.el-input__inner{
  height: 100%;
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 20px;
  border: 2px solid #f5f5f5;
  font-size: 20px;
}
.el-popper {
  display: flex;
}
.el-popper ul {
  background-color: #fff;
  border: #ebe9e9;
  border: 1px solid #e4e7ed;
  border-radius: 5px;
  margin-top: 0;
  height: 200px;
  margin-left: 0;
  overflow: auto;
  padding-left: 0;
}

.el-popper li {
  list-style-type: none;
  margin-left: 0;
  cursor: pointer;
  padding: 10px 20px;
}

.el-popper li:hover {
  background-color: #e6f7ff;
  color: #333;
}
/* pc端 */
@media (min-width: 751px) {}
@media (max-width: 750px) {
  .el-input__inner{
    height: 100%;
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 10px;
    border: 2px solid #f5f5f5;
    font-size: 3vw;
  }
}