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
| @charset "UTF-8";
| /* 页面左右间距 */
| /* 文字尺寸 */
| /*文字颜色*/
| /* 边框颜色 */
| /* 图片加载中颜色 */
| /* 行为相关颜色 */
| page,
| .content {
| height: 100%;
| background-color: #f8f8f8;
| }
| .content {
| display: flex;
| }
| .left-aside {
| flex-shrink: 0;
| width: 200rpx;
| height: 100%;
| background-color: #fff;
| }
| .f-item {
| display: flex;
| align-items: center;
| justify-content: center;
| width: 100%;
| height: 100rpx;
| font-size: 28rpx;
| color: #606266;
| position: relative;
| }
| .f-item.active {
| color: #fa436a;
| background: #f8f8f8;
| }
| .f-item.active:before {
| content: '';
| position: absolute;
| left: 0;
| top: 50%;
| -webkit-transform: translateY(-50%);
| transform: translateY(-50%);
| height: 36rpx;
| width: 8rpx;
| background-color: #fa436a;
| border-radius: 0 4px 4px 0;
| opacity: .8;
| }
| .right-aside {
| flex: 1;
| overflow: hidden;
| padding-left: 20rpx;
| }
| .s-list {
| display: flex;
| flex-wrap: wrap;
| width: 100%;
| background: #fff;
| padding-top: 12rpx;
| margin-top: 10rpx;
| }
| .s-list:after {
| content: '';
| flex: 99;
| height: 0;
| }
| .s-item {
| flex-shrink: 0;
| display: flex;
| justify-content: center;
| align-items: center;
| flex-direction: column;
| width: 176rpx;
| font-size: 26rpx;
| color: #666;
| padding-bottom: 20rpx;
| }
| .s-item image {
| width: 140rpx;
| height: 140rpx;
| }
|
|