undershelf.blade.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. @extends('wap.template')
  2. @section('head')
  3. <link rel="stylesheet" href="/wapbrowser/web/component.css">
  4. <style>
  5. .Undertheshelf {
  6. text-align: center;
  7. }
  8. .Undertheshelf .none {
  9. margin-top: 1.5rem;
  10. width: 3rem;
  11. }
  12. .Undertheshelf .bt {
  13. margin-top: 1rem;
  14. padding: 0 .5rem;
  15. display: -webkit-box;
  16. display: -ms-flexbox;
  17. display: flex;
  18. -webkit-box-pack: justify;
  19. -ms-flex-pack: justify;
  20. justify-content: space-between;
  21. }
  22. .Undertheshelf .bt .index {
  23. padding: .1rem .8rem;
  24. color: #fff;
  25. background-color: #33a1ff;
  26. border-radius: .03rem;
  27. }
  28. .Undertheshelf .bt .bookshelf {
  29. padding: .1rem .8rem;
  30. color: #33a1ff;
  31. border: .01rem solid;
  32. border-radius: .03rem;
  33. }
  34. </style>
  35. @endsection
  36. @section('body')
  37. <div class="Undertheshelf">
  38. <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/undertheshelf.png"
  39. class="none">
  40. <div class="bt">
  41. <a href="/">
  42. <div class="index">首页</div>
  43. </a>
  44. <a href="/shelf">
  45. <div class="bookshelf">书架</div>
  46. </a>
  47. </div>
  48. </div>
  49. @endsection