12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <!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: 320px;
- height: 487px; */
- width: 1280px;
- height: 1210px;
- 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: 208px; */
- margin: 60px 0;
- overflow: hidden;
- font-size: 56px;
- }
- .avatar{
- width: 235px;
- height: 235px;
- object-fit: cover;
- border-radius: 50%;
- overflow: hidden;
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- .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">{{ACTIVITY_TITLE}}</div>
- <div class="content-box" style="margin-bottom: 100px;">
- <img src="{{ACTIVITY_AVATAR}}" alt="" class="avatar">
- <div style="font-size: 48px;text-align: center;margin-top: 20px;font-weight: bold;">主讲人:{{ACTIVITY_SPEAKER}}</div>
- <div style="font-size: 41px;text-align: center;margin-top: 20px;">活动时间:{{ACTIVITY_TIME}}</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>
|