1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglibf.jsp"%>
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>${fns:getConfig("productName")}-服务指南搜索结果</title>
- <link rel="stylesheet" type="text/css" href="${ctxStaticWeb}/css/base.css" />
- <link rel="stylesheet" type="text/css" href="${ctxStaticWeb}/css/second.css" />
- <style>
- .new_l,.new_r{ margin:10px 0px;}
- .new_l{background-color:#FFF}
- .new_l h2{ border-bottom:1px solid #CCC; border-top:1px solid #CCC; line-height:30px; font-size:14px; background-color:#f8f8f8;}
- .new_l h2 a{color:#820402}
- .new_l dd{ line-height:36px; padding-left:30px; background:url(${ctxStaticWeb}/images/icon.png) no-repeat 10px 18px;}
- .new_l dd span{ float:right}
- .new_l dd a{ color:#666; font-size:14px;}
- .line_01{ border-bottom:1px dashed #ddd; margin:20px 0px;}
- .new_r h2{ line-height:60px; border-top:4px solid #aa1324; font-size:24px; background-color:#820402; color:#FFF; text-align:center}
- .new_r li{ line-height:58px; border-bottom:solid 1px #e5e5e5; background-color:#fff}
- .new_r li a{ color:#666; line-height:57px; font-size:18px; padding-left:90px; background:url(${ctxStaticWeb}/images/icon_10.png) no-repeat 50px 0px;}
- .new_r li a:hover{color:#F00}
- .line_40{ line-height:50px; border-bottom:1px dashed #ddd; }
- </style>
- <script src="${pageContext.request.contextPath}/static/web/js/jquery-2.1.4.js"></script>
- </head>
- <body>
- <%@ include file="/webpage/modules/web/top.jsp"%>
- <div class="second_banner"><div class="c second_banner_txt"><strong>服务指南</strong></div></div>
- <div class="c">
- <div class="new_l">
- <h2> 当前位置:<a href="${ctx}/home">首页</a> >服务指南 </h2>
- <c:if test="${fn:length(dealSearchList) ==0}">
- <dl>
- <dd class="line_40">
- <font style="color:#ff391b" size="2">搜索关键字:“${param.title}”,未查询到服务指南事项。</font>
- </dd>
- </dl>
- </c:if>
- <c:if test="${fn:length(dealSearchList) >0}">
- <dl>
- <dd class="line_40">
- <font style="color: #820402" size="3">搜索关键字:“${param.title}”,共找到如下相关服务指南事项:</font>
- </dd>
- </dl>
- <c:forEach items="${dealSearchList}" var="obj" >
- <dl>
- <dd class="line_40"><a href="${ctxF}/detail?id=${obj.id}">${obj.title}</a><span>[ ${fns:formatDateTime(obj.updateDate)} ]</span></dd>
- </dl>
- </c:forEach>
- </c:if>
- </div>
- </div>
- <div class="clear" ></div>
- <%@ include file="/webpage/modules/web/footer.jsp"%>
- </body>
- </html>
|