| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <template>
- <section class="H5-container">
- <slot></slot>
- <slot name="label"></slot>
- <div class="content">
- <div class="content-first">
- <div class="content-first-info w1200">
- <div class="left">
- <img
- class="firstImg"
- :src="firstImg"
- alt="">
- </div>
- <div class="right">
- <h4>公众号</h4>
- <div class="desc">中德智慧最新资讯,前沿教育内容,产品深度解读</div>
- </div>
- </div>
- </div>
- <div class="content-seconed">
- <div class="content-seconed-info w1200">
- <div class="left">
- <h4>视频号</h4>
- <div class="desc">中德智慧最新资讯,前沿教育内容,产品深度解读</div>
- </div>
- <div class="right">
- <img
- class="secondImg"
- :src="secondImg"
- alt=""
- >
- </div>
- </div>
- </div>
- <div class="content-first">
- <div class="content-first-info w1200">
- <div class="left">
- <img
- class="threeImg"
- :src="threeImg"
- alt="">
- </div>
- <div class="right">
- <h4>抖音</h4>
- <div class="desc">中德智慧最新资讯,前沿教育内容,产品深度解读</div>
- </div>
- </div>
- </div>
- <div class="content-seconed">
- <div class="content-seconed-info w1200">
- <div class="left">
- <h4>微博</h4>
- <div class="desc">品牌短讯,了解一手中德新闻</div>
- </div>
- <div class="right">
- <img
- class="fourImg"
- :src="fourImg"
- alt=""
- >
- </div>
- </div>
- </div>
- <div class="content-first">
- <div class="content-first-info w1200">
- <div class="left">
- <img
- class="fiveImg"
- :src="fiveImg"
- alt="">
- </div>
- <div class="right">
- <h4>小红书:</h4>
- <div class="desc">产品种草,带你了解不一样的逻辑狗</div>
- </div>
- </div>
- </div>
- </div>
- </section>
- </template>
- <script>
- export default {
- name: "H5Page", // 互联网矩阵
- data() {
- return {
- firstImg: "https://luojigou-app-commit-pic.luojigou.vip/FqgbkJtqaJV7WyLbcJ1qMe8D18Ne?imageView2/0/q/50|imageslim",
- secondImg: require('~/assets/images/products/internet_02.png'),
- threeImg: require('~/assets/images/products/internet_03.png'),
- fourImg: "https://luojigou-app-commit-pic.luojigou.vip/Fi30UXdvFxqRGp64JIH5GJoQjr9J?imageView2/0/q/50|imageslim",
- fiveImg: "https://luojigou-app-commit-pic.luojigou.vip/FnB88MUmBS_XJ8pSEooKVxXtEzZ5?imageView2/0/q/50|imageslim",
- };
- },
- mounted() {
- },
- };
- </script>
- <style scoped lang="scss">
- .H5-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%;
- h4 {
- font-size: 26px;
- font-family: PingFangSC-Medium, sans-serif;
- font-weight: 500;
- color: #333333;
- line-height: 37px;
- }
- .desc {
- margin-top: 44px;
- font-size: 14px;
- font-family: PingFangSC-Regular, sans-serif;
- font-weight: 400;
- color: #666666;
- line-height: 28px;
- }
- .content-first {
- padding: 50px 0 50px 0;
- color: #262626;
- background: #F8FBFF;
- .content-first-info {
- display: flex;
- justify-content: space-between;
- }
- .left {
- img {
- width: 666px;
- height: 642px;
- }
- .firstImg {
- width: 711px;
- height: 607px;
- }
- .threeImg {
- width: 676px;
- height: 643px;
- }
- .fiveImg {
- width: 737px;
- height: 598px;
- }
- }
- .right {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- }
- .content-seconed {
- padding: 50px 0 50px 0;
- color: #262626;
- .content-seconed-info {
- display: flex;
- justify-content: space-between;
- .left {
- display: flex;
- flex-direction: column;
- justify-content: center;
- }
- .right {
- img {
- width: 666px;
- height: 642px;
- object-fit: cover;
- }
- .threeImg {
- width: 676px;
- height: 643px;
- }
- .secondImg,
- .fourImg {
- width: 680px;
- height: 644px;
- }
- }
- }
- }
- }
- }
- </style>
|