report.css 3.0 KB

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