price_driven.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,body{
  10. margin: 0;
  11. padding: 0;
  12. }
  13. div{
  14. box-sizing: border-box;
  15. }
  16. .box{
  17. /* width: 294px;
  18. height: 336px; */
  19. width: 1176px;
  20. height: 1344px;
  21. background-color: #fff;
  22. padding: 100px 64px 64px 60px;
  23. border-radius: 16px;
  24. border: 1px solid #ECECEC;
  25. background-image: url('https://hzstatic.hzinsights.com/static/icon/hzyb/yb-bg-hzlogo.png');
  26. background-position: top right;
  27. background-size: 300px 300px;
  28. background-repeat: no-repeat;
  29. }
  30. .title{
  31. font-size: 64px;
  32. font-weight: bold;
  33. margin-bottom: 40px;
  34. }
  35. .flex{
  36. height: 256x;
  37. margin-top: 40px;
  38. font-size: 56px;
  39. }
  40. .content-box{
  41. height: 500px;
  42. margin: 80px 0;
  43. overflow: hidden;
  44. font-size: 56px;
  45. }
  46. .text-one{
  47. overflow: hidden;
  48. white-space: nowrap;
  49. text-overflow: ellipsis;
  50. }
  51. .item-img{
  52. width: 188px;
  53. height: 252px;
  54. float: left;
  55. object-fit: cover;
  56. border-radius: 16px;
  57. margin-right: 20px;
  58. }
  59. .item-title{
  60. font-size: 52px;
  61. }
  62. .item-des{
  63. height: 80px;
  64. font-size: 44px;
  65. }
  66. .audio-box{
  67. width: 200px;
  68. height: 80px;
  69. background: #E3B377;
  70. border-radius: 40px;
  71. color: #fff;
  72. font-size: 48px;
  73. float: right;
  74. text-align: center;
  75. line-height: 80px;
  76. }
  77. .audio-box img{
  78. width: 60px;
  79. height: 60px;
  80. object-fit: cover;
  81. position: relative;
  82. top: 12px;
  83. }
  84. .xcx-img{
  85. width: 256px;
  86. height: 256px;
  87. float: right;
  88. }
  89. </style>
  90. </head>
  91. <body>
  92. <div class="box">
  93. <div class="title">{{LIST_TITLE}}</div>
  94. <div class="content-box">
  95. <div style="margin-bottom: 40px;line-height: 80px">核心驱动({{CORE_DRIVEN_TYPE}}):{{CORE_DRIVEN_CONTENT}}</div>
  96. <div style="margin-bottom: 40px;">关键变量: {{MAIN_VARIABLE}}</div>
  97. <div>更新时间:{{UPDATE_TIME}}</div>
  98. </div>
  99. <div style="text-align:center;font-size:56px;color:#999">长按图片分享</div>
  100. <div class="flex">
  101. <div style="float: left;">
  102. <div>长按识别小程序码</div>
  103. <div style="color:#999">查看更多</div>
  104. </div>
  105. <img class="xcx-img" src="{{SUN_CODE}}" alt="">
  106. </div>
  107. </div>
  108. </body>
  109. </html>