346149741
2024-06-20 3b29e9873e1d529227e1f4a909d5cbef01d2519a
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
<template>
    <view class="box">
        <view class="name">
            中国社科院都阳:中国人口转变的独特性及其影响
        </view>
        <view class="font">
            <view class="left">
                政策类型
            </view>
            <view class="right">
                发布时间:2024-04-27
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            }
        },
        methods: {
            
        }
    }
</script>
 
<style>
 
</style>
<style scoped lang="scss">
    .box{
        padding: 32rpx;
    }
    .name{
        color: #202d44;
        font-size: 40rpx;
        font-weight: bold;
    }
    .font{
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #f1f1f1;
        padding-bottom: 26rpx;
        margin-top: 20rpx;
        .left{
            text-align: center;
            height: 42rpx;
            line-height: 42rpx;
            padding: 0 10rpx;
            border-radius: 4rpx;
            background: #1171E0;
            color: #ffffff;
            font-size: 24rpx;
            
        }
        .right{
            color: #7e8596;
            font-size: 28rpx;
        }
    }
</style>