123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <!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: 338px;
- background-color: #fff;
- padding: 25px 16px 16px 15px;
- border-radius: 4px;
- border: 1px solid #ECECEC;
- background-image: url('https://hzstatic.hzinsights.com/static/icon/hzyb/chart_wait.png');
- background-position: top right;
- background-size: 84px 84px;
- background-repeat: no-repeat;
- }
- .title{
- font-size: 16px;
- font-weight: bold;
- margin-bottom: 10px;
- }
- .content-box{
- background-color: #f5f5f5;
- height: 164px;
- margin-bottom: 5px;
- overflow: hidden;
- }
- .content-box .item{
- width: 115px;
- height: 140px;
- background: #FFFFFF;
- box-shadow: 0px 0px 6px 0px rgba(154,141,123,0.16);
- border-radius: 4px;
- margin: 10px 5px;
- padding: 10px;
- float: left;
- }
- .content-box .item-title{
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- min-height: 35px;
- font-size: 14px;
- }
- .content-box .item-img{
- width: 100%;
- height: 80px;
- margin-top: 5px;
- object-fit: cover;
- }
- .flex{
- height: 64px;
- margin-top: 10px;
- font-size: 14px;
- }
- .xcx-img{
- width: 64px;
- height: 64px;
- float: right;
- }
- </style>
- </head>
- <body>
- <div class="box">
- <div class="title">ETA图库</div>
- <div class="content-box">
- <div class="item">
- <div class="item-title">标题标题标题标题标题标题标题标题标题标题</div>
- <img class="item-img" src="https://hzstatic.hzinsights.com/static/icon/hzyb/chart_wait.png" alt="">
- </div>
- <div class="item">
- <div class="item-title">标题</div>
- <img class="item-img" src="" alt="">
- </div>
- </div>
- <div style="text-align:center;font-size:14px;color:#999">长按图片分享</div>
- <div class="flex">
- <div style="float: left;">
- <div>长按识别小程序码</div>
- <div style="color:#999">查看更多</div>
- </div>
- <img class="xcx-img" src="" alt="">
- </div>
- </div>
- </body>
- </html>
|