|
@@ -98,7 +98,7 @@
|
|
|
.el-dialog {
|
|
|
padding: 0;
|
|
|
height: var(--cus-dialog_height);
|
|
|
- $borderRadius: 8px;
|
|
|
+ $borderRadius: 16px;
|
|
|
border-radius: $borderRadius;
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
@@ -106,9 +106,9 @@
|
|
|
padding: 0;
|
|
|
margin: 0;
|
|
|
._cus-dialog-head {
|
|
|
- height: 50px;
|
|
|
+ height: 58px;
|
|
|
width: 100%;
|
|
|
- background-color: var(--cus-main-color);
|
|
|
+ background-color: #4F8BE9;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
border-radius: $borderRadius $borderRadius 0 0 ;
|
|
@@ -118,7 +118,25 @@
|
|
|
color: #ffffff;
|
|
|
padding: 0 20px 0 16px;
|
|
|
box-sizing: border-box;
|
|
|
- .__cdh-title {}
|
|
|
+ position: relative;
|
|
|
+ &:before {
|
|
|
+ content: "";
|
|
|
+ background-image: url("@/assets/images/web/title-bg.png");
|
|
|
+ border-top-left-radius: $borderRadius;
|
|
|
+ height: 100%;
|
|
|
+ width: 445px;
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ z-index: 2;
|
|
|
+ }
|
|
|
+ .__cdh-title {
|
|
|
+ z-index: 3;
|
|
|
+ margin-left: 8px;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 20px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ }
|
|
|
.__cdh-slot {}
|
|
|
.__cdh-close {
|
|
|
margin-left: auto;
|
|
@@ -132,6 +150,8 @@
|
|
|
display: flex;
|
|
|
overflow-y: hidden;
|
|
|
flex: 1;
|
|
|
+ background-color: rgba(0, 52, 159, 0.7);
|
|
|
+ border-radius: 0 0 $borderRadius $borderRadius;
|
|
|
.__cus-dialog-main {
|
|
|
width: 100%;
|
|
|
display: flex;
|
|
@@ -146,14 +166,12 @@
|
|
|
align-items: center;
|
|
|
box-sizing: border-box;
|
|
|
>div {
|
|
|
- margin-right: 10px;
|
|
|
- height: 28px;
|
|
|
+ margin-right: 20px;
|
|
|
+ height: 40px;
|
|
|
border-radius: 4px;
|
|
|
- padding: 0 14px;
|
|
|
+ padding: 0 28px;
|
|
|
line-height: 1;
|
|
|
- font-size: 14px;
|
|
|
- font-family: Microsoft YaHei;
|
|
|
- font-weight: 400;
|
|
|
+ font-size: 16px;
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
@@ -163,13 +181,12 @@
|
|
|
}
|
|
|
}
|
|
|
.__cus-dialog-foot_submit {
|
|
|
- background: var(--cus-main-color);
|
|
|
+ background: #4996FF;
|
|
|
color: #FFFFFF;
|
|
|
}
|
|
|
.__cus-dialog-foot_cancel {
|
|
|
- background: #F8F8F8;
|
|
|
- border: 1px solid #E4E4E4;
|
|
|
- color: var(--cus-text-color-3);
|
|
|
+ background: #6FA2EA;
|
|
|
+ color: #FFFFFF;
|
|
|
}
|
|
|
}
|
|
|
&.isFull {
|
|
@@ -606,4 +623,133 @@ em {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+}
|
|
|
+
|
|
|
+.el-form-item__label {
|
|
|
+ color: #ffffff !important;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+.el-form-item__content {
|
|
|
+ .unit {
|
|
|
+ color: #ffffff !important;
|
|
|
+ font-size: 16px !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-input__wrapper {
|
|
|
+ background-color: transparent !important;
|
|
|
+ box-shadow: none !important;
|
|
|
+ border: 1px solid rgba(174, 208, 255, 1);
|
|
|
+ .el-input__inner {
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-select__wrapper {
|
|
|
+ background-color: transparent !important;
|
|
|
+ box-shadow: none !important;
|
|
|
+ border: 1px solid rgba(174, 208, 255, 1);
|
|
|
+ .el-select__selected-item:not(.is-transparent) {
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-radio-group {
|
|
|
+ .el-radio__label {
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-upload {
|
|
|
+ background-color: transparent !important;
|
|
|
+ .upload-layout-card {
|
|
|
+ >div {
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+ .svg-icon {
|
|
|
+ >* {
|
|
|
+ fill: #ffffff !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.cus-table {
|
|
|
+ .el-table__inner-wrapper {
|
|
|
+ &:before {
|
|
|
+ background-color: #3864bb;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-table__header {
|
|
|
+ .el-table__cell {
|
|
|
+ height: 40px;
|
|
|
+ background-color: #135EC6 !important;
|
|
|
+ .cell {
|
|
|
+ color: rgba(129, 175, 255, 1) !important;
|
|
|
+ font-size: 16px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-table__body-wrapper {
|
|
|
+ background-color: #17439E;
|
|
|
+ .hover-row {
|
|
|
+ opacity: 0.75;
|
|
|
+ }
|
|
|
+ .el-table__cell {
|
|
|
+ height: 60px;
|
|
|
+ background-color: #17439E !important;
|
|
|
+ border-color: #3864bb !important;
|
|
|
+ .cell {
|
|
|
+ color: #ffffff !important;
|
|
|
+ font-size: 16px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-table__empty-text {
|
|
|
+ color: #ffffff;
|
|
|
+ }
|
|
|
+ .el-checkbox__inner {
|
|
|
+ width: 20px;
|
|
|
+ height: 20px;
|
|
|
+ &:after {
|
|
|
+ width: 6px;
|
|
|
+ height: 12px;
|
|
|
+ left: 5px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.el-loading-mask {
|
|
|
+ background-color: rgba(1, 29, 71, 0.7) !important;
|
|
|
+}
|
|
|
+.cus-table-page {
|
|
|
+ .el-pagination__total {
|
|
|
+ color: #ffffff !important;
|
|
|
+ font-size: 16px !important;
|
|
|
+ }
|
|
|
+ .el-pagination__sizes {
|
|
|
+ .el-select__selected-item > span {
|
|
|
+ font-size: 16px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .btn-prev, .btn-next {
|
|
|
+ background-color: transparent !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ font-size: 16px !important;
|
|
|
+ }
|
|
|
+ .el-pager {
|
|
|
+ >li {
|
|
|
+ color: #ffffff !important;
|
|
|
+ background-color: transparent !important;
|
|
|
+ font-size: 16px !important;
|
|
|
+ &.is-active {
|
|
|
+ color: #135EC6 !important;
|
|
|
+ background-color: #ffffff !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .el-pagination__jump {
|
|
|
+ >span {
|
|
|
+ font-size: 16px !important;
|
|
|
+ color: #ffffff !important;
|
|
|
+ }
|
|
|
+ .el-input__inner {
|
|
|
+ font-size: 16px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|