chart_detail.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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,body{
  10. margin: 0;
  11. padding: 0;
  12. }
  13. div{
  14. box-sizing: border-box;
  15. }
  16. .box{
  17. /* width: 294px;
  18. height: 381px; */
  19. width: 1176px;
  20. height: 1536px;
  21. background-color: #fff;
  22. padding: 100px 64px 64px 60px;
  23. border-radius: 16px;
  24. border: 1px solid #ECECEC;
  25. background-image: url('https://hzchart.oss-cn-shanghai.aliyuncs.com/static/icon/hzyb/yb-bg-hzlogo.png');
  26. background-position: top right;
  27. background-size: 336px 336px;
  28. background-repeat: no-repeat;
  29. }
  30. .title{
  31. font-size: 64px;
  32. font-weight: bold;
  33. display: -webkit-box;
  34. overflow: hidden;
  35. text-overflow: ellipsis;
  36. -webkit-line-clamp: 2;
  37. -webkit-box-orient: vertical;
  38. min-height: 152px;
  39. margin-bottom: 40px;
  40. }
  41. .bg-img{
  42. width: 1056px;
  43. height: 756px;
  44. }
  45. .flex{
  46. margin-top: 40px;
  47. font-size: 56px;
  48. height: 256px;
  49. }
  50. .xcx-img{
  51. width: 256px;
  52. height: 256px;
  53. float: right;
  54. }
  55. p,span{
  56. margin: 0 !important;
  57. padding: 0 !important;
  58. }
  59. </style>
  60. </head>
  61. <body>
  62. <div class="box">
  63. <div class="title">{{CHART_NAME}}</div>
  64. <img class="bg-img" src="{{CHART_IMAGE}}" alt="">
  65. <div style="text-align:center;font-size:56px;color:#999">长按图片分享</div>
  66. <div class="flex">
  67. <div style="float: left;margin-top: 65px;">
  68. <div>长按识别小程序码</div>
  69. <div style="color:#999;margin-top: 20px;">查看更多</div>
  70. </div>
  71. <img class="xcx-img" src="{{SUN_CODE}}" alt="">
  72. </div>
  73. </div>
  74. </body>
  75. </html>