list-view.css
2.9 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
.m-list-view {
margin-bottom: 10px;
}
.m-list-view .cell {
font-size: 14px;
padding: 0 0 0 15px;
background-color: #FFF;
overflow: hidden;
position: relative;
text-align: left;
}
.m-list-view .cell-header {
background-color: #f8f8f8;
padding: 0 10px;
}
.m-list-view .cell-header .title {
font-size: 13px;
color: #333;
line-height: 35px;
width: auto;
}
.m-list-view .cell-header .text {
font-size: 13px;
line-height: 35px;
float: right;
color: #9e9e9e;
text-align: right;
margin: 0;
}
.m-list-view .cell-basic {
padding: 11px 10px;
}
.m-list-view .cell-basic .title,
.m-list-view .cell-basic .text {
float: none;
display: inline-block;
vertical-align: middle;
margin: 0 10px 0 0;
line-height: 1.5;
}
.m-list-view .cell-basic .sub-title {
padding-top: 10px;
font-size: 13px;
color: #999;
}
.m-list-view .cell-radio {
text-align: right;
padding: 0 10px;
margin-bottom: 10px;
background-color: #eee;
}
.m-list-view .cell-radio .title {
color: #333;
width: auto;
text-align: left;
}
.m-list-view .cell-radio .text {
float: none;
text-align: right;
}
.m-list-view .cell-radio .m-radio {
margin-left: 8px;
}
.m-list-view .cell-radio .m-table-view {
margin: 0 -10px;
}
.m-list-view .cell-radio .m-table-view .cell-radio {
margin: 0;
background-color: #FFF;
}
.m-list-view .cell-block {
padding: 8px 10px;
}
.m-list-view .cell-block h3 {
font-size: 16px;
font-weight: normal;
padding-right: 60px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.m-list-view .cell-block p {
font-size: 14px;
color: #666;
}
.m-list-view .cell-block .bottom {
margin-top: 10px;
padding-top: 8px;
line-height: 30px;
}
.m-list-view .cell-extend .m-table-view {
margin: 0 0 0 45px;
}
.m-list-view .cell-extend .m-table-view .cell {
padding: 0;
}
.m-list-view .cell-extend .m-table-view .text {
margin-left: 0;
}
.m-list-view .cell-pic {
padding: 15px;
}
.m-list-view .cell-pic .pic {
float: left;
}
.m-list-view .cell-pic .cont {
margin-left: 90px;
}
.m-list-view .cell-pic h3 {
font-size: 14px;
font-weight: normal;
}
.m-list-view .cell-pic em {
font-size: 16px;
font-weight: normal;
}
.m-list-view .cell-pic p {
color: #9b9b9b;
font-size: 12px;
}
.m-list-view .acc-icon {
position: relative;
padding-right: 30px;
}
.m-list-view .acc-icon .acc {
position: absolute;
right: 0;
top: 0;
min-width: 30px;
height: 100%;
line-height: 44px;
text-align: left;
color: #999;
text-align: right;
}
.m-list-view .acc-icon .acc .m-icon {
margin-right: 4px;
}
.m-list-view .title {
font-size: 15px;
color: #999;
float: left;
font-weight: 400;
line-height: 44px;
}
.m-list-view .text {
display: block;
font-size: 15px;
color: #333;
line-height: 44px;
position: relative;
white-space: nowrap;
word-break: break-all;
text-overflow: ellipsis;
overflow: hidden;
}
.m-list-view .text .m-input {
font-size: 15px;
}