123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <!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;
- }
- p,span{
- margin: 0;
- padding: 0;
- }
- .box{
- /* width: 320px;
- height: 487px; */
- width: 1280px;
- height: 1948px;
- 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; */
- /*height: 1194px;*/
- margin: 40px 0;
- overflow: hidden;
- font-size: 56px;
- }
- .item{
- padding-top: 80px;
- /* height: 95px; */
- margin-bottom: 40px;
- position: relative;
- overflow: hidden;
- background: #FFFFFF;
- box-shadow: 1px 1px 20px 0px rgba(161,161,161,0.14);
- border-radius: 24px;
- border: 1px solid rgba(112, 112, 112, 0.2);
- }
- .avatar{
- width: 284px;
- height: 284px;
- border-radius: 50%;
- background-color: #f5f5f5;
- float: left;
- margin-right: 32px;
- object-fit: cover;
- display: block;
- }
- .item-con{
- overflow: hidden;
- margin-top: 28px;
- }
- .item-con .name{
- font-size: 52px;
- font-weight: bold;
- padding-bottom: 32px;
- border-bottom: 1px solid #EBEDF0;
- margin-bottom: 36px;
- }
- .text-one{
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .stage{
- position: absolute;
- top: 0;
- right: 0;
- background-color: #E3B377;
- color: #fff;
- font-size: 40px;
- display: block;
- padding: 8px 32px;
- border-top-right-radius: 24px;
- }
- .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 class="item">
- <!-- 如果是进行中则 background-color:#3385FF 已结束 background-color:#A2A2A2 本周预告 #E3B377 -->
- <span class="stage" style="background-color: {{BG_COLORE_1}};">{{STATUS_1}}</span>
- <div style="border-bottom: 1px solid #EBEDF0;padding: 0 48px 60px 48px;">
- <img class="avatar" src="{{AVATAR_1}}" alt="">
- <div class="item-con">
- <div class="text-one name" style="padding-top: 5px;">{{TITLE_1}}</div>
- <div style="color: #666;font-size: 48px;">主讲:{{SPEAKER_1}}</div>
- <div style="font-size: 40px;color: #999;margin-top: 20px;color: {{TIME_COLOR_1}};">{{TIME_1}}</div>
- </div>
- </div>
- <!-- 如果非预告则下面style 加上 display:none -->
- <div style="display: {{SHOW_ITEM_1}}" >
- <!-- 如果是线下沙龙则设置 display:none -->
- <div style="text-align: center;color: #E3B377;font-size: 44px;line-height: 112px;display: {{SHOW_ONLINE_1}};">会议提醒</div>
- <!-- 如果是线上会议则设置 display:none -->
- <div style="display: {{SHOW_OFFLINE_1}}" >
- <div style="text-align: center;color: #E3B377;font-size: 44px;line-height: 112px;float: left;width: 50%;border-right: 1px solid #EBEDF0;">会议提醒</div>
- <div style="text-align: center;color: #E3B377;font-size: 44px;line-height: 112px;float: left;width: 50%;">报名线下参会</div>
- </div>
- </div>
- </div>
- <div class="item">
- <!-- 如果是进行中则 background-color:#3385FF 已结束 background-color:#A2A2A2 本周预告 #E3B377 -->
- <span class="stage" style="background-color: {{BG_COLORE_2}};">{{STATUS_2}}</span>
- <div style="border-bottom: 1px solid #EBEDF0;padding: 0 48px 60px 48px;">
- <img class="avatar" src="{{AVATAR_2}}" alt="">
- <div class="item-con">
- <div class="text-one name" style="padding-top: 5px;">{{TITLE_2}}</div>
- <div style="color: #666;font-size: 48px;">主讲:{{SPEAKER_2}}</div>
- <div style="font-size: 40px;color: #999;margin-top: 20px;color: {{TIME_COLOR_2}};">{{TIME_2}}</div>
- </div>
- </div>
- <!-- 如果非预告则下面style 加上 display:none -->
- <div style="display: {{SHOW_ITEM_2}}" >
- <!-- 如果是线下沙龙则设置 display:none -->
- <div style="text-align: center;color: #E3B377;font-size: 44px;line-height: 112px;display: {{SHOW_ONLINE_2}};">会议提醒</div>
- <!-- 如果是线上会议则设置 display:none -->
- <div style="display: {{SHOW_OFFLINE_2}}" >
- <div style="text-align: center;color: #E3B377;font-size: 44px;line-height: 112px;float: left;width: 50%;border-right: 1px solid #EBEDF0;">会议提醒</div>
- <div style="text-align: center;color: #E3B377;font-size: 44px;line-height: 112px;float: left;width: 50%;">报名线下参会</div>
- </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>
|