forked from gzzfw/frontEnd/gzDyh

dminyi
2024-08-14 68c171089b7438d56209c007bcb9bfbc135dc965
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
.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;
        
    }
}