修改el-select背景颜色

/* 修改el-select样式--直接覆盖默认样式(推荐) */
::v-deep .el-select .el-input__inner {
background-color: #1d2b72 !important; /* 修改输入框背景色 */
color: #fff;
}
::v-deep .el-select .el-input__wrapper {
background-color: transparent !important; /* 修改左侧空空处和右侧icon背景色 */
box-shadow: 0 0 0 1px #409eff inset; /* 修改未选中时下拉框边框颜色 */
}
::v-deep .el-select-dropdown__item {
background-color: #1d2b72 !important; /* 修改下拉选项背景色 */
color: #fff;
margin: 0;
}
::v-deep .el-select-dropdown__list {
list-style: none;
margin: 0 !important;
}
::v-deep .el-popper.is-light {
border: 1px solid #409eff; /* 修改下拉区域边框颜色 */
}