| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- <template>
- <div class="container">
- <abount-header :title="title" :bgImage="bgImage"></abount-header>
- <!-- 专家团队 -->
- <div class="expert w1200">
- <div class="e-title title-zh">专家团队</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">
- 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍简历介绍简历介绍 简历介绍简历介绍简历介绍
- </div>
- <div class="name">多丽丝•菲舍尔夫人</div>
- <div class="info">职称/学历/所在公司</div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- 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"),
- },
- {
- imgUrl: require("~/assets/images/about/expert_01.png"),
- },
- {
- imgUrl: require("~/assets/images/about/expert_01.png"),
- },
- {
- imgUrl: require("~/assets/images/about/expert_01.png"),
- },
- {
- imgUrl: require("~/assets/images/about/expert_01.png"),
- },
- ],
- };
- },
- components: {
- AbountHeader,
- },
- methods: {},
- };
- </script>
- <style lang="scss" scoped>
- @import "~static/common/style.sass";
- .title-zh {
- height: 81px;
- line-height: 81px;
- font-size: 58px;
- font-family: PingFangSC-Semibold, PingFang SC;
- font-weight: 600;
- color: #000000;
- letter-spacing: 1px;
- text-align: center;
- }
- .expert {
- padding: 195px 0 350px;
- .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;
- &:nth-child(3n) {
- margin-right: 0;
- }
- &:hover {
- .mask {
- display: block;
- background:rgba(0,0,0,0.5);
- }
- }
- .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,PingFang SC;
- font-weight:400;
- padding: 0 46px;
- margin-top: 162px;
- }
- .content {
- font-size: 14px;
- font-family: PingFangSC-Regular,PingFang SC;
- font-weight: 400;
- padding: 0 46px;
- line-height:28px;
- }
- .name {
- font-family: PingFangSC-Semibold,PingFang SC;
- font-weight: 600;
- font-size:45px;
- color: #ffffff;
- margin-top: 62px;
- line-height: 62px;
- letter-spacing:1px;
- padding: 0 16px;
- }
- .info {
- font-size:20px;
- font-family:PingFangSC-Regular,PingFang SC;
- font-weight:400;
- padding: 0 16px;
- margin-top: 6px;
- }
- }
- }
- }
- </style>
|