forked from gzzfw/frontEnd/gzDyh

dminyi
2024-08-14 61711ef75c61b4a0a71d21b618ba5b1c39bbe368
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.line {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    height: 1px;
    transition: all 0.3s ease-in-out;
 
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        height: 1px;
        background-image: linear-gradient(90deg, transparent 50%, currentColor 50%);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        z-index: 1;
    }
 
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        height: 1px;
        background-image: linear-gradient(currentColor 50%, transparent 50%);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        z-index: 2;
    }
}
 
.left-line {
    width: 2%;
    top: 1px;
    background-color: #E5E6EB;
}
 
.middle-line {
    width: 3%;
    background-color: #1A6FB8;
    left: 1%;
}
 
.right-line {
    top: -1px;
    width: 95.97%;
    background-color: #E5E6EB;
    left: 4%;
}
 
.table {
    //width="100%" borderColor='#E5E6EB'
 
    width: 100%;
    border-color: #E5E6EB;
 
    &-title {
        color: #86909C;
    }
}
 
.title {
    display: flex;
 
    &-text {
        color: #86909C;
    }
 
    &-personRemark {
        color: rgb(26, 111, 184);
        padding: 0px 8px;
        border: 1px solid rgb(26, 111, 184);
        border-radius: 4px;
        font-size: 14px;
        margin-left: 8px;
        height: 22px;
        display: flex;
        align-items: center;
    }
 
    &-file{
        width: 12px;
        margin-right: 4px;
        margin-top: -5px;
    }
}
 
.dataSync {
    &-page {
        background-color: #fff;
        margin: 8px 8px 0px 16px;
        padding: 12px 16px 16px 16px;
        height: calc(100vh - 211px);
        overflow-y: scroll;
    }
 
    &-addBtn {
        // width: 150px;
        // display: flex;
        // justify-content: center;
        cursor: pointer;
    }
 
    &-btnApply {
        padding: 5px 12px;
        display: flex;
        justify-content: center;
        cursor: pointer;
    }
 
    &-excel {
        background-color: #fff;
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 0;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.25);
    }
}