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
.app-share-page {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #EEF6FF;
.content-container {
width: 360px;
height: 320px;
background-color: #fff;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
border-radius: 8px;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
img {
width: 55px;
}
span.apply {
height: 98px;
padding-top: 30px;
padding-bottom: 40px;
font-size: 20px;
font-weight: 500;
color: #333333;
line-height: 28px;
}
}
button {
background-color: #fff;
color: #55A0FE;
width: 240px;
height: 31px;
border: 1px solid #f3eeee;
margin: 6px;
border-radius: 3px;
font-weight: 400;
font-size: 12px;
color: #666666;
&:hover {
cursor: pointer;
}
}
button.apply-button {
background-color: #57A3FD;
color: #fff;
}
}