xcx.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. <h4 class="right-h4">学习体验</h4>
  16. <div class="desc">微信首页任务栏等60+小程序入口,让10亿用户 轻松发现你</div>
  17. <div class="desc">轻松发现你</div>
  18. </div>
  19. </div>
  20. </div>
  21. <div class="content-seconed">
  22. <div class="content-seconed-info w1200">
  23. <div class="left">
  24. <h4>轻松找到课堂入口 创造优质</h4>
  25. <h4 class="left-h4">学习体验</h4>
  26. <div class="desc">微信首页任务栏等60+小程序入口,让10亿用户</div>
  27. <div class="desc">轻松发现你</div>
  28. </div>
  29. <div class="right">
  30. <img
  31. src="~/assets/images/products/xcx_img_second.png"
  32. alt=""
  33. >
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. </section>
  39. </template>
  40. <script>
  41. export default {
  42. name: "XcxPage",
  43. data() {
  44. return {
  45. };
  46. },
  47. components: {
  48. },
  49. mounted() {},
  50. };
  51. </script>
  52. <style scoped lang="scss">
  53. .XcxPage-container {
  54. .banner-img {
  55. position: relative;
  56. img {
  57. width: 100%;
  58. height: 595px;
  59. }
  60. .label {
  61. font-family: PingFangSC-Semibold, sans-serif;
  62. font-weight: 600;
  63. color: #ffffff;
  64. font-size: 80px;
  65. position: absolute;
  66. top: 50%;
  67. left: 50%;
  68. transform: translate(-50%, -50%);
  69. }
  70. }
  71. .xcx-content {
  72. width: 100%;
  73. height: 1792px;
  74. .content-first {
  75. padding: 173px 0 138px 0;
  76. color: #262626;
  77. background: #F8FBFF;
  78. .content-first-info {
  79. display: flex;
  80. justify-content: space-between;
  81. }
  82. .left {
  83. img {
  84. width: 576px;
  85. height: 585px;
  86. }
  87. }
  88. .right {
  89. display: flex;
  90. flex-direction: column;
  91. justify-content: center;
  92. h4 {
  93. font-size: 26px;
  94. // font-family: PingFangSC-Medium, sans-serif;
  95. font-weight: 600;
  96. color: #333333;
  97. line-height: 37px;
  98. &.right-h4 {
  99. margin-bottom: 24px;
  100. }
  101. }
  102. .desc {
  103. font-size: 16px;
  104. font-family: PingFangSC-Regular, sans-serif;
  105. font-weight: 400;
  106. color: #666666;
  107. line-height: 28px;
  108. }
  109. }
  110. }
  111. .content-seconed {
  112. padding: 153px 0 138px 0;
  113. color: #262626;
  114. .content-seconed-info {
  115. display: flex;
  116. justify-content: space-between;
  117. .left {
  118. display: flex;
  119. flex-direction: column;
  120. justify-content: center;
  121. h4 {
  122. font-size: 26px;
  123. // font-family: PingFangSC-Medium, sans-serif;
  124. font-weight: 600;
  125. color: #333333;
  126. line-height: 37px;
  127. &.left-h4 {
  128. margin-bottom: 47px;
  129. }
  130. }
  131. .desc {
  132. font-size: 16px;
  133. font-family: PingFangSC-Regular, sans-serif;
  134. font-weight: 400;
  135. color: #666666;
  136. line-height: 28px;
  137. }
  138. }
  139. .right {
  140. img {
  141. width: 664px;
  142. height: 581px;
  143. }
  144. }
  145. }
  146. }
  147. }
  148. }
  149. </style>