admin_index.css 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. *{
  2. margin:0;
  3. padding:0;
  4. }
  5. ul,li{
  6. margin:0;
  7. padding:0;
  8. list-style:none;
  9. }
  10. body{
  11. background:#fafafa;
  12. }
  13. .clear{
  14. clear:both;
  15. }
  16. .clear:after {
  17. content: " ";
  18. display: table;
  19. clear: both
  20. }
  21. .content{
  22. padding:10px 20px;
  23. min-width:1380px;
  24. }
  25. .content_title{
  26. line-height:50px;
  27. color:#000000;
  28. font-size:18px;
  29. }
  30. .statistics{
  31. margin-bottom:10px;
  32. padding:10px;
  33. border-radius:10px;
  34. background:#fff;
  35. -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.05);
  36. -moz-box-shadow: 0 0 5px rgba(0,0,0,0.05);
  37. box-shadow: 0 0 5px rgba(0,0,0,0.05);
  38. }
  39. .statistics.w50{
  40. float:left;
  41. width:calc(50% - 5px);
  42. -moz-box-sizing: border-box; /*Firefox3.5+*/
  43. -webkit-box-sizing: border-box; /*Safari3.2+*/
  44. -o-box-sizing: border-box; /*Opera9.6*/
  45. -ms-box-sizing: border-box; /*IE8*/
  46. box-sizing: border-box;
  47. }
  48. .statistics.w33{
  49. float:left;
  50. width:calc(33.33% - 7px);
  51. -moz-box-sizing: border-box; /*Firefox3.5+*/
  52. -webkit-box-sizing: border-box; /*Safari3.2+*/
  53. -o-box-sizing: border-box; /*Opera9.6*/
  54. -ms-box-sizing: border-box; /*IE8*/
  55. box-sizing: border-box;
  56. }
  57. .statistics.mr10{
  58. margin-right:10px;
  59. }
  60. .statistics .title{
  61. padding-left:5px;
  62. line-height:30px;
  63. color:#000;
  64. font-size:16px;
  65. border-left:3px solid #00d0a9;
  66. }
  67. .statistics .bd{}
  68. .statistics .bd .bd_title{
  69. height:50px;
  70. line-height:50px;
  71. }
  72. /* 下拉选择 */
  73. .dropdown{
  74. float:left;
  75. margin-right:10px;
  76. width: 65px;
  77. height:50px;
  78. z-index:10;
  79. }
  80. .dropdown .dropdown_input{
  81. padding-right:16px;
  82. color:#323232;
  83. background:url("../images/dropdown.png") no-repeat right center;
  84. background-size:12px;
  85. cursor:pointer;
  86. }
  87. .dropdown .dropdown_list{
  88. display:none;
  89. background:#fff;
  90. }
  91. .dropdown .dropdown_list ul{}
  92. .dropdown .dropdown_list ul li{
  93. height:30px;
  94. line-height:30px;
  95. color:#323232;
  96. cursor:pointer;
  97. }
  98. /* 选择时间段 */
  99. .data_select{
  100. float:left;
  101. margin-right:10px;
  102. }
  103. .data_select input{
  104. padding:3px 6px;
  105. margin:8px 0;
  106. }
  107. /* 查询 */
  108. .search{
  109. float:left;
  110. margin-right:10px;
  111. padding-left:30px;
  112. color:#00d0a9;
  113. font-size:16px;
  114. background:url("../images/search.png") no-repeat left center;
  115. background-size:20px;
  116. cursor:pointer;
  117. }
  118. /* 导出 */
  119. .export{
  120. float:left;
  121. padding-left:30px;
  122. color:#00d0a9;
  123. font-size:16px;
  124. background:url("../images/export.png") no-repeat left center;
  125. background-size:20px;
  126. cursor:pointer;
  127. }
  128. /* 基本 */
  129. .basic_list{}
  130. .basic_list ul{}
  131. .basic_list ul li{
  132. position:relative;
  133. float:left;
  134. margin-right:1%;
  135. padding:10px;
  136. width:15%;
  137. line-height:30px;
  138. border-bottom:1px solid #fff;
  139. -moz-box-sizing: border-box; /*Firefox3.5+*/
  140. -webkit-box-sizing: border-box; /*Safari3.2+*/
  141. -o-box-sizing: border-box; /*Opera9.6*/
  142. -ms-box-sizing: border-box; /*IE8*/
  143. box-sizing: border-box;
  144. }
  145. .basic_list ul li .basic_list_t{
  146. color:#010101;
  147. font-size:14px;
  148. }
  149. .basic_list ul li .basic_list_n{
  150. color:#323232;
  151. font-size:20px;
  152. font-weight:bold;
  153. }
  154. .basic_list ul li:hover{
  155. background:#fafafa;
  156. }
  157. .basic_list ul li.on{
  158. border:1px solid #00d0a9;
  159. }
  160. .basic_list ul li.on:after{
  161. content: " ";
  162. display:block;
  163. position:absolute;
  164. bottom:-1px;
  165. right:-1px;
  166. width:20px;
  167. height:20px;
  168. background:url('../images/select.png') no-repeat right bottom;
  169. }
  170. /* 用户画像 */
  171. .users{}
  172. .users .users_tab{
  173. display:inline-block;
  174. margin-top:10px;
  175. width:350px;
  176. }
  177. .users .users_tab ul{}
  178. .users .users_tab ul li{
  179. position:relative;
  180. float:left;
  181. margin-right:10px;
  182. width:100px;
  183. line-height:30px;
  184. text-align:center;
  185. border:1px solid #eeeeee;
  186. -moz-box-sizing: border-box; /*Firefox3.5+*/
  187. -webkit-box-sizing: border-box; /*Safari3.2+*/
  188. -o-box-sizing: border-box; /*Opera9.6*/
  189. -ms-box-sizing: border-box; /*IE8*/
  190. box-sizing: border-box;
  191. }
  192. .users .users_tab ul li.on{
  193. border:1px solid #00d0a9;
  194. }
  195. .users .users_tab ul li.on:after{
  196. content: " ";
  197. display:block;
  198. position:absolute;
  199. bottom:-1px;
  200. right:-1px;
  201. width:20px;
  202. height:20px;
  203. background:url('../images/select.png') no-repeat right bottom;
  204. }
  205. .users .dropdown{
  206. float:right;
  207. }
  208. .users .data_select{
  209. float:right;
  210. }
  211. .users .search{
  212. float:right;
  213. }
  214. /* 榜单 */
  215. .list{
  216. padding-top: 30px;
  217. padding-bottom: 40px;
  218. }
  219. .list ul{
  220. }
  221. .list ul li{
  222. padding:10px 0 10px 90px;
  223. position:relative;
  224. border-bottom:1px solid #fafafa;
  225. }
  226. .list ul li .list_order{
  227. position:absolute;
  228. top:22px;
  229. left:5px;
  230. width:20px;
  231. }
  232. .list ul li .list_avatar{
  233. position:absolute;
  234. top:15px;
  235. left:40px;
  236. width:40px;
  237. height:40px;
  238. border-radius:20px;
  239. }
  240. .list ul li .list_info{
  241. line-height:25px;
  242. }
  243. .list ul li .list_info p{
  244. margin:0;
  245. color:#646464;
  246. }
  247. .list ul li .list_info p.list_name{
  248. color:#000;
  249. }
  250. .list ul li .list_info p span{
  251. margin:0 5px;
  252. color:#000;
  253. }
  254. /* 主播数据 */
  255. .anchor .export{
  256. float:right;
  257. }
  258. .data_list{
  259. padding: 0 15px 8px;
  260. }
  261. .data_list ul{}
  262. .data_list ul li{
  263. margin-bottom:4px;
  264. padding:0 15px;
  265. height:40px;
  266. line-height:40px;
  267. border-top:1px solid #fafafa;
  268. }
  269. .data_list ul li .data_list_left{
  270. display: inline-block;
  271. }
  272. .data_list ul li .data_list_right{
  273. float:right;
  274. color:#4695f7;
  275. }
  276. .data_list ul li.last{
  277. color:#fff;
  278. background:url('../images/li_bg.png') repeat-x;
  279. }
  280. .data_list ul li.last .data_list_right{
  281. color:#fff;
  282. }
  283. /* 财务 */
  284. .charge .charge_total{
  285. float:right;
  286. margin-top:5px;
  287. padding:0 15px;
  288. width:300px;
  289. height:40px;
  290. line-height:40px;
  291. color:#fff;
  292. background:url('../images/li_bg.png') repeat-x;
  293. }
  294. .charge .charge_total span{
  295. float:right;
  296. }
  297. /* 提现 */
  298. .cash_list{}
  299. .cash_list ul{}
  300. .cash_list ul li{
  301. float:left;
  302. margin-right:8px;
  303. width:calc(25% - 6px);
  304. height:120px;
  305. line-height:40px;
  306. text-align:center;
  307. color:#323232;
  308. font-size:14px;
  309. background:#fafafa;
  310. }
  311. .cash_list ul li.last{
  312. margin-right:0;
  313. background:url('../images/cash_bg.png') repeat-x;
  314. }
  315. .cash_list ul li .cash_list_t{}
  316. .cash_list ul li .cash_list_m{
  317. color:#000000;
  318. font-size:18px;
  319. }
  320. .cash_list ul li .cash_list_h{}
  321. .cash_list ul li .cash_list_h a{
  322. color:#00d0a9;
  323. }
  324. .cash_list ul li.last .cash_list_t{
  325. color:#fff;
  326. }
  327. .cash_list ul li.last .cash_list_m{
  328. color:#fff;
  329. }