|
|
|
|
|
|
|
body{
|
|
|
|
font-family: Microsoft YaHei UI;
|
|
|
|
font-size: 14px;
|
|
|
|
p{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* button==== start */
|
|
|
|
|
|
|
|
.el-button{
|
|
|
|
width: 144px;
|
|
|
|
height: 46px;
|
|
|
|
font-family: Microsoft YaHei UI;
|
|
|
|
font-size: 14px;
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
transition: all .3s;
|
|
|
|
}
|
|
|
|
.el-button--normal{
|
|
|
|
color: #626573;
|
|
|
|
}
|
|
|
|
.el-button--mild{
|
|
|
|
background: #FFFFFF;
|
|
|
|
border: 1px solid #006AFF;
|
|
|
|
color: #006AFF;
|
|
|
|
}
|
|
|
|
.el-button--primary,.el-button--success,.el-button--info,.el-button--warning,.el-button--danger{
|
|
|
|
color: #fff !important;
|
|
|
|
}
|
|
|
|
.el-button--medium{//中等按钮
|
|
|
|
width: 97px;
|
|
|
|
height: 33px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 14px;
|
|
|
|
span{
|
|
|
|
height: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
.el-button--small{//小的按钮
|
|
|
|
width: 80px;
|
|
|
|
height: 32px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.el-button--mini{ //迷你按钮
|
|
|
|
width: 80px;
|
|
|
|
height: 28px;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.el-button--reverseMild{
|
|
|
|
background: #E8F0FE;
|
|
|
|
color: #006AFF;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.el-button--reverseMild:hover{
|
|
|
|
border-color: #F2F7FF !important;
|
|
|
|
background-color:#F2F7FF !important;
|
|
|
|
}
|
|
|
|
.el-button--reverseMild.is-disabled, .el-button--reverseMild.is-disabled:hover{
|
|
|
|
color: #006AFF;
|
|
|
|
border-color: #E8F0FE;
|
|
|
|
background-color:#E8F0FE;
|
|
|
|
opacity: .7;
|
|
|
|
}
|
|
|
|
.el-button--mild.is-disabled, .el-button--mild.is-disabled:hover{
|
|
|
|
color: #006AFF;
|
|
|
|
opacity: .7;
|
|
|
|
border-color: #006AFF;
|
|
|
|
}
|
|
|
|
/* button==== end */
|
|
|
|
|
|
|
|
// radio ---start
|
|
|
|
.el-radio__input.is-checked .el-radio__inner::after {
|
|
|
|
content: ''; /* 清空默认的伪元素内容 */
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
|
|
|
background-image: url('../../assets/radio_checked.svg'); /* 使用你的自定义图标 */
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
.el-radio__label{
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
// radio ---end
|
|
|
|
|
|
|
|
// input ---start
|
|
|
|
.el-input{
|
|
|
|
border-radius: 2px;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
.el-input:focus-within{
|
|
|
|
transition: all .5s;
|
|
|
|
outline: 3px solid #D8E9FA;
|
|
|
|
border-color: #006AFF !important;
|
|
|
|
}
|
|
|
|
.is-error .hoverclass{
|
|
|
|
border-color: transparent !important;
|
|
|
|
}
|
|
|
|
.is-error .el-input:focus-within{
|
|
|
|
outline: none !important;
|
|
|
|
border-color: transparent !important;
|
|
|
|
}
|
|
|
|
.el-input__inner{
|
|
|
|
height: 100%;
|
|
|
|
padding: 10px 12px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
.el-input__prefix{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
left: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.el-input__suffix{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
right: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.el-input__inner:focus{
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
.el-input__inner:hover{
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
.el-input--prefix .el-input__inner{
|
|
|
|
padding-left: 36px;
|
|
|
|
}
|
|
|
|
.el-input--suffix .el-input__inner{
|
|
|
|
padding-right: 36px;
|
|
|
|
}
|
|
|
|
.el-input.is-disabled .el-input__inner{
|
|
|
|
background: #F6F7FA !important;
|
|
|
|
border-color: #DFE2E6 !important;
|
|
|
|
color: #BABDC2 !important;
|
|
|
|
}
|
|
|
|
.hoverclass{
|
|
|
|
border-color: #006AFF !important;
|
|
|
|
transition: all .5s;
|
|
|
|
}
|
|
|
|
// input ---end
|
|
|
|
|
|
|
|
|
|
|
|
// select start
|
|
|
|
.el-select:hover .el-input__inner{
|
|
|
|
transition: all .5s;
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
.el-select .el-input.is-focus .el-input__inner{
|
|
|
|
border-color: transparent;
|
|
|
|
transition: all .5s;
|
|
|
|
}
|
|
|
|
.el-select .el-input__inner:focus{
|
|
|
|
border-color: transparent;
|
|
|
|
}
|
|
|
|
.el-select>.el-input{
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
// select end
|
|
|
|
|
|
|
|
// textarea start
|
|
|
|
.el-textarea__inner{
|
|
|
|
padding: 10px 12px;
|
|
|
|
border-radius: 2px;
|
|
|
|
}
|
|
|
|
.el-textarea__inner:hover{
|
|
|
|
border-color: #006AFF;
|
|
|
|
}
|
|
|
|
.el-textarea__inner:focus{
|
|
|
|
transition: all .5s;
|
|
|
|
outline: 3px solid #D8E9FA;
|
|
|
|
}
|
|
|
|
// textarea end
|
|
|
|
|
|
|
|
|
|
|
|
.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label:before, .el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label:before{
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap>.el-form-item__label::after, .el-form-item.is-required:not(.is-no-asterisk)>.el-form-item__label::after{
|
|
|
|
content: url(../../assets/require.svg);
|
|
|
|
display: inline-block;
|
|
|
|
// background-image: url(../../assets/require.svg);
|
|
|
|
color: #ff4d4f;
|
|
|
|
margin-right: 4px;
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-item1{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
label{
|
|
|
|
min-width: 54px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
.form-item-top{
|
|
|
|
height: 18px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.form-item-bottom{
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.rightdesc{
|
|
|
|
flex: 1;
|
|
|
|
text-align: right;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 13px;
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
font-variation-settings: "opsz" auto;
|
|
|
|
color: #8A9099;
|
|
|
|
}
|
|
|
|
.form-item{
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.el-form-item__content{
|
|
|
|
// width: 100%;
|
|
|
|
flex: 1;
|
|
|
|
position: relative;
|
|
|
|
.desc_right{
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: -40px;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 40px;
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
font-variation-settings: "opsz" auto;
|
|
|
|
color: #8A9099;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.w510{
|
|
|
|
width: 510px;
|
|
|
|
}
|
|
|
|
.w388{
|
|
|
|
width: 388px;
|
|
|
|
}
|
|
|
|
.form-item{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.column{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column !important;
|
|
|
|
align-items: self-start;
|
|
|
|
.form-item-top{
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.form-item-bottom{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.el-form-item__content{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.form-top-icon{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
img{
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
span{
|
|
|
|
color: #1E2226;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// table start
|
|
|
|
.el-table--enable-row-hover .el-table__body tr:hover>td.el-table__cell{
|
|
|
|
background-color: #F6F7FA;
|
|
|
|
}
|
|
|
|
.el-table td.el-table__cell{
|
|
|
|
border-bottom: 1px solid#EAECF0;
|
|
|
|
}
|
|
|
|
.el-table--fit{
|
|
|
|
border: 1px solid#EAECF0;
|
|
|
|
}
|
|
|
|
.el-button--text{
|
|
|
|
padding: 0;
|
|
|
|
width: auto !important;
|
|
|
|
height: auto !important;
|
|
|
|
}
|
|
|
|
.el-table th.el-table__cell{
|
|
|
|
background: #F6F7FA;
|
|
|
|
padding: 18px 0;
|
|
|
|
}
|
|
|
|
.el-table th.el-table__cell>.cell{
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
.el-table .el-table__cell{
|
|
|
|
padding: 18px 0;
|
|
|
|
}
|
|
|
|
.el-table .cell{
|
|
|
|
padding-left: 16px;
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
.el-table .el-form-item{
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// table end
|
|
|
|
|
|
|
|
// dialog--start
|
|
|
|
.el-dialog{
|
|
|
|
min-height: 344px;
|
|
|
|
max-height: 550px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.16);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
.el-dialog__header{
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 26px;
|
|
|
|
letter-spacing: 0.08em;
|
|
|
|
color: #1F2026;
|
|
|
|
padding: 32px 32px 12px;
|
|
|
|
}
|
|
|
|
.el-dialog__body{
|
|
|
|
padding: 0 32px 32px;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.el-dialog__footer{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
padding: 0 32px 32px !important;
|
|
|
|
.dialog-footer{
|
|
|
|
width: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
button{
|
|
|
|
width: 247px;
|
|
|
|
height: 44px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// dialog--end
|
|
|
|
|
|
|
|
// switch --start
|
|
|
|
// .el-switch__core{
|
|
|
|
// background-color: #00C261;
|
|
|
|
// }
|
|
|
|
// .el-switch.is-checked .el-switch__core{
|
|
|
|
// background-color: #BABDC2;
|
|
|
|
// }
|
|
|
|
// switch --end
|
|
|
|
|
|
|
|
.el-popover{
|
|
|
|
padding: 32px;
|
|
|
|
}
|
|
|
|
.flex{
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|