report_detail.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. html,
  10. body {
  11. margin: 0;
  12. padding: 0;
  13. }
  14. div {
  15. box-sizing: border-box;
  16. }
  17. .box {
  18. /* width: 294px;
  19. height: 355px; */
  20. width: 1176px;
  21. height: 1450px;
  22. background-color: #fff;
  23. padding: 100px 64px 64px 60px;
  24. border-radius: 16px;
  25. border: 1px solid #ececec;
  26. background-image: url("https://hzchart.oss-cn-shanghai.aliyuncs.com/static/icon/hzyb/yb-bg-hzlogo.png");
  27. background-position: top right;
  28. background-size: 336px 336px;
  29. background-repeat: no-repeat;
  30. }
  31. .title {
  32. font-size: 64px;
  33. font-weight: bold;
  34. margin-bottom: 20px;
  35. }
  36. .sub-title {
  37. font-size: 60px;
  38. font-weight: bold;
  39. -webkit-line-clamp: 2;
  40. -webkit-box-orient: vertical;
  41. display: -webkit-box;
  42. overflow: hidden;
  43. text-overflow: ellipsis;
  44. min-height: 120px;
  45. }
  46. .flex {
  47. height: 256px;
  48. margin-top: 40px;
  49. font-size: 56px;
  50. }
  51. .content-box {
  52. height: 520px;
  53. margin: 80px 0;
  54. color: #000;
  55. overflow: hidden;
  56. font-size: 48px;
  57. }
  58. .xcx-img {
  59. width: 256px;
  60. height: 256px;
  61. float: right;
  62. }
  63. .content-box div {
  64. font-size: 48px !important;
  65. overflow: inherit !important;
  66. line-height: 1.7 !important;
  67. color: #000 !important;
  68. }
  69. .content-box span {
  70. font-size: 48px !important;
  71. line-height: 1.7 !important;
  72. color: #000 !important;
  73. }
  74. .content-box p {
  75. font-size: 48px !important;
  76. overflow: inherit !important;
  77. line-height: 1.7 !important;
  78. color: #000 !important;
  79. }
  80. .content-box section {
  81. overflow: inherit !important;
  82. line-height: 1.7 !important;
  83. color: #000 !important;
  84. }
  85. .content-box iframe {
  86. display: none;
  87. }
  88. p,span{
  89. margin: 0 !important;
  90. padding: 0 !important;
  91. }
  92. </style>
  93. </head>
  94. <body>
  95. <div class="box">
  96. <div class="title">{{REPORT_TYPE}}</div>
  97. <div class="sub-title" style="padding-top: 5px;">{{REPORT_TITLE}}</div>
  98. <div class="content-box">
  99. {{REPORT_ABSTRACT}}
  100. </div>
  101. <div style="text-align:center;font-size:56px;color:#999">长按图片分享</div>
  102. <div class="flex">
  103. <div style="float: left;margin-top: 65px;">
  104. <div>长按识别小程序码</div>
  105. <div style="color:#999;margin-top: 20px;">查看更多</div>
  106. </div>
  107. <img class="xcx-img" src="{{SUN_CODE}}" alt="">
  108. </div>
  109. </div>
  110. </body>
  111. </html>