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
| @charset "UTF-8";
| /* 页面左右间距 */
| /* 文字尺寸 */
| /*文字颜色*/
| /* 边框颜色 */
| /* 图片加载中颜色 */
| /* 行为相关颜色 */
| .app {
| width: 100%;
| }
| .price-box {
| background-color: #fff;
| height: 265rpx;
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| font-size: 28rpx;
| color: #909399;
| }
| .price-box .price {
| font-size: 50rpx;
| color: #303133;
| margin-top: 12rpx;
| }
| .price-box .price:before {
| content: '¥';
| font-size: 40rpx;
| }
| .pay-type-list {
| margin-top: 20rpx;
| background-color: #fff;
| padding-left: 60rpx;
| }
| .pay-type-list .type-item {
| height: 120rpx;
| padding: 20rpx 0;
| display: flex;
| justify-content: space-between;
| align-items: center;
| padding-right: 60rpx;
| font-size: 30rpx;
| position: relative;
| }
| .pay-type-list .icon {
| width: 100rpx;
| font-size: 52rpx;
| }
| .pay-type-list .icon-erjiye-yucunkuan {
| color: #fe8e2e;
| }
| .pay-type-list .icon-weixinzhifu {
| color: #36cb59;
| }
| .pay-type-list .icon-alipay {
| color: #01aaef;
| }
| .pay-type-list .tit {
| font-size: 32rpx;
| color: #303133;
| margin-bottom: 4rpx;
| }
| .pay-type-list .con {
| flex: 1;
| display: flex;
| flex-direction: column;
| font-size: 24rpx;
| color: #909399;
| }
| .mix-btn {
| display: flex;
| align-items: center;
| justify-content: center;
| width: 630rpx;
| height: 80rpx;
| margin: 80rpx auto 30rpx;
| font-size: 32rpx;
| color: #fff;
| background-color: #fa436a;
| border-radius: 10rpx;
| box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
| }
|
|