doum
2026-01-30 fad455d8943bd6af1501f7dca62f9530ed7d19cc
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
<template>
    <view class="box">
        <view class="cate">
            <view class="cate-item active">
                获客类
                <view class="cate-item-xian"></view>
            </view>
            <view class="cate-item">市场类</view>
            <view class="cate-item">设计类</view>
            <view class="cate-item">培训类</view>
        </view>
        <view class="content">
            <image class="wu" src="/static/default_noranking@2x.png" mode="widthFix"></image>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                
            };
        }
    }
</script>
 
<style>
    page {
        background-color: #f7f7f7;
    }
</style>
<style lang="scss" scoped>
    .box {
        width: 100%;
        .content {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            .wu {
                width: 200rpx;
                height: 200rpx;
                margin-top: 200rpx;
            }
        }
        .cate {
            width: 100%;
            height: 88rpx;
            display: flex;
            align-items: center;
            background: #FFFFFF;
            position: sticky;
            top: 0;
            left: 0;
            z-index: 9;
            .active {
                color: #2E68C4 !important;
            }
            .cate-item {
                flex: 1;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 400;
                font-size: 30rpx;
                color: #666666;
                position: relative;
                .cate-item-xian {
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translate(-50%, 0);
                    width: 40rpx;
                    height: 6rpx;
                    background: #2E68C4;
                    border-radius: 3rpx;
                }
            }
        }
    }
</style>