expericeAddress.vue 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <template>
  2. <div id="place_address_wrap">
  3. <div class="place_address_box">
  4. <div class="place_address_details">
  5. <h3>体验店地址:</h3>
  6. <p v-for="(list,index) in addressData.addressDetils" :key="index">{{list}}</p>
  7. </div>
  8. <div class="place_address_phone">
  9. <div class="place_address_phone1">
  10. <p>{{addressData.hotLineTitle}}</p>
  11. <h3>{{addressData.hotLineNum}}</h3>
  12. </div>
  13. <div class="place_address_phone1">
  14. <p>{{addressData.phoneTitle}}</p>
  15. <h3>{{addressData.phoneNum}}</h3>
  16. </div>
  17. </div>
  18. <div class="place_address_contact">
  19. <p>为了保证您参观的尊贵体验,来时请提前预约</p>
  20. <div class="place_address_contact_num">
  21. <h3>{{addressData.contentNum}}</h3>
  22. <p>{{addressData.contentPeople}}</p>
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. </template>
  28. <script>
  29. export default {
  30. name: "expericeAddress",
  31. props: {
  32. addressData: Object
  33. }
  34. }
  35. </script>
  36. <style scoped>
  37. /*Place Address start*/
  38. div#place_address_wrap {
  39. width: 100%;
  40. background: #f9f9fa;
  41. }
  42. .place_address_box {
  43. overflow: hidden;
  44. width: 1200px;
  45. height: auto;
  46. margin: 0 auto;
  47. padding: 140px 0 210px;
  48. }
  49. .place_address_details {
  50. overflow: hidden;
  51. width: 100%;
  52. height: auto;
  53. text-align: center;
  54. }
  55. .place_address_box p {
  56. overflow: hidden;
  57. width: 100%;
  58. height: 24px;
  59. color: #858585;
  60. font-size: 14px;
  61. line-height: 24px;
  62. text-align: center;
  63. }
  64. .place_address_details h3 {
  65. overflow: hidden;
  66. width: 100%;
  67. height: 40px;
  68. color: #25232d;
  69. font-size: 24px;
  70. font-weight: bold;
  71. line-height: 40px;
  72. text-align: center;
  73. }
  74. .place_address_phone {
  75. overflow: hidden;
  76. width: 100%;
  77. height: auto;
  78. padding: 60px 0 67px;
  79. text-align: center;
  80. }
  81. .place_address_phone1 {
  82. display: inline-block;
  83. width: 300px;
  84. height: auto;
  85. }
  86. .place_address_phone1 h3 {
  87. overflow: hidden;
  88. width: 100%;
  89. height: 40px;
  90. color: #25232d;
  91. font-size: 24px;
  92. font-weight: bold;
  93. line-height: 40px;
  94. text-align: center;
  95. }
  96. .place_address_contact {
  97. overflow: hidden;
  98. width: 100%;
  99. }
  100. .place_address_contact_num {
  101. overflow: hidden;
  102. text-align: center;
  103. }
  104. .place_address_contact_num h3 {
  105. display: inline-block;
  106. overflow: hidden;
  107. height: 40px;
  108. color: #25232d;
  109. font-size: 24px;
  110. font-weight: bold;
  111. line-height: 40px;
  112. text-align: center;
  113. }
  114. .place_address_contact_num p {
  115. display: inline-block;
  116. width: auto;
  117. height: 40px;
  118. line-height: 40px;
  119. }
  120. /*Place Address end*/
  121. </style>