report.css 4.3 KB

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