gaoluyang
3 天以前 5f5486731922637d9522b41dc54d932fdd29ebc4
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
.u-block{
    padding: 14px;
    &__section{
        margin-bottom:10px;
    }
    &__title {
        margin-top:10px;
        font-size: 15px;
        color: $u-content-color;
        margin-bottom:10px;
    }
    &__flex{
        /* #ifndef APP-NVUE */
        display: flex;
        /* #endif */
    }
}
 
// 使用了cell组件的icon图片样式
.u-cell-icon {
    width: 36rpx;
    height: 36rpx;
    margin-right: 8rpx;
}
 
.u-page {
    padding: 15px 15px 40px 15px;
}
 
.u-demo-block {
    flex: 1;
    margin-bottom: 23px;
    
    &__content {
        @include flex(column);
    }
    
    &__title {
        font-size: 14px;
        color: rgb(143, 156, 162);
        margin-bottom: 8px;
        @include flex;
    }
}