#
whycq
2023-11-04 8cdb02f1c90e1bfaaba32d6a0d7ce43e7ba323cf
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
<script>
    export default {
        onLaunch: function() {
            console.log('App Launch')
        },
        onShow: function() {
            console.log('App Show')
        },
        onHide: function() {
            console.log('App Hide')
        }
    }
</script>
 
<style>
    /*每个页面公共css */
    body {
        background-color: #f1f1f1;
        font-size: 28upx;
        color: #333333;
        font-family: 'my-font',Helvetica Neue, Helvetica, sans-serif;
    }
 
    .search-bg {
        background-color: #FFF;
    }
 
    @font-face {
        font-family: my-font;
        src: url('./static/font/NotoSansCJK-Light-3.otf');
    }
    
    .status_bar {
        height: var(--status-bar-height);
        width: 100%;
        background-color: #FFF;
        z-index: 99999;
    }
    .city {
        display: flex;
        align-items: center;
    }
    .fxbtn {
        position: fixed;
        bottom: 50px;
        right: 10px;
        width: 40px;
        height: 40px;
        background-color: #46a7ff;
        color: #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        
    }
</style>