1
huanghongfeng
5 天以前 b1c2dd1869a51b8f0e4acb9ddeb148f796db147f
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
84
85
86
/* #ifndef APP-NVUE */
view,
text {
    box-sizing: border-box;
}
/* #endif */
 
/* start--演示页面使用的统一样式--start */
.u-demo {
    padding: 50rpx 40rpx;
}
 
.u-demo-wrap {
    border-width: 1px;
    border-color: #ddd;
    border-style: dashed;
    background-color: rgb(250, 250, 250);
    padding: 40rpx 20rpx;
    border-radius: 6px;
}
 
.u-demo-area {
    text-align: center;
}
 
.u-no-demo-here {
    color: $u-tips-color;
    font-size: 26rpx;
}
 
.u-demo-result-line {
    border-width: 1px;
    border-color: #ddd;
    border-style: dashed;
    padding: 10rpx 40rpx;
    margin-top: 30rpx;
    border-radius: 5px;
    background-color: rgb(240, 240, 240);
    color: $u-content-color;
    font-size: 32rpx;
    /* #ifndef APP-NVUE */
    word-break: break-word;
    display: inline-block;
    /* #endif */
    text-align: left;
    
}
 
.u-demo-title,
.u-config-title {
    text-align: center;
    font-size: 32rpx;
    font-weight: bold;
    margin-bottom: 40rpx;
}
 
.u-config-item {
    margin-top: 50rpx;
}
 
.u-config-title {
    margin-top: 40rpx;
    padding-bottom: 10rpx;
}
 
.u-item-title {
    position: relative;
    font-size: 28rpx;
    padding-left: 8px;
    line-height: 1;
    margin-bottom: 22rpx;
}
 
.u-item-title:after {
    position: absolute;
    width: 4px;
    top: -1px;
    height: 16px;
    /* #ifndef APP-NVUE */
    content: '';
    /* #endif */
    left: 0;
    border-radius: 10px;
    background-color: $u-content-color;
}
/* end--演示页面使用的统一样式--end */