xcx.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <section class="XcxPage-container">
  3. <slot></slot>
  4. <slot name="label"></slot>
  5. <div class="xcx-content">
  6. <div class="content-first">
  7. <div class="content-first-info w1200">
  8. <div class="left">
  9. <img
  10. src="~/assets/images/products/xcx_img_first.png"
  11. alt="">
  12. </div>
  13. <div class="right">
  14. <h4>轻松找到课堂入口 创造优质 学习体验</h4>
  15. <div class="desc">微信首页任务栏等60+小程序入口,让10亿用户 轻松发现你</div>
  16. </div>
  17. </div>
  18. </div>
  19. <div class="content-seconed">
  20. <div class="content-seconed-info w1200">
  21. <div class="left">
  22. <h4>轻松找到课堂入口 创造优质 学习体验</h4>
  23. <div class="desc">微信首页任务栏小程序入口,让用户轻松发现你</div>
  24. </div>
  25. <div class="right">
  26. <img
  27. src="~/assets/images/products/xcx_img_second.png"
  28. alt=""
  29. >
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="content">
  35. <div class="content-first">
  36. <div class="content-first-info w1200">
  37. <div class="left">
  38. <h4>轻松找到课堂入口 创造优质学习体验</h4>
  39. <div class="desc">微信首页任务栏等60+小程序入口,让10亿用户轻松发现你</div>
  40. </div>
  41. <div class="right">
  42. <img src="~/assets/images/products/h5_img_first.png" alt="">
  43. </div>
  44. </div>
  45. </div>
  46. <div class="content-seconed">
  47. <div class="content-seconed-info w1200">
  48. <div class="left">
  49. <img src="~/assets/images/products/h5_img_second.png" alt="">
  50. </div>
  51. <div class="right">
  52. <h4>一键转发,让课堂在微信中自由传播</h4>
  53. <div class="desc">课堂可分享至微信朋友圈、微信社群等等位置,便于用户分享好物,闲余赚取佣金</div>
  54. </div>
  55. </div>
  56. </div>
  57. </div>
  58. </section>
  59. </template>
  60. <script>
  61. export default {
  62. name: "XcxPage",
  63. data() {
  64. return {
  65. };
  66. },
  67. components: {
  68. },
  69. mounted() {},
  70. };
  71. </script>
  72. <style scoped lang="scss">
  73. .XcxPage-container {
  74. .banner-img {
  75. position: relative;
  76. img {
  77. width: 100%;
  78. height: 595px;
  79. }
  80. .label {
  81. font-family: PingFangSC-Semibold, sans-serif;
  82. font-weight: 600;
  83. color: #ffffff;
  84. font-size: 80px;
  85. position: absolute;
  86. top: 50%;
  87. left: 50%;
  88. transform: translate(-50%, -50%);
  89. }
  90. }
  91. .xcx-content {
  92. width: 100%;
  93. h4 {
  94. font-size: 26px;
  95. font-family: PingFangSC-Medium, sans-serif;
  96. font-weight: 500;
  97. color: #333333;
  98. line-height: 37px;
  99. }
  100. .desc {
  101. margin-top: 44px;
  102. font-size: 14px;
  103. font-family: PingFangSC-Regular, sans-serif;
  104. font-weight: 400;
  105. color: #666666;
  106. line-height: 28px;
  107. }
  108. .content-first {
  109. padding: 50px 0 50px 0;
  110. color: #262626;
  111. background: #F8FBFF;
  112. .content-first-info {
  113. display: flex;
  114. justify-content: space-between;
  115. }
  116. .left {
  117. img {
  118. width: 666px;
  119. height: 642px;
  120. }
  121. }
  122. .right {
  123. display: flex;
  124. flex-direction: column;
  125. justify-content: center;
  126. }
  127. }
  128. .content-seconed {
  129. padding: 50px 0 50px 0;
  130. color: #262626;
  131. .content-seconed-info {
  132. display: flex;
  133. justify-content: space-between;
  134. .left {
  135. display: flex;
  136. flex-direction: column;
  137. justify-content: center;
  138. }
  139. .right {
  140. img {
  141. width: 666px;
  142. height: 642px;
  143. }
  144. }
  145. }
  146. }
  147. }
  148. .content {
  149. width: 100%;
  150. height: 1792px;
  151. h4 {
  152. // font-size: 30px;
  153. font-size: 26px;
  154. font-family: PingFangSC-Medium, sans-serif;
  155. font-weight: 500;
  156. color: #333333;
  157. line-height: 37px;
  158. }
  159. .desc {
  160. margin-top: 54px;
  161. font-size: 14px;
  162. font-family: PingFangSC-Regular, sans-serif;
  163. font-weight: 400;
  164. color: #666666;
  165. line-height: 28px;
  166. }
  167. .content-first {
  168. padding: 136px 0 118px 0;
  169. color: #262626;
  170. background-color: #f7fbff;
  171. .content-first-info {
  172. display: flex;
  173. justify-content: space-between;
  174. }
  175. .right {
  176. img {
  177. width: 666px;
  178. height: 642px;
  179. vertical-align: middle;
  180. }
  181. }
  182. .left {
  183. display: flex;
  184. flex-direction: column;
  185. justify-content: center;
  186. }
  187. }
  188. .content-seconed {
  189. .content-seconed-info {
  190. display: flex;
  191. justify-content: space-between;
  192. }
  193. padding: 99px 0 201px 0;
  194. color: #262626;
  195. .right {
  196. display: flex;
  197. flex-direction: column;
  198. justify-content: center;
  199. }
  200. .left {
  201. img {
  202. width: 666px;
  203. height: 642px;
  204. vertical-align: middle;
  205. }
  206. }
  207. }
  208. }
  209. }
  210. </style>