|
|
|
@ -446,7 +446,6 @@
|
|
|
|
|
transform: translateX(-200%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body class="layui-bg-gray" style="">
|
|
|
|
@ -520,9 +519,22 @@
|
|
|
|
|
<a href="work_view.html" target="_blank">更多+</a>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="layui-card-body">
|
|
|
|
|
<div class="layui-card-body" style="max-height: 400px;overflow: hidden;">
|
|
|
|
|
<div style="width:100%;height: 165px;display: flex;justify-content: space-between;">
|
|
|
|
|
<div style="height: 100%;width: 47%">
|
|
|
|
|
<a th:href="@{/public_view.html(type=2,id=${workList[0].workId})}" th:title="${workList[0].workTitle}" target="_blank">
|
|
|
|
|
<img style="height: 100%;width: 100%" th:src="${workList[0].imgUrl}" th:alt="${workList[0].workTitle}" th:title="${workList[0].workTitle}">
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="height: 100%;width: 51%;text-align:left;line-height: 40px;">
|
|
|
|
|
<a th:href="@{/public_view.html(type=2,id=${workList[0].workId})}" th:title="${workList[0].workTitle}" target="_blank">
|
|
|
|
|
<b style="font-size:18px;">[[${#strings.abbreviate(workList[0].workTitle,28)}]]</b><br/>
|
|
|
|
|
<p style="font-size: 16px;color: #777;">时间:[[${#dates.format(workList[0].createTime, 'yyyy年MM月dd日')}]]</p>
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<ul class="newslist-to">
|
|
|
|
|
<li th:each="work,status : ${workList}">
|
|
|
|
|
<li th:each="work,status : ${workList}" th:if="${!status.first}">
|
|
|
|
|
<a th:href="@{/public_view.html(type=2,id=${work.workId})}" th:title="${work.workTitle}" target="_blank">[[${#strings.abbreviate(work.workTitle,28)}]]</a>
|
|
|
|
|
<span class="time">[[${#dates.format(work.createTime, 'yyyy年MM月dd日')}]]</span>
|
|
|
|
|
</li>
|
|
|
|
|