| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <template>
- <div class="container">
- <abount-header :title="title" :bgImage="bgImage"></abount-header>
- <!-- 专家团队 -->
- <div class="expert w1200">
- <div class="title-content">
- <div class="e-title title-zh wow animate__animated animate__fadeInDown">
- <div class="title-en">EXPERT</div>
- 专家团队
- </div>
- </div>
- <div class="e-content">
- <div :class="['expert-item']" v-for="(item, index) in expertList" :key="index">
- <img :src="item.imgUrl" alt="">
- <div class="line"></div>
- <div class="mask">
- <div class="intro">简历介绍</div>
- <div class="content">
- <p v-for="(ele, index) in item.content" :key="index">
- {{ ele }}
- </p>
- </div>
- <div class="name">{{item.name}}</div>
- <div class="info">{{item.info}}</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- if (process.browser) {
- var {WOW} = require('wowjs')
- }
- import AbountHeader from "~/components/about/banner";
- export default {
- data() {
- return {
- title: "专家团队",
- bgImage: require("~/assets/images/about/about_team.png"),
- expertList: [
- {
- imgUrl: require("~/assets/images/about/expert_01.png"),
- content: [
- '德国现代著名早期教育专家',
- '哲学博士',
- ],
- name: '季泽拉•吕克',
- info: 'Prof Gisela Lueck'
- },
- {
- imgUrl: require("~/assets/images/about/expert_02.png"),
- content: [
- '芬肯出版社总经理',
- '芬肯d第三代人的企业继承人',
- ],
- name: '霍克•科瑞克',
- info: 'Holger Krick'
- },
- {
- imgUrl: require("~/assets/images/about/expert_03.png"),
- content: [
- '德国出版界知名编辑',
- '著名思维教育专家',
- ],
- name: '多丽丝•菲舍尔夫人',
- info: 'Ms Doris Fischer'
- },
- {
- imgUrl: require("~/assets/images/about/expert_04.png"),
- content: [
- '德国现代著名早期教育专家',
- '哲学博士',
- ],
- name: '苏珊娜·贝尔纳',
- info: 'Rotraut Susanne Berners'
- }
- ],
- };
- },
- head() {
- return {
- title: "逻辑狗官网-中德智慧教育",
- meta: [
- {
- name: "keywords",
- hid: "keywords",
- content: `逻辑狗官网、逻辑狗教材、 幼儿园教材、逻辑狗课程、逻辑狗思维训练课程、儿童思维教育、0-12岁儿童`,
- },
- {
- hid: "description",
- content: `逻辑狗官方网站,专为0-12岁儿童设计的思维训练课程,中德智慧教育,全球优质教育内容输出平台`,
- },
- ],
- };
- },
- mounted () {
- if (process.browser) {
- new WOW({
- offset: 0,
- live: true
- }).init()
- }
- },
- components: {
- AbountHeader,
- },
- methods: {},
- };
- </script>
- <style lang="scss" scoped>
- @import "~static/common/style.sass";
- .title-content {
- position: relative;
- text-align: center;
- }
- .title-en {
- position: absolute;
- font-size: 56px;
- font-family: PingFangSC-Semibold, sans-serif;
- font-weight: 600;
- color:rgba(35,106,250,1);
- opacity: 0.16;
- }
- .title-zh {
- position: relative;
- display: inline-block;
- font-size: 46px;
- font-family:PingFangSC-Semibold, sans-serif;
- font-weight: 600;
- color:#333333;
- text-align: center;
- }
- .expert {
- padding: 195px 0 350px;
- .title-en {
- position: absolute;
- top: -30px;
- left: 50%;
- transform: translateX(-50%);
- }
- .e-content {
- display: flex;
- flex-wrap: wrap;
- // justify-content: space-between;
- align-items: center;
- margin-top: 150px;
- }
- .e-title {
- text-align: center;
- }
- .expert-item {
- position: relative;
- margin-bottom: 26px;
- margin-right: 40px;
- border-radius: 10px 10px 0px 0px;
- img {
- width: 373px;
- height: 542px;
- object-fit: cover;
- border-radius: 12px 12px 0px 0px;
- }
- &:nth-child(3n) {
- margin-right: 0;
- }
- &:hover {
- .mask {
- display: block;
- background:rgba(0,0,0,0.5);
- transition: all .5s;
- -webkit-transition: all .5s;
- }
- }
- .line {
- width: 100%;
- position: absolute;
- bottom: 0;
- height: 8px;
- background: rgba(131, 171, 249, 1);
- z-index: 66;
- }
- .mask {
- display: none;
- position: absolute;
- border-radius: 10px;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- transition: all .5s;
- -webkit-transition: all .5s;
- color: #ffffff;
- .intro {
- font-size:16px;
- font-family:PingFangSC-Regular, sans-serif;
- font-weight:400;
- padding: 0 46px;
- margin-top: 162px;
- }
- .content {
- font-size: 14px;
- font-family: PingFangSC-Regular, sans-serif;
- font-weight: 400;
- padding: 0 46px;
- line-height:28px;
- min-height: 180px;
- }
- .name {
- font-size: 36px;
- font-family: PingFangSC-Semibold, sans-serif;
- font-weight: 600;
- color: #FFFFFF;
- line-height: 50px;
- margin-top: 62px;
- letter-spacing:1px;
- padding: 0 16px;
- }
- .info {
- font-size:20px;
- font-family:PingFangSC-Regular, sans-serif;
- font-weight:400;
- padding: 0 16px;
- margin-top: 6px;
- }
- }
- }
- }
- </style>
|