欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

某商城登录注册-购物车订单支付-个人中心所有页面

程序员文章站 2022-03-13 17:16:30
...

某商城登录注册-购物车订单支付-个人中心所有页面

核心样式 base.css eduwork.css layout.css 链接 核心css

登录注册

  1. @charset "utf-8";
  2. .login {
  3. height: 100vh;
  4. background: transparent url("../img/19.jpg") no-repeat;
  5. background-size: 100% 100%;
  6. }
  7. .register {
  8. height: 100vh;
  9. background: transparent url("../img/20.jpg") no-repeat;
  10. background-size: 100% 100%;
  11. }
  12. .login > form, .register > form {
  13. position: fixed;
  14. top: 15%;
  15. right: 10%;
  16. }
  17. .borderGold {
  18. border: 1px solid #f6c090;
  19. }
  20. .bgfef4e5 {
  21. background-color: #fef4e5;
  22. }
  • 登录 login.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - login</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/login.css">
  10. <link rel="icon" href="./img/icon.png"/>
  11. </head>
  12. <body>
  13. <section class="container-full login">
  14. <form action="" class="bgWhite borderSmColor">
  15. <div class="p-2 border-bottom"><a href="" title="" class="d-block text-center"><img src="./img/logo.png" alt="" class="w-30"></a></div>
  16. <div class="p-4 d-flex flex-column">
  17. <div class="borderGold bgfef4e5 color777 p-2 w-100 border-box">公共场所不建议自动登录,以防账号丢失</div>
  18. <input type="text" name="" id="" class="w-100 my-2 fontSize20 p-1 border-box" placeholder="昵称/手机/邮箱">
  19. <input type="password" name="" id="" class="w-100 my-2 fontSize20 p-1 border-box" placeholder="密码">
  20. <input type="submit" value="提交" class="bgRed textWhite border border-dark mt-2 py-1 w-100 fontSize20">
  21. <p class="text-right">
  22. <a href="" title="" class="mr-4">免费注册</a>
  23. <a href="" title="">忘记密码</a>
  24. </p>
  25. </div>
  26. </form>
  27. </section>
  28. </body>
  29. </html>
  • 注册 register.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - register</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/login.css">
  10. <link rel="icon" href="./img/icon.png"/>
  11. </head>
  12. <body>
  13. <section class="container-full register">
  14. <form action="" class="bgWhite borderSmColor py-4 border w-30">
  15. <div class="border-bottom"><a href="" title="" class="d-block text-center"><img src="./img/logo.png" alt="" class="w-30"></a></div>
  16. <div class="m-4 px-4 d-flex flex-column">
  17. <div class="w-100 text-center">用户注册</div>
  18. <input type="email" name="" id="" class="w-100 my-2 fontSize20 p-1 border-box" placeholder="请输入邮箱">
  19. <input type="password" name="" id="" class="w-100 my-2 fontSize20 p-1 border-box" placeholder="请输入密码">
  20. <input type="password" name="" id="" class="w-100 my-2 fontSize20 p-1 border-box" placeholder="请确认密码">
  21. <div class="d-flex">
  22. <input type="text" name="" id="" class="w-60 my-2 fontSize20 p-1 border-box" placeholder="验证码">
  23. <div class="w-30 d-flex align-items-center ml-2"><img src="./img/code.jpg" alt="" ></div>
  24. </div>
  25. <input type="submit" value="注册" class="bgRed textWhite border border-dark mt-2 py-1 w-100 fontSize20">
  26. <span class="fontSize12 my-2">完成此注册,即表明您同意了我们的<a href="" title="" class="fontSize12 textRed"> <使用条款和隐私策略></a></span>
  27. <a href="" title="" class="text-right fontSize12">已有账号登录</a>
  28. </div>
  29. </form>
  30. </section>
  31. </body>
  32. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

某商城登录注册-购物车订单支付-个人中心所有页面

购物车订单支付

  • 购物车 cart.html
  1. @charset "utf-8";
  2. .w-120px {
  3. width: 120px;
  4. }
  5. .h-40px {
  6. height: 40px;
  7. }
  8. .bgE9 {
  9. background: #e9e9e9;
  10. }
  11. .bg8e {
  12. background: #8e8e8e;
  13. }
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - cart</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/cart.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--banner-->
  55. <section class="banner container-full overflow-hidden">
  56. <div class="d-flex w-300">
  57. <a href="" title="" class="d-block w-100"><img src="./img/001.jpeg" alt="" class="w-100"/></a>
  58. <a href="" title="" class="d-block w-100"><img src="./img/2.jpeg" alt="" class="w-100"/></a>
  59. <a href="" title="" class="d-block w-100"><img src="./img/3.jpeg" alt="" class="w-100"/></a>
  60. </div>
  61. </section>
  62. <!--侧栏-->
  63. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  64. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  65. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  66. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  67. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  68. </aside>
  69. <!--购物车-->
  70. <section class="container d-flex justify-content-between align-items-center">
  71. <div class="fontSize16">购物车</div>
  72. <div><img src="./img/cartTop01.png" alt=""></div>
  73. <div class="fontSize16">继续购物</div>
  74. </section>
  75. <section class="container">
  76. <section class="d-flex justify-content-between bgDb py-2">
  77. <div class="flex-basis40 text-center fontSize14">商品</div>
  78. <div class="flex-basis10 text-center fontSize14">单价</div>
  79. <div class="flex-basis20 text-center fontSize14">数量</div>
  80. <div class="flex-basis10 text-center fontSize14">小计</div>
  81. <div class="flex-basis10 text-center fontSize14">操作</div>
  82. </section>
  83. <section class="d-flex justify-content-between align-items-center my-4 pb-4 border-bottom-dashed borderSmColor">
  84. <div class="flex-basis40 d-flex align-items-center">
  85. <div class="px-2"><input type="checkbox" name="" id="" class="d-inline-block w-20px h-20px"></div>
  86. <div class="px-2"><img src="./img/cart01.jpg" alt="" class="w-120px"></div>
  87. <div>
  88. <h3 class="mb-3"><a href="" title="">创意现代简约干花花瓶摆件</a></h3>
  89. <div class="mb-1 color777">图书分类:</div>
  90. <div class="color777">细说系列</div>
  91. </div>
  92. </div>
  93. <div class="flex-basis10 text-center">¥20.00</div>
  94. <div class="flex-basis20 text-center">数量</div>
  95. <div class="flex-basis10 text-center">小计</div>
  96. <div class="flex-basis10 text-center">操作</div>
  97. </section>
  98. <section class="d-flex justify-content-between align-items-center my-4 pb-4">
  99. <div class="flex-basis40 d-flex align-items-center">
  100. <div class="px-2"><input type="checkbox" name="" id="" class="d-inline-block w-20px h-20px"></div>
  101. <div class="px-2"><img src="./img/cart01.jpg" alt="" class="w-120px"></div>
  102. <div>
  103. <h3 class="mb-3"><a href="" title="">创意现代简约干花花瓶摆件</a></h3>
  104. <div class="mb-1 color777">图书分类:</div>
  105. <div class="color777">细说系列</div>
  106. </div>
  107. </div>
  108. <div class="flex-basis10 text-center">¥20.00</div>
  109. <div class="flex-basis20 text-center">数量</div>
  110. <div class="flex-basis10 text-center">小计</div>
  111. <div class="flex-basis10 text-center">操作</div>
  112. </section>
  113. <section class="d-flex justify-content-between align-items-center bgE9">
  114. <div class="d-flex ml-2 align-items-center h-100">
  115. <input type="checkbox" name="" id="" class="d-inline-block w-20px h-20px">
  116. <a href="javascript:;" title="" class="mx-3 fontSize12">全选</a>
  117. <a href="javascript:;" title="" class="fontSize12">删除</a>
  118. </div>
  119. <div class="d-flex justify-content-end align-items-center h-100 w-30">
  120. <div><span class="textRed">0</span>件商品</div>
  121. <div class="mx-4 px-4">合计: <span class="textRed">¥0.00</span></div>
  122. <a href="" title="" class="w-40 py-2 bg8e text-center textWhite">结算</a>
  123. </div>
  124. </section>
  125. </section>
  126. <!--底部-->
  127. <footer class="container-full border-top mt-4">
  128. <!--上部分-->
  129. <section class="container d-flex justify-content-around">
  130. <div class="d-flex align-items-center">
  131. <img src="./img/foot1.png" alt="" class="w-53px">
  132. <span class="ml-2 fontSize14">7天无理由退货</span>
  133. </div>
  134. <div class="border-right"></div>
  135. <div class="d-flex align-items-center">
  136. <img src="./img/foot2.png" alt="" class="w-53px">
  137. <span class="ml-2 fontSize14">15天免费换货</span>
  138. </div>
  139. <div class="border-right"></div>
  140. <div class="d-flex align-items-center">
  141. <img src="./img/foot3.png" alt="" class="w-53px">
  142. <span class="ml-2 fontSize14">满599包邮</span>
  143. </div>
  144. <div class="border-right"></div>
  145. <div class="d-flex align-items-center">
  146. <img src="./img/foot4.png" alt="" class="w-53px">
  147. <span class="ml-2 fontSize14">手机特色服务</span>
  148. </div>
  149. </section>
  150. <!--下部分-->
  151. <section class="p-4 bgBlack text-center textWhite">
  152. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  153. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  154. </section>
  155. </footer>
  156. </body>
  157. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

  • 订单 order.html
  1. @charset "utf-8";
  2. .bgE9 {
  3. background-color: #e9e9e9;
  4. }
  5. .flex-basis48 {
  6. flex-basis: 48%;
  7. }
  8. .w-87px {
  9. width: 87px;
  10. }
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - order</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/order.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--banner-->
  55. <section class="banner container-full overflow-hidden">
  56. <div class="d-flex w-300">
  57. <a href="" title="" class="d-block w-100"><img src="./img/001.jpeg" alt="" class="w-100"/></a>
  58. <a href="" title="" class="d-block w-100"><img src="./img/2.jpeg" alt="" class="w-100"/></a>
  59. <a href="" title="" class="d-block w-100"><img src="./img/3.jpeg" alt="" class="w-100"/></a>
  60. </div>
  61. </section>
  62. <!--侧栏-->
  63. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  64. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  65. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  66. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  67. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  68. </aside>
  69. <!--订单确认-->
  70. <section class="container d-flex justify-content-between align-items-center p-2">
  71. <div class="fontSize16">订单确认</div>
  72. <div><img src="./img/cartTop02.png" alt=""></div>
  73. <div></div>
  74. </section>
  75. <section class="container d-flex justify-content-between">
  76. <section class="flex-basis60 pl-2">
  77. <section class="d-flex justify-content-between py-2 border-bottom">
  78. <div class="fontSize16">收件信息</div>
  79. <div>新增地址</div>
  80. </section>
  81. <section class="d-flex flex-wrap justify-content-between">
  82. <div class="border2 border-dark flex-basis48 mt-4 cursor">
  83. <div class="border-bottom d-flex justify-content-between align-items-center">
  84. <div class="d-flex px-2">
  85. <p class="mr-4">张三</p>
  86. <p>[默认地址]</p>
  87. </div>
  88. <div class="d-flex px-2">
  89. <a href="javascript:;" title="" class="fontSize12">删除</a>
  90. <span class="mx-2">|</span>
  91. <a href="javascript:;" title="" class="fontSize12">编辑</a>
  92. </div>
  93. </div>
  94. <div class="p-2 bgE9">
  95. <p>河北省 唐山市 路北区 大学生公寓村</p>
  96. <p>15732570937</p>
  97. </div>
  98. </div>
  99. <div class="border2 flex-basis48 mt-4 cursor">
  100. <div class="border-bottom d-flex justify-content-between align-items-center">
  101. <div class="d-flex px-2">
  102. <p class="mr-4">张三</p>
  103. <p>[默认地址]</p>
  104. </div>
  105. <div class="d-flex px-2">
  106. <a href="javascript:;" title="" class="fontSize12">删除</a>
  107. <span class="mx-2">|</span>
  108. <a href="javascript:;" title="" class="fontSize12">编辑</a>
  109. </div>
  110. </div>
  111. <div class="p-2 bgE9">
  112. <p>河北省 唐山市 路北区 大学生公寓村</p>
  113. <p>15732570937</p>
  114. </div>
  115. </div>
  116. <div class="border2 flex-basis48 mt-4 cursor">
  117. <div class="border-bottom d-flex justify-content-between align-items-center">
  118. <div class="d-flex px-2">
  119. <p class="mr-4">张三</p>
  120. <p>[默认地址]</p>
  121. </div>
  122. <div class="d-flex px-2">
  123. <a href="javascript:;" title="" class="fontSize12">删除</a>
  124. <span class="mx-2">|</span>
  125. <a href="javascript:;" title="" class="fontSize12">编辑</a>
  126. </div>
  127. </div>
  128. <div class="p-2 bgE9">
  129. <p>河北省 唐山市 路北区 大学生公寓村</p>
  130. <p>15732570937</p>
  131. </div>
  132. </div>
  133. </section>
  134. <section class="mt-4">
  135. <div class="border-bottom py-2 mb-4 fontSize16">支付方式</div>
  136. <div class="d-flex justify-content-between">
  137. <img src="./img/way01.jpg" alt="" class="border2 flex-basis15 cursor border-dark">
  138. <img src="./img/way02.jpg" alt="" class="border2 cursor flex-basis15">
  139. <img src="./img/way03.jpg" alt="" class="border2 cursor flex-basis15">
  140. <img src="./img/way04.jpg" alt="" class="border2 cursor flex-basis15">
  141. </div>
  142. </section>
  143. <section class="mt-4">
  144. <div class="border-bottom py-2 mb-4 fontSize16">选择快递</div>
  145. <div class="d-flex justify-content-between">
  146. <div class="border2 flex-basis15 border-dark text-center px-3 py-2 cursor">顺丰快递</div>
  147. <div class="border2 flex-basis15 text-center px-3 py-2 cursor">百世汇通</div>
  148. <div class="border2 flex-basis15 text-center px-3 py-2 cursor">圆通快递</div>
  149. <div class="border2 flex-basis15 text-center px-3 py-2 cursor">中通快递</div>
  150. </div>
  151. </section>
  152. </section>
  153. <section class="flex-basis35">
  154. <div class="bgColor">
  155. <div class="d-flex justify-content-between p-2">
  156. <div class="fontSize16">订单内容</div>
  157. <a href="" title="" class="fontSize12">返回购物车</a>
  158. </div>
  159. <div class="border-top mx-2 p-2 d-flex justify-content-between align-items-center">
  160. <div class="d-flex align-items-center">
  161. <img src="./img/order01.jpg" alt="" class="w-87px">
  162. <div class="ml-2">
  163. <p>创意现代简约干花花瓶摆件</p>
  164. <p class="color777">颜色分类:烟灰色玻璃瓶</p>
  165. <p class="color777">数量:1</p>
  166. </div>
  167. </div>
  168. <div>¥158.00</div>
  169. </div>
  170. <div class="border-top mx-2 p-2 d-flex justify-content-between align-items-center">
  171. <div class="d-flex align-items-center">
  172. <img src="./img/order01.jpg" alt="" class="w-87px">
  173. <div class="ml-2">
  174. <p>创意现代简约干花花瓶摆件</p>
  175. <p class="color777">颜色分类:烟灰色玻璃瓶</p>
  176. <p class="color777">数量:1</p>
  177. </div>
  178. </div>
  179. <div>¥158.00</div>
  180. </div>
  181. </div>
  182. <div class="my-3">
  183. <div class="d-flex justify-content-between my-2">
  184. <span>商品价格:</span>
  185. <span>¥158.00</span>
  186. </div>
  187. <div class="d-flex justify-content-between my-2">
  188. <span>优惠价格:</span>
  189. <span>¥0.00</span>
  190. </div>
  191. <div class="d-flex justify-content-between my-2">
  192. <span>运费:</span>
  193. <span>免运费</span>
  194. </div>
  195. </div>
  196. <div class="border-top">
  197. <div class="d-flex justify-content-between fontSize16 py-3">
  198. <span>合计:</span>
  199. <span class="textRed">¥158.00</span>
  200. </div>
  201. <a href="javascript:;" title="" class="d-block text-center bgRed textWhite py-3">去支付</a>
  202. </div>
  203. </section>
  204. </section>
  205. <!--底部-->
  206. <footer class="container-full border-top mt-4">
  207. <!--上部分-->
  208. <section class="container d-flex justify-content-around">
  209. <div class="d-flex align-items-center">
  210. <img src="./img/foot1.png" alt="" class="w-53px">
  211. <span class="ml-2 fontSize14">7天无理由退货</span>
  212. </div>
  213. <div class="border-right"></div>
  214. <div class="d-flex align-items-center">
  215. <img src="./img/foot2.png" alt="" class="w-53px">
  216. <span class="ml-2 fontSize14">15天免费换货</span>
  217. </div>
  218. <div class="border-right"></div>
  219. <div class="d-flex align-items-center">
  220. <img src="./img/foot3.png" alt="" class="w-53px">
  221. <span class="ml-2 fontSize14">满599包邮</span>
  222. </div>
  223. <div class="border-right"></div>
  224. <div class="d-flex align-items-center">
  225. <img src="./img/foot4.png" alt="" class="w-53px">
  226. <span class="ml-2 fontSize14">手机特色服务</span>
  227. </div>
  228. </section>
  229. <!--下部分-->
  230. <section class="p-4 bgBlack text-center textWhite">
  231. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  232. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  233. </section>
  234. </footer>
  235. </body>
  236. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

  • 支付完成 pay.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - info</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/info.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--banner-->
  55. <section class="banner container-full overflow-hidden">
  56. <div class="d-flex w-300">
  57. <a href="" title="" class="d-block w-100"><img src="./img/001.jpeg" alt="" class="w-100"/></a>
  58. <a href="" title="" class="d-block w-100"><img src="./img/2.jpeg" alt="" class="w-100"/></a>
  59. <a href="" title="" class="d-block w-100"><img src="./img/3.jpeg" alt="" class="w-100"/></a>
  60. </div>
  61. </section>
  62. <!--侧栏-->
  63. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  64. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  65. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  66. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  67. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  68. </aside>
  69. <!--支付完成-->
  70. <section class="container d-flex justify-content-between align-items-center p-2">
  71. <div class="fontSize16">支付成功</div>
  72. <div><img src="./img/cartTop03.png" alt=""></div>
  73. <div></div>
  74. </section>
  75. <!--支付完成-->
  76. <section class="container my-4 py-4">
  77. <p class="fontSize16 textRed mb-4 text-center">支付成功 5s 跳转</p>
  78. <p class="text-center"><a href="" title="">返回订单页</a></p>
  79. </section>
  80. <!--猜你喜欢-->
  81. <section class="container-full bgfb py-4">
  82. <h3 class="text-center py-2">猜你喜欢</h3>
  83. <section class="d-flex justify-content-between">
  84. <a href="" title="" class="decoration-none text-center pl-4 d-flex align-items-center"><i class="iconfont icon-xiangzuojiantou fontSize50 opcity3"></i></a>
  85. <div class="container d-flex justify-content-around">
  86. <div>
  87. <img src="./img/like04.jpg" alt="">
  88. <p class="fontSize16">【细说】细说PHP</p>
  89. <p class="textRed fontSize16">¥158.00</p>
  90. </div>
  91. <div>
  92. <img src="./img/like04.jpg" alt="">
  93. <p class="fontSize16">【细说】细说PHP</p>
  94. <p class="textRed fontSize16">¥158.00</p>
  95. </div>
  96. <div>
  97. <img src="./img/like04.jpg" alt="">
  98. <p class="fontSize16">【细说】细说PHP</p>
  99. <p class="textRed fontSize16">¥158.00</p>
  100. </div>
  101. <div>
  102. <img src="./img/like04.jpg" alt="">
  103. <p class="fontSize16">【细说】细说PHP</p>
  104. <p class="textRed fontSize16">¥158.00</p>
  105. </div>
  106. </div>
  107. <a href="" title="" class="decoration-none text-center pr-4 d-flex align-items-center"><i class="iconfont icon-xiangyoujiantou fontSize50 opcity3"></i></a>
  108. </section>
  109. </section>
  110. <!--底部-->
  111. <footer class="container-full border-top mt-4">
  112. <!--上部分-->
  113. <section class="container d-flex justify-content-around">
  114. <div class="d-flex align-items-center">
  115. <img src="./img/foot1.png" alt="" class="w-53px">
  116. <span class="ml-2 fontSize14">7天无理由退货</span>
  117. </div>
  118. <div class="border-right"></div>
  119. <div class="d-flex align-items-center">
  120. <img src="./img/foot2.png" alt="" class="w-53px">
  121. <span class="ml-2 fontSize14">15天免费换货</span>
  122. </div>
  123. <div class="border-right"></div>
  124. <div class="d-flex align-items-center">
  125. <img src="./img/foot3.png" alt="" class="w-53px">
  126. <span class="ml-2 fontSize14">满599包邮</span>
  127. </div>
  128. <div class="border-right"></div>
  129. <div class="d-flex align-items-center">
  130. <img src="./img/foot4.png" alt="" class="w-53px">
  131. <span class="ml-2 fontSize14">手机特色服务</span>
  132. </div>
  133. </section>
  134. <!--下部分-->
  135. <section class="p-4 bgBlack text-center textWhite">
  136. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  137. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  138. </section>
  139. </footer>
  140. </body>
  141. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

个人中心

  1. @charset "utf-8";
  2. .visibileHide {
  3. visibility: hidden;
  4. }
  5. .visibileShow:hover .visibileHide {
  6. visibility: visible;
  7. }
  8. .border-radius-circle {
  9. border-radius: 50%;
  10. }
  11. .borderBlock {
  12. border-color: #ababab;
  13. }
  14. .bg8e {
  15. background-color: #8e8e8e;
  16. }
  • 个人中心 - 我的中心 persionCenter.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - personalCenter</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/personal.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--侧栏-->
  55. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  56. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  57. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  58. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  59. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  60. </aside>
  61. <!--面包屑-->
  62. <section class="container-full mt-4 py-1 border-top border-bottom">
  63. <div class="container">
  64. <a href="" title="" class="fontSize12 color777">首页</a>
  65. <span class="mx-2">/</span>
  66. <span class="fontSize12">个人中心</span>
  67. </div>
  68. </section>
  69. <!--个人中心-->
  70. <section class="container-full bgColor">
  71. <section class="container d-flex justify-content-between">
  72. <section class="border bgWhite flex-basis20 my-2 mr-1">
  73. <div class="border-bottom border-dark">
  74. <div class="w-45 m-auto p-2"><img src="./img/tx.png" alt=""></div>
  75. <div class="text-center mb-3">
  76. <span class="fontSize14">[<a href="" title="">羊羊羊</a>]</span>
  77. <span class="fontSize14 ml-1">[<a href="" title="">退出登录</a>]</span>
  78. </div>
  79. </div>
  80. <ul class="d-flex flex-column align-items-center mb-2">
  81. <li class="my-2 fontSize16 bold">我的交易</li>
  82. <li class="my-2"><a href="" title="" class="color777">我的购物车</a></li>
  83. <li class="my-2"><a href="" title="" class="color777">我的订单</a></li>
  84. <li class="my-2"><a href="" title="" class="color777">评价晒单</a></li>
  85. <li class="my-2 fontSize16 bold">个人中心</li>
  86. <li class="my-2"><a href="" title="" class="textRed">我的中心</a></li>
  87. <li class="my-2"><a href="" title="" class="color777">地址管理</a></li>
  88. <li class="my-2 fontSize16 bold">账户管理</li>
  89. <li class="my-2"><a href="" title="" class="color777">个人信息</a></li>
  90. <li class="my-2"><a href="" title="" class="color777">密码修改</a></li>
  91. </ul>
  92. </section>
  93. <section class="border bgWhite flex-basis80 my-2 ml-1 p-4">
  94. <div class="d-flex justify-content-between align-items-center border-bottom mx-4 pb-4">
  95. <div class="d-flex">
  96. <div><img src="./img/tx.png" alt="" class="border border-radius-circle"></div>
  97. <div class="d-flex flex-column justify-content-center p-3">
  98. <div class="fontSize14 mb-2">六六六</div>
  99. <div><a href="" title="" class="fontSize12 textRed">修改个人信息></a></div>
  100. </div>
  101. </div>
  102. <div class="color777">绑定邮箱:12****4@**.com</div>
  103. </div>
  104. <div class="d-flex flex-wrap m-4 p-4">
  105. <div class="d-flex align-items-center w-50 mb-4 pb-4">
  106. <a href="" title=""><img src="./img/gxin1.jpg" alt=""></a>
  107. <div class="d-flex flex-column justify-content-center px-2">
  108. <div class="fontSize14 color777">待支付的订单:<span class="textRed">0</span></div>
  109. <div class="mt-2"><a href="" title="" class="fontSize12 color777">查看待支付订单></a></div>
  110. </div>
  111. </div>
  112. <div class="d-flex align-items-center w-50 mb-4 pb-4">
  113. <a href="" title=""><img src="./img/gxin2.jpg" alt=""></a>
  114. <div class="d-flex flex-column justify-content-center px-2">
  115. <div class="fontSize14 color777">待收货的订单:<span class="textRed">0</span></div>
  116. <div class="mt-2"><a href="" title="" class="fontSize12 color777">查看待支付订单></a></div>
  117. </div>
  118. </div>
  119. <div class="d-flex align-items-center w-50 mb-4 pb-4">
  120. <a href="" title=""><img src="./img/gxin3.jpg" alt=""></a>
  121. <div class="d-flex flex-column justify-content-center px-2">
  122. <div class="fontSize14 color777">待评价的订单:<span class="textRed">0</span></div>
  123. <div class="mt-2"><a href="" title="" class="fontSize12 color777">查看待支付订单></a></div>
  124. </div>
  125. </div>
  126. <div class="d-flex align-items-center w-50 mb-4 pb-4">
  127. <a href="" title=""><img src="./img/gxin4.jpg" alt=""></a>
  128. <div class="d-flex flex-column justify-content-center px-2">
  129. <div class="fontSize14 color777">喜欢的商品:<span class="textRed">0</span></div>
  130. <div class="mt-2"><a href="" title="" class="fontSize12 color777">查看待支付订单></a></div>
  131. </div>
  132. </div>
  133. </div>
  134. </section>
  135. </section>
  136. </section>
  137. <!--底部-->
  138. <footer class="container-full border-top mt-4">
  139. <!--上部分-->
  140. <section class="container d-flex justify-content-around">
  141. <div class="d-flex align-items-center">
  142. <img src="./img/foot1.png" alt="" class="w-53px">
  143. <span class="ml-2 fontSize14">7天无理由退货</span>
  144. </div>
  145. <div class="border-right"></div>
  146. <div class="d-flex align-items-center">
  147. <img src="./img/foot2.png" alt="" class="w-53px">
  148. <span class="ml-2 fontSize14">15天免费换货</span>
  149. </div>
  150. <div class="border-right"></div>
  151. <div class="d-flex align-items-center">
  152. <img src="./img/foot3.png" alt="" class="w-53px">
  153. <span class="ml-2 fontSize14">满599包邮</span>
  154. </div>
  155. <div class="border-right"></div>
  156. <div class="d-flex align-items-center">
  157. <img src="./img/foot4.png" alt="" class="w-53px">
  158. <span class="ml-2 fontSize14">手机特色服务</span>
  159. </div>
  160. </section>
  161. <!--下部分-->
  162. <section class="p-4 bgBlack text-center textWhite">
  163. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  164. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  165. </section>
  166. </footer>
  167. </body>
  168. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

  • 个人中心 - 个人信息 personalInfo.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - personalInfo</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/personal.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--侧栏-->
  55. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  56. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  57. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  58. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  59. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  60. </aside>
  61. <!--面包屑-->
  62. <section class="container-full mt-4 py-1 border-top border-bottom">
  63. <div class="container">
  64. <a href="" title="" class="fontSize12 color777">首页</a>
  65. <span class="mx-2">/</span>
  66. <span class="fontSize12">个人中心</span>
  67. </div>
  68. </section>
  69. <!--个人中心-->
  70. <section class="container-full bgColor">
  71. <section class="container d-flex justify-content-between">
  72. <section class="border bgWhite flex-basis20 my-2 mr-1">
  73. <div class="border-bottom border-dark">
  74. <div class="w-45 m-auto p-2"><img src="./img/tx.png" alt=""></div>
  75. <div class="text-center mb-3">
  76. <span class="fontSize14">[<a href="" title="">羊羊羊</a>]</span>
  77. <span class="fontSize14 ml-1">[<a href="" title="">退出登录</a>]</span>
  78. </div>
  79. </div>
  80. <ul class="d-flex flex-column align-items-center mb-2">
  81. <li class="my-2 fontSize16 bold">我的交易</li>
  82. <li class="my-2"><a href="" title="" class="color777">我的购物车</a></li>
  83. <li class="my-2"><a href="" title="" class="color777">我的订单</a></li>
  84. <li class="my-2"><a href="" title="" class="color777">评价晒单</a></li>
  85. <li class="my-2 fontSize16 bold">个人中心</li>
  86. <li class="my-2"><a href="" title="" class="color777">我的中心</a></li>
  87. <li class="my-2"><a href="" title="" class="color777">地址管理</a></li>
  88. <li class="my-2 fontSize16 bold">账户管理</li>
  89. <li class="my-2"><a href="" title="" class="textRed">个人信息</a></li>
  90. <li class="my-2"><a href="" title="" class="color777">密码修改</a></li>
  91. </ul>
  92. </section>
  93. <section class="border bgWhite flex-basis80 my-2 ml-1 p-4">
  94. <div class="mx-4 py-4 border-bottom"><h3 class="fontSize20">个人信息</h3></div>
  95. <div class="my-4 d-flex justify-content-between">
  96. <div class="flex-basis20 d-flex flex-column justify-content-center align-items-center p-4">
  97. <img src="./img/tx.png" alt="" class="w-50 my-1">
  98. <a href="" title="" class="textRed">修改图像</a>
  99. </div>
  100. <div class="flex-basis80 p-4">
  101. <div class="border-bottom py-3 d-flex justify-content-between">
  102. <div class="fontSize16">基础资料</div>
  103. <div><a href="" title="" class="textRed">编辑</a></div>
  104. </div>
  105. <div class="border-bottom py-3 color777">姓名:六六六</div>
  106. <div class="border-bottom py-3 color777">生日:2000-00-00</div>
  107. <div class="border-bottom py-3 color777">性别:女</div>
  108. <div class="border-bottom py-3 color777">地区:中国</div>
  109. </div>
  110. </div>
  111. </section>
  112. </section>
  113. </section>
  114. <!--底部-->
  115. <footer class="container-full border-top mt-4">
  116. <!--上部分-->
  117. <section class="container d-flex justify-content-around">
  118. <div class="d-flex align-items-center">
  119. <img src="./img/foot1.png" alt="" class="w-53px">
  120. <span class="ml-2 fontSize14">7天无理由退货</span>
  121. </div>
  122. <div class="border-right"></div>
  123. <div class="d-flex align-items-center">
  124. <img src="./img/foot2.png" alt="" class="w-53px">
  125. <span class="ml-2 fontSize14">15天免费换货</span>
  126. </div>
  127. <div class="border-right"></div>
  128. <div class="d-flex align-items-center">
  129. <img src="./img/foot3.png" alt="" class="w-53px">
  130. <span class="ml-2 fontSize14">满599包邮</span>
  131. </div>
  132. <div class="border-right"></div>
  133. <div class="d-flex align-items-center">
  134. <img src="./img/foot4.png" alt="" class="w-53px">
  135. <span class="ml-2 fontSize14">手机特色服务</span>
  136. </div>
  137. </section>
  138. <!--下部分-->
  139. <section class="p-4 bgBlack text-center textWhite">
  140. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  141. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  142. </section>
  143. </footer>
  144. </body>
  145. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

  • 个人中心 - 地址管理 personalAddress.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - personalInfo</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/personal.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--侧栏-->
  55. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  56. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  57. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  58. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  59. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  60. </aside>
  61. <!--面包屑-->
  62. <section class="container-full mt-4 py-1 border-top border-bottom">
  63. <div class="container">
  64. <a href="" title="" class="fontSize12 color777">首页</a>
  65. <span class="mx-2">/</span>
  66. <span class="fontSize12">个人中心</span>
  67. </div>
  68. </section>
  69. <!--个人中心-->
  70. <section class="container-full bgColor">
  71. <section class="container d-flex justify-content-between">
  72. <section class="border bgWhite flex-basis20 my-2 mr-1">
  73. <div class="border-bottom border-dark">
  74. <div class="w-45 m-auto p-2"><img src="./img/tx.png" alt=""></div>
  75. <div class="text-center mb-3">
  76. <span class="fontSize14">[<a href="" title="">羊羊羊</a>]</span>
  77. <span class="fontSize14 ml-1">[<a href="" title="">退出登录</a>]</span>
  78. </div>
  79. </div>
  80. <ul class="d-flex flex-column align-items-center mb-2">
  81. <li class="my-2 fontSize16 bold">我的交易</li>
  82. <li class="my-2"><a href="" title="" class="color777">我的购物车</a></li>
  83. <li class="my-2"><a href="" title="" class="color777">我的订单</a></li>
  84. <li class="my-2"><a href="" title="" class="color777">评价晒单</a></li>
  85. <li class="my-2 fontSize16 bold">个人中心</li>
  86. <li class="my-2"><a href="" title="" class="color777">我的中心</a></li>
  87. <li class="my-2"><a href="" title="" class="textRed">地址管理</a></li>
  88. <li class="my-2 fontSize16 bold">账户管理</li>
  89. <li class="my-2"><a href="" title="" class="color777">个人信息</a></li>
  90. <li class="my-2"><a href="" title="" class="color777">密码修改</a></li>
  91. </ul>
  92. </section>
  93. <section class="border bgWhite flex-basis80 my-2 ml-1 p-4">
  94. <div class="mx-4 py-4 border-bottom"><h3 class="fontSize20">收货地址</h3></div>
  95. <div class="mx-4 my-4 p-4 d-flex flex-wrap justify-content-between">
  96. <div class="mx-4 mb-4 p-4 border w-35 d-flex flex-column justify-content-center align-items-center">
  97. <a href="" title=""><img src="./img/jia.png" alt=""></a>
  98. <span class="color777 mt-1 fontSize14">添加新地址</span>
  99. </div>
  100. <div class="mx-4 mb-4 p-4 border w-35 visibileShow">
  101. <div class="fontSize16 mb-4">六六六</div>
  102. <div class="color777">1573****666</div>
  103. <div class="color777">河北省 唐山市 路北区</div>
  104. <div class="color777">唐山市大学生公寓村(063000)</div>
  105. <div class="mt-1 visibileHide">
  106. <a href="" title="" class="textRed fontSize12 mr-2">删除</a>
  107. <a href="" title="" class="textRed fontSize12">修改</a>
  108. </div>
  109. </div>
  110. <div class="mx-4 mb-4 p-4 border w-35 visibileShow">
  111. <div class="fontSize16 mb-4">六六六</div>
  112. <div class="color777">1573****666</div>
  113. <div class="color777">河北省 唐山市 路北区</div>
  114. <div class="color777">唐山市大学生公寓村(063000)</div>
  115. <div class="mt-1 visibileHide">
  116. <a href="" title="" class="textRed fontSize12 mr-2">删除</a>
  117. <a href="" title="" class="textRed fontSize12">修改</a>
  118. </div>
  119. </div>
  120. </div>
  121. </section>
  122. </section>
  123. </section>
  124. <!--底部-->
  125. <footer class="container-full border-top mt-4">
  126. <!--上部分-->
  127. <section class="container d-flex justify-content-around">
  128. <div class="d-flex align-items-center">
  129. <img src="./img/foot1.png" alt="" class="w-53px">
  130. <span class="ml-2 fontSize14">7天无理由退货</span>
  131. </div>
  132. <div class="border-right"></div>
  133. <div class="d-flex align-items-center">
  134. <img src="./img/foot2.png" alt="" class="w-53px">
  135. <span class="ml-2 fontSize14">15天免费换货</span>
  136. </div>
  137. <div class="border-right"></div>
  138. <div class="d-flex align-items-center">
  139. <img src="./img/foot3.png" alt="" class="w-53px">
  140. <span class="ml-2 fontSize14">满599包邮</span>
  141. </div>
  142. <div class="border-right"></div>
  143. <div class="d-flex align-items-center">
  144. <img src="./img/foot4.png" alt="" class="w-53px">
  145. <span class="ml-2 fontSize14">手机特色服务</span>
  146. </div>
  147. </section>
  148. <!--下部分-->
  149. <section class="p-4 bgBlack text-center textWhite">
  150. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  151. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  152. </section>
  153. </footer>
  154. </body>
  155. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

  • 个人中心 - 评价晒单 personalComment.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - personalComment</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/personal.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--侧栏-->
  55. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  56. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  57. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  58. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  59. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  60. </aside>
  61. <!--面包屑-->
  62. <section class="container-full mt-4 py-1 border-top border-bottom">
  63. <div class="container">
  64. <a href="" title="" class="fontSize12 color777">首页</a>
  65. <span class="mx-2">/</span>
  66. <span class="fontSize12">个人中心</span>
  67. </div>
  68. </section>
  69. <!--个人中心-->
  70. <section class="container-full bgColor">
  71. <section class="container d-flex justify-content-between">
  72. <section class="border bgWhite flex-basis20 my-2 mr-1">
  73. <div class="border-bottom border-dark">
  74. <div class="w-45 m-auto p-2"><img src="./img/tx.png" alt=""></div>
  75. <div class="text-center mb-3">
  76. <span class="fontSize14">[<a href="" title="">羊羊羊</a>]</span>
  77. <span class="fontSize14 ml-1">[<a href="" title="">退出登录</a>]</span>
  78. </div>
  79. </div>
  80. <ul class="d-flex flex-column align-items-center mb-2">
  81. <li class="my-2 fontSize16 bold">我的交易</li>
  82. <li class="my-2"><a href="" title="" class="color777">我的购物车</a></li>
  83. <li class="my-2"><a href="" title="" class="color777">我的订单</a></li>
  84. <li class="my-2"><a href="" title="" class="textRed">评价晒单</a></li>
  85. <li class="my-2 fontSize16 bold">个人中心</li>
  86. <li class="my-2"><a href="" title="" class="color777">我的中心</a></li>
  87. <li class="my-2"><a href="" title="" class="color777">地址管理</a></li>
  88. <li class="my-2 fontSize16 bold">账户管理</li>
  89. <li class="my-2"><a href="" title="" class="color777">个人信息</a></li>
  90. <li class="my-2"><a href="" title="" class="color777">密码修改</a></li>
  91. </ul>
  92. </section>
  93. <section class="border bgWhite flex-basis80 my-2 ml-1 p-4">
  94. <div class="mx-4 py-4"><h3 class="fontSize20">商品评价</h3></div>
  95. <div class="mx-4 my-4">
  96. <div>
  97. <a href="" title="" class="textRed">待评价商品</a>
  98. <span class="mx-4">|</span>
  99. <a href="" title="" class="color777">已评价商品</a>
  100. <span class="mx-4">|</span>
  101. <a href="" title="" class="color777">评价失效</a>
  102. </div>
  103. <div class="d-flex flex-wrap justify-content-between">
  104. <div class="d-flex flex-column align-items-center border-bottom m-4 p-4 pb-2">
  105. <img src="./img/nav3.jpg" alt="" class="w-80 p">
  106. <a href="" title="" class="my-1 fontSize12 textRed">细说PHP第四版</a>
  107. <div class="my-1">¥199.00</div>
  108. <div class="my-1">16000人评价</div>
  109. <a href="" title="" class="my-1 w-50 p-2 bgColor fontSize12 text-center decoration-none hoverWhite hoverBgRed">评价</a>
  110. </div>
  111. <div class="d-flex flex-column align-items-center border-bottom m-4 p-4 pb-2">
  112. <img src="./img/nav3.jpg" alt="" class="w-80 p">
  113. <a href="" title="" class="my-1 fontSize12 textRed">细说PHP第四版</a>
  114. <div class="my-1">¥199.00</div>
  115. <div class="my-1">16000人评价</div>
  116. <a href="" title="" class="my-1 w-50 p-2 bgColor fontSize12 text-center decoration-none hoverWhite hoverBgRed">评价</a>
  117. </div>
  118. <div class="d-flex flex-column align-items-center border-bottom m-4 p-4 pb-2">
  119. <img src="./img/nav3.jpg" alt="" class="w-80 p">
  120. <a href="" title="" class="my-1 fontSize12 textRed">细说PHP第四版</a>
  121. <div class="my-1">¥199.00</div>
  122. <div class="my-1">16000人评价</div>
  123. <a href="" title="" class="my-1 w-50 p-2 bgColor fontSize12 text-center decoration-none hoverWhite hoverBgRed">评价</a>
  124. </div>
  125. <div class="d-flex flex-column align-items-center border-bottom m-4 p-4 pb-2">
  126. <img src="./img/nav3.jpg" alt="" class="w-80 p">
  127. <a href="" title="" class="my-1 fontSize12 textRed">细说PHP第四版</a>
  128. <div class="my-1">¥199.00</div>
  129. <div class="my-1">16000人评价</div>
  130. <a href="" title="" class="my-1 w-50 p-2 bgColor fontSize12 text-center decoration-none hoverWhite hoverBgRed">评价</a>
  131. </div>
  132. </div>
  133. </div>
  134. </section>
  135. </section>
  136. </section>
  137. <!--底部-->
  138. <footer class="container-full border-top mt-4">
  139. <!--上部分-->
  140. <section class="container d-flex justify-content-around">
  141. <div class="d-flex align-items-center">
  142. <img src="./img/foot1.png" alt="" class="w-53px">
  143. <span class="ml-2 fontSize14">7天无理由退货</span>
  144. </div>
  145. <div class="border-right"></div>
  146. <div class="d-flex align-items-center">
  147. <img src="./img/foot2.png" alt="" class="w-53px">
  148. <span class="ml-2 fontSize14">15天免费换货</span>
  149. </div>
  150. <div class="border-right"></div>
  151. <div class="d-flex align-items-center">
  152. <img src="./img/foot3.png" alt="" class="w-53px">
  153. <span class="ml-2 fontSize14">满599包邮</span>
  154. </div>
  155. <div class="border-right"></div>
  156. <div class="d-flex align-items-center">
  157. <img src="./img/foot4.png" alt="" class="w-53px">
  158. <span class="ml-2 fontSize14">手机特色服务</span>
  159. </div>
  160. </section>
  161. <!--下部分-->
  162. <section class="p-4 bgBlack text-center textWhite">
  163. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  164. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  165. </section>
  166. </footer>
  167. </body>
  168. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

  • 个人中心 - 我的订单 personalOrder.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - personalOrder</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/personal.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--侧栏-->
  55. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  56. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  57. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  58. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  59. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  60. </aside>
  61. <!--面包屑-->
  62. <section class="container-full mt-4 py-1 border-top border-bottom">
  63. <div class="container">
  64. <a href="" title="" class="fontSize12 color777">首页</a>
  65. <span class="mx-2">/</span>
  66. <a href="" title="" class="fontSize12 color777">个人中心</a>
  67. <span class="mx-2">/</span>
  68. <span class="fontSize12">我的订单</span>
  69. </div>
  70. </section>
  71. <!--个人中心-->
  72. <section class="container-full bgColor">
  73. <section class="container d-flex justify-content-between">
  74. <section class="border bgWhite flex-basis20 my-2 mr-1">
  75. <div class="border-bottom border-dark">
  76. <div class="w-45 m-auto p-2"><img src="./img/tx.png" alt=""></div>
  77. <div class="text-center mb-3">
  78. <span class="fontSize14">[<a href="" title="">羊羊羊</a>]</span>
  79. <span class="fontSize14 ml-1">[<a href="" title="">退出登录</a>]</span>
  80. </div>
  81. </div>
  82. <ul class="d-flex flex-column align-items-center mb-2">
  83. <li class="my-2 fontSize16 bold">我的交易</li>
  84. <li class="my-2"><a href="" title="" class="color777">我的购物车</a></li>
  85. <li class="my-2"><a href="" title="" class="textRed">我的订单</a></li>
  86. <li class="my-2"><a href="" title="" class="color777">评价晒单</a></li>
  87. <li class="my-2 fontSize16 bold">个人中心</li>
  88. <li class="my-2"><a href="" title="" class="color777">我的中心</a></li>
  89. <li class="my-2"><a href="" title="" class="color777">地址管理</a></li>
  90. <li class="my-2 fontSize16 bold">账户管理</li>
  91. <li class="my-2"><a href="" title="" class="color777">个人信息</a></li>
  92. <li class="my-2"><a href="" title="" class="color777">密码修改</a></li>
  93. </ul>
  94. </section>
  95. <section class="border bgWhite flex-basis80 my-2 ml-1 p-4">
  96. <div class="mx-4 py-4 d-flex align-items-center">
  97. <h3 class="fontSize20 mr-4">我的订单</h3>
  98. <a href="" title="">请谨防钓鱼链接活诈骗电话,了解更多></a>
  99. </div>
  100. <div class="mx-4 my-4">
  101. <div class="pb-2">
  102. <a href="" title="" class="textRed">全部有效订单</a>
  103. <span class="mx-4">|</span>
  104. <a href="" title="" class="color777">待支付</a>
  105. <span class="mx-4">|</span>
  106. <a href="" title="" class="color777">待收货</a>
  107. </div>
  108. <div class="border borderBlock my-4">
  109. <div class="border-bottom borderSmColor p-4">
  110. <div class="d-flex align-items-center">
  111. <p class="fontSize16 color777 mr-4">已收货</p>
  112. <a class="fontSize12" href=""></a>
  113. </div>
  114. <div class="d-flex justify-content-between">
  115. <div class="color777">2021年12月1日 18:53 | 杨小黄 | 订单号:5160513358520018 | 在线支付</div>
  116. <div>订单金额: <span class="textRed fontSize16">99.99</span></div>
  117. </div>
  118. </div>
  119. <div class="d-flex justify-content-between justify-content-center p-4">
  120. <div class="w-80 d-flex">
  121. <a href="" title=""><img src="./img/g1.jpg" alt=""></a>
  122. <div class="ml-2 d-flex flex-column">
  123. <a href="" title="" class="fontSize12 mb-3">家用创意菜盘子圆盘 釉下彩复古</a>
  124. <a href="" title="" class="fontSize12">¥99.00 x 1</a>
  125. </div>
  126. </div>
  127. <div class="w-15 d-flex flex-column align-items-center">
  128. <a href="" title=""
  129. class="mb-2 w-100 py-1 text-center decoration-none border color777">待评价</a>
  130. <a href="" title="" class="w-100 py-1 text-center decoration-none border color777">订单详情</a>
  131. </div>
  132. </div>
  133. </div>
  134. <div class="border borderBlock my-4">
  135. <div class="border-bottom borderSmColor p-4">
  136. <div class="d-flex align-items-center">
  137. <p class="fontSize16 textRed mr-4">待收货</p>
  138. <a class="fontSize12" href="">查看物流</a>
  139. </div>
  140. <div class="d-flex justify-content-between">
  141. <div class="color777">2021年12月1日 18:53 | 杨小黄 | 订单号:5160513358520018 | 在线支付</div>
  142. <div>订单金额: <span class="textRed fontSize16">99.99</span></div>
  143. </div>
  144. </div>
  145. <div class="d-flex justify-content-between justify-content-center p-4">
  146. <div class="w-80 d-flex">
  147. <a href="" title=""><img src="./img/g1.jpg" alt=""></a>
  148. <div class="ml-2 d-flex flex-column">
  149. <a href="" title="" class="fontSize12 mb-3">家用创意菜盘子圆盘 釉下彩复古</a>
  150. <a href="" title="" class="fontSize12">¥99.00 x 1</a>
  151. </div>
  152. </div>
  153. <div class="w-15 d-flex flex-column align-items-center">
  154. <a href="" title=""
  155. class="mb-2 w-100 py-1 text-center decoration-none border textWhite bgRed">确认收货</a>
  156. <a href="" title="" class="w-100 py-1 text-center decoration-none border color777">订单详情</a>
  157. </div>
  158. </div>
  159. </div>
  160. <div class="border borderBlock my-4">
  161. <div class="border-bottom borderSmColor p-4">
  162. <div class="d-flex align-items-center">
  163. <p class="fontSize16 textRed mr-4">待支付</p>
  164. <a class="fontSize12" href=""></a>
  165. </div>
  166. <div class="d-flex justify-content-between">
  167. <div class="color777">2021年12月1日 18:53 | 杨小黄 | 订单号:5160513358520018 | 在线支付</div>
  168. <div>订单金额: <span class="textRed fontSize16">99.99</span></div>
  169. </div>
  170. </div>
  171. <div class="d-flex justify-content-between justify-content-center p-4">
  172. <div class="w-80 d-flex">
  173. <a href="" title=""><img src="./img/g1.jpg" alt=""></a>
  174. <div class="ml-2 d-flex flex-column">
  175. <a href="" title="" class="fontSize12 mb-3">家用创意菜盘子圆盘 釉下彩复古</a>
  176. <a href="" title="" class="fontSize12">¥99.00 x 1</a>
  177. </div>
  178. </div>
  179. <div class="w-15 d-flex flex-column align-items-center">
  180. <a href="" title=""
  181. class="mb-2 w-100 py-1 text-center decoration-none border textWhite bgRed">立即支付</a>
  182. <a href="" title="" class="w-100 py-1 text-center decoration-none border color777">订单详情</a>
  183. </div>
  184. </div>
  185. </div>
  186. <div class="border borderBlock my-4">
  187. <div class="border-bottom borderSmColor p-4">
  188. <div class="d-flex align-items-center">
  189. <p class="fontSize16 color777 mr-4">已关闭</p>
  190. <a class="fontSize12" href=""></a>
  191. </div>
  192. <div class="d-flex justify-content-between">
  193. <div class="color777">2021年12月1日 18:53 | 杨小黄 | 订单号:5160513358520018 | 在线支付</div>
  194. <div>订单金额: <span class="textRed fontSize16">99.99</span></div>
  195. </div>
  196. </div>
  197. <div class="d-flex justify-content-between justify-content-center p-4">
  198. <div class="w-80 d-flex">
  199. <a href="" title=""><img src="./img/g1.jpg" alt=""></a>
  200. <div class="ml-2 d-flex flex-column">
  201. <a href="" title="" class="fontSize12 mb-3">家用创意菜盘子圆盘 釉下彩复古</a>
  202. <a href="" title="" class="fontSize12">¥99.00 x 1</a>
  203. </div>
  204. </div>
  205. <div class="w-15 d-flex flex-column align-items-center">
  206. <a href="" title=""
  207. class="mb-2 w-100 py-1 text-center decoration-none border color777">立即支付</a>
  208. <a href="" title="" class="w-100 py-1 text-center decoration-none border color777">订单详情</a>
  209. </div>
  210. </div>
  211. </div>
  212. <div class="d-flex justify-content-center align-items-center">
  213. <span class="iconfont icon-xiangzuojiantou"></span>
  214. <div class="mx-4 bg8e py-1 px-3 textWhite">1</div>
  215. <span class="iconfont icon-xiangyoujiantou"></span>
  216. </div>
  217. </div>
  218. </section>
  219. </section>
  220. </section>
  221. <!--底部-->
  222. <footer class="container-full border-top mt-4">
  223. <!--上部分-->
  224. <section class="container d-flex justify-content-around">
  225. <div class="d-flex align-items-center">
  226. <img src="./img/foot1.png" alt="" class="w-53px">
  227. <span class="ml-2 fontSize14">7天无理由退货</span>
  228. </div>
  229. <div class="border-right"></div>
  230. <div class="d-flex align-items-center">
  231. <img src="./img/foot2.png" alt="" class="w-53px">
  232. <span class="ml-2 fontSize14">15天免费换货</span>
  233. </div>
  234. <div class="border-right"></div>
  235. <div class="d-flex align-items-center">
  236. <img src="./img/foot3.png" alt="" class="w-53px">
  237. <span class="ml-2 fontSize14">满599包邮</span>
  238. </div>
  239. <div class="border-right"></div>
  240. <div class="d-flex align-items-center">
  241. <img src="./img/foot4.png" alt="" class="w-53px">
  242. <span class="ml-2 fontSize14">手机特色服务</span>
  243. </div>
  244. </section>
  245. <!--下部分-->
  246. <section class="p-4 bgBlack text-center textWhite">
  247. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  248. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  249. </section>
  250. </footer>
  251. </body>
  252. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

  • 个人中心 - 订单信息 personalOrderInfo.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - personalOrderInfo</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/personal.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--侧栏-->
  55. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  56. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  57. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  58. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  59. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  60. </aside>
  61. <!--面包屑-->
  62. <section class="container-full mt-4 py-1 border-top border-bottom">
  63. <div class="container">
  64. <a href="" title="" class="fontSize12 color777">首页</a>
  65. <span class="mx-2">/</span>
  66. <a href="" title="" class="fontSize12 color777">个人中心</a>
  67. <span class="mx-2">/</span>
  68. <span class="fontSize12">我的订单</span>
  69. </div>
  70. </section>
  71. <!--个人中心-->
  72. <section class="container-full bgColor">
  73. <section class="container d-flex justify-content-between">
  74. <section class="border bgWhite flex-basis20 my-2 mr-1">
  75. <div class="border-bottom border-dark">
  76. <div class="w-45 m-auto p-2"><img src="./img/tx.png" alt=""></div>
  77. <div class="text-center mb-3">
  78. <span class="fontSize14">[<a href="" title="">羊羊羊</a>]</span>
  79. <span class="fontSize14 ml-1">[<a href="" title="">退出登录</a>]</span>
  80. </div>
  81. </div>
  82. <ul class="d-flex flex-column align-items-center mb-2">
  83. <li class="my-2 fontSize16 bold">我的交易</li>
  84. <li class="my-2"><a href="" title="" class="color777">我的购物车</a></li>
  85. <li class="my-2"><a href="" title="" class="textRed">我的订单</a></li>
  86. <li class="my-2"><a href="" title="" class="color777">评价晒单</a></li>
  87. <li class="my-2 fontSize16 bold">个人中心</li>
  88. <li class="my-2"><a href="" title="" class="color777">我的中心</a></li>
  89. <li class="my-2"><a href="" title="" class="color777">地址管理</a></li>
  90. <li class="my-2 fontSize16 bold">账户管理</li>
  91. <li class="my-2"><a href="" title="" class="color777">个人信息</a></li>
  92. <li class="my-2"><a href="" title="" class="color777">密码修改</a></li>
  93. </ul>
  94. </section>
  95. <section class="border bgWhite flex-basis80 my-2 ml-1 p-4">
  96. <div class="mx-4 py-4 border-bottom">
  97. <div class="d-flex align-items-center">
  98. <h3 class="fontSize20 mr-4">我的订单</h3>
  99. <a href="" title="">请谨防钓鱼链接活诈骗电话,了解更多></a>
  100. </div>
  101. <div class="fontSize16 mt-3">订单号: 54163846846848468</div>
  102. </div>
  103. <div class="mx-4 py-4 border-bottom">
  104. <div class="fontSize16">已收货</div>
  105. <div class="d-flex align-items-center mt-2">
  106. <a href="" title="" class="ml-1"><img src="./img/g1.jpg" alt=""></a>
  107. <a href="" title="" class="ml-4 fontSize14 color777">家用创意菜盘子圆盘 釉下彩复古</a>
  108. <a href="" title="" class="ml-4 fontSize14 color777">¥99.00 x 1</a>
  109. </div>
  110. </div>
  111. <div class="mx-4 py-4 border-bottom">
  112. <div class="fontSize16">收获信息</div>
  113. <div class="mt-2 fontSize12 color777">姓名: 杨小黄</div>
  114. <div class="mt-2 fontSize12 color777">电话: 135****1234</div>
  115. <div class="mt-2 fontSize12 color777">收货地址: 河北 唐山市 路北区 高新软件园</div>
  116. </div>
  117. <div class="mx-4 py-4 border-bottom">
  118. <div class="fontSize16">支付方式及送货时间</div>
  119. <div class="mt-2 fontSize12 color777">支付方式: 在线支付</div>
  120. <div class="mt-2 fontSize12 color777">送货时间: 不限送货时间</div>
  121. </div>
  122. <div class="mx-4 py-4 border-bottom">
  123. <div class="fontSize16">商品总价: <span class="textRed">¥99.00</span></div>
  124. <div class="mt-2 fontSize12 color777">运费: <span class="textRed">¥99.00</span></div>
  125. <div class="mt-2 fontSize12 color777">订单金额: <span class="textRed">¥99.00</span></div>
  126. <div class="mt-2 fontSize12 color777">实付金额: <span class="textRed">¥99.00</span></div>
  127. </div>
  128. </section>
  129. </section>
  130. </section>
  131. <!--底部-->
  132. <footer class="container-full border-top mt-4">
  133. <!--上部分-->
  134. <section class="container d-flex justify-content-around">
  135. <div class="d-flex align-items-center">
  136. <img src="./img/foot1.png" alt="" class="w-53px">
  137. <span class="ml-2 fontSize14">7天无理由退货</span>
  138. </div>
  139. <div class="border-right"></div>
  140. <div class="d-flex align-items-center">
  141. <img src="./img/foot2.png" alt="" class="w-53px">
  142. <span class="ml-2 fontSize14">15天免费换货</span>
  143. </div>
  144. <div class="border-right"></div>
  145. <div class="d-flex align-items-center">
  146. <img src="./img/foot3.png" alt="" class="w-53px">
  147. <span class="ml-2 fontSize14">满599包邮</span>
  148. </div>
  149. <div class="border-right"></div>
  150. <div class="d-flex align-items-center">
  151. <img src="./img/foot4.png" alt="" class="w-53px">
  152. <span class="ml-2 fontSize14">手机特色服务</span>
  153. </div>
  154. </section>
  155. <!--下部分-->
  156. <section class="p-4 bgBlack text-center textWhite">
  157. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  158. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  159. </section>
  160. </footer>
  161. </body>
  162. </html>

某商城登录注册-购物车订单支付-个人中心所有页面

  • 个人中心 - 修改密码 personalPwd.html
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Ewshop - personalPwd</title>
  6. <link rel="stylesheet" href="./css/base.css"/>
  7. <link rel="stylesheet" href="./css/eduwork.css"/>
  8. <link rel="stylesheet" href="./css/layout.css">
  9. <link rel="stylesheet" href="./css/personal.css">
  10. <link rel="stylesheet" href="//at.alicdn.com/t/font_2946534_nvos7wgzrcf.css">
  11. <link rel="icon" href="./img/icon.png"/>
  12. </head>
  13. <body>
  14. <!--头部-->
  15. <header class="container d-flex justify-content-between">
  16. <div class="border-0"><img src="./img/logo.png" alt="logo"></div>
  17. <div class="d-flex justify-content-center align-items-center">
  18. <a href="" title="登录" class="fontSize14">登录</a>
  19. <span class="mx-1">|</span>
  20. <a href="" title="注册" class="fontSize14">注册</a>
  21. <form class="d-flex border-bottom py-1 px-2 mx-2" action="">
  22. <input type="text" name="search" placeholder="热门搜索:细说php" class="border-0"/>
  23. <button class="border-0 bg-transparent iconfont icon-sousuo fontSize20 fontIcon120"></button>
  24. </form>
  25. <div class="d-flex justify-content-center align-items-center font">
  26. <i class="iconfont icon-200yonghu_yonghu fontSize20 fontIcon120"></i>
  27. <i class="iconfont icon-erweima fontIcon120 px-2"></i>
  28. <i class="iconfont icon-gouwuchekong fontIcon120"></i>
  29. </div>
  30. </div>
  31. </header>
  32. <!--导航-->
  33. <nav class="bcontainer-full">
  34. <ul class="d-flex justify-content-center m-auto">
  35. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">首页</a></li>
  36. <li class="mx-4 px-2 py-2">
  37. <a href="#" title="" class="hover">编程图书</a>
  38. <ul class="position-absolute d-flex justify-content-center w-100 left-0 my-2 py-3">
  39. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  40. </li>
  41. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  42. </li>
  43. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  44. </li>
  45. <li class="mx-4 px-4 py-2"><a href="#" title="" class="textWhite bold hover">细说php</a>
  46. </li>
  47. </ul>
  48. </li>
  49. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">算法图书</a></li>
  50. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">AI图书</a></li>
  51. <li class="mx-4 px-2 py-2"><a href="#" title="" class="hover">人工智能</a></li>
  52. </ul>
  53. </nav>
  54. <!--侧栏-->
  55. <aside class="position-fixed right-10 d-flex flex-column jusify-content-between z-index100">
  56. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-gouwuchekong"></span>
  57. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-sousuo"></span>
  58. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-200yonghu_yonghu"></span>
  59. <span class="border d-flex justify-content-center align-items-center w-25px h-25px p-3 my-1 cursor fontIcon120 bgDb iconfont icon-erweima"></span>
  60. </aside>
  61. <!--面包屑-->
  62. <section class="container-full mt-4 py-1 border-top border-bottom">
  63. <div class="container">
  64. <a href="" title="" class="fontSize12 color777">首页</a>
  65. <span class="mx-2">/</span>
  66. <span class="fontSize12">个人中心</span>
  67. </div>
  68. </section>
  69. <!--个人中心-->
  70. <section class="container-full bgColor">
  71. <section class="container d-flex justify-content-between">
  72. <section class="border bgWhite flex-basis20 my-2 mr-1">
  73. <div class="border-bottom border-dark">
  74. <div class="w-45 m-auto p-2"><img src="./img/tx.png" alt=""></div>
  75. <div class="text-center mb-3">
  76. <span class="fontSize14">[<a href="" title="">羊羊羊</a>]</span>
  77. <span class="fontSize14 ml-1">[<a href="" title="">退出登录</a>]</span>
  78. </div>
  79. </div>
  80. <ul class="d-flex flex-column align-items-center mb-2">
  81. <li class="my-2 fontSize16 bold">我的交易</li>
  82. <li class="my-2"><a href="" title="" class="color777">我的购物车</a></li>
  83. <li class="my-2"><a href="" title="" class="color777">我的订单</a></li>
  84. <li class="my-2"><a href="" title="" class="color777">评价晒单</a></li>
  85. <li class="my-2 fontSize16 bold">个人中心</li>
  86. <li class="my-2"><a href="" title="" class="color777">我的中心</a></li>
  87. <li class="my-2"><a href="" title="" class="color777">地址管理</a></li>
  88. <li class="my-2 fontSize16 bold">账户管理</li>
  89. <li class="my-2"><a href="" title="" class="color777">个人信息</a></li>
  90. <li class="my-2"><a href="" title="" class="textRed">密码修改</a></li>
  91. </ul>
  92. </section>
  93. <section class="border bgWhite flex-basis80 my-2 ml-1 p-4">
  94. <div class="mx-4 py-4 border-bottom"><h3 class="fontSize20">修改密码</h3></div>
  95. <form action="" class="mx-4 my-2 py-4">
  96. <div class="d-flex align-items-center my-4">
  97. <div class="w-30 text-right mr-2">
  98. <label for="old-password" class="fontSize16">原密码:</label>
  99. </div>
  100. <div class="w-60 text-left">
  101. <input type="password" name="" id="old-password" class="p-1 w-50 border" placeholder="原密码">
  102. </div>
  103. </div>
  104. <div class="d-flex align-items-center my-4">
  105. <div class="w-30 text-right mr-2">
  106. <label for="new-password" class="fontSize16">新密码:</label>
  107. </div>
  108. <div class="w-60 text-left">
  109. <input type="password" name="" id="new-password" class="p-1 w-50 border" placeholder="新密码">
  110. </div>
  111. </div>
  112. <div class="d-flex align-items-center my-4">
  113. <div class="w-30 text-right mr-2">
  114. <label for="repeat-password" class="fontSize16">重复密码:</label>
  115. </div>
  116. <div class="w-60 text-left">
  117. <input type="password" name="" id="repeat-password" class="p-1 w-50 border" placeholder="重复密码">
  118. </div>
  119. </div>
  120. <div class="d-flex align-items-center my-4 py-4">
  121. <div class="w-80 text-center">
  122. <input type="button" value="提交" class="py-1 w-25 bgRed textWhite border">
  123. </div>
  124. </div>
  125. </form>
  126. </section>
  127. </section>
  128. </section>
  129. <!--底部-->
  130. <footer class="container-full border-top mt-4">
  131. <!--上部分-->
  132. <section class="container d-flex justify-content-around">
  133. <div class="d-flex align-items-center">
  134. <img src="./img/foot1.png" alt="" class="w-53px">
  135. <span class="ml-2 fontSize14">7天无理由退货</span>
  136. </div>
  137. <div class="border-right"></div>
  138. <div class="d-flex align-items-center">
  139. <img src="./img/foot2.png" alt="" class="w-53px">
  140. <span class="ml-2 fontSize14">15天免费换货</span>
  141. </div>
  142. <div class="border-right"></div>
  143. <div class="d-flex align-items-center">
  144. <img src="./img/foot3.png" alt="" class="w-53px">
  145. <span class="ml-2 fontSize14">满599包邮</span>
  146. </div>
  147. <div class="border-right"></div>
  148. <div class="d-flex align-items-center">
  149. <img src="./img/foot4.png" alt="" class="w-53px">
  150. <span class="ml-2 fontSize14">手机特色服务</span>
  151. </div>
  152. </section>
  153. <!--下部分-->
  154. <section class="p-4 bgBlack text-center textWhite">
  155. <div>最家家居©2013-2017公司版权所有 京ICP备080100-44备0000111000号</div>
  156. <div>违法和不良信息举报电话:400-800-8200,本网站所列数据,除特殊说明,所有数据均出自我司实验室测试</div>
  157. </section>
  158. </footer>
  159. </body>
  160. </html>

某商城登录注册-购物车订单支付-个人中心所有页面