common.css
2.09 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
/**
* showcase通用样式
*/
* {
-webkit-user-select: none;
}
/*
* 需要定制位置
*/
.minirefresh-wrap {
top: 45px;
}
.data-list {
position: relative;
margin-top: 0;
margin-bottom: 0;
padding-left: 0;
list-style: none;
background-color: #fff;
}
.list-item {
position: relative;
overflow: hidden;
padding: 11px 15px;
-webkit-touch-callout: none;
}
.list-item:after {
position: absolute;
right: 0;
bottom: 0;
left: 15px;
height: 1px;
content: '';
-webkit-transform: scaleY(.5);
transform: scaleY(.5);
background-color: #c8c7cc;
}
.list-item:active {
background: #F5F5F5;
}
.msg-title {
display: block;
font-size: 15px;
margin: 5px;
}
.msg-fs14 {
font-size: 14px;
color: #999;
}
.msg-date {
float: right;
margin: 5px;
}
.list-item a,
.navbar-header a {
text-decoration: none;
color: #18B4FE;
}
.nav-tips {
font-size: 14px;
padding: 12px;
border-bottom: 1px solid #c8c7cc;
color: red;
}
.navbar-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 44px;
line-height: 44px;
text-align: center;
border-bottom: 1px solid #c8c7cc;
background-color: #FFFFFF;
z-index: 999;
}
.nav-control {
position: fixed;
top: 45px;
left: 0;
width: 100%;
height: 44px;
line-height: 17px;
border-bottom: 1px solid #ddd;
text-align: center;
/**
* 防止点击时闪动
*/
-webkit-tap-highlight-color: transparent;
}
.nav-control .active {
border-bottom: 1px solid #FF6990;
color: #FF6990;
}
.nav-control p {
display: inline-block;
width: 32%;
padding: 5px 0;
}
.nav-btn-left {
position: absolute;
top: 0;
left: 0;
padding: 12px;
line-height: 22px;
}
.content {
/* padding-top: 45px;*/
}
.notice {
padding: 5px;
text-align: center;
}
.btn-switch {
display: inline-block;
margin-top: 14px;
font-size: 14px;
padding: 3px 15px;
text-align: center;
border: 1px solid #FF6990;
border-radius: 20px;
color: #FF6990;
}