doum
14 小时以前 e68e324f91d1a4eb2d4c5f07d27ca105a308bc0c
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
<template>
    <view class="box">
        <view class="box_item" v-for="(item, index) in 3" :key="index">
            <view class="box_item_top">
                <text>隐私权政策</text>
                <uni-icons type="forward" size="20" color="#CCCCCC"></uni-icons>
            </view>
            <!-- <view class="box_item_content">1234321234321</view> -->
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            }
        }
    }
</script>
 
<style>
    page {
        background-color: #fff !important;
    }
</style>
 
<style lang="scss" scoped>
    .box {
        width: 100%;
        padding: 0 32rpx;
        box-sizing: border-box;
        .box_item {
            display: flex;
            justify-content: center;
            flex-direction: column;
            padding: 32rpx 0;
            box-sizing: border-box;
            border-bottom: 2rpx solid #F4F5F4;
            .box_item_top {
                display: flex;
                align-items: center;
                justify-content: space-between;
                text {
                    font-size: 32rpx;
                    font-family: PingFang SC-Medium, PingFang SC;
                    font-weight: 500;
                    color: #333333;
                }
            }
            .box_item_content {
                padding: 20rpx 0;
                box-sizing: border-box;
                font-size: 24rpx;
                font-family: PingFang SC-Medium, PingFang SC;
                font-weight: 500;
                color: #CCCCCC;
            }
        }
    }
</style>