share.wxss
2.54 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
@charset "UTF-8";
@font-face {
font-family: 'iconfont';
/* project id 2125414 */
src: url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.eot');
src: url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.eot?#iefix') format('embedded-opentype'),
url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.woff2') format('woff2'),
url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.woff') format('woff'),
url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.ttf') format('truetype'),
url('//at.alicdn.com/t/font_2125414_o4quhtfqnbr.svg#iconfont') format('svg');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 32rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-weixin:before {
content: "\e677";
}
.icon-pic:before {
content: "\e620";
}
.container {
background-color: white;
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background-color: rgba(0,0,0,.5);
z-index: 100;
}
.container-wrap {
background-color: white;
position: absolute;
bottom: 0;
width: 100%;
}
.flex {
display: flex;
}
.btn {
box-sizing: border-box;
width: 50%;
padding: 30rpx;
text-align: center;
line-height: 1;
}
.icon-container {
width: 80rpx;
height: 80rpx;
line-height: 80rpx;
color: white;
border-radius: 50%;
text-align: center;
margin: 0 auto;
}
.iconfont {
font-size: 40rpx;
}
.bg-green {
background-color: #2ECB38;
}
.bg-red {
background-color: #F86C6C;
}
.title {
font-size: 28rpx;
color: #7b7b7b;
padding-top: 20rpx;
}
.btn-cancel {
padding: 20rpx;
text-align: center;
color: #7b7b7b;
background-color: #f9f9f9;
font-size: 28rpx;
line-height: 2;
}
.animated {
-webkit-animation-duration: .5s;
animation-duration: .5s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s
}
@-webkit-keyframes slideInUp {
0% {
opacity: 0;
-webkit-transform: translateY(2000px);
transform: translateY(2000px)
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
transform: translateY(0)
}
}
@keyframes slideInUp {
0% {
opacity: 0;
-webkit-transform: translateY(100px);
-ms-transform: translateY(100px);
transform: translateY(100px)
}
100% {
opacity: 1;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0)
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp
}
button{
border: none;
}
button::after {
border: none;
}