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
| .header-edit-box {
| .mask {
| position: fixed;
| top: 0px;
| left: 0px;
| right: 0px;
| bottom: 0px;
| .tipcard {
| position: absolute;
| min-height: 100px;
| font-size: 16px;
| border-radius: 6px;
| background-size: 100% 100%;
| background-repeat: no-repeat;
| padding: 15px;
| }
| .card1 {
| left: 30%;
| top: 20vh;
| width: 230px;
| min-height: 100px;
| color: #000000;
| font-style: oblique;
| }
| .card2 {
| left: 60%;
| top: 20vh;
| width: 230px;
| min-height: 100px;
| color: #000000;
| padding: 20px 30px;
| font-style: oblique;
| }
| .card3 {
| left: 30%;
| top: 50vh;
| width: 230px;
| min-height: 140px;
| color: #000000;
| padding: 20px 30px;
| font-style: oblique;
| }
| .card4 {
| left: 60%;
| top: 50vh;
| width: 230px;
| min-height: 140px;
| color: #000000;
| padding: 20px 30px;
| font-style: oblique;
| }
| .card5 {
| right: 5%;
| top: 20vh;
| width: 130px;
| min-height: 240px;
| color: #000000;
| padding: 40px 15px 10px;
| p {
| margin: 0 0 5px;
| }
| div {
| text-align: center;
| .new-view {
| display: inline-block;
| cursor: pointer;
| color: #fff;
| padding: 2px 10px;
| border-radius: 4px;
| background-color: #1890ff;
| border-color: #1890ff;
| text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
| -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
| box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
| }
| }
| }
| }
| }
|
|