123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <!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: 336px; */
- width: 1176px;
- height: 1344px;
- background-color: #fff;
- padding: 100px 64px 64px 60px;
- border-radius: 16px;
- border: 1px solid #ECECEC;
- background-image: url('https://hzchart.oss-cn-shanghai.aliyuncs.com/static/icon/hzyb/yb-bg-hzlogo.png');
- background-position: top right;
- background-size: 336px 336px;
- background-repeat: no-repeat;
- }
- .title{
- font-size: 64px;
- font-weight: bold;
- margin-bottom: 20px;
- }
- .flex{
- height: 256px;
- margin-top: 40px;
- font-size: 56px;
- }
- .content-box{
- height: 628px;
- margin: 40px 0;
- overflow: hidden;
- font-size: 56px;
- }
- .text-one{
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .item-img{
- width: 188px;
- height: 252px;
- float: left;
- object-fit: cover;
- border-radius: 16px;
- margin-right: 20px;
- }
- .item-title{
- font-size: 52px;
- }
- .item-des{
- height: 80px;
- font-size: 44px;
- }
- .audio-box{
- width: 200px;
- height: 80px;
- background: #E3B377;
- border-radius: 40px;
- color: #fff;
- font-size: 48px;
- float: right;
- text-align: center;
- line-height: 80px;
- }
- .audio-box img{
- width: 60px;
- height: 60px;
- object-fit: cover;
- position: relative;
- top: 12px;
- }
- .xcx-img{
- width: 256px;
- height: 256px;
- float: right;
- }
- p,span{
- margin: 0 !important;
- padding: 0 !important;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="title">{{LIST_TITLE}}</div>
- <div class="content-box">
- <div class="item" style="margin-bottom: 40px;">
- <img class="item-img" src="{{IMG_1}}" alt="">
- <div class="item-title text-one" style="margin:20px 0">{{TITLE_1}}</div>
- <div class="item-des text-one" style="color:#666">{{ABSTRACT_1}}</div>
- <div class="item-bot">
- <span class="item-time" style="color:#999;font-size: 44px;">{{TIME_1}}</span>
- <div class="audio-box" style="display: none">
- <img src="https://hzstatic.hzinsights.com/static/yb_wx/report_hongguan.png" alt="">
- <span>播放</span>
- </div>
- </div>
- </div>
- <div class="item" style="margin-bottom: 40px;">
- <img class="item-img" src="{{IMG_2}}" alt="">
- <div class="item-title text-one" style="margin:20px 0">{{TITLE_2}}</div>
- <div class="item-des text-one" style="color:#666">{{ABSTRACT_2}}</div>
- <div class="item-bot">
- <span class="item-time" style="color:#999;font-size: 44px;">{{TIME_2}}</span>
- <div class="audio-box" style="display: none">
- <img src="https://hzstatic.hzinsights.com/static/yb_wx/report_hongguan.png" alt="">
- <span>播放</span>
- </div>
- </div>
- </div>
- </div>
- <div style="text-align:center;font-size:56px;color:#999">长按图片分享</div>
- <div class="flex">
- <div style="float: left;margin-top: 65px;">
- <div>长按识别小程序码</div>
- <div style="color:#999;margin-top: 20px;">查看更多</div>
- </div>
- <img class="xcx-img" src="{{SUN_CODE}}" alt="">
- </div>
- </div>
- </body>
- </html>
|