| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <template>
- <section class="XcxPage-container">
- <div class="banner-img">
- <img :src="bannerImg" alt="">
- <section class="label">小程序课堂</section>
- </div>
- <slot></slot>
- <slot name="label"></slot>
- <div class="content">
- <div class="content-first">
- <div class="content-first-info w1200">
- <div class="left">
- <img
- src="http://res.training.luojigou.vip/Fr1pakSIAxm3LLHgAgMkHECAerAB?imageView2/0/q/50|imageslim"
- 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="http://res.training.luojigou.vip/FiiA82i4ori08A7Z8BbUdK8GMaxs?imageView2/0/q/50|imageslim"
- alt=""
- >
- </div>
- </div>
- </div>
- </div>
- </section>
- </template>
- <script>
- if (process.browser) {
- var { WOW } = require("wowjs");
- }
- export default {
- name: "XcxPage",
- data() {
- return {
- bannerImg: require("~/assets/images/products/banner-xcx.png"),
- };
- },
- mounted() {
- if (process.browser) {
- new WOW({
- offset: 0,
- live: true,
- }).init();
- }
- },
- };
- </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%);
- }
- }
- .content {
- width: 100%;
- height: 1792px;
- .content-first {
- padding: 173px 0 138px 0;
- color: #262626;
- background-color: #f7fbff;
- .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>
|