poster.scss
960 Bytes
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
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';
.page {
.bgc {}
.bg {
position: fixed;
width: 100%;
height: 100%;
}
.main {
position: relative;
.top-space {
height: 24px;
}
.content {
position: relative;
.poster-wrap {
width: 700px;
height: 921px;
margin: 0 auto;
.poster {
width: 700px;
height: 921px;
}
.tips {
margin-top: 10px;
color: #ebc6ce;
font-size: 26px;
@extend .bb;
padding: 0 10px;
font-weight: 300;
line-height: 1.5;
}
.download-btn {
margin: 28px auto 0;
border-radius: 40px;
background-image: linear-gradient(to right, #ffdcd4, #fdf2f0 51%, #ffdcd4);
color: #a73136;
font-size: 32px;
@include btc(300px, 80px);
}
}
}
}
}