| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- <template>
- <div class="container">
- <div class="header">
- <span>中德全国校区</span>
- <div class="form channel">
- <div class="text control">加盟申请</div>
- <div class="info control">
- <img src="~assets/images/campus/phone.png" alt="">
- <div class="phone">400-6807300</div>
- </div>
- <div class="control-input">
- <input type="text" placeholder="姓名">
- </div>
- <div class="control-input">
- <input type="text" placeholder="手机号">
- </div>
- <div class="control-input">
- <input type="text" placeholder="邮箱地址">
- </div>
- <div class="control-input">
- <input type="text" placeholder="加盟城市">
- </div>
- <div class="submit">提交申请</div>
- </div>
- </div>
- <!-- 全国校区 -->
- <div class="campus">
- <div class="title-content">
- <div class="c-title title-zh title-content wow animate__animated animate__fadeInDown">
- <div class="title-en">NATIONWIDE</div>
- 全国校区
- </div>
- </div>
- <div class="c-content w1200">
- <div class="list-warp">
- <ul class="list">
- <li class="campus-item wow animate__animated animate__bounceIn" v-for="(item, index) in campusList" :key="index">
- <img :src="item.imgUrl" alt="">
- <div class="info">
- <div class="area">{{ item.area }}</div>
- <div class="name">{{ item.name }}</div>
- <div class="address">
- <div class="icon"><img src="~/assets/images/campus/icon_address.png" alt=""></div>
- <p>{{ item.address }}</p>
- </div>
- <div class="phone">
- <div class="icon"><img src="~/assets/images/campus/icon_phone.png" alt=""></div>
- <p>{{ item.phone }}</p>
- </div>
- <div class="detail">
- <!-- to="{name:'news-category',params:{category: indexFirstNewsList.articleCategoryId}} -->
- <nuxt-link :to="{ name: 'campus-type', params: { type: item.id } }">
- 查看详情
- </nuxt-link>
- </div>
- </div>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- if (process.browser) {
- var {WOW} = require('wowjs')
- }
- export default {
- data() {
- return {
- campusList: [
- {
- id: 1,
- // imgUrl: 'http://zaojiao.net/public/static/index/images/xq/xq1-1.jpg',
- imgUrl: require('~/assets/images/campus/xq1-1.jpg'),
- address: '盈港东路8300弄佳乐苑社区商铺',
- phone: '4007288000',
- name: '襄阳校区',
- area: '上海市·上海市市辖区·青浦区'
- },
- {
- id: 2,
- imgUrl: require('~/assets/images/campus/xq2-1.jpg'),
- address: '盈港东路8300弄佳乐苑社区商铺',
- phone: '4007288000',
- name: '武汉校区',
- area: '上海市·上海市市辖区·青浦区'
- },
- {
- id: 3,
- imgUrl: require('~/assets/images/campus/xq3-1.jpg'),
- address: '盈港东路8300弄佳乐苑社区商铺',
- phone: '4007288000',
- name: '唐山校区',
- area: '上海市·上海市市辖区·青浦区'
- },
- {
- id: 4,
- imgUrl: require('~/assets/images/campus/xq4-1.jpg'),
- address: '盈港东路8300弄佳乐苑社区商铺',
- phone: '4007288000',
- name: '莆田校区',
- area: '上海市·上海市市辖区·青浦区'
- }
- ]
- }
- },
- head() {
- return {
- title: "逻辑狗官网-中德智慧教育",
- meta: [
- {
- name: "keywords",
- hid: "keywords",
- content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
- },
- {
- name: "description",
- hid: "description",
- content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
- },
- ],
- };
- },
- created() {
- },
- mounted() {
- if (process.browser) {
- new WOW({
- offset: 0,
- live: true
- }).init()
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "~static/common/style.sass";
- .title-content {
- position: relative;
- text-align: center;
- }
- .title-en {
- position: absolute;
- font-size: 78px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color:rgba(35,106,250,1);
- opacity: 0.16;
- }
- .title-zh {
- position: relative;
- display: inline-block;
- font-size:58px;
- font-family:PingFangSC-Semibold,PingFang SC;
- font-weight:600;
- color:rgba(38,38,38,1);
- text-align: center;
- }
- .header {
- position: relative;
- background: url('~assets/images/campus/header.png') 100% 100% no-repeat;
- height: 882px;
- // padding: 446px 0 0 302px;
- padding: 446px 0 0 15%;
- span {
- font-size: 80px;
- font-family: PingFangSC-Semibold,PingFang SC;
- font-weight: 600;
- color:#ffffff;
- line-height: 112px;
- }
- .form {
- font-size: 16px;
- position: absolute;
- right: 13.8%;
- // right: 266px;
- bottom: 124px;
- width: 327px;
- height: 450px;
- background:#FFFFFF;
- border-radius: 3px;
- padding: 34px 0 12px;
- div.text {
- font-size:14px;
- line-height:20px;
- font-family:PingFangSC-Regular,PingFang SC;
- font-weight:400;
- color: #5B5F5D;
- margin-bottom: 7px;
- }
- div.info {
- display: flex;
- align-items: center;
- margin-bottom: 20px;
- .phone {
- font-size: 26px;
- font-family: PingFangSC-Medium,PingFang SC;
- font-weight: 500;
- margin-left: 15px;
- }
- }
- .control {
- width:250px;
- margin: 0 auto;
- }
- .control-input {
- margin: 0 auto;
- width:250px;
- border-radius: 3px;
- border: 1px solid rgba(151,151,151,1);
- margin-bottom: 23px;
- input {
- width: 100%;
- height:44px;
- line-height: 44px;
- padding: 0 13px ;
- background: none;
- outline: none;
- border: 0px;
- &::-webkit-input-placeholder {
- color: #A4A6A5;
- }
- }
- }
- .submit {
- margin: 0 auto;
- text-align: center;
- font-size:14px;
- width: 148px;
- height: 27px;
- line-height: 27px;
- background: linear-gradient(180deg,rgba(88,144,251,1) 0%,rgba(51,117,252,1) 100%);
- box-shadow: 0px 7px 14px 0px rgba(136,176,254,0.79);
- border-radius: 3px;
- color: #ffffff;
- }
- }
- }
- .campus {
- padding: 192px 0 206px;
- .title-en {
- top: -40px;
- left: 50%;
- transform: translate(-50%);
- }
- .c-content {
- margin-top: 130px;
- ul {
- li.campus-item {
- display: inline-block;
- width: 374px;
- background:#FFFFFF;
- box-shadow: 0px 9px 13px 0px rgba(123,166,252,0.13);
- border-radius: 10px;
- margin: 0 38px 42px 0;
- transition: transform .3s ease-in-out;
- &:nth-child(3n) {
- margin-right: 0;
- }
- &:hover {
- transform: translate3d(0,-8px,0);
- }
- img {
- width: 100%;
- border-radius: 18px 18px 0 0;
- }
- .info {
- height: 175px;
- color: #898A8C;
- padding: 15px 20px 15px;
- .icon {
- margin-right: 8px;
- }
- }
- .area {
- font-size:14px;
- font-family: PingFangSC-Regular,PingFang SC;
- font-weight: 400;
- color:#898A8C;
- line-height: 20px;
- }
- .name {
- font-size:22px;
- font-family: PingFangSC-Medium,PingFang SC;
- font-weight:500;
- color:#1F241E;
- line-height:30px;
- margin-top: 5px;
- }
- .address {
- display: flex;
- align-items: center;
- font-size: 12px;
- font-family: PingFangSC-Regular,PingFang SC;
- font-weight: 400;
- line-height: 17px;
- margin-top: 9px;
- }
- .phone {
- display: flex;
- align-items: center;
- font-size: 12px;
- font-family: PingFangSC-Regular,PingFang SC;
- font-weight: 400;
- line-height: 17px;
- margin-top: 2px;
- }
- .detail {
- width: 85px;
- height: 26px;
- line-height: 26px;
- border-radius: 4px;
- border: 1px solid #4B86FB;
- font-size: 10px;
- text-align: center;
- color: #1B1616;
- margin: 17px auto 0;
- }
- }
- }
- }
- }
- </style>
|