pc.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <template>
  2. <div class="pc-container">
  3. <slot></slot>
  4. <slot name="label"></slot>
  5. <div class="content">
  6. <div class="first w1200">
  7. <img
  8. src="~/assets/images/products/pc_img_first.png"
  9. alt="">
  10. <p>微信首页任务栏等60+小程序入口,让10亿用户轻松发现你微信首页任务栏等60+小程序入口,让10亿用户轻松发现微信首页任务栏等60+小程序入口,让10亿用户轻松发现你微信首页任务栏等60+小程序入口,让10亿用户轻松发现你微信首页任务栏等60+小程序入口,让10亿用户轻松发现你</p>
  11. </div>
  12. <div class="seconed">
  13. <title-content :title="'更适合中国宝宝的儿童智能发展测评'" :titleSub="'MORE SUITABLE FOR CHILDRENS INTERLLIGENCE DEVELOPMENT ASSESSMENT OF CHINESE BABIES'"></title-content>
  14. <div class="seconed-box w1200">
  15. <div
  16. :class="['seconed-item']"
  17. v-for="item in showList"
  18. :key="item.id">
  19. <img :src="item.imgUrl" alt="">
  20. </div>
  21. </div>
  22. </div>
  23. <div class="thirdly w1200">
  24. <div class="left">
  25. <img src="~/assets/images/products/pc_img_second.png" alt="">
  26. </div>
  27. <div class="right">
  28. <h4>丰富课堂形式,满足多种学</h4>
  29. <h4>习需求</h4>
  30. <p class="desc content-desc">完美适配PC端,覆盖直播、图文、音视频等课</p>
  31. <p class="desc">程形式</p>
  32. </div>
  33. </div>
  34. </div>
  35. </div>
  36. </template>
  37. <script>
  38. import TitleContent from '@/components/common/titleContent';
  39. const showList = Object.freeze([
  40. {
  41. id: 0,
  42. imgUrl: require('~/assets/images/products/pc_dev_01.png'),
  43. },
  44. {
  45. id: 1,
  46. imgUrl: require('~/assets/images/products/pc_dev_02.png'),
  47. },
  48. {
  49. id: 2,
  50. imgUrl: require('~/assets/images/products/pc_dev_03.png'),
  51. },
  52. ]);
  53. export default {
  54. name: "PcPage",
  55. mounted() {},
  56. data() {
  57. return {
  58. showList,
  59. bannerImg: require('~/assets/images/products/banner-pc.png')
  60. };
  61. },
  62. components: {
  63. TitleContent
  64. }
  65. };
  66. </script>
  67. <style scoped lang="scss">
  68. .pc-container {
  69. .banner-img {
  70. position: relative;
  71. img {
  72. width: 100%;
  73. height: 595px;
  74. }
  75. .label {
  76. font-family: PingFangSC-Semibold, sans-serif;
  77. font-weight: 600;
  78. color: #ffffff;
  79. font-size: 80px;
  80. position: absolute;
  81. top: 50%;
  82. left: 50%;
  83. transform: translate(-50%, -50%);
  84. }
  85. }
  86. .content {
  87. .first {
  88. display: flex;
  89. justify-content: center;
  90. flex-direction: column;
  91. padding-bottom: 50px;
  92. img {
  93. width: 1200px;
  94. height: 700px;
  95. }
  96. p {
  97. margin: 0 auto;
  98. width: 958px;
  99. font-size: 18px;
  100. font-family: PingFangSC-Regular, PingFang SC;
  101. font-weight: 400;
  102. color: #646A7E;
  103. line-height: 30px;
  104. text-indent: 36px;
  105. }
  106. }
  107. .seconed {
  108. width: 100%;
  109. height: 607px;
  110. background-color: #F7FBFF;
  111. padding-top: 52px;
  112. box-sizing: border-box;
  113. .label {
  114. font-size: 48px;
  115. font-family: PingFangSC-Semibold, sans-serif;
  116. font-weight: 600;
  117. color: rgba(38, 38, 38, 1);
  118. letter-spacing: 1px;
  119. text-align: center;
  120. margin-bottom: 118px;
  121. }
  122. .seconed-box {
  123. display: flex;
  124. justify-content: space-between;
  125. margin-top: 105px;
  126. .seconed-item {
  127. img {
  128. width: 384px;
  129. height: 293px;
  130. }
  131. }
  132. }
  133. }
  134. .thirdly {
  135. padding: 50px 0;
  136. display: flex;
  137. justify-content: center;
  138. box-sizing: border-box;
  139. display: flex;
  140. justify-content: space-between;
  141. align-items: center;
  142. .right {
  143. h4 {
  144. font-size: 26px;
  145. font-family: PingFangSC-Medium, PingFang SC;
  146. font-weight: 500;
  147. color: #333333;
  148. line-height: 37px;
  149. }
  150. .desc {
  151. width: 335px;
  152. font-size: 16px;
  153. font-family: PingFangSC-Regular, PingFang SC;
  154. font-weight: 400;
  155. color: #646A7E;
  156. line-height: 30px;
  157. }
  158. .content-desc {
  159. margin-top: 50px;
  160. }
  161. }
  162. img {
  163. width: 812px;
  164. height: 522px;
  165. }
  166. }
  167. }
  168. }
  169. </style>