report.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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. .none {
  82. display: none;
  83. }
  84. .visibility-hidden {
  85. visibility: hidden;
  86. }
  87. /*跳转界面*/
  88. input[type=button], input[type=submit], input[type=file], button {
  89. cursor: pointer;
  90. -webkit-appearance: none;
  91. }
  92. .flex-between {
  93. display: flex;
  94. display: -webkit-flex;
  95. justify-content: space-between;
  96. -webkit-justify-content: space-between;
  97. }
  98. /*点击切换标题显示*/
  99. /*选择菜单*/
  100. .title-menu {
  101. width: 100%;
  102. }
  103. .title-content {
  104. width: 70%;
  105. margin: 5% auto;
  106. display: flex;
  107. justify-content: space-between;
  108. flex-wrap: wrap;
  109. }
  110. .btn {
  111. width: 22%;
  112. font-size: 1rem;
  113. background: #f1f1f1;
  114. color: #939393;
  115. border-radius: 1rem;
  116. margin-bottom: 1rem;
  117. outline: none;
  118. border: 0;
  119. }
  120. .save-box {
  121. width: 60%;
  122. margin: 0 auto;
  123. display: flex;
  124. display: -webkit-flex;
  125. justify-content: space-between;
  126. -webkit-justify-content: space-between;
  127. }
  128. .save-box .btn {
  129. width: 30%;
  130. background: #157dfe;
  131. color: #fff;
  132. font-size: 0.8rem;
  133. padding: 0.6rem 0;
  134. }
  135. .save-box .cancel {
  136. background: #f1f1f1;
  137. color: #939393;
  138. }
  139. .title-content .checked {
  140. background: #157dfe;
  141. color: #fff;
  142. }
  143. .btn-font {
  144. font-size: 0.8rem;
  145. padding: 0.6rem;
  146. }
  147. .btn-font-6 {
  148. font-size: 0.8rem;
  149. padding: 0.6rem 0;
  150. }
  151. .btn-font-7 {
  152. font-size: 0.7rem;
  153. padding: 0.7rem 0;
  154. }
  155. .btn-font-8 {
  156. font-size: 0.6rem;
  157. padding: 0.8rem 0;
  158. }
  159. .btn-font-9 {
  160. font-size: 0.6rem;
  161. padding: 0.8rem 0;
  162. }
  163. .btn-font-10 {
  164. font-size: 0.5rem;
  165. padding: 0.9rem 0;
  166. }
  167. /*选择序号进行跳转*/
  168. .table-serial-btn {
  169. width: 45px;;
  170. height: 45px;
  171. border-radius: 45px;
  172. font-size: 1rem;
  173. background: #8DB5F5;
  174. color: #fff;
  175. opacity: 0.7;
  176. outline: none;
  177. border: 0;
  178. }
  179. .serial-menu {
  180. width: 100%;
  181. }
  182. .serial-content {
  183. width: 90%;
  184. margin: 5px auto;
  185. display: flex;
  186. justify-content: space-between;
  187. flex-wrap: wrap;
  188. }
  189. .serial-btn {
  190. width: 80px;;
  191. height: 40px;
  192. font-size: 1rem;
  193. background: #157dfe;
  194. color: #fff;
  195. border-radius: 1rem;
  196. margin-bottom: 1rem;
  197. outline: none;
  198. border: 0;
  199. }
  200. .serial-box {
  201. width: 60%;
  202. margin-left: 20%;
  203. display: flex;
  204. display: -webkit-flex;
  205. justify-content: space-between;
  206. -webkit-justify-content: space-between;
  207. position: fixed;
  208. bottom: 0;
  209. }
  210. .serial-box .cancel {
  211. width: 30%;
  212. background: #f1f1f1;
  213. color: #939393;
  214. font-size: 0.8rem;
  215. padding: 0.6rem 0;
  216. }
  217. .serial-box .determine {
  218. width: 30%;
  219. background: #157dfe;
  220. color: #fff;
  221. font-size: 0.8rem;
  222. padding: 0.6rem 0;
  223. }