Newer
Older
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
update-app {
.cover{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .2);
z-index: 999;
}
.bg-content{
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
background-image: url("../assets/imgs/update_tip_bg.png");
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
width: 65%;
height: 52%;
border-radius: 10px;
}
.update-content{
position: absolute;
top: 40%;
width: 100%;
height: 60%;
left: 0;
}
.update-title{
margin: 70px auto;
font-size: 2rem;
font-weight: bold;
text-align: center;
}
.update-text{
margin-top: 40px;
padding: 0 15%;
font-size: 1.5rem;
font-weight: 400;
text-align: center;
}
.update-button{
position: absolute;
left: 20%;
bottom: 6%;
width: 60%;
height: 4rem;
margin: 0 auto;
text-align: center;
background: linear-gradient(242deg, #fff7cb 0%, #ffc92d 100%);
border-radius: 24px;
font-size: 1.6rem;
font-weight: bold;
line-height: 4rem;
box-shadow: 0px 8px 8px 0px rgba(78,78,78,0.11);
}
.icon-close {
position: absolute;
bottom: -30px;
left: 50%;
transform: translate(-50%, 4rem);
color: #fff;
border: 1px solid #ffffff;
font-size: 3.5rem;
height: 3.5rem;
width: 3.5rem;
text-align: center;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
ion-icon{
font-weight: 500;
}
}
}