2025-09-01 16:55:44 +08:00
|
|
|
$border-color: #12fbff;
|
|
|
|
|
$btn-confirm: #1C918A;
|
|
|
|
|
$btn-del:#D43030;
|
2025-08-29 15:48:33 +08:00
|
|
|
//级联器样式
|
2025-09-01 16:55:44 +08:00
|
|
|
.ant-cascader {
|
|
|
|
|
.ant-select-selector {
|
2025-08-29 15:48:33 +08:00
|
|
|
background: none !important;
|
2025-09-01 16:55:44 +08:00
|
|
|
border: 1px solid $border-color !important;
|
|
|
|
|
}
|
|
|
|
|
.ant-select-arrow {
|
|
|
|
|
color: $border-color;
|
|
|
|
|
}
|
|
|
|
|
.ant-select-selection-placeholder{
|
|
|
|
|
color: #ffffff3b;
|
|
|
|
|
}
|
2025-08-29 15:48:33 +08:00
|
|
|
}
|
2025-09-01 16:55:44 +08:00
|
|
|
//按钮样式
|
|
|
|
|
// .ant-btn{
|
|
|
|
|
// padding: 4px 8px;
|
|
|
|
|
// }
|
|
|
|
|
.ant-btn-primary{
|
|
|
|
|
background: $btn-confirm;
|
|
|
|
|
&:hover{
|
|
|
|
|
background: $btn-confirm;
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
|
|
|
|
&:active{
|
|
|
|
|
background: #0f6f6a;
|
|
|
|
|
|
2025-08-29 15:48:33 +08:00
|
|
|
}
|
|
|
|
|
}
|
2025-09-01 16:55:44 +08:00
|
|
|
.btn-del{
|
|
|
|
|
background: $btn-del;
|
|
|
|
|
&:hover{
|
|
|
|
|
background: $btn-del;
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
|
|
|
|
&:active{
|
|
|
|
|
background: $btn-del;
|
2025-08-29 15:48:33 +08:00
|
|
|
|
2025-09-01 16:55:44 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//modal样式
|
|
|
|
|
.ant-modal .ant-modal-content{
|
|
|
|
|
background-image: url('@/assets/images/modalBg.png');
|
|
|
|
|
background-size: 100% 100%;
|
|
|
|
|
background-color: #ffffff00 !important;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
}
|