1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- html,body{
- margin: 0;
- padding: 0;
- }
- div{
- box-sizing: border-box;
- }
- .box{
- width: 294px;
- height: 369px;
- background-color: #fff;
- padding: 25px 16px 16px 15px;
- border-radius: 4px;
- border: 1px solid #ECECEC;
- background-image: url('https://hzstatic.hzinsights.com/static/icon/hzyb/chart_wait.png');
- background-position: top right;
- background-size: 84px 84px;
- background-repeat: no-repeat;
- }
- .title{
- font-size: 16px;
- font-weight: bold;
- margin-bottom: 5px;
- }
- .flex{
- height: 64px;
- margin-top: 10px;
- font-size: 14px;
- }
- .content-box{
- height: 190px;
- margin: 10px 0;
- overflow: hidden;
- font-size: 14px;
- }
- .text-one{
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .item-img{
- width: 62px;
- height: 83px;
- float: left;
- border-radius: 4px;
- margin-right: 5px;
- }
-
-
-
- .xcx-img{
- width: 64px;
- height: 64px;
- float: right;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="title">日度点评</div>
- <div class="content-box">
- <div class="item" style="margin-bottom: 10px;">
- <img class="item-img" src="https://hzstatic.hzinsights.com/static/yb_wx/report_hongguan.png" alt="">
- <div class="item-type text-one" style="font-weight: bold;">宏观商品复盘</div>
- <div class="item-title text-one" style="margin:5px 0">主讲人:王沛</div>
- <div class="item-des text-one" style="color:#666">弘则研究董事长/首席宏观商品分析师</div>
- <div style="color: #E3B377;">第45期 | FICC</div>
- </div>
- <div class="item" style="margin-bottom: 10px;">
- <img class="item-img" src="https://hzstatic.hzinsights.com/static/yb_wx/report_hongguan.png" alt="">
- <div class="item-type text-one" style="font-weight: bold;">宏观商品复盘</div>
- <div class="item-title text-one" style="margin:5px 0">主讲人:王沛</div>
- <div class="item-des text-one" style="color:#666">弘则研究董事长/首席宏观商品分析师</div>
- <div style="color: #E3B377;">第45期 | FICC</div>
- </div>
- </div>
- <div style="text-align:center;font-size:14px;color:#999">长按图片分享</div>
- <div class="flex">
- <div style="float: left;">
- <div>长按识别小程序码</div>
- <div style="color:#999">查看更多</div>
- </div>
- <img class="xcx-img" src="" alt="">
- </div>
- </div>
- </body>
- </html>
|