Няма описание

projectCheck.css 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. body {
  2. background: #fff!important;
  3. }
  4. ul,
  5. li {
  6. padding: 0;
  7. margin: 0;
  8. list-style: none;
  9. }
  10. .fixed-table-body {
  11. overflow-x: initial;
  12. overflow-y: initial;
  13. height: 100%;
  14. }
  15. .timeBox {
  16. margin: 13px 0 0 0;
  17. }
  18. .timeBox ul {
  19. margin-right: 20px;
  20. }
  21. .timeBox ul li {
  22. float: left;
  23. font-size: 12px;
  24. padding: 8px;
  25. border-top: 1px solid #ebeeef;
  26. border-bottom: 1px solid #ebeeef;
  27. border-right: 1px solid #ebeeef;
  28. cursor: pointer;
  29. }
  30. .timeBox ul li:first-child {
  31. border-left: 1px solid #ebeeef;
  32. }
  33. .timeBox ul li.actives {
  34. background: #00ceff;
  35. color: #fff;
  36. border-color: #00ceff;
  37. }
  38. .timeBox>div {
  39. float: right;
  40. }
  41. .timeBox>div input {
  42. border: 1px solid #d9e0e1;
  43. border-radius: 3px;
  44. padding-left: 8px;
  45. outline: none;
  46. }
  47. .tab_title {
  48. border-bottom: 1px solid #f2f5f4;
  49. }
  50. .tab_title li {
  51. float: left;
  52. font-size: 14px;
  53. padding: 8px 10px;
  54. color: #323333;
  55. }
  56. .tab_title li.actives {
  57. border-bottom: 2px solid #00ceff;
  58. }
  59. .statistics .content ul li {
  60. float: left;
  61. width: 15.6%;
  62. margin-left: 1%;
  63. border: 1px solid #ccd0d9;
  64. text-align: center;
  65. padding: 20px 0;
  66. position: relative;
  67. cursor: pointer;
  68. }
  69. .order_count {
  70. font-size: 24px;
  71. }
  72. .order_type {
  73. font-size: 12px;
  74. color: #333333;
  75. }
  76. .statistics .content {
  77. margin: 20px 0;
  78. }
  79. .statistics .content ul li:before {
  80. content: "";
  81. display: block;
  82. position: absolute;
  83. width: 0;
  84. height: 0;
  85. border-top: 7px solid transparent;
  86. border-left: 7px solid transparent;
  87. border-bottom: 7px solid #ccd0d9;
  88. border-right: 7px solid #ccd0d9;
  89. right: 1px;
  90. bottom: 1px
  91. }
  92. .statistics .content ul li.actives:before {
  93. border-bottom: 7px solid #00ceff;
  94. border-right: 7px solid #00ceff;
  95. }
  96. .statistics .content ul li.actives {
  97. border-color: #00ceff;
  98. }
  99. .yellow {
  100. color: #f5a623;
  101. }
  102. .green {
  103. color: #21d376;
  104. }
  105. .red {
  106. color: #fd8c90;
  107. }
  108. .blue {
  109. color: #00ceff;
  110. }
  111. .pink {
  112. color: #fd64b3;
  113. }
  114. .part_two.tab_title li.actives {
  115. border-bottom: 2px solid #00ceff;
  116. color: #00ceff;
  117. }
  118. .states {
  119. padding: 3px 5px;
  120. text-align: center;
  121. display: inline-block;
  122. color: #fff;
  123. border-radius: 3px;
  124. }
  125. .states.going {
  126. /*处理中*/
  127. background: #f5a623;
  128. }
  129. .states.solving {
  130. /*待解决*/
  131. background: #fd8c90;
  132. }
  133. .states.solved {
  134. /*已解决*/
  135. background: #21d376;
  136. }
  137. .case {
  138. display: inline-block;
  139. border: 1px solid #c8d6d9;
  140. /*padding: 2px;*/
  141. font-size: 12px;
  142. height: 16px;
  143. width: 16px;
  144. text-align: center;
  145. line-height: 15px;
  146. background: #c8d6d9;
  147. color: #fff;
  148. }
  149. .case.pressing {
  150. background: #fd8c90;
  151. border-color: #fd8c90;
  152. }
  153. .cont {
  154. position: relative;
  155. cursor: pointer;
  156. }
  157. .cont_cont>div {
  158. border-bottom: 1px solid #f2f5f4;
  159. text-align: left;
  160. padding: 10px 0;
  161. }
  162. .cont_detail {
  163. border: 1px solid #c8d6d9;
  164. border-radius: 5px;
  165. position: absolute;
  166. z-index: 9999;
  167. top: 23px;
  168. width: 100%;
  169. display: none;
  170. }
  171. .cont_detail:before {
  172. display: block;
  173. content: "";
  174. height: 13px;
  175. width: 13px;
  176. border: 1px solid #c8d6d9;
  177. border-bottom: 0;
  178. border-right: 0;
  179. background: #ebebeb;
  180. position: absolute;
  181. left: 50%;
  182. top: -7px;
  183. transform: rotate(46deg);
  184. -ms-transform: rotate(46deg);
  185. /* IE 9 */
  186. -moz-transform: rotate(46deg);
  187. /* Firefox */
  188. -webkit-transform: rotate(46deg);
  189. /* Safari 和 Chrome */
  190. -o-transform: rotate(46deg);
  191. /* Opera */
  192. }
  193. .title {
  194. border-top-right-radius: 5px;
  195. border-top-left-radius: 5px;
  196. }
  197. .title>div:first-child {
  198. float: left;
  199. }
  200. .title>div:last-child {
  201. float: right;
  202. }
  203. .title {
  204. padding: 10px;
  205. }
  206. .cont_cont {
  207. background: #fff;
  208. border-radius: 5px;
  209. padding: 0 10px;
  210. }
  211. .title {
  212. background: #ebebeb;
  213. }
  214. .img_box {
  215. width: 105px;
  216. height: 66px;
  217. float: left;
  218. }
  219. .img_box img {
  220. width: 100%;
  221. height: 100%;
  222. }
  223. .cont_cont_head>div:last-child {
  224. float: left;
  225. padding-left: 15px;
  226. text-align: left;
  227. color: #333;
  228. font-size: 14px;
  229. }
  230. .cont_cont_head>div:last-child p:last-child {
  231. font-size: 12px;
  232. }
  233. .show{
  234. display: block;
  235. }
  236. .tabCon2,.tabCon3,.tabCon4{
  237. display: none;
  238. }