| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <template>
- <section class="XcxPage-container">
- <slot></slot>
- <slot name="label"></slot>
- <div class="xcx-content">
- <div class="content-first">
- <div class="content-first-info w1200">
- <div class="left">
- <img
- src="~/assets/images/products/xcx_img_first.png"
- alt="">
- </div>
- <div class="right">
- <h4>轻松找到课堂入口 创造优质</h4>
- <h4 class="right-h4">学习体验</h4>
- <div class="desc">微信首页任务栏等60+小程序入口,让10亿用户 轻松发现你</div>
- <div class="desc">轻松发现你</div>
- </div>
- </div>
- </div>
- <div class="content-seconed">
- <div class="content-seconed-info w1200">
- <div class="left">
- <h4>轻松找到课堂入口 创造优质</h4>
- <h4 class="left-h4">学习体验</h4>
- <div class="desc">微信首页任务栏等60+小程序入口,让10亿用户</div>
- <div class="desc">轻松发现你</div>
- </div>
- <div class="right">
- <img
- src="~/assets/images/products/xcx_img_second.png"
- alt=""
- >
- </div>
- </div>
- </div>
- </div>
- </section>
- </template>
- <script>
- export default {
- name: "XcxPage",
- data() {
- return {
-
- };
- },
- components: {
- },
- mounted() {},
- };
- </script>
- <style scoped lang="scss">
- .XcxPage-container {
- .banner-img {
- position: relative;
- img {
- width: 100%;
- height: 595px;
- }
- .label {
- font-family: PingFangSC-Semibold, sans-serif;
- font-weight: 600;
- color: #ffffff;
- font-size: 80px;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- }
- .xcx-content {
- width: 100%;
- height: 1792px;
- .content-first {
- padding: 173px 0 138px 0;
- color: #262626;
- background: #F8FBFF;
- .content-first-info {
- display: flex;
- justify-content: space-between;
- }
- .left {
- img {
- width: 576px;
- height: 585px;
- }
- }
- .right {
- display: flex;
- flex-direction: column;
- justify-content: center;
- h4 {
- font-size: 26px;
- // font-family: PingFangSC-Medium, sans-serif;
- font-weight: 600;
- color: #333333;
- line-height: 37px;
- &.right-h4 {
- margin-bottom: 24px;
- }
- }
- .desc {
- font-size: 16px;
- font-family: PingFangSC-Regular, sans-serif;
- font-weight: 400;
- color: #666666;
- line-height: 28px;
- }
- }
- }
- .content-seconed {
- padding: 153px 0 138px 0;
- color: #262626;
- .content-seconed-info {
- display: flex;
- justify-content: space-between;
- .left {
- display: flex;
- flex-direction: column;
- justify-content: center;
- h4 {
- font-size: 26px;
- // font-family: PingFangSC-Medium, sans-serif;
- font-weight: 600;
- color: #333333;
- line-height: 37px;
- &.left-h4 {
- margin-bottom: 47px;
- }
- }
- .desc {
- font-size: 16px;
- font-family: PingFangSC-Regular, sans-serif;
- font-weight: 400;
- color: #666666;
- line-height: 28px;
- }
- }
- .right {
- img {
- width: 664px;
- height: 581px;
- }
- }
- }
- }
- }
- }
- </style>
|