preview.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. body {
  2. position: relative;
  3. height: 100%;
  4. overflow: hidden;
  5. background-color: #ebeef5;
  6. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  7. }
  8. ::-webkit-scrollbar-track {
  9. border-radius: 10px;
  10. }
  11. ::-webkit-scrollbar-thumb {
  12. background-color: rgba(144, 147, 153, .3);
  13. border-radius: 10px;
  14. }
  15. ::-webkit-scrollbar {
  16. width: 16px;
  17. height: 16px;
  18. }
  19. ::-webkit-scrollbar-track,
  20. ::-webkit-scrollbar-thumb {
  21. border-radius: 999px;
  22. border: 5px solid transparent;
  23. }
  24. ::-webkit-scrollbar-thumb {
  25. min-height: 20px;
  26. background-clip: content-box;
  27. }
  28. ::-webkit-scrollbar-corner {
  29. background: transparent;
  30. }
  31. html::-webkit-scrollbar,
  32. body::-webkit-scrollbar,
  33. #app::-webkit-scrollbar {
  34. width: 0;
  35. }
  36. /*弹窗*/
  37. .data-report-modal {
  38. left: 50%;
  39. top: 50%;
  40. transform: translate(-50%, -50%);
  41. min-width: 50%;
  42. overflow: visible;
  43. bottom: inherit;
  44. right: inherit;
  45. }
  46. .data-report-modal .modal-dialog .modal-content {
  47. border-radius: 4px;
  48. box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
  49. }
  50. .data-report-modal .modal-dialog .modal-header {
  51. padding: 0 20px;
  52. height: 56px;
  53. line-height: 56px;
  54. border-bottom: 1px solid #e8eaec;
  55. }
  56. .data-report-modal .modal-dialog .modal-header .close {
  57. margin-top: 16px;
  58. opacity: 1;
  59. }
  60. .data-report-modal .modal-dialog .modal-header .close i {
  61. font-weight: normal;
  62. font-size: 18px;
  63. color: #909399;
  64. line-height: normal;
  65. }
  66. .data-report-modal .modal-dialog .modal-header .close:hover i {
  67. color: #1890ff;
  68. }
  69. .data-report-modal .modal-dialog .modal-header .modal-title {
  70. height: 56px;
  71. line-height: 56px;
  72. }
  73. .header {
  74. width: 100%;
  75. position: relative;
  76. height: 60px;
  77. line-height: 60px;
  78. background-color: #fff;
  79. border-bottom: 1px solid #dfe6ec;
  80. }
  81. .header .tools {
  82. position: absolute;
  83. top: 0;
  84. width: 100%;
  85. height: 60px;
  86. text-align: center;
  87. display: flex;
  88. align-items: center;
  89. /* justify-content: center; */
  90. padding-left: 10px;
  91. }
  92. .header .tools a {
  93. color: #333;
  94. text-decoration: none;
  95. }
  96. .header .tools .pageNum {
  97. color: #333;
  98. font-size: 14px;
  99. }
  100. .header .tools .tool-icon {
  101. margin: 0 10px;
  102. cursor: pointer;
  103. height: 40px;
  104. padding: 0;
  105. display: flex;
  106. align-items: center;
  107. }
  108. .header .tools .tool-icon:hover {
  109. background-color: #d4d4d4;
  110. }
  111. .header .tools .tool-icon.tool-line {
  112. display: inline-block;
  113. height: 60px;
  114. border-left: 1px solid #e6e6e6;
  115. }
  116. .header .tools .tool-icon img {
  117. width: 28px;
  118. height: 28px;
  119. }
  120. /* .header .pageLinkContainer .tool-icon {
  121. width: 25px;
  122. height: 25px;
  123. color: #000;
  124. } */
  125. .header .pageLinkContainer {
  126. display: flex;
  127. align-items: center;
  128. height: 60px;
  129. }
  130. .header .pageLinkContainer .pageNum {
  131. font-style: normal;
  132. font-size: 18px;
  133. line-height: 60px;
  134. display: inline-block;
  135. vertical-align: middle;
  136. }
  137. .options {
  138. position: absolute;
  139. right: 20px;
  140. height: 60px;
  141. width: 70px;
  142. text-align: right;
  143. }
  144. .preview-bd {
  145. /* padding: 10px 0 0; */
  146. background-color: #fff;
  147. height: calc(100vh - 60px);
  148. overflow: auto;
  149. }
  150. .preview-bd ._ureport_table {
  151. padding: 20px;
  152. display: inline-block;
  153. background-color: #fff;
  154. /* border: 1px solid #dfe6ec; */
  155. min-height: calc(100vh - 120px);
  156. }
  157. .pdfclose {
  158. font-weight: 200;
  159. color: #909399;
  160. }
  161. .pdfclose:hover {
  162. color: #1890ff;
  163. }
  164. .preview-bd ._ureport_table_form {
  165. background-color: #fff;
  166. padding: 10px;
  167. /* margin-bottom: 10px; */
  168. }
  169. @media screen and (max-width: 750px) {
  170. .small-screen {
  171. display: none !important;
  172. }
  173. }