123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <!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://hzstatic.hzinsights.com/static/icon/hzyb/yb-bg-hzlogo.png');
- background-position: top right;
- background-size: 300px 300px;
- background-repeat: no-repeat;
- }
- .title{
- font-size: 64px;
- font-weight: bold;
- margin-bottom: 40px;
- }
- .flex{
- height: 256x;
- margin-top: 40px;
- font-size: 56px;
- }
- .content-box{
- height: 500px;
- margin: 80px 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;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="title">{{LIST_TITLE}}</div>
- <div class="content-box">
- <div style="margin-bottom: 40px;line-height: 80px">核心驱动({{CORE_DRIVEN_TYPE}}):{{CORE_DRIVEN_CONTENT}}</div>
- <div style="margin-bottom: 40px;">关键变量: {{MAIN_VARIABLE}}</div>
- <div>更新时间:{{UPDATE_TIME}}</div>
- </div>
- <div style="text-align:center;font-size:56px;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>
|