12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @extends('wap.template')
- @section('head')
- <link rel="stylesheet" href="/wapbrowser/web/component.css">
- <style>
- .Undertheshelf {
- text-align: center;
- }
- .Undertheshelf .none {
- margin-top: 1.5rem;
- width: 3rem;
- }
- .Undertheshelf .bt {
- margin-top: 1rem;
- padding: 0 .5rem;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
- }
- .Undertheshelf .bt .index {
- padding: .1rem .8rem;
- color: #fff;
- background-color: #33a1ff;
- border-radius: .03rem;
- }
- .Undertheshelf .bt .bookshelf {
- padding: .1rem .8rem;
- color: #33a1ff;
- border: .01rem solid;
- border-radius: .03rem;
- }
- </style>
- @endsection
- @section('body')
- <div class="Undertheshelf">
- <img src="https://yueduyun.oss-cn-hangzhou.aliyuncs.com/h5/undertheshelf.png"
- class="none">
- <div class="bt">
- <a href="/">
- <div class="index">首页</div>
- </a>
- <a href="/shelf">
- <div class="bookshelf">书架</div>
- </a>
- </div>
- </div>
- @endsection
|