expericeNewModel.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <template>
  2. <div id="new_model">
  3. <div class="new_model_box">
  4. <div class="new_model_title">
  5. <p class="new_model_titleC">卫诗理中国高端家具</p>
  6. <p class="new_model_titleC">O2O新零售模式先行者</p>
  7. <p class="new_model_titleE">Visney High-end furniture in China </p>
  8. <p class="new_model_titleE">O2O new retail model Forerunner</p>
  9. </div>
  10. <div class="new_model_list_box">
  11. <ul>
  12. <li class="new_model_list">
  13. <p class="new_model_list_cont1">天猫实木类遥遥领跑的高端家具品牌</p>
  14. <p class="new_model_list_cont2">客单价2.6W,是同行业客单价7倍。</p>
  15. </li>
  16. <li class="new_model_list">
  17. <p class="new_model_list_cont1">最受关注的高端家具品牌</p>
  18. <p class="new_model_list_cont2">每日进店客流逾10W人次。</p>
  19. </li>
  20. <li class="new_model_list">
  21. <p class="new_model_list_cont1">最具影响力的高端家具品牌</p>
  22. <p class="new_model_list_cont2">每一家体验馆的开业都产生逾千万的销量,</p>
  23. <p class="new_model_list_cont2">一次次创造行业神话。</p>
  24. </li>
  25. </ul>
  26. </div>
  27. </div>
  28. </div>
  29. </template>
  30. <script>
  31. export default {
  32. name: 'expericeNewModel'
  33. }
  34. </script>
  35. <style>
  36. /*New retail model start*/
  37. div#new_model {
  38. width: 100%;
  39. height: auto;
  40. background: #f9f9fa;
  41. }
  42. .new_model_box {
  43. overflow: hidden;
  44. width: 1200px;
  45. height: auto;
  46. margin: 0 auto;
  47. padding: 150px 0 130px;
  48. }
  49. .new_model_title {
  50. overflow: hidden;
  51. width: 100%;
  52. height: auto;
  53. padding-bottom: 110px;
  54. text-align: center;
  55. }
  56. p.new_model_titleC {
  57. overflow: hidden;
  58. width: 100%;
  59. height: 38px;
  60. color: #22202b;
  61. font-size: 30px;
  62. font-weight: bold;
  63. line-height: 38px;
  64. }
  65. p.new_model_titleE {
  66. overflow: hidden;
  67. width: 100%;
  68. height: 20px;
  69. color: #858585;
  70. font-size: 14px;
  71. line-height: 20px;
  72. }
  73. .new_model_list_box {
  74. overflow: hidden;
  75. width: 100%;
  76. padding-top: 100px;
  77. border-top: 1px solid #d0d0d4;
  78. }
  79. .new_model_list_box ul {
  80. overflow: hidden;
  81. }
  82. li.new_model_list {
  83. float: left;
  84. overflow: hidden;
  85. width: 400px;
  86. height: auto;
  87. }
  88. p.new_model_list_cont1 {
  89. overflow: hidden;
  90. width: 100%;
  91. height: 24px;
  92. color: #858585;
  93. font-size: 14px;
  94. line-height: 24px;
  95. text-align: center;
  96. }
  97. p.new_model_list_cont2 {
  98. overflow: hidden;
  99. width: 100%;
  100. height: 28px;
  101. color: #22202b;
  102. font-size: 18px;
  103. font-weight: bold;
  104. line-height: 28px;
  105. text-align: center;
  106. }
  107. /*New retail model end*/
  108. </style>