chart_detail.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. background-color: #fff;
  20. padding: 25px 16px 16px 15px;
  21. border-radius: 4px;
  22. border: 1px solid #ECECEC;
  23. background-image: url('./top-bg.png');
  24. background-position: top right;
  25. background-size: 84px 84px;
  26. background-repeat: no-repeat;
  27. }
  28. .title{
  29. font-size: 16px;
  30. font-weight: bold;
  31. display: -webkit-box;
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. -webkit-line-clamp: 2;
  35. -webkit-box-orient: vertical;
  36. min-height: 38px;
  37. margin-bottom: 10px;
  38. }
  39. .bg-img{
  40. width: 264px;
  41. height: 189px;
  42. }
  43. .flex{
  44. margin-top: 10px;
  45. font-size: 14px;
  46. height: 64px;
  47. }
  48. .xcx-img{
  49. width: 64px;
  50. height: 64px;
  51. float: right;
  52. }
  53. </style>
  54. </head>
  55. <body>
  56. <div class="box">
  57. <div class="title">{{CHART_NAME}}</div>
  58. <img class="bg-img" src="{{CHART_IMAGE}}" alt="">
  59. <div style="text-align:center;font-size:14px;color:#999">长按图片分享</div>
  60. <div class="flex">
  61. <div style="float: left;">
  62. <div>长按识别小程序码</div>
  63. <div style="color:#999">查看更多</div>
  64. </div>
  65. <img class="xcx-img" src="{{SUN_CODE}}" alt="">
  66. </div>
  67. </div>
  68. </body>
  69. </html>