| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <div class="shop-list">
- <h3>深圳华商龙商务互联科技有限公司</h3>
- <div class="list-item">
- <div class="item-img">
- <i></i>
- <img src="/images/component/default.png" alt="">
- </div>
- <div class="list-item-phone">
- <p>电话:<span>0755-1234567</span></p>
- <p>传真:<span>0755-1234567</span></p>
- <p>商家介绍: <a href="#">点击查看</a></p>
- <i></i>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {}
- </script>
- <style scoped lang="scss">
- .shop-list{
- background:#fff;
- margin-top:.12rem;
- padding-bottom:.28rem;
- h3{
- font-size:.32rem;
- line-height: .8rem;
- margin:0;
- margin-left:.27rem;
- margin-bottom:.14rem;
- }
- .list-item{
- width:6.77rem;
- margin-left:.39rem;
- justify-content: space-around;
- display:inline-flex;
- .item-img{
- width:2.42rem;
- i{}
- img{
- width:2.4rem;
- height:1.69rem;
- }
- }
- .list-item-phone{
- width:3.95rem;
- padding-top:.18rem;
- p{
- font-size:.28rem;
- line-height: .45rem;
- margin:0;
- }
- }
- }
- }
- </style>
|