index.css 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. html {
  2. background-color: #FAFBFD;
  3. }
  4. .nav {
  5. text-rendering: optimizeLegibility;
  6. -webkit-font-smoothing: antialiased;
  7. top: 0;
  8. left: 0;
  9. user-select: none;
  10. width: 100%;
  11. min-width: 1000px;
  12. background-color: #333;
  13. z-index: 2;
  14. }
  15. .nav-item {
  16. color: #fff;
  17. text-decoration: none;
  18. font-size: 20px;
  19. }
  20. .logo {
  21. display: inline-block;
  22. vertical-align: middle;
  23. width: 40px;
  24. height: 40px;
  25. }
  26. .loco-name {
  27. vertical-align: middle;
  28. font-size: 24px;
  29. }
  30. .navconntent {
  31. width: 90%;
  32. margin: 0 auto;
  33. }
  34. .left-title {
  35. height: 100%;
  36. float: left;
  37. line-height: 80px;
  38. font-size: 20px;
  39. color: #fff;
  40. }
  41. .right-box {
  42. width: 400px;
  43. float: right;
  44. }
  45. .right-box .links{
  46. float: right;
  47. height: 100%;
  48. font-size: 20px;
  49. line-height: 80px;
  50. cursor: pointer;
  51. margin-left: 30px;
  52. color: #fff;
  53. }
  54. .right-box .links:active {
  55. color: #ccc;
  56. }
  57. .rep-info {
  58. background-color: #fff;
  59. border: 1px solid #E6E6E6;
  60. padding: 30px 20px;
  61. margin-bottom: 10px;
  62. }
  63. .reports-info .rep-title {
  64. height: 56px;
  65. line-height: 56px;
  66. font-size: 18px;
  67. }
  68. .table-title{
  69. margin-top: 40px;
  70. }
  71. .reports {
  72. padding-bottom: 50px;
  73. }
  74. .reports-info .bline {
  75. position: absolute;
  76. width: 1084px;
  77. left: 8px;
  78. top: 236px;
  79. border-top: 1px solid #ccc;
  80. }
  81. .itembox{
  82. float: left;
  83. width: 170px;
  84. min-height: 50px;
  85. }
  86. .itembox:nth-child(1) {
  87. border-right: 1px solid #e6e6e6;
  88. }
  89. .topname {
  90. vertical-align: middle;
  91. font-size: 14px;
  92. text-align: center;
  93. height: 20px;
  94. line-height: 20px;
  95. color: #999999;
  96. }
  97. .icon {
  98. margin-left: 3px;
  99. display: inline-block;
  100. width: 20px;
  101. height: 20px;
  102. vertical-align: middle;
  103. }
  104. .icon-zhengque{
  105. font-size: 20px;
  106. color: #31C15A;
  107. }
  108. .icon-cuowu{
  109. font-size: 20px;
  110. color: #FA4B4B;
  111. }
  112. .icon-warning{
  113. font-size: 20px;
  114. color: #FFBA1D;
  115. }
  116. .apges {
  117. width: 130px;
  118. }
  119. .apges .icon-zhengque,
  120. .apges .icon-cuowu,
  121. .apges .icon-warning {
  122. font-size: 22px;
  123. }
  124. .botval{
  125. margin-top: 10px;
  126. font-size: 22px;
  127. text-align: center;
  128. color: #333333;
  129. }
  130. .show-table {
  131. margin-top: 20px;
  132. border-bottom: none;
  133. border-right: none;
  134. }
  135. .table-data {
  136. width: 50%;
  137. height: 50px;
  138. float: left;
  139. }
  140. .table_left,
  141. .table_right{
  142. border-bottom: 1px solid #E6E6E6;
  143. border-right: 1px solid #E6E6E6;
  144. text-align: center;
  145. width: 50%;
  146. height: 50px;
  147. line-height: 50px;
  148. float: left;
  149. text-align: center;
  150. }
  151. .table-data .table_right {
  152. border-left: none;
  153. }
  154. .rep-list {
  155. border: 1px solid #E6E6E6;
  156. margin-top: 20px;
  157. padding-bottom: 20px;
  158. }
  159. .rep-list .list-title{
  160. height: 66px;
  161. line-height: 66px;
  162. padding-left: 30px;
  163. border-bottom: 1px solid #E6E6E6;
  164. }
  165. .tab-box {
  166. background-color: #fff;
  167. border: 1px solid #e6e6ee;
  168. padding: 0 20px;
  169. padding-bottom: 20px;
  170. }
  171. .tabs {
  172. height: 50px;
  173. border-bottom: 1px solid #e6e6e6;
  174. user-select: none;
  175. }
  176. .tab-item {
  177. float: left;
  178. list-style: none;
  179. height: 50px;
  180. width: 120px;
  181. line-height: 50px;
  182. font-size: 14px;
  183. color: #999999;
  184. text-align: center;
  185. cursor: pointer;
  186. position: relative;
  187. }
  188. .tab-item.actived {
  189. color: #333;
  190. border-bottom: 2px solid #4088F6;
  191. }
  192. .tab-item .num {
  193. position: absolute;
  194. top: 50%;
  195. right: 3px;
  196. transform: translateY(-50%);
  197. padding: 0 3px;
  198. height: 18px;
  199. min-width: 18px;
  200. font-size: 12px;
  201. text-align: center;
  202. line-height: 18px;
  203. color: #fff;
  204. border-radius: 12px;
  205. }
  206. .tab-item .num.warn {
  207. background-color: #FFB700;
  208. }
  209. .tab-item .num.err {
  210. background-color: #FF2A41;
  211. }
  212. .table-info {
  213. margin-top: 30px;
  214. display: none;
  215. overflow: auto;
  216. height: 550px;
  217. background-color: #fff;
  218. }
  219. .table-info.actived {
  220. display: block
  221. }
  222. .table {
  223. width: 100%;
  224. border: 1px solid #e6e6e6;
  225. border-top: none;
  226. background-color: #fff;
  227. }
  228. .table tr {
  229. text-align: center;
  230. height: 50px;
  231. line-height: 50px;
  232. border-top: 1px solid #e6e6e6;
  233. }
  234. .table .table-head {
  235. background-color: #FAFBFD;
  236. font-size: 14px;
  237. color: #999999;
  238. }
  239. .table .table-head th,
  240. .table .table-head td {
  241. font-weight: 400;
  242. }
  243. .table-head tr.pages th:nth-child(1),
  244. .file-path {
  245. padding-left: 25px;
  246. text-align: left;
  247. }
  248. .table-head tr th.result {
  249. width: 126px
  250. }
  251. .text-left {
  252. text-align: left;
  253. padding-left: 25px;
  254. }
  255. .text-right {
  256. padding-right: 35px;
  257. text-align: right;
  258. }
  259. .file-path {
  260. cursor: pointer;
  261. user-select: none;
  262. }
  263. .file-path:hover {
  264. color: blue;
  265. }
  266. .file-path:active {
  267. color: #ccc;
  268. }
  269. .show-instruct{
  270. cursor: pointer;
  271. user-select: none;
  272. }
  273. .show-instruct:hover {
  274. color: blue;
  275. }
  276. .show-instruct:active {
  277. color: #ccc;
  278. }
  279. .mask{
  280. position: fixed;
  281. top: 0;
  282. bottom: 0;
  283. left: 0;
  284. right: 0;
  285. background-color: rgba(0,0,0,0.6);
  286. z-index: 3;
  287. overflow: auto;
  288. }
  289. .mask.hide {
  290. display: none;
  291. }
  292. .mask .file-info{
  293. position: relative;
  294. width: 700px;
  295. margin: 0 auto;
  296. background-color: #fff;
  297. margin-top: 126px;
  298. margin-bottom: 50px;
  299. border: 1px solid #E6E6E6;
  300. box-shadow: 0 12px 14px 0 rgba(0,0,0,0.05);
  301. border-radius: 4px;
  302. }
  303. .mask .title{
  304. height: 40px;
  305. line-height: 40px;
  306. padding-left: 7px;
  307. border-bottom: 1px solid #ccc;
  308. }
  309. .mask .table-box {
  310. padding: 10px;
  311. }
  312. .mask .close{
  313. right: 0;
  314. top: 0;
  315. width: 30px;
  316. height: 30px;
  317. line-height: 30px;
  318. text-align: center;
  319. position: absolute;
  320. cursor: pointer;
  321. }
  322. .mask .close i {
  323. color: #999;
  324. font-size: 18px;
  325. }
  326. .mask .close i:active{
  327. color: #ccc;
  328. }
  329. .table-box table {
  330. width: 100%;
  331. }
  332. .table-box th,
  333. .table-box td {
  334. text-align: center;
  335. line-height: 36px;
  336. border: 1px solid #ccc;
  337. }
  338. .table-box .name {
  339. width: 25%;
  340. }
  341. .table-box .header {
  342. color: #999;
  343. font-weight: 400;
  344. }
  345. .table-box .opations {
  346. padding: 5px;
  347. width: 40%;
  348. }
  349. .result {
  350. user-select: none;
  351. }
  352. .opations .opation-item {
  353. line-height: 20px;
  354. }
  355. .table-box td.opations {
  356. vertical-align: middle;
  357. color: #E51C23;
  358. }
  359. .table-box .result {
  360. width: 35%;
  361. }
  362. .table-box td.result {
  363. color: #3F51B5;
  364. cursor: pointer;
  365. }
  366. .table-box td.result:active{
  367. color: #ccc;
  368. }
  369. .footer {
  370. background-color: #333;
  371. }
  372. .foot-cont {
  373. height: 60px;
  374. line-height: 60px;
  375. color: #fff;
  376. text-align: center;
  377. }
  378. .table-box th, .table-box td.unsupported {
  379. line-height: 1.3em;
  380. padding-bottom: 6px;
  381. }