forked from gzzfw/frontEnd/gzDyh

zhangyongtian
2024-09-11 ae1ed54b82a951a28da33391d4445280f86e9f7b
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
128
129
130
131
132
133
134
135
136
137
138
139
140
.filesCheck {
    &-nav {
        height: 100%;
        background-color: #ffffff;
        border-right: 1px solid #e6e6e6;
        display: flex;
        flex-direction: column;
 
        &-title {
            padding: 0 24px;
      height: 40px;
      line-height: 40px;
        }
 
    &-menu{
      flex: 1;
      overflow-y: auto;
      overflow-x: hidden;
    }
    }
 
    &-main {
        flex: 1;
        position: relative;
 
        &-action {
            width: 100%;
            height: 48px;
            line-height: 48px;
            background-color: #ffffff;
            border-bottom: 1px solid #e6e6e6;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            padding: 0 24px;
 
            &-title {
                flex: 1;
 
                h3 {
                    margin: 0;
                }
            }
 
            &-item {
                padding: 0 16px;
                font-size: 20px;
            }
        }
 
        &-imgBg {
            position: absolute;
            top: 49px;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            overflow: hidden;
 
            &:before {
                display: inline-block;
                width: 1px;
                height: 50%;
                margin-right: -1px;
                content: '';
            }
        }
 
        &-img {
            max-width: 100%;
            max-height: 100%;
            vertical-align: middle;
            transform: scaleZ(1);
            cursor: -webkit-grab;
            cursor: grab;
            transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
            pointer-events: auto;
        }
 
        &-other {
            background-color: #ffffff;
            margin: 24px;
            padding: 24px;
            text-align: center;
 
            &-icon {
                font-size: 48px;
                color: #1089ff;
            }
 
            &-text {
                padding: 24px 0;
            }
        }
    }
 
    &-imgLeft {
        position: absolute;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #ffffff;
        z-index: 99;
        line-height: 50px;
        text-align: center;
        font-size: 20px;
        opacity: 0.8;
        top: 50%;
        margin-top: -25px;
        left: 32px;
    }
 
    &-imgRight {
        position: absolute;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #ffffff;
        z-index: 99;
        line-height: 50px;
        text-align: center;
        font-size: 20px;
        opacity: 0.8;
        top: 50%;
        margin-top: -25px;
        right: 32px;
    }
 
    &-imgLeft,
    &-imgRight {
        &:hover {
            opacity: 1;
            cursor: pointer;
        }
    }
}