12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <!DOCTYPE html>
- <html>
- <head>
- <base href="<%=basePath%>">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>慢步时尚广场</title>
- <link href="css/style.css" rel="stylesheet" type="text/css">
- <style type="text/css">
- .focusBox {
- position: absolute;
- top: 490px;
- width: 120px;
- left: 50%;
- margin-left: -60px;
- list-style: none;
- }
- .focusBox li {
- float: left;
- margin-right: 10px;
- width: 15px;
- height: 15px;
- border-radius: gray;
- cursor: pointer;
- }
- .focusBox li.cur {
- background: #f60;
- opacity: 0.6;
- filter: alpha(opacity=60);
- }
- </style>
- <script type="text/javascript" src="js/pictureSlide.js"></script>
- </head>
- <body>
- <!-- logo和banner start -->
- <table width="1200" border="0" cellspacing="0" cellpadding="0" align="center">
- <tr>
- <td height="95"><a href="index"><images/logo.jpg></a></td>
- <td align="right"><img src="images/banner.jpg"></td>
- </tr>
- </table>
- <!-- logo和banner end -->
- <!-- 菜单导航 start -->
- <table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#ce2626">
- <tr>
- <td width="200"> </td>
- <td width="80" align="center" class="nav_active"><a href="<%=basePath%>/index" class="while">首页</a></td>
- <td width="100" align="center"><a href="<%=basePath%>/showNew" class="white">最新上架</a></td>
- <td width="100" align="center">品牌活动</td>
- <td width="100" align="center">原厂直供</td>
- <td width="80" align="center">团购</td>
- <td width="100" align="center">限时抢购</td>
- <td width="100" align="center">促销打折</td>
- <td width="200" align="center"> </td>
- </tr>
- </table></td>
- </tr>
- </table>
- <!-- 菜单导航 end -->
- <!-- 中间部分 start -->
- <table width="1200" border="0" align="center" cellpadding="0" cellspacing="0" class="padding-top">
- <tr>
- <td width="220" valign="top"> <!-- 购物分类 start-->
- <table width="100%" border="0" cellspacing="1" cellpadding="0" class="table1" bgcolor="#e5e4e1">
- <c:forEach items="${goodsType}" var="goodt">
- <tr>
- <th><a href="<%=basePath%>/shoppingShow?goodTypeId=${goodt.id}">${goodt.typename}</a></th>
- </tr>
- <c:forEach items="${goodt.subType}" var="st">
- <tr>
- <%-<th><a href="<%basePath%>/shoppingShow?goodTypeId=${st.id}">$st.typename</a></th>%->
- <td><span class="red_dot"></span>
- <a href="<%=basePath%>/shoppingShow?goodTypeId=${st.id}">${st.typename}</a>
- <img src="images/arrow_r.jpg" align="right">
- </td>
- </tr>
- </c:forEach>
- </c:forEach>
- </table>
- <!-- 购物分类end --></td>
- <td width="716" valign="top"><table width="100%" border="0" cellspacing="0" cellpading="0">
- <tr>
- <td align="center">
- <table width="100%" border="0" cellspacing="0" cell></table>
- </td>
- </tr>
- </table>
- </td>
|