This repository was archived by the owner on Sep 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdynamic.wxss
103 lines (92 loc) · 1.78 KB
/
dynamic.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
.box {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 999;
display: flex;
align-items: center;
justify-content: center;
font-family: 'PingFang SC';
background-color: rgba(0, 0, 0, 0.4);
}
.box .pop {
width: 621rpx;
height: 522rpx;
border-radius: 10rpx;
background-color: rgb(248, 247, 249);
display: flex;
flex-direction: column;
justify-content: space-between;
}
.box .pop .top {
width: 100%;
height: 94rpx;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1rpx solid rgb(233, 237, 245);
}
.box .pop .top .txt {
font-size: 28rpx;
color: rgb(136, 136, 136);
width: 128rpx;
height: 93rpx;
line-height: 93rpx;
text-align: center;
}
.box .pop .top .title {
font-size: 36rpx;
font-weight: bold;
}
.box .pop .center {
width: 100%;
flex-grow: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.box .pop .center .duoduo {
width: 71rpx;
height: 71rpx;
border-radius: 50%;
margin-bottom: 32rpx;
}
.box .pop .center .duoduo image {
width: 100%;
height: 100%;
border-radius: 50%;
}
.box .pop .center .explain {
font-size: 32rpx;
width: 520rpx;
text-align: center;
border-bottom: 1rpx solid rgb(233, 237, 245);
padding-bottom: 32rpx;
}
.box .pop .center .tip {
width: 520rpx;
font-size: 28rpx;
color: rgb(136, 136, 136);
display: flex;
align-items: center;
margin-top: 32rpx;
}
.box .pop .center .tip .dian {
width: 9rpx;
height: 9rpx;
background-color: rgb(136, 136, 136);
border-radius: 50%;
margin-left: 10rpx;
margin-right: 22rpx;
}
.box .pop .bottom {
width: 100%;
height: 89rpx;
text-align: center;
border-top: 1rpx solid rgb(233, 237, 245);
font-size: 32rpx;
color: rgb(66, 169, 31);
}