123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!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: 381px;
- background-color: #fff;
- padding: 25px 16px 16px 15px;
- border-radius: 4px;
- border: 1px solid #ECECEC;
- background-image: url('./top-bg.png');
- background-position: top right;
- background-size: 84px 84px;
- background-repeat: no-repeat;
- }
- .title{
- font-size: 16px;
- font-weight: bold;
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- min-height: 38px;
- margin-bottom: 10px;
- }
- .bg-img{
- width: 264px;
- height: 189px;
- }
- .flex{
- margin-top: 10px;
- font-size: 14px;
- height: 64px;
- }
- .xcx-img{
- width: 64px;
- height: 64px;
- float: right;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="title">{{CHART_NAME}}</div>
- <img class="bg-img" src="{{CHART_IMAGE}}" alt="">
- <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="{{SUN_CODE}}" alt="">
- </div>
- </div>
- </body>
- </html>
|