xcx.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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. object-fit: cover;
  121. }
  122. }
  123. .right {
  124. display: flex;
  125. flex-direction: column;
  126. justify-content: center;
  127. }
  128. }
  129. .content-seconed {
  130. padding: 50px 0 50px 0;
  131. color: #262626;
  132. .content-seconed-info {
  133. display: flex;
  134. justify-content: space-between;
  135. .left {
  136. display: flex;
  137. flex-direction: column;
  138. justify-content: center;
  139. }
  140. .right {
  141. img {
  142. width: 666px;
  143. height: 642px;
  144. }
  145. }
  146. }
  147. }
  148. }
  149. .content {
  150. width: 100%;
  151. height: 1792px;
  152. h4 {
  153. // font-size: 30px;
  154. font-size: 26px;
  155. font-family: PingFangSC-Medium, sans-serif;
  156. font-weight: 500;
  157. color: #333333;
  158. line-height: 37px;
  159. }
  160. .desc {
  161. margin-top: 54px;
  162. font-size: 14px;
  163. font-family: PingFangSC-Regular, sans-serif;
  164. font-weight: 400;
  165. color: #666666;
  166. line-height: 28px;
  167. }
  168. .content-first {
  169. padding: 136px 0 118px 0;
  170. color: #262626;
  171. background-color: #f7fbff;
  172. .content-first-info {
  173. display: flex;
  174. justify-content: space-between;
  175. }
  176. .right {
  177. img {
  178. width: 666px;
  179. height: 642px;
  180. vertical-align: middle;
  181. }
  182. }
  183. .left {
  184. display: flex;
  185. flex-direction: column;
  186. justify-content: center;
  187. }
  188. }
  189. .content-seconed {
  190. .content-seconed-info {
  191. display: flex;
  192. justify-content: space-between;
  193. }
  194. padding: 99px 0 201px 0;
  195. color: #262626;
  196. .right {
  197. display: flex;
  198. flex-direction: column;
  199. justify-content: center;
  200. }
  201. .left {
  202. img {
  203. width: 666px;
  204. height: 642px;
  205. vertical-align: middle;
  206. }
  207. }
  208. }
  209. }
  210. }
  211. </style>