button {
    background-color: #4361ee;
    padding: 9px 15px;
    font-size: 12px;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid #4361ee;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    transition: .1s;
    font-weight: 500;
}
input:not([type="checkbox"]) {
    padding-left: 30px;
    height: 32px;
    line-height: 32px;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    outline: 0;
    padding: 0 15px;
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}
input[readonly]{
    background-color: #f5f7fa;
}
textarea{
    padding-left: 30px;
    height: 200px;
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    outline: 0;
    padding: 0 15px;
    transition: border-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}
select {
    /* 重置默认样式 */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    /* 尺寸和边框 */
    width: 220px;
    height: 34px;
    padding: 0 15px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    background-color: #fff;
    color: #606266;
    font-size: 14px;
    /* 背景图标 - 使用伪元素添加下拉箭头 */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23c0c4cc' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    /* 交互效果 */
    transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

select:hover {
    border-color: #c0c4cc;
}

select:focus {
    outline: none;
    border-color: #409eff;
}

/* 隐藏原生下拉箭头（仅对IE有效） */
select::-ms-expand {
    display: none;
}

/* 下拉选项样式（注意：原生option样式定制非常有限） */
select option {
    padding: 8px 15px;
    color: #606266;
    background-color: #fff;
}

select option:hover {
    background-color: #f5f7fa;
}

select option:checked {
    /* background-color: #409eff; */
    color: #324dcc;
}
.el-form-item-label{
    font-weight: 700;
    color: #333;
    font-size: 14px;
}