action-bar.wxss
1.8 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
/* page/subPackage/pages/zeroSell/components/action-bar.wxss */
.action-bar {
display: flex;
width: 100%;
height: 100rpx;
}
.action-item {
flex: 1;
color: white;
text-align: center;
font-size: 32rpx;
height: 100rpx;
line-height: 100rpx;
background-color: white;
}
.action-list {
flex: 0;
position: relative;
flex-basis: 150rpx;
}
.action-image {
width: 46rpx;
height: 42rpx;
position: absolute;
top: 50%;
left: 50%;
/* transform: translateY(-50%); */
transform: translate(-50%, -50%);
}
.ok {
background-color: #D0021B;
}
.confirm {
background-color: #444444;
}
.over {
background-color: #B0B0B0;
}
.code-alert {
text-align: center;
color: black;
margin-top: 40rpx;
}
.title {
font-size: 28rpx;
color: #B0B0B0;
margin-bottom: 30rpx;
}
.code {
display: inline-block;
min-width: 260rpx;
height: 72rpx;
font-size: 40rpx;
font-weight: bolder;
line-height: 72rpx;
text-align: center;
border: 1rpx solid black;
margin-bottom: 30rpx;
padding: 0 20rpx;
}
.share {
font-size: 28rpx;
color: #444444;
}
.foot {
display: flex;
position: absolute;
box-sizing: border-box;
bottom: 0;
width: 100%;
height: 90rpx;
line-height: 90rpx;
font-size: 28rpx;
font-weight: bolder;
text-align: center;
border-top: 1rpx solid #E0E0E0;
}
.foot-item {
flex: 1;
text-align: center;
font-size: 32rpx;
height: 90rpx;
line-height: 90rpx;
color: black;
border: none !important;
border-radius: unset;
}
.foot-item + .foot-item {
border-left: 1rpx solid #E0E0E0 !important;
}
.info {
color: #D0021B !important;
}
.error-alert {
text-align: center;
color: black;
margin-top: 40rpx;
}
.error-title {
font-size: 40rpx;
color: #D0021B ;
margin-bottom: 30rpx;
}
.error-content {
font-size: 30rpx;
padding: 0 100rpx;
}