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
| //页面撑开头部样式
| .content {
| padding-top: var(--status-bar-height);
| }
| .tb_solt {
| display: inline-block;
| font-weight: normal;
| height: 88rpx;
| line-height: 88rpx;
| box-sizing: border-box;
| padding-left: 30rpx;
| }
|
| .main {
| padding-top: 104rpx;
| padding-bottom: $uni-spacing-col-base;
| //border: 1px solid red;
| }
| .top-bar{
| position: fixed;
| z-index: 1001;
| top: 0;
| left: 0;
| width: 100%;
| height: 88rpx;
| background: rgba(255, 255, 255, 1);
| }
| .tb_solt {
| height: 88rpx;
| line-height: 88rpx;
| padding-left: 26rpx;
| }
| //底部样式
| .bottom-bar {
| position: fixed;
| bottom: 0;
| width: 100%;
| height: 90rpx;
| padding-top: 10rpx;
| padding-bottom: var(--status-bar-height);
| //background-color: rgba(255,255,255,0.96);
| }
|
| //btn1样式
| .btn1 {
| text-align: center;
| line-height: 80rpx;
| font-size: $uni-font-size-lg;
| color: $uni-text-color;
| height: 80rpx;
| border-radius: $uni-border-radius-sm;
| }
| .comtarbar{
| position: fixed;
| top: var(--status-bar-height);
| right: 0;
| left: 0;
| height: 88rpx;
| z-index: 1001;
| .title {
| line-height: 88rpx;
| padding: 0rpx 20rpx;
| view{
| display: inline-block;
| }
| }
| .info {
| width: 60rpx;
| height: 88rpx;
| display: flex;
| justify-content: center;
| align-items: center;
| image {
| width: 100%;
| height: auto;
| }
| }
| }
|
|