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: 355px; */
- width: 1176px;
- height: 1450px;
- 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;
- }
- .sub-title {
- font-size: 60px;
- font-weight: bold;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- min-height: 120px;
- }
- .flex {
- height: 256px;
- margin-top: 40px;
- font-size: 56px;
- }
- .content-box {
- height: 520px;
- margin: 80px 0;
- color: #000;
- overflow: hidden;
- font-size: 48px;
- }
- .xcx-img {
- width: 256px;
- height: 256px;
- float: right;
- }
- .content-box div {
- font-size: 48px !important;
- overflow: inherit !important;
- line-height: 1.7 !important;
- color: #000 !important;
- }
- .content-box span {
- font-size: 48px !important;
- line-height: 1.7 !important;
- color: #000 !important;
- }
- .content-box p {
- font-size: 48px !important;
- overflow: inherit !important;
- line-height: 1.7 !important;
- color: #000 !important;
- }
- .content-box section {
- overflow: inherit !important;
- line-height: 1.7 !important;
- color: #000 !important;
- }
- .content-box iframe {
- display: none;
- }
- p,span{
- margin: 0 !important;
- padding: 0 !important;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="title">{{REPORT_TYPE}}</div>
- <div class="sub-title" style="padding-top: 5px;">{{REPORT_TITLE}}</div>
- <div class="content-box">
- {{REPORT_ABSTRACT}}
- </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>
|