// 添加颜色类
::v-deep 深度选择器
//修改每一个label文字以及边距
::v-deep .el-radio__label{
color: #ABABAB;
margin-right:10px
}
//修改选中label文字
::v-deep .el-radio__input.is-checked + .el-radio__label {
color: #2E2E2E !important;
}
//修改选中radio背景色、边框
::v-deep .el-radio__input.is-checked .el-radio__inner {
background: #585858 !important;
border-color: #585858 !important;
}