-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.wxss
64 lines (64 loc) · 1.12 KB
/
app.wxss
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
@import "/fonts/font.wxss";
@import "weui.wxss";
.container {
height: 100vh;
background: #ffffff;
font-size: 32rpx;
}
/* flex布局 */
.flex {
display: flex;
}
/* flex布局-水平居中 */
.flex-jcc {
justify-content: center;
}
/* flex布局-垂直居中 */
.flex-ac {
align-items: center;
}
/* flex布局-水平两端显示 */
.flex-jcb {
justify-content: space-between;
}
.flex-v {
flex-direction: column;
}
.flex-1 {
flex: 1;
}
.header-wrapper {
height: 55vh;
width: 100%;
background: #ffffff;
border-bottom-right-radius: 80rpx;
border-bottom-left-radius: 80rpx;
}
.header-image {
width: 29vh;
height: 29vh;
position: relative;
top: -7.5vh;
}
.content-wrapper {
position: absolute;
top: 43vh;
left: 30rpx;
min-height: 50vh;
width: calc(100% - 60rpx);
padding: 60rpx 40rpx;
box-sizing: border-box;
background: #fff;
border-radius: 10px;
box-shadow: 0px 0px 6rpx #fff;
color: #818181;
}
.btn {
width: 100%;
font-size: 28rpx;
padding: 8rpx 0;
background-image: linear-gradient(to top, #00c6fb 0%, #005bea 100%);
border: 1px solid #00f2fe;
color: #fff;
border-radius: 100rpx;
}