info.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .rotate(@degrees) {
  2. -webkit-transform: rotate(@degrees);
  3. -ms-transform: rotate(@degrees);
  4. -o-transform: rotate(@degrees);
  5. transform: rotate(@degrees);
  6. }
  7. .report-container {
  8. width: 592.28px;
  9. margin: auto;
  10. line-height: 1.5;
  11. font-size: 14px;
  12. color: #333;
  13. .export {
  14. position: fixed;
  15. top: 10%;
  16. right: 20%;
  17. z-index: 2;
  18. &.ant-btn.ant-btn-loading {
  19. position: fixed;
  20. }
  21. }
  22. }
  23. .report-pages{
  24. width: 592.28px;
  25. }
  26. .report-title {
  27. text-align: center;
  28. font-size: 20px;
  29. font-weight: bold;
  30. }
  31. .report-subtitle {
  32. text-align: center;
  33. font-size: 18px;
  34. font-weight: bold;
  35. margin-bottom: 10px;
  36. }
  37. .report-page {
  38. height: 841.89px;
  39. padding: 5px 50px 25px;
  40. position: relative;
  41. p {
  42. margin: 4px 0;
  43. }
  44. .ant-table-wrapper {
  45. margin-bottom: 12px;
  46. }
  47. &:before {
  48. content: '';
  49. position: absolute;
  50. top: 40%;
  51. left: 34%;
  52. width: 200px;
  53. height: 100px;
  54. opacity: 0.2;
  55. .rotate(330deg);
  56. background-repeat: no-repeat;
  57. background-size: contain;
  58. background-image: url('../../../../image/logo-2.png') no-repeat;
  59. }
  60. }
  61. .report-info {
  62. margin: 115px 0;
  63. .ant-row {
  64. margin: 4px 0;
  65. }
  66. }
  67. .report-announce {
  68. position: absolute;
  69. bottom: 30px;
  70. left: 0;
  71. width: 100%;
  72. color: #999;
  73. text-align: center;
  74. font-size: 12px;
  75. }
  76. .report-pageno {
  77. position: absolute;
  78. bottom: 6px;
  79. left: 0;
  80. width: 100%;
  81. color: #999;
  82. text-align: center;
  83. font-size: 12px;
  84. }