index.jsp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <%@ page language="java" contentType="text/html; UTF-8"
  2. pageEncoding="UTF-8" %>
  3. <%@include file="/front/common/common.jsp" %>
  4. <style>
  5. .banners{
  6. padding: 130px 0px;width: 1240px;margin:0 auto;
  7. }
  8. .banners_li {
  9. width: 33.33%;
  10. text-align: left;
  11. }
  12. .banners ul li {
  13. box-sizing: border-box;
  14. float: left;
  15. }
  16. .banners_li a {
  17. display: block;
  18. text-align: center;
  19. border-right: 1px solid #E1E1E1;
  20. }
  21. a{
  22. text-decoration: none;
  23. color: #000000;
  24. }
  25. .banners_li a div {
  26. display: inline-block;
  27. cursor: pointer;
  28. zoom: 1;
  29. }
  30. .banners_li a h3 {
  31. font-size: 20px;
  32. color: #333333;
  33. line-height: 28px;
  34. text-align: left;
  35. cursor: pointer;
  36. }
  37. .banners_li a p {
  38. font-size: 14px;
  39. color: #939393;
  40. line-height: 28px;
  41. text-align: left;
  42. cursor: pointer;
  43. }
  44. .banners_li_last a {
  45. border-right: none;
  46. }
  47. </style>
  48. <body>
  49. <%@include file="/front/common/navigation.jsp" %>
  50. <%@include file="/front/common/indexSlide.jsp" %>
  51. <div class="banners" >
  52. <ul>
  53. <li class="banners_li">
  54. <a href="<%=path%>/service">
  55. <div>
  56. <h3>解决方案</h3>
  57. <p>别墅装修,校区装修</p>
  58. </div>
  59. </a>
  60. </li>
  61. <li class="banners_li">
  62. <a href="<%=path%>/article">
  63. <div>
  64. <h3>新闻动态</h3>
  65. <p>公司动态,行业新闻</p>
  66. </div>
  67. </a>
  68. </li>
  69. <li class="banners_li banners_li_last">
  70. <a href="<%=path%>/about">
  71. <div>
  72. <h3>关于我们</h3>
  73. <p>了解我们,了解华宇</p>
  74. </div>
  75. </a>
  76. </li>
  77. </ul>
  78. </div>
  79. <%@include file="/front/common/foot.jsp" %>