123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <!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; */
- width: 1176px;
- height: 1536px;
- 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;
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- min-height: 152px;
- margin-bottom: 40px;
- }
- .bg-img{
- width: 1056px;
- height: 756px;
- }
- .flex{
- margin-top: 40px;
- font-size: 56px;
- height: 256px;
- }
- .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">{{CHART_NAME}}</div>
- <img class="bg-img" src="{{CHART_IMAGE}}" alt="">
- <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>
|