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
| .cu-form-group .title {
| min-width: calc(25% + 30rpx);
| }
|
| .solid-bottom::after {
| border-bottom: 1px solid #D5D5D5;
| }
|
| .bg-primeval {
| border-radius: 5px;
| background-color: #0294e9;
| color: #FFFFFF;
| }
|
| .bg-disable {
| background-color: #E1E1E1;
| color: #B4B4B4;
| }
|
| .wrap {
| top: 15%;
| transform: translate(0, -50%);
| position: absolute;
| width: 100%;
| }
|
| .UCenter-bg {
| /* top: -20%; */
| transform: translate(0, 25%);
| /* position: absolute; */
| /* width: 100%; */
| background-size: cover;
| display: flex;
| justify-content: center;
| overflow: hidden;
| position: relative;
| flex-direction: column;
| align-items: center;
| font-weight: 300;
| }
| .box{
| display:flex;
| flex-direction:row;
| justify-content:flex-start;
| }
| .UCenter-bg text {
| color: #000000;
| }
|
| .UCenter-bg image {
| width: 600px;
| height: 600px;
| }
|
|