report.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*一般公用样式*/
  2. /*让页面平滑滚动*/
  3. body{
  4. scroll-behavior:smooth;
  5. }
  6. #condition ul{
  7. list-style: none;
  8. margin: 0;
  9. padding: 0;
  10. }
  11. #condition li{
  12. text-align: center;
  13. color: #4b5162;
  14. padding: 1vh 0;
  15. }
  16. p {
  17. margin: 0;
  18. padding: 0;
  19. }
  20. /*筛选条件远离边界*/
  21. #condition{
  22. width: 96%;
  23. margin: 0 auto;
  24. }
  25. /*题头的字体颜色*/
  26. .heading{
  27. color: #4b5162;
  28. }
  29. /*表格公用样式*/
  30. table {
  31. /*设置相邻单元格的边框间的距离*/
  32. border-spacing: 0;
  33. /*表格设置合并边框模型*/
  34. border-collapse: collapse;
  35. /*margin: 0 auto;*/
  36. display: table;
  37. width: 100%;
  38. border: 1px solid #d9e1ec;
  39. box-sizing: border-box;
  40. table-layout: fixed;
  41. }
  42. tr, td{
  43. border: 1px solid #d9e1ec;
  44. text-align: center;
  45. }
  46. td {
  47. padding: 1vh 0;
  48. overflow: hidden;
  49. text-overflow: ellipsis;
  50. word-break: break-all;
  51. box-sizing: border-box;
  52. }
  53. ::-webkit-scrollbar {
  54. width: 0;
  55. }
  56. #content {
  57. display: block;
  58. overflow: scroll;
  59. table-layout: fixed;
  60. -webkit-overflow-scrolling: touch;
  61. }
  62. #content table, #content tr:first-child, #content tr:first-child td {
  63. border-top: 0;
  64. }
  65. /*优化表格样式*/
  66. #table td{
  67. color: #3d4f5e;
  68. background: linear-gradient(#f8fcff,#def2ff);
  69. border-color: #d9e1ec;
  70. }
  71. #content td{
  72. color: #4b5162;
  73. border-color: #d9e1ec;
  74. }
  75. #content tr:nth-child(odd){
  76. background: #fff;
  77. }
  78. #content tr:nth-child(even){
  79. background: #f7fbff;
  80. }
  81. /*跳转界面*/
  82. input[type=button], input[type=submit], input[type=file], button {
  83. cursor: pointer;
  84. -webkit-appearance: none;
  85. }
  86. .flex-between{
  87. display: flex;
  88. display: -webkit-flex;
  89. justify-content: space-between;
  90. -webkit-justify-content: space-between;
  91. }
  92. /*点击切换标题显示*/
  93. /*选择菜单*/
  94. .visibility-hidden{
  95. visibility: hidden;
  96. }
  97. .title-menu{
  98. width: 100%;
  99. }
  100. .title-content{
  101. width: 70%;
  102. margin: 5% auto;
  103. display: flex;
  104. justify-content: space-between;
  105. flex-wrap: wrap;
  106. }
  107. .btn{
  108. width: 22%;
  109. font-size: 1rem;
  110. background: #f1f1f1;
  111. color: #939393;
  112. border-radius: 1rem;
  113. margin-bottom: 1rem;
  114. outline: none;
  115. border: 0;
  116. }
  117. .save-box{
  118. width: 60%;
  119. margin: 0 auto;
  120. display: flex;
  121. display: -webkit-flex;
  122. justify-content: space-between;
  123. -webkit-justify-content: space-between;
  124. }
  125. .save-box .btn{
  126. width: 30%;
  127. background: #157dfe;
  128. color: #fff;
  129. font-size: 0.8rem;
  130. padding: 0.6rem 0;
  131. }
  132. .save-box .cancel{
  133. background: #f1f1f1;
  134. color: #939393;
  135. }
  136. .title-content .checked{
  137. background: #157dfe;
  138. color: #fff;
  139. }
  140. .none{
  141. display: none;
  142. }
  143. .btn-font
  144. {
  145. font-size: 0.8rem;
  146. padding: 0.6rem ;
  147. }
  148. .btn-font-6
  149. {
  150. font-size: 0.8rem;
  151. padding: 0.6rem 0;
  152. }
  153. .btn-font-7
  154. {
  155. font-size: 0.7rem;
  156. padding: 0.7rem 0;
  157. }
  158. .btn-font-8
  159. {
  160. font-size: 0.6rem;
  161. padding: 0.8rem 0;
  162. }
  163. .btn-font-9
  164. {
  165. font-size: 0.6rem;
  166. padding: 0.8rem 0;
  167. }
  168. .btn-font-10
  169. {
  170. font-size: 0.5rem;
  171. padding: 0.9rem 0;
  172. }