Nenhuma Descrição

index.css 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. body {
  2. font-size: 14px;
  3. background: url(../../img/background.png) no-repeat top center;
  4. background-position: 0 -60px;
  5. background-size: 100%;
  6. }
  7. p{margin: 0;}
  8. /*导航*/
  9. .mui-nav{
  10. position: fixed;
  11. width: 100%;
  12. top: 0px;
  13. height: 44px;
  14. line-height: 44px;
  15. text-align: center;
  16. background: #22c9a8;
  17. z-index: 333;
  18. color: #FFFFFF;
  19. font-size: 17px;}
  20. .mui-nav a{
  21. position: absolute;
  22. left: 15px;
  23. line-height: 44px;
  24. color: #FFFFFF;
  25. }
  26. .mui-nav span{
  27. position: absolute;
  28. right: 15px;
  29. line-height: 44px;
  30. font-size: 13px;
  31. }
  32. /*导航样式*/
  33. .mui-tabs{
  34. bottom: 0;
  35. display: table;
  36. width: 100%;
  37. height: 50px;
  38. padding: 0;
  39. table-layout: fixed;
  40. border-top: 0;
  41. border-bottom: 0;
  42. position: fixed;
  43. z-index: 10;
  44. right: 0;
  45. left: 0;
  46. height: 44px;
  47. padding-right: 10px;
  48. padding-left: 10px;
  49. border-bottom: 0;
  50. background-color: #f7f7f7;
  51. -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .85);
  52. box-shadow: 0 0 1px rgba(0, 0, 0, .85);
  53. -webkit-backface-visibility: hidden;
  54. backface-visibility: hidden;}
  55. .mui-tabs-item{
  56. display: table-cell;
  57. overflow: hidden;
  58. width: 1%;
  59. height: 50px;
  60. text-align: center;
  61. vertical-align: middle;
  62. white-space: nowrap;
  63. text-overflow: ellipsis;
  64. color: #929292;
  65. }
  66. .mui-icon {
  67. top: 3px;
  68. width: 24px;
  69. height: 24px;
  70. padding-top: 0;
  71. padding-bottom: 0;
  72. font-size: 24px;
  73. position: relative;
  74. z-index: 20;
  75. }
  76. .mui-tab-label {
  77. font-size: 11px;
  78. display: block;
  79. overflow: hidden;
  80. text-overflow: ellipsis;
  81. }
  82. .mui-active{
  83. color: #2cc6a7;
  84. }
  85. /*首页样式*/
  86. .mui-grid-view.mui-grid-9{
  87. background: #FFFFFF;
  88. }
  89. .mui-bar-nav {
  90. background-color: #393a3f;
  91. }
  92. .mui-title{color: #FFFFFF;}
  93. .mui-content{
  94. background: none;
  95. }
  96. .mui-table-view-cell{
  97. padding:0px 15px !important;
  98. }
  99. .mui-media-body{
  100. font-size: 12px !important;
  101. }
  102. .mui-media{
  103. position: relative;
  104. }
  105. .Icon{
  106. width: 22px;
  107. height: 22px;
  108. margin: 0 auto;}
  109. .Icon .mui-icon-img-1c{
  110. display: none;
  111. }
  112. .Icon .mui-icon-img-1h{
  113. display: block;
  114. }
  115. .Icon img{ width: 100%;}
  116. .mui-icon img{
  117. width: 100%;
  118. }
  119. .itemdiv{ display: none;}
  120. .sanjiao_down{
  121. bottom: 0px;
  122. left: 50%;
  123. margin-left: -7px;
  124. position: absolute;
  125. width:0;
  126. height:0;
  127. overflow:hidden;
  128. font-size: 0; /*是因为, 虽然宽高度为0, 但在IE6下会具有默认的 */
  129. line-height: 0; /* 字体大小和行高, 导致盒子呈现被撑开的长矩形 */
  130. border-width:7px;
  131. border-style:solid dashed dashed dashed;/*IE6下, 设置余下三条边的border-style为dashed,即可达到透明的效果*/
  132. border-color:transparent transparent #22c9a8 transparent;
  133. display: none;
  134. }
  135. .mess_num{
  136. position: absolute;
  137. width: 16px;
  138. height: 16px;
  139. font-size: 12px;
  140. line-height: 16px;
  141. text-align: center;
  142. color: #FFFFFF;
  143. background: #e03333;
  144. top: 5px;
  145. right: 27px;
  146. z-index: 2;
  147. -moz-border-radius: 8px; /* Firefox */
  148. -webkit-border-radius: 8px; /* Safari 和 Chrome */
  149. border-radius: 8px; /* Opera 10.5+, 以及使用了IE-CSS3的IE浏览器 */
  150. }
  151. .details_line{
  152. overflow: hidden;
  153. text-overflow: ellipsis;
  154. display: -webkit-box;
  155. -webkit-line-clamp: 2;
  156. -webkit-box-orient: vertical;
  157. }
  158. .cardfixe{
  159. position: fixed;
  160. margin: 0;
  161. left: 2%;
  162. top: 10px;
  163. width: 96%;
  164. z-index: 333;
  165. }
  166. #pullrefresh{
  167. margin-top: 100px;
  168. }
  169. .mui-card-header {
  170. position: relative;
  171. display: block;
  172. font-size: 12px;
  173. line-height: 25px;
  174. min-height: 25px;
  175. padding: 0px;
  176. -webkit-box-pack: justify;
  177. -webkit-justify-content: space-between;
  178. justify-content: space-between;
  179. -webkit-box-align: center;
  180. -webkit-align-items: center;
  181. align-items: center;
  182. color: #f0f0f0;
  183. overflow: hidden;
  184. }
  185. .mui-card-footer{
  186. display: block;
  187. }
  188. .fl{
  189. float: left;
  190. }
  191. .fr{float: right;}
  192. .mui-card-header span{
  193. padding: 0 11px;
  194. color: #22c9a8;
  195. }
  196. .mui-card-header .fr span {
  197. color: #999999 !important;
  198. }
  199. .mui-card-content-inner-span{
  200. position: relative;
  201. display: -webkit-box;
  202. display: -webkit-flex;
  203. display: flex;
  204. -webkit-box-pack: justify;
  205. -webkit-justify-content: space-between;
  206. justify-content: space-between;
  207. -webkit-box-align: center;
  208. -webkit-align-items: center;
  209. align-items: center;
  210. }
  211. .mui-card-content-inner-span span{
  212. color: #666666;
  213. font-size:13px;
  214. }
  215. .font-color1{
  216. color: #e03636 !important;
  217. }
  218. .mui-card-content{
  219. font-size: 16px;
  220. }
  221. .mui-card-content p{
  222. font-size: 16px;
  223. }
  224. .font-color2{
  225. color: #303030 !important;
  226. }
  227. .font-color3{
  228. color: #666666 !important;
  229. font-size:13px;
  230. }
  231. .font-color4{
  232. color:#22c9a8 ;
  233. }
  234. .margin{
  235. margin: 12px 0px;
  236. }
  237. .mui-card-content-inner{
  238. padding: 10px 10px 5px 10px;
  239. }
  240. .mui-card-footer{
  241. padding: 6px 12px;
  242. min-height:0px;
  243. overflow: hidden;
  244. }
  245. .mui-card-footer-fl{
  246. float: left;
  247. font-size: 12px;
  248. }
  249. .mui-card-detail{
  250. display: block;
  251. }
  252. .mui-card-footer-fl span{
  253. margin-left: 10px;
  254. }
  255. .mui-card-footer-flimg{
  256. width: 22px;
  257. height: 22px;
  258. -moz-border-radius: 11px; /* Firefox */
  259. -webkit-border-radius: 11px; /* Safari 和 Chrome */
  260. border-radius: 11px; /* Opera 10.5+, 以及使用了IE-CSS3的IE浏览器 */
  261. }
  262. .mui-card-footer-flimg img{
  263. width: 22px;
  264. height: 22px;
  265. -moz-border-radius: 11px; /* Firefox */
  266. -webkit-border-radius: 11px; /* Safari 和 Chrome */
  267. border-radius: 11px; /* Opera 10.5+, 以及使用了IE-CSS3的IE浏览器 */
  268. }
  269. .mui-card-footer-fr{
  270. float: right;
  271. }
  272. .mui-card-footer-fr button{
  273. font-size: 12px;
  274. padding: 3px 24px;
  275. margin-top: 0px;
  276. background: #22c9a8;
  277. }
  278. .mui-card-header .fl button{
  279. padding: 0px 5px;
  280. margin: 3px 0px 3px 11px;
  281. font-size: 12px;
  282. background: #47a6e8;
  283. }
  284. .add_icon{
  285. position: fixed;
  286. bottom: 80px;
  287. left: 20px;
  288. width: 30px;
  289. z-index: 3333;
  290. display: none;
  291. }
  292. .add_icon img{
  293. width: 100%;
  294. }