chart_list.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. p,span{
  17. margin: 0;
  18. padding: 0;
  19. }
  20. .box{
  21. /* width: 294px;
  22. height: 338px; */
  23. width: 1176px;
  24. height: 1352px;
  25. background-color: #fff;
  26. padding: 100px 64px 64px 60px;
  27. border-radius: 16px;
  28. border: 1px solid #ECECEC;
  29. background-image: url('https://hzchart.oss-cn-shanghai.aliyuncs.com/static/icon/hzyb/yb-bg-hzlogo.png');
  30. background-position: top right;
  31. background-size: 336px 336px;
  32. background-repeat: no-repeat;
  33. }
  34. .title{
  35. font-size: 64px;
  36. font-weight: bold;
  37. margin-bottom: 40px;
  38. }
  39. .content-box{
  40. height: 656px;
  41. margin-bottom: 20px;
  42. }
  43. .content-box .item{
  44. width: 500px;
  45. height: 560px;
  46. background: #FFFFFF;
  47. box-shadow: 0px 0px 24px 0px rgba(154,141,123,0.16);
  48. border-radius: 16px;
  49. margin: 40px 0px;
  50. padding: 40px;
  51. float: left;
  52. position: relative;
  53. }
  54. .content-box .item-title{
  55. display: -webkit-box;
  56. overflow: hidden;
  57. text-overflow: ellipsis;
  58. -webkit-line-clamp: 2;
  59. -webkit-box-orient: vertical;
  60. font-size: 48px;
  61. }
  62. .content-box .item-img{
  63. width: 420px;
  64. height: 320px;
  65. object-fit: cover;
  66. position: absolute;
  67. left: 40px;
  68. bottom: 40px;
  69. }
  70. .flex{
  71. height: 256px;
  72. margin-top: 40px;
  73. font-size: 56px;
  74. }
  75. .xcx-img{
  76. width: 256px;
  77. height: 256px;
  78. float: right;
  79. }
  80. </style>
  81. </head>
  82. <body>
  83. <div class="box">
  84. <div class="title">{{LIST_TITLE}}</div>
  85. <div class="content-box">
  86. <div class="item">
  87. <div class="item-title">{{TITLE_1}}</div>
  88. <img class="item-img" src="{{IMG_1}}" alt="">
  89. </div>
  90. <div class="item" style="float: right;">
  91. <div class="item-title">{{TITLE_2}}</div>
  92. <img class="item-img" src="{{IMG_2}}" alt="">
  93. </div>
  94. </div>
  95. <div style="text-align:center;font-size:56px;color:#999">长按图片分享</div>
  96. <div class="flex">
  97. <div style="float: left;margin-top: 65px;">
  98. <div>长按识别小程序码</div>
  99. <div style="color:#999;margin-top: 20px;">查看更多</div>
  100. </div>
  101. <img class="xcx-img" src="{{SUN_CODE}}" alt="">
  102. </div>
  103. </div>
  104. </body>
  105. </html>