| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- {% load staticfiles %}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <link href="{% static '/lib/bootstrap-3.3.7/css/bootstrap.css' %}" rel="stylesheet">
- <link rel="stylesheet" href="{% static '/lib/font-awesome/4.5.0/css/font-awesome.css' %}">
- <link rel="stylesheet" href="{% static '/lib/css/ace.min.css' %}" />
- <link rel="stylesheet" href="{% static '/lib/css/ace-skins.min.css' %}">
- <link rel="stylesheet" href="{% static '/lib/css/ace-rtl.min.css' %}">
- <link rel="stylesheet" href="{% static '/lib/css/viewer.css' %}">
- <style>
- body{
- background: #fff;
- }
- .borderLine {
- border: 1px solid #e8e8e8;
- box-shadow: 0px 0px 13px 0px #d9d9d9;
- padding: 10px;
- border-radius: 5px;
- }
- .row{
- margin: 0;
- }
- .equipItem{
- display: flex;
- }
- .equipItem >img{
- width: 180px;
- height: 180px;
- cursor: pointer;
- }
- .equipItem .describe{
- min-width: 100px;
- padding-left: 10px;
- }
- .equipItem .describe h3{
- font-size: 16px;
- font-weight: 700;
- letter-spacing: 1px;
- color: #585858;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- cursor: pointer;
- }
- .equipItem .describe h3:hover,.equipItem .describe .txt:hover{
- color: #000;
- }
- .equipItem .describe .txt{
- line-height: 22px;
- letter-spacing: 1px;
- font-size: 12px;
- max-height: 65px;
- overflow: hidden;
- position: relative;
- cursor: pointer;
- /* overflow : hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical; */
- }
- .equipItem .describe .txt:after {
- position: absolute;
- content: "...";
- right: 0;
- bottom: 0;
- background: #fff;
- width: 24px;
- }
- .equipItem .describe button{
- position: absolute;
- right: 37px;
- bottom: 24px;
- color: #fff;
- background: #5fb5ff;
- padding: 5px 10px;
- border: none;
- border-radius: 3px;
- }
- .equipItem .describe button:hover{
- background: #2589df;
- }
- </style>
- <body>
- <div class="content">
- <div class="page-header">
- <h1>
- <font style="vertical-align: inherit;">
- <font style="vertical-align: inherit;">
- 网上商城
- </font>
- </font>
- </h1>
- </div>
- <div class="row docs-pictures">
- <div class="col-xs-6 col-md-4 col-lg-4 ">
- <div class="borderLine equipItem">
- <img data-original="{% static '/img/haloIcon4.png' %}" src="{% static '/img/equipImg/wlwcdb.png' %}" alt="1">
- <div class="describe">
- <h3>物联网虫情测报灯</h3>
- <div class="txt">物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯</div>
- <button>联系客服</button>
- </div>
- </div>
- </div>
- <div class="col-xs-6 col-md-4 col-lg-4 ">
- <div class="borderLine equipItem">
- <img data-original="{% static '/img/haloIcon4.png' %}" src="{% static '/img/equipImg/bzy.png' %}" alt="">
- <div class="describe">
- <h3>物联网虫情测报灯</h3>
- <div class="txt">物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯侧水哦花费说的佛舍凤凰网我违法和违法位分为开了房宏伟哈佛好未发货未of文化佛为哈佛已维护服务 王宏恩菲维护费 我还佛维护费位</div>
- <button>联系客服</button>
- </div>
- </div>
- </div>
- <div class="col-xs-6 col-md-4 col-lg-4 ">
- <div class="borderLine equipItem">
- <img data-original="{% static '/img/haloIcon4.png' %}" src="{% static '/img/equipImg/wlwscd.png' %}" alt="">
- <div class="describe">
- <h3>物联网虫情测报灯</h3>
- <div class="txt">物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情测报灯物联网虫情</div>
- <button>联系客服</button>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script src="{% static '/lib/js/jquery-2.1.4.min.js' %}"></script>
- <script src="{% static '/lib/bootstrap-3.3.7/js/bootstrap.js' %}"></script>
- <script src="{% static '/lib/js/viewer.js' %}"></script>
- <!-- <script src="{% static '/lib/layui/layui.all.js' %}"></script> -->
- <script src="{% static '/js/common.js' %}?versions=0.5.0"></script>
- <script>
- $.ajaxSetup({
- data: {
- csrfmiddlewaretoken: '{{ csrf_token }}'
- },
- });
- var $images = $('.docs-pictures');
- $images.viewer();
-
- </script>
- <script>
- </script>
- </body>
- </html>
|