xinyb_
2021-09-13 168a153961764d5062665c7110ed0e3ac2f85b72
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
.fs_gallery {
    background: rgba(0, 0, 0, 0.9); left: 0px; top: 0px; right: 0px; bottom: 0px; position: fixed; z-index: 1000;
}
.fs_gallery_close {
    top: 20px; width: 25px; height: 25px; text-align: center; right: 20px; color: rgb(204, 204, 204); line-height: 23px; font-size: 34px; position: absolute; z-index: 1002; cursor: pointer;
}
.fs_gallery_close::before {
    content: "x";
}
.fs_gallery_close:hover {
    color: rgb(255, 255, 255);
}
.fs_gallery_prev {
    width: 80px; color: rgb(204, 204, 204); font-size: 30px; position: absolute; z-index: 1001; cursor: pointer;
}
.fs_gallery_next {
    width: 80px; color: rgb(204, 204, 204); font-size: 30px; position: absolute; z-index: 1001; cursor: pointer;
}
.fs_gallery_prev:hover {
    background: rgba(0, 0, 0, 0.1); color: rgb(255, 255, 255);
}
.fs_gallery_next:hover {
    background: rgba(0, 0, 0, 0.1); color: rgb(255, 255, 255);
}
.fs_gallery_prev {
    left: 0px; top: 0px; bottom: 0px;
}
.fs_gallery_next {
    top: 0px; right: 0px; bottom: 0px;
}
.fs_gallery_prev::before {
    left: 35px; top: 50%; height: 30px; margin-top: -30px; position: absolute; content: "<";
}
.fs_gallery_next::before {
    left: 35px; top: 50%; height: 30px; margin-top: -30px; position: absolute; content: ">";
}
.fs_gallery_shuft {
    width: 9999999px; position: relative;
}
.fs_gallery_shuft::after {
    clear: both; display: block; content: "";
}
.fs_gallery_shuft_item {
    background-position: center; float: left; position: relative; background-repeat: no-repeat;
}
.fs_gallery_shuft_item img {
    left: 50%; top: 50%; position: absolute; box-shadow: 0px 0px 8px rgba(0,0,0,0.8);
}