1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!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: 370px;
- 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;
- }
- .avatar{
- width: 68px;
- height: 68px;
- display: block;
- margin-left: auto;
- margin-right: auto;
- border-radius: 50%;
- object-fit: cover;
- }
- .sub-title{
- font-size: 14px;
- font-weight: bold;
- text-align: center;
- margin-top: 10px;
- }
- .flex{
- height: 64px;
- margin-top: 10px;
- font-size: 14px;
- }
- .content-box{
- height: 97px;
- margin: 20px 0;
- color: #999;
- overflow: hidden;
- font-size: 14px;
- }
- .xcx-img{
- width: 64px;
- height: 64px;
- float: right;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <img class="avatar" src="https://hongze.oss-accelerate.aliyuncs.com/static/images/202012/20201217/3Th8J6HoWfOKvftcTwTx84Np4oYZ.png?x-oss-process=image/sharpen,100" alt="">
- <div class="sub-title">报告标题</div>
- <div class="content-box">
- 地产还是目前国内商品市场的主要影响因素。从最近的地产成交看,略有改善,需要继续观察,考虑到季节性施工淡季,地产成交的改善作用在盘面上,可能要到春节后。
- 目前这个阶段就是观察政策,因为一是基本面已经给到政策调整的状态,二是目前处于政策
- </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>
|