doum
11 小时以前 5d3b86a4d0032836c782e5e1319179eced5e5647
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<template>
    <view class="box">
        <view class="box_list">
            <view class="box_list_item" v-for="(item, index) in 3" :key="index">
                <view class="box_list_item_left">
                    <view class="box_list_item_left_a">
                        <text>¥</text>
                        <text>3</text>
                    </view>
                    <text class="box_list_item_left_b">满3.01元可用</text>
                </view>
                <view class="box_list_item_right">
                    <view class="top">
                        <view class="top_a">3元无门槛优惠券1</view>
                        <view class="top_b">商城全场通用</view>
                        <view class="top_c">
                            <text>有效期至 2023-05-11 23:59</text>
                            <!-- <image src="@/static/icon/cart_ic_select@2x.png" mode="widthFix"></image> -->
                            <image src="@/static/icon/cart_ic_select_grey@2x.png" mode="widthFix"></image>
                        </view>
                    </view>
                    <view class="x"></view>
                    <view class="bottom">
                        <text>使用规则</text>
                        <uni-icons type="bottom" size="15" color="#333333"></uni-icons>
                    </view>
                </view>
            </view>
        </view>
        <view class="box_footer">
            <view class="box_footer_btn">确定</view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            }
        }
    }
</script>
<style>
    page {
        background-color: #ffffff;
    }
</style>
<style lang="scss" scoped>
    .box {
        width: 100%;
        .box_list {
            padding: 24rpx 32rpx;
            box-sizing: border-box;
            .box_list_item {
                width: 100%;
                // height: 236rpx;
                padding: 32rpx 20rpx 18rpx 28rpx;
                box-sizing: border-box;
                background: #FFFFFF;
                border-radius: 12rpx;
                border: 2rpx solid #D20A0A;
                display: flex;
                align-items: center;
                margin-bottom: 16rpx;
                &:last-child {
                    margin-bottom: 0 !important;
                }
                .box_list_item_left {
                    width: 200rpx;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-direction: column;
                    margin-right: 32rpx;
                    .box_list_item_left_a {
                        display: flex;
                        align-items: center;
                        text {
                            &:first-child {
                                font-size: 36rpx;
                                font-family: PingFang SC-Regular, PingFang SC;
                                font-weight: 400;
                                color: #D20A0A;
                                margin-top: 35rpx;
                            }
                            &:last-child {
                                font-size: 76rpx;
                                font-family: PingFang SC-Semibold, PingFang SC;
                                font-weight: 600;
                                color: #D20A0A;
                            }
                        }
                    }
                    .box_list_item_left_b {
                        font-size: 24rpx;
                        font-family: PingFang SC-Regular, PingFang SC;
                        font-weight: 400;
                        color: #D20A0A;
                        margin-top: 24rpx;
                    }
                }
                .box_list_item_right {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    .top {
                        display: flex;
                        flex-direction: column;
                        .top_a {
                            font-size: 32rpx;
                            font-family: PingFang SC-Medium, PingFang SC;
                            font-weight: 500;
                            color: #333333;
                        }
                        .top_b {
                            font-size: 20rpx;
                            font-family: PingFang SC-Regular, PingFang SC;
                            font-weight: 400;
                            color: #999999;
                            margin-top: 20rpx;
                        }
                        .top_c {
                            margin-top: 20rpx;
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            text {
                                font-size: 20rpx;
                                font-family: PingFang SC-Regular, PingFang SC;
                                font-weight: 400;
                                color: #999999;
                            }
                            image {
                                width: 32rpx;
                                height: 32rpx;
                            }
                        }
                    }
                    .x {
                        width: 100%;
                        height: 2rpx;
                        background-color: #F4F5F4;
                        margin: 24rpx 0 10rpx 0;
                    }
                    .bottom {
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        text {
                            font-size: 20rpx;
                            font-family: PingFang SC-Regular, PingFang SC;
                            font-weight: 400;
                            color: #333333;
                        }
                    }
                }
            }
        }
        .box_footer {
            position: fixed;
            left: 0;
            bottom: 0;
            width: 100%;
            box-sizing: border-box;
            padding: 12rpx 54rpx calc(12rpx + env(safe-area-inset-bottom)) 54rpx;
            .box_footer_btn {
                width: 100%;
                height: 72rpx;
                line-height: 72rpx;
                text-align: center;
                background: linear-gradient(270deg, #D20A0A 0%, #D95A5A 100%);
                border-radius: 36rpx;
                font-size: 32rpx;
                font-family: PingFang SC-Medium, PingFang SC;
                font-weight: 500;
                color: #FFFFFF;
            }
        }
    }
</style>