report.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*一般公用样式*/
  2. #condition ul{
  3. list-style: none;
  4. margin: 0;
  5. padding: 0;
  6. }
  7. #condition li{
  8. text-align: center;
  9. color: #4b5162;
  10. padding: 1vh 0;
  11. }
  12. p {
  13. margin: 0;
  14. padding: 0;
  15. }
  16. /*筛选条件远离边界*/
  17. #condition{
  18. width: 96%;
  19. margin: 0 auto;
  20. }
  21. /*题头的字体颜色*/
  22. .heading{
  23. color: #4b5162;
  24. }
  25. /*表格公用样式*/
  26. table {
  27. /*设置相邻单元格的边框间的距离*/
  28. border-spacing: 0;
  29. /*表格设置合并边框模型*/
  30. border-collapse: collapse;
  31. /*margin: 0 auto;*/
  32. display: table;
  33. width: 100%;
  34. border: 1px solid #d9e1ec;
  35. box-sizing: border-box;
  36. table-layout: fixed;
  37. }
  38. tr, td{
  39. border: 1px solid #d9e1ec;
  40. text-align: center;
  41. }
  42. td {
  43. padding: 1vh 0;
  44. overflow: hidden;
  45. text-overflow: ellipsis;
  46. word-break: break-all;
  47. box-sizing: border-box;
  48. }
  49. ::-webkit-scrollbar {
  50. width: 0;
  51. }
  52. #content {
  53. display: block;
  54. overflow: scroll;
  55. table-layout: fixed;
  56. -webkit-overflow-scrolling: touch;
  57. }
  58. #content table, #content tr:first-child, #content tr:first-child td {
  59. border-top: 0;
  60. }
  61. /*优化表格样式*/
  62. #table td{
  63. color: #3d4f5e;
  64. background: linear-gradient(#f8fcff,#def2ff);
  65. border-color: #d9e1ec;
  66. }
  67. #content td{
  68. color: #4b5162;
  69. border-color: #d9e1ec;
  70. }
  71. #content tr:nth-child(odd){
  72. background: #fff;
  73. }
  74. #content tr:nth-child(even){
  75. background: #f7fbff;
  76. }
  77. /*跳转界面*/
  78. input[type=button], input[type=submit], input[type=file], button {
  79. cursor: pointer;
  80. -webkit-appearance: none;
  81. }