report.css 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. }
  82. .flex-between{
  83. display: flex;
  84. display: -webkit-flex;
  85. justify-content: space-between;
  86. -webkit-justify-content: space-between;
  87. }
  88. /*点击切换标题显示*/
  89. /*选择菜单*/
  90. .visibility-hidden{
  91. visibility: hidden;
  92. }
  93. .title-menu{
  94. width: 100%;
  95. }
  96. .title-content{
  97. width: 70%;
  98. margin: 5% auto;
  99. display: flex;
  100. justify-content: space-between;
  101. flex-wrap: wrap;
  102. }
  103. .btn{
  104. width: 22%;
  105. font-size: 1rem;
  106. background: #f1f1f1;
  107. color: #939393;
  108. border-radius: 1rem;
  109. margin-bottom: 1rem;
  110. outline: none;
  111. border: 0;
  112. }
  113. .save-box{
  114. width: 60%;
  115. margin: 0 auto;
  116. display: flex;
  117. display: -webkit-flex;
  118. justify-content: space-between;
  119. -webkit-justify-content: space-between;
  120. }
  121. .save-box .btn{
  122. width: 30%;
  123. background: #157dfe;
  124. color: #fff;
  125. font-size: 0.8rem;
  126. padding: 0.6rem 0;
  127. }
  128. .save-box .cancel{
  129. background: #f1f1f1;
  130. color: #939393;
  131. }
  132. .title-content .checked{
  133. background: #157dfe;
  134. color: #fff;
  135. }
  136. .none{
  137. display: none;
  138. }
  139. .btn-font
  140. {
  141. font-size: 0.8rem;
  142. padding: 0.6rem ;
  143. }
  144. .btn-font-6
  145. {
  146. font-size: 0.8rem;
  147. padding: 0.6rem 0;
  148. }
  149. .btn-font-7
  150. {
  151. font-size: 0.7rem;
  152. padding: 0.7rem 0;
  153. }
  154. .btn-font-8
  155. {
  156. font-size: 0.6rem;
  157. padding: 0.8rem 0;
  158. }
  159. .btn-font-9
  160. {
  161. font-size: 0.6rem;
  162. padding: 0.8rem 0;
  163. }
  164. .btn-font-10
  165. {
  166. font-size: 0.5rem;
  167. padding: 0.9rem 0;
  168. }