shopList.vue 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <div class="shop-list">
  3. <h3>深圳华商龙商务互联科技有限公司</h3>
  4. <div class="list-item">
  5. <div class="item-img">
  6. <i></i>
  7. <img src="/images/component/default.png" alt="">
  8. </div>
  9. <div class="list-item-phone">
  10. <p>电话:<span>0755-1234567</span></p>
  11. <p>传真:<span>0755-1234567</span></p>
  12. <p>商家介绍: <a href="#">点击查看</a></p>
  13. <i></i>
  14. </div>
  15. </div>
  16. </div>
  17. </template>
  18. <script>
  19. export default {}
  20. </script>
  21. <style scoped lang="scss">
  22. .shop-list{
  23. background:#fff;
  24. margin-top:.12rem;
  25. padding-bottom:.28rem;
  26. h3{
  27. font-size:.32rem;
  28. line-height: .8rem;
  29. margin:0;
  30. margin-left:.27rem;
  31. margin-bottom:.14rem;
  32. }
  33. .list-item{
  34. width:6.77rem;
  35. margin-left:.39rem;
  36. justify-content: space-around;
  37. display:inline-flex;
  38. .item-img{
  39. width:2.42rem;
  40. i{}
  41. img{
  42. width:2.4rem;
  43. height:1.69rem;
  44. }
  45. }
  46. .list-item-phone{
  47. width:3.95rem;
  48. padding-top:.18rem;
  49. p{
  50. font-size:.28rem;
  51. line-height: .45rem;
  52. margin:0;
  53. }
  54. }
  55. }
  56. }
  57. </style>