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
| @charset "UTF-8";
| /* 页面左右间距 */
| /* 文字尺寸 */
| /*文字颜色*/
| /* 边框颜色 */
| /* 图片加载中颜色 */
| /* 行为相关颜色 */
| page {
| background: #f8f8f8;
| }
| page {
| background: #f8f8f8;
| }
| .list-cell {
| display: flex;
| align-items: baseline;
| padding: 20rpx 30rpx;
| line-height: 60rpx;
| position: relative;
| background: #fff;
| justify-content: center;
| }
| .list-cell.log-out-btn {
| margin-top: 40rpx;
| }
| .list-cell.log-out-btn .cell-tit {
| color: #fa436a;
| text-align: center;
| margin-right: 0;
| }
| .list-cell.cell-hover {
| background: #fafafa;
| }
| .list-cell.b-b:after {
| left: 30rpx;
| }
| .list-cell.m-t {
| margin-top: 16rpx;
| }
| .list-cell .cell-more {
| align-self: baseline;
| font-size: 32rpx;
| color: #909399;
| margin-left: 10rpx;
| }
| .list-cell .cell-tit {
| flex: 1;
| font-size: 30rpx;
| color: #303133;
| margin-right: 10rpx;
| }
| .list-cell .cell-tip {
| font-size: 28rpx;
| color: #909399;
| }
| .list-cell switch {
| -webkit-transform: translateX(16rpx) scale(0.84);
| transform: translateX(16rpx) scale(0.84);
| }
|
|