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
| body {
| overflow: unset !important;
| height: 0px !important;
| }
| .leftContent_all {
| position: relative;
| }
| .leftContent_bag {
| background-image: url("./image/leftBg.png");
| background-repeat: no-repeat;
| background-size: 100% 100%;
|
| position: absolute;
| top: 0px;
| left: 0px;
| width: 100%;
| height: 100%;
| z-index: -1;
| opacity: 0.5;
| }
| .rightContent_all {
| position: relative;
| }
| .rightContent_bag {
| background-image: url("./image/rightBg.png");
| background-repeat: no-repeat;
| background-size: 100% 100%;
|
| position: absolute;
| top: 0px;
| left: 0px;
| width: 100%;
| height: 100%;
| z-index: -1;
| opacity: 0.5;
| }
|
|