|
@@ -0,0 +1,66 @@
|
|
|
|
|
+@use '@/styles/variables.scss' as *;
|
|
|
|
|
+.act-search-input {
|
|
|
|
|
+ max-width: 500px;
|
|
|
|
|
+ }
|
|
|
|
|
+ .act-search {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: flex-end;
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ }
|
|
|
|
|
+ .select-box {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ gap: 20px;
|
|
|
|
|
+ &--item {
|
|
|
|
|
+ @include flex-center;
|
|
|
|
|
+ white-space: nowrap;
|
|
|
|
|
+ }
|
|
|
|
|
+ span {
|
|
|
|
|
+ color: rgba(0, 0, 0, 0.85);
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ }
|
|
|
|
|
+ .el-select {
|
|
|
|
|
+ width: 200px;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ .search-btn {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .notice-state {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-self: center;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .batch-table {
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ }
|
|
|
|
|
+ .batch-operation--div {
|
|
|
|
|
+ @include flex-center;
|
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ top: 0;
|
|
|
|
|
+ left: 0;
|
|
|
|
|
+ gap: 60px;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 48px;
|
|
|
|
|
+ border: 4px;
|
|
|
|
|
+ padding: 16px 25px;
|
|
|
|
|
+ background-color: #ddefff;
|
|
|
|
|
+ z-index: 100;
|
|
|
|
|
+ &--close {
|
|
|
|
|
+ @include flex-center;
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+ flex: 1;
|
|
|
|
|
+ }
|
|
|
|
|
+ .close-icon {
|
|
|
|
|
+ font-size: 20px;
|
|
|
|
|
+ color: #ff4d4f;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|