expericePanoramic.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <template>
  2. <div id="panoramic_hall_wrap">
  3. <div class="panoramic_hall_box">
  4. <div class="panoramic_hall_title_box">
  5. <div class="panoramic_hall_titleC">
  6. <h2>{{PanoramicData.PanoramicTitleCn1}}</h2>
  7. <h2>{{PanoramicData.PanoramicTitleCn2}}</h2>
  8. </div>
  9. <div class="panoramic_hall_titleE">
  10. <p>{{PanoramicData.PanoramicTitleEn}}</p>
  11. </div>
  12. <div class="panoramic_hall_title_desc">
  13. <p>{{PanoramicData.PanoramicTitleDesc}}</p>
  14. </div>
  15. </div>
  16. <div class="panoramic_hall">
  17. <ul>
  18. <li class="panoramic_hall_list" v-for="(list,index) in PanoramicData.PanoramicListData" :key="index" :class="{specile_width:PanoramicData.PanoramicLIWidth}">
  19. <div class="panoramic_hall_list_img">
  20. <img :src="list.PanoramicListImg" alt="">
  21. </div>
  22. <div class="panoramic_hall_list_intro_box">
  23. <div class="panoramic_hall_list_title">
  24. <p v-for="(item,index) in list.PanoramicListTitle" :key="index">{{item}}</p>
  25. </div>
  26. <div class="panoramic_hall_list_introC">
  27. <p v-for="(item,index) in list.PanoramicListIntro" :key="index">{{item}} </p>
  28. </div>
  29. <div class="panoramic_hall_list_introE">
  30. <p>{{list.PanoramicListIntroEn}}</p>
  31. </div>
  32. </div>
  33. </li>
  34. </ul>
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <script>
  40. export default {
  41. name: 'expericePanoramic',
  42. props: {
  43. PanoramicData: Object
  44. }
  45. }
  46. </script>
  47. <style scoped>
  48. /*Panoramic hall start*/
  49. div#panoramic_hall_wrap {
  50. width: 100%;
  51. background: #f9f9fa;
  52. }
  53. .panoramic_hall_box {
  54. overflow: hidden;
  55. width: 1200px;
  56. height: auto;
  57. margin: 0 auto;
  58. padding: 150px 0 155px;
  59. }
  60. .panoramic_hall_title_box {
  61. width: 100%;
  62. padding-bottom: 115px;
  63. text-align: center;
  64. }
  65. .panoramic_hall_titleC {
  66. overflow: hidden;
  67. width: 100%;
  68. height: 91px;
  69. }
  70. .panoramic_hall_titleC h2 {
  71. font-size: 40px;
  72. font-family: 'Noto Serif CJK SC', 'Source Han Serif SC', 'Source Han Serif', 'source-han-serif-sc','STZhongsong','宋体', 'serif';
  73. font-weight: 900;
  74. color: #22202b;
  75. line-height: 46px;
  76. }
  77. .panoramic_hall_titleE {
  78. overflow: hidden;
  79. width: 100%;
  80. height: 34px;
  81. color: #858585;
  82. font-size: 14px;
  83. line-height: 34px;
  84. text-align: center;
  85. }
  86. .panoramic_hall_title_desc {
  87. overflow: hidden;
  88. width: 100%;
  89. height: 68px;
  90. color: #d6d6d6;
  91. font-size: 14px;
  92. line-height: 68px;
  93. text-align: center;
  94. }
  95. .panoramic_hall {
  96. overflow: hidden;
  97. width: 100%;
  98. height: auto;
  99. }
  100. .panoramic_hall ul {
  101. display: flex;
  102. overflow: hidden;
  103. width: 100%;
  104. justify-content: space-between;
  105. }
  106. li.panoramic_hall_list {
  107. overflow: hidden;
  108. width: 300px;
  109. height: 884px;
  110. }
  111. li.panoramic_hall_list.specile_width {
  112. width: 525px;
  113. }
  114. .panoramic_hall ul li:nth-child(2) {
  115. position: relative;
  116. }
  117. .panoramic_hall ul li:nth-child(2) .panoramic_hall_list_intro_box {
  118. position: absolute;
  119. top: 0;
  120. }
  121. .panoramic_hall ul li:nth-child(2) .panoramic_hall_list_img {
  122. position: absolute;
  123. bottom: 0;
  124. }
  125. .panoramic_hall_list_img {
  126. overflow: hidden;
  127. width: 100%;
  128. height: 570px;
  129. }
  130. .panoramic_hall_list_intro_box {
  131. overflow: hidden;
  132. width: 100%;
  133. height: 314px;
  134. padding-top: 74px;
  135. box-sizing: border-box;
  136. }
  137. .panoramic_hall_list_title {
  138. width: 100%;
  139. color: #22202b;
  140. font-size: 18px;
  141. font-weight: bold;
  142. line-height: 30px;
  143. text-align: left;
  144. }
  145. .panoramic_hall_list_introC {
  146. overflow: hidden;
  147. width: 100%;
  148. height: auto;
  149. padding: 23px 0 32px;
  150. color: #858585;
  151. font-size: 14px;
  152. line-height: 18px;
  153. text-align: left;
  154. }
  155. .panoramic_hall_list_introE {
  156. overflow: hidden;
  157. width: 100%;
  158. color: #cccccc;
  159. font-size: 12px;
  160. line-height: 15px;
  161. text-align: left;
  162. }
  163. /*Panoramic hall end*/
  164. </style>