chapter_list.html 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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: 369px;
  19. background-color: #fff;
  20. padding: 25px 16px 16px 15px;
  21. border-radius: 4px;
  22. border: 1px solid #ECECEC;
  23. background-image: url('https://hzstatic.hzinsights.com/static/icon/hzyb/chart_wait.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. margin-bottom: 5px;
  32. }
  33. .flex{
  34. height: 64px;
  35. margin-top: 10px;
  36. font-size: 14px;
  37. }
  38. .content-box{
  39. height: 190px;
  40. margin: 10px 0;
  41. overflow: hidden;
  42. font-size: 14px;
  43. }
  44. .text-one{
  45. overflow: hidden;
  46. white-space: nowrap;
  47. text-overflow: ellipsis;
  48. }
  49. .item-img{
  50. width: 62px;
  51. height: 83px;
  52. float: left;
  53. border-radius: 4px;
  54. margin-right: 5px;
  55. }
  56. .xcx-img{
  57. width: 64px;
  58. height: 64px;
  59. float: right;
  60. }
  61. </style>
  62. </head>
  63. <body>
  64. <div class="box">
  65. <div class="title">日度点评</div>
  66. <div class="content-box">
  67. <div class="item" style="margin-bottom: 10px;">
  68. <img class="item-img" src="https://hzstatic.hzinsights.com/static/yb_wx/report_hongguan.png" alt="">
  69. <div class="item-type text-one" style="font-weight: bold;">宏观商品复盘</div>
  70. <div class="item-title text-one" style="margin:5px 0">主讲人:王沛</div>
  71. <div class="item-des text-one" style="color:#666">弘则研究董事长/首席宏观商品分析师</div>
  72. <div style="color: #E3B377;">第45期 | FICC</div>
  73. </div>
  74. <div class="item" style="margin-bottom: 10px;">
  75. <img class="item-img" src="https://hzstatic.hzinsights.com/static/yb_wx/report_hongguan.png" alt="">
  76. <div class="item-type text-one" style="font-weight: bold;">宏观商品复盘</div>
  77. <div class="item-title text-one" style="margin:5px 0">主讲人:王沛</div>
  78. <div class="item-des text-one" style="color:#666">弘则研究董事长/首席宏观商品分析师</div>
  79. <div style="color: #E3B377;">第45期 | FICC</div>
  80. </div>
  81. </div>
  82. <div style="text-align:center;font-size:14px;color:#999">长按图片分享</div>
  83. <div class="flex">
  84. <div style="float: left;">
  85. <div>长按识别小程序码</div>
  86. <div style="color:#999">查看更多</div>
  87. </div>
  88. <img class="xcx-img" src="" alt="">
  89. </div>
  90. </div>
  91. </body>
  92. </html>