yujialong 4 months ago
parent b6b0fdc88f
commit 3a61048753
  1. 249
      src/pages/estate/index/index.vue
  2. 291
      src/pages/home/index.vue

@ -1,53 +1,37 @@
<template> <template>
<div class="wrap"> <div class="wrap">
<el-carousel v-if="modules[0].list" <el-carousel v-if="modules[0].list" :interval="6000"
:interval="6000"
:arrow="(modules[0] && modules[0].list.filter(e => e.isEnable).length > 1) ? 'hover' : 'never'" :arrow="(modules[0] && modules[0].list.filter(e => e.isEnable).length > 1) ? 'hover' : 'never'"
:indicator-position="modules[0].list.filter(e => e.isEnable).length > 1 ? '' : 'none'"> :indicator-position="modules[0].list.filter(e => e.isEnable).length > 1 ? '' : 'none'">
<template v-for="(item, i) in modules[0].list"> <template v-for="(item, i) in modules[0].list">
<el-carousel-item v-if="item.pic && item.isEnable" <el-carousel-item v-if="item.pic && item.isEnable" :key="i">
:key="i"> <img :class="[{ 'cursor-pointer': isLink(item.link.linkName) }]" width="100%" :src="item.pic" alt=""
<img :class="[{'cursor-pointer': isLink(item.link.linkName)}]"
width="100%"
:src="item.pic"
alt=""
@click="openLink(item)"> @click="openLink(item)">
</el-carousel-item> </el-carousel-item>
</template> </template>
</el-carousel> </el-carousel>
<div class="block banner-block" <div class="block banner-block" id="part1">
id="part1">
<div class="inner"> <div class="inner">
<div class="title wow fadeInUp"> <div class="title wow fadeInUp">
<h5> <h5>
{{ modules[1].form.title }} {{ modules[1].form.title }}
<span class="sub">{{ modules[1].form.subTitle }}</span> <span class="sub">{{ modules[1].form.subTitle }}</span>
</h5> </h5>
<span class="more" <span class="more" @click="toAll(modules[2].form)">MORE</span>
@click="toAll(modules[2].form)">MORE</span>
</div> </div>
<template v-if="articles.length"> <template v-if="articles.length">
<div class="sfel-banner wow fadeInDown" <div class="sfel-banner wow fadeInDown" data-wow-delay="0.5s" @click="toArtice(curArticle, modules[2].form)">
data-wow-delay="0.5s" <div style="width: 50%;overflow: hidden;" class="newBox">
@click="toArtice(curArticle, modules[2].form)"> <img class="pic" width="100%" height="100%" :src="curArticle.titleImg" alt="">
<div style="width: 50%;overflow: hidden;"
class="newBox">
<img class="pic"
width="100%"
height="100%"
:src="curArticle.titleImg"
alt="">
</div> </div>
<div class="right"> <div class="right">
<h6>{{ curArticle.title }}</h6> <h6>{{ curArticle.title }}</h6>
<div class="des" <div class="des" v-html="curArticle.mainBody"></div>
v-html="curArticle.mainBody"></div> <p class="meta">{{ curArticle.releaseTime }} {{ curArticle.classificationName && ' | ' +
<p class="meta">{{ curArticle.releaseTime }} {{ curArticle.classificationName && ' | ' + curArticle.classificationName }}</p> curArticle.classificationName }}</p>
<ul class="inds"> <ul class="inds">
<li v-for="i in articles.length > 3 ? 4 : articles.length" <li v-for="i in articles.length > 3 ? 4 : articles.length" :key="i" :class="{ active: curInd == i - 1 }"
:key="i"
:class="{active: curInd == i - 1}"
@click.stop="switchCarousel(i - 1)"></li> @click.stop="switchCarousel(i - 1)"></li>
</ul> </ul>
</div> </div>
@ -55,20 +39,13 @@
<ul class="card"> <ul class="card">
<template v-for="(item, i) in articles"> <template v-for="(item, i) in articles">
<li v-if="i > 3 && i < 7" <li v-if="i > 3 && i < 7" :key="i" class="wow fadeInDown" :data-wow-delay="(0.1 * i).toFixed(1) + 's'">
:key="i" <img class="pic" :src="item.titleImg" alt="">
class="wow fadeInDown"
:data-wow-delay="(0.1 * i).toFixed(1) + 's'">
<img class="pic"
:src="item.titleImg"
alt="">
<div class="texts"> <div class="texts">
<p class="meta">{{ item.releaseTime }} {{ item.classificationName && ' | ' + item.classificationName }}</p> <p class="meta">{{ item.releaseTime }} {{ item.classificationName && ' | ' + item.classificationName
}}</p>
<div class="des">{{ item.title }}</div> <div class="des">{{ item.title }}</div>
<img class="arrow" <img class="arrow" src="@/assets/images/arrow.png" alt="" @click="toArtice(item, modules[2].form)">
src="@/assets/images/arrow.png"
alt=""
@click="toArtice(item, modules[2].form)">
</div> </div>
</li> </li>
</template> </template>
@ -77,8 +54,7 @@
</div> </div>
</div> </div>
<div class="block talent" <div class="block talent" id="part2">
id="part2">
<div class="inner"> <div class="inner">
<div class="title wow fadeInUp"> <div class="title wow fadeInUp">
<h5> <h5>
@ -88,84 +64,52 @@
<!-- <span class="more" @click="toAll(modules[4].form)">MORE</span> --> <!-- <span class="more" @click="toAll(modules[4].form)">MORE</span> -->
</div> </div>
<div class="shows"> <div class="shows">
<div class="left wow fadeInLeft" <div class="left wow fadeInLeft" data-wow-delay="0.5s">
data-wow-delay="0.5s">
<h6>{{ modules[4].form.title }}</h6> <h6>{{ modules[4].form.title }}</h6>
<div class="text" <div class="text" v-html="modules[4].form.des"></div>
v-html="modules[4].form.des"></div> <el-button v-if="isLink(modules[4].form.link.linkName)" type="primary" round
<el-button v-if="isLink(modules[4].form.link.linkName)" @click="openLink(modules[4].form)">{{ $t('column.more') }}</el-button>
type="primary"
round
@click="openLink(modules[4].form)">这里跳转</el-button>
</div> </div>
<img :src="modules[4].form.pic" <img :src="modules[4].form.pic" alt="" class="pic">
alt=""
class="pic">
</div> </div>
</div> </div>
</div> </div>
<div class="block conference" <div class="block conference" id="part3">
id="part3">
<div class="inner"> <div class="inner">
<div class="title wow fadeInUp"> <div class="title wow fadeInUp">
<h5> <h5>
{{ modules[5].form.title }} {{ modules[5].form.title }}
<span class="sub">{{ modules[5].form.subTitle }}</span> <span class="sub">{{ modules[5].form.subTitle }}</span>
</h5> </h5>
<span class="more" <span class="more" @click="toAll(modules[6].form)">MORE</span>
@click="toAll(modules[6].form)">MORE</span>
</div> </div>
<div class="shows" <div class="shows" v-if="articles2.length">
v-if="articles2.length"> <div class="left wow fadeInLeft" data-wow-delay="0.5s" @click="toArtice(articles2[0], modules[6].form)">
<div class="left wow fadeInLeft" <img class="pic" width="100%" height="100%" :src="articles2[0].titleImg" alt="">
data-wow-delay="0.5s"
@click="toArtice(articles2[0], modules[6].form)">
<img class="pic"
width="100%"
height="100%"
:src="articles2[0].titleImg"
alt="">
<div class="text">{{ articles2[0].title }}</div> <div class="text">{{ articles2[0].title }}</div>
</div> </div>
<ul class="card-list wow fadeInRight" <ul class="card-list wow fadeInRight" data-wow-delay="0.5s">
data-wow-delay="0.5s">
<template v-for="(item, i) in articles2"> <template v-for="(item, i) in articles2">
<li v-if="i && i < 4" <li v-if="i && i < 4" :key="i" @click="toArtice(item, modules[6].form)">
:key="i" <img class="pic" :src="item.titleImg" alt="">
@click="toArtice(item, modules[6].form)">
<img class="pic"
:src="item.titleImg"
alt="">
<div class="texts"> <div class="texts">
<h6>{{ item.title }}</h6> <h6>{{ item.title }}</h6>
<p class="sum">{{ item.mainBody }}</p> <p class="sum">{{ item.mainBody }}</p>
<p v-if="item.keynoteSpeaker" <p v-if="item.keynoteSpeaker" class="text">
class="text"> <img class="icon" src="@/assets/images/mine.png" alt="">
<img class="icon"
src="@/assets/images/mine.png"
alt="">
{{ item.keynoteSpeaker }} {{ item.keynoteSpeaker }}
</p> </p>
<p v-if="item.activityStartTime" <p v-if="item.activityStartTime" class="text">
class="text"> <img class="icon" src="@/assets/images/time.png" alt="">
<img class="icon"
src="@/assets/images/time.png"
alt="">
会议时间: {{ item.activityStartTime + ' ~ ' + item.activityEndTime }} 会议时间: {{ item.activityStartTime + ' ~ ' + item.activityEndTime }}
</p> </p>
<p v-if="item.onlineLocation" <p v-if="item.onlineLocation" class="text">
class="text"> <img class="icon" src="@/assets/images/online.png" alt="">
<img class="icon"
src="@/assets/images/online.png"
alt="">
{{ item.onlineLocation }} {{ item.onlineLocation }}
</p> </p>
<p v-if="item.offlineLocation" <p v-if="item.offlineLocation" class="text">
class="text"> <img class="icon" src="@/assets/images/location.png" alt="">
<img class="icon"
src="@/assets/images/location.png"
alt="">
{{ item.offlineLocation }} {{ item.offlineLocation }}
</p> </p>
</div> </div>
@ -176,37 +120,29 @@
</div> </div>
</div> </div>
<div class="block program" <div class="block program" id="part4">
id="part4">
<div class="inner"> <div class="inner">
<div class="title wow fadeInUp"> <div class="title wow fadeInUp">
<h5> <h5>
{{ modules[7].form.title }} {{ modules[7].form.title }}
<span class="sub">{{ modules[7].form.subTitle }}</span> <span class="sub">{{ modules[7].form.subTitle }}</span>
</h5> </h5>
<span class="more" <span class="more" @click="toAll(modules[8].form)">MORE</span>
@click="toAll(modules[8].form)">MORE</span>
</div> </div>
<template v-if="articles3.length"> <template v-if="articles3.length">
<div class="slide" <div class="slide" @click="toArtice(articles3[0], modules[8].form)">
@click="toArtice(articles3[0], modules[8].form)">
<div class="texts"> <div class="texts">
<h6>{{ articles3[0].title }}</h6> <h6>{{ articles3[0].title }}</h6>
<div class="des">{{ articles3[0].mainBody }}</div> <div class="des">{{ articles3[0].mainBody }}</div>
<div class="meta">发表日期{{ articles3[0].releaseTime }} &emsp;浏览量{{ articles3[0].totalBrowsing }}</div> <div class="meta">发表日期{{ articles3[0].releaseTime }} &emsp;浏览量{{ articles3[0].totalBrowsing }}</div>
</div> </div>
<div class="img-wrap"> <div class="img-wrap">
<img class="pic" <img class="pic" :src="articles3[0].titleImg" alt="">
:src="articles3[0].titleImg"
alt="">
</div> </div>
</div> </div>
<ul class="list"> <ul class="list">
<template v-for="(item, i) in articles3"> <template v-for="(item, i) in articles3">
<li v-if="i && i < 4" <li v-if="i && i < 4" :key="i" class="wow fadeInDown" :data-wow-delay="(0.1 * i).toFixed(1) + 's'"
:key="i"
class="wow fadeInDown"
:data-wow-delay="(0.1 * i).toFixed(1) + 's'"
@click="toArtice(item, modules[8].form)"> @click="toArtice(item, modules[8].form)">
<div class="des">{{ item.title }}</div> <div class="des">{{ item.title }}</div>
<p class="date">{{ item.releaseTime }}</p> <p class="date">{{ item.releaseTime }}</p>
@ -332,8 +268,10 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
@import url(../../../plugins/wow/animate.css); @import url(../../../plugins/wow/animate.css);
@import '../../../styles/page/page.scss'; @import '../../../styles/page/page.scss';
/deep/ .el-carousel { /deep/ .el-carousel {
height: 100vh; height: 100vh;
.el-carousel__container, .el-carousel__container,
.el-carousel__item, .el-carousel__item,
img { img {
@ -341,6 +279,7 @@ export default {
object-fit: cover; object-fit: cover;
} }
} }
.title { .title {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@ -348,6 +287,7 @@ export default {
padding-bottom: 25px; padding-bottom: 25px;
margin-bottom: 30px; margin-bottom: 30px;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
h5 { h5 {
padding-left: 16px; padding-left: 16px;
font-size: 1.6rem; font-size: 1.6rem;
@ -357,46 +297,57 @@ export default {
line-height: 1; line-height: 1;
border-left: 6px solid #2b96ef; border-left: 6px solid #2b96ef;
} }
.sub { .sub {
font-size: 1.1rem; font-size: 1.1rem;
font-family: PingFangSC-Medium, PingFang SC; font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500; font-weight: 500;
color: #afb7bf; color: #afb7bf;
} }
.more { .more {
font-size: 0.8rem; font-size: 0.8rem;
color: #666; color: #666;
cursor: pointer; cursor: pointer;
} }
} }
/deep/.articles { /deep/.articles {
width: 50%; width: 50%;
.el-carousel__indicators--horizontal { .el-carousel__indicators--horizontal {
bottom: 20px; bottom: 20px;
left: 804px; left: 804px;
} }
} }
.banner-block { .banner-block {
background: url(../../../assets/images/sfel/2.png) 0 0 / cover no-repeat; background: url(../../../assets/images/sfel/2.png) 0 0 / cover no-repeat;
} }
.sfel-banner { .sfel-banner {
display: flex; display: flex;
cursor: pointer; cursor: pointer;
.pic { .pic {
transition: 0.5s; transition: 0.5s;
object-fit: cover; object-fit: cover;
&:hover { &:hover {
transform: scale(1.3); transform: scale(1.3);
} }
} }
.right { .right {
position: relative; position: relative;
width: 50%; width: 50%;
padding: 50px 50px 30px; padding: 50px 50px 30px;
background: #1583ff; background: #1583ff;
color: #fff; color: #fff;
&:hover { &:hover {
background: #465f85; background: #465f85;
h6, h6,
.des, .des,
.meta { .meta {
@ -405,11 +356,13 @@ export default {
} }
} }
} }
.inds { .inds {
position: absolute; position: absolute;
bottom: 40px; bottom: 40px;
left: 60px; left: 60px;
display: flex; display: flex;
li { li {
width: 10px; width: 10px;
height: 10px; height: 10px;
@ -417,6 +370,7 @@ export default {
background: #ffffff; background: #ffffff;
border-radius: 50%; border-radius: 50%;
transition: 0.2s; transition: 0.2s;
&.active { &.active {
width: 30px; width: 30px;
background: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.3);
@ -424,25 +378,30 @@ export default {
} }
} }
} }
h6 { h6 {
font-size: 1.3rem; font-size: 1.3rem;
transition: 0.3s; transition: 0.3s;
} }
.des { .des {
margin: 30px 0; margin: 30px 0;
font-size: 0.9rem; font-size: 0.9rem;
line-height: 24px; line-height: 24px;
transition: 0.3s; transition: 0.3s;
} }
.meta { .meta {
font-size: 0.8rem; font-size: 0.8rem;
transition: 0.3s; transition: 0.3s;
} }
} }
.card { .card {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
margin-top: 40px; margin-top: 40px;
li { li {
width: calc((100% - 56px) / 3); width: calc((100% - 56px) / 3);
margin-right: 28px; margin-right: 28px;
@ -450,25 +409,31 @@ export default {
border-radius: 6px; border-radius: 6px;
transition: 0.3s; transition: 0.3s;
background-color: #fff; background-color: #fff;
&:hover { &:hover {
transform: scale(1.05); transform: scale(1.05);
} }
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
} }
} }
.pic { .pic {
width: 100%; width: 100%;
// height: 259px; // height: 259px;
object-fit: cover; object-fit: cover;
} }
.texts { .texts {
padding: 40px 30px; padding: 40px 30px;
} }
.meta { .meta {
font-size: 0.9rem; font-size: 0.9rem;
color: #666; color: #666;
} }
.des { .des {
height: 60px; height: 60px;
margin: 10px 0; margin: 10px 0;
@ -479,28 +444,34 @@ export default {
line-height: 28px; line-height: 28px;
-webkit-line-clamp: 2; -webkit-line-clamp: 2;
} }
.arrow { .arrow {
width: 36px; width: 36px;
} }
} }
.talent { .talent {
.shows { .shows {
display: flex; display: flex;
color: #fff; color: #fff;
background: #1a2844; background: #1a2844;
border-radius: 0px 100px 0px 100px; border-radius: 0px 100px 0px 100px;
.left { .left {
width: 50%; width: 50%;
padding: 120px 0 0 5%; padding: 120px 0 0 5%;
} }
h6 { h6 {
font-size: 1.6rem; font-size: 1.6rem;
} }
.text { .text {
margin: 20px 0; margin: 20px 0;
font-size: 1rem; font-size: 1rem;
line-height: 2; line-height: 2;
} }
.pic { .pic {
width: 50%; width: 50%;
min-height: 465px; min-height: 465px;
@ -508,11 +479,14 @@ export default {
} }
} }
} }
.conference { .conference {
background: url(../../../assets/images/sfel/4.png) 0 0 / cover no-repeat; background: url(../../../assets/images/sfel/4.png) 0 0 / cover no-repeat;
.shows { .shows {
display: flex; display: flex;
} }
.left { .left {
position: relative; position: relative;
width: 550px; width: 550px;
@ -521,6 +495,7 @@ export default {
margin-right: 20px; margin-right: 20px;
cursor: pointer; cursor: pointer;
overflow: hidden; overflow: hidden;
.text { .text {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
@ -534,18 +509,22 @@ export default {
color: #ffffff; color: #ffffff;
background-color: rgba(0, 0, 0, 0.57); background-color: rgba(0, 0, 0, 0.57);
} }
.pic { .pic {
transition: 0.5s; transition: 0.5s;
object-fit: cover; object-fit: cover;
} }
&:hover { &:hover {
.pic { .pic {
transform: scale(1.3); transform: scale(1.3);
} }
} }
} }
.card-list { .card-list {
width: 600px; width: 600px;
li { li {
display: flex; display: flex;
align-items: center; align-items: center;
@ -554,34 +533,41 @@ export default {
background-color: #fff; background-color: #fff;
cursor: pointer; cursor: pointer;
transition: 0.3s; transition: 0.3s;
&:last-child { &:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
&:hover { &:hover {
transform: translateX(20px); transform: translateX(20px);
} }
} }
.pic { .pic {
width: 167px; width: 167px;
height: 167px; height: 167px;
margin-right: 36px; margin-right: 36px;
object-fit: cover; object-fit: cover;
} }
.texts { .texts {
width: calc(100% - 210px); width: calc(100% - 210px);
} }
h6 { h6 {
margin-bottom: 10px; margin-bottom: 10px;
font-size: 1.2rem; font-size: 1.2rem;
color: #333; color: #333;
@include ellipsis; @include ellipsis;
} }
.sum { .sum {
margin-bottom: 6px; margin-bottom: 6px;
font-size: 1rem; font-size: 1rem;
color: #666; color: #666;
@include ellipsis; @include ellipsis;
} }
.text { .text {
display: flex; display: flex;
align-items: center; align-items: center;
@ -589,6 +575,7 @@ export default {
font-size: 0.9rem; font-size: 0.9rem;
@include ellipsis; @include ellipsis;
} }
.icon { .icon {
margin-right: 5px; margin-right: 5px;
} }
@ -597,50 +584,60 @@ export default {
.program { .program {
background: #fff; background: #fff;
.slide { .slide {
display: flex; display: flex;
margin-bottom: 14px; margin-bottom: 14px;
cursor: pointer; cursor: pointer;
} }
.texts { .texts {
width: 51%; width: 51%;
padding: 56px; padding: 56px;
background: #fbfbfb; background: #fbfbfb;
h6 { h6 {
font-size: 1.3rem; font-size: 1.3rem;
font-family: PingFangSC-Medium, PingFang SC; font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500; font-weight: 500;
color: #333333; color: #333333;
} }
.des { .des {
margin: 35px 0 25px; margin: 35px 0 25px;
font-size: 1rem; font-size: 1rem;
color: #666; color: #666;
line-height: 32px; line-height: 32px;
} }
.meta { .meta {
font-size: 0.9rem; font-size: 0.9rem;
color: #666; color: #666;
} }
} }
.img-wrap { .img-wrap {
width: 49%; width: 49%;
min-height: 334px; min-height: 334px;
overflow: hidden; overflow: hidden;
} }
.pic { .pic {
width: 100%; width: 100%;
height: 100%; height: 100%;
transition: 0.5s; transition: 0.5s;
object-fit: cover; object-fit: cover;
} }
&:hover { &:hover {
.pic { .pic {
transform: scale(1.3); transform: scale(1.3);
} }
} }
.list { .list {
display: flex; display: flex;
li { li {
width: calc((100% - 28px) / 3); width: calc((100% - 28px) / 3);
height: 204px; height: 204px;
@ -649,17 +646,21 @@ export default {
background: url(../../../assets/images/sfel/7.png) no-repeat center; background: url(../../../assets/images/sfel/7.png) no-repeat center;
transition: 0.5s; transition: 0.5s;
cursor: pointer; cursor: pointer;
&:nth-child(2) { &:nth-child(2) {
background-image: url(../../../assets/images/sfel/8.png); background-image: url(../../../assets/images/sfel/8.png);
} }
&:nth-child(3) { &:nth-child(3) {
margin-right: 0; margin-right: 0;
background-image: url(../../../assets/images/sfel/9.png); background-image: url(../../../assets/images/sfel/9.png);
} }
&:hover { &:hover {
transform: translateY(20px); transform: translateY(20px);
} }
} }
.des { .des {
height: 90px; height: 90px;
margin-bottom: 30px; margin-bottom: 30px;
@ -669,6 +670,7 @@ export default {
color: #ffffff; color: #ffffff;
line-height: 30px; line-height: 30px;
} }
.date { .date {
font-size: 0.9rem; font-size: 0.9rem;
font-family: LaoSangamMN; font-family: LaoSangamMN;
@ -676,6 +678,7 @@ export default {
} }
} }
} }
.tools { .tools {
z-index: 9; z-index: 9;
position: fixed; position: fixed;
@ -683,11 +686,13 @@ export default {
left: 0; left: 0;
width: 180px; width: 180px;
text-align: center; text-align: center;
.logo { .logo {
padding: 15px 0; padding: 15px 0;
background: #0c60be; background: #0c60be;
box-shadow: 0px 0px 20px 0px rgba(184, 191, 200, 0.3); box-shadow: 0px 0px 20px 0px rgba(184, 191, 200, 0.3);
} }
.nav { .nav {
li { li {
padding: 0 10px; padding: 0 10px;
@ -697,9 +702,11 @@ export default {
background-color: #1d1d1d; background-color: #1d1d1d;
cursor: pointer; cursor: pointer;
@include ellipsis; @include ellipsis;
&.active { &.active {
background-color: #1583ff; background-color: #1583ff;
} }
&:hover { &:hover {
background-color: #1583ff; background-color: #1583ff;
} }
@ -710,46 +717,59 @@ export default {
@media (max-width: 1200px) { @media (max-width: 1200px) {
.sfel-banner { .sfel-banner {
flex-direction: column; flex-direction: column;
.newBox { .newBox {
width: 100% !important; width: 100% !important;
} }
.right { .right {
margin-top: 10px; margin-top: 10px;
width: 100%; width: 100%;
height: 410px; height: 410px;
} }
} }
.card { .card {
flex-direction: column; flex-direction: column;
li { li {
width: 100%; width: 100%;
margin-top: 20px; margin-top: 20px;
} }
} }
.shop-shows { .shop-shows {
flex-direction: column; flex-direction: column;
.left { .left {
width: 100%; width: 100%;
} }
.right { .right {
width: 100%; width: 100%;
margin-top: 20px; margin-top: 20px;
} }
} }
.shows { .shows {
flex-direction: column; flex-direction: column;
.left { .left {
width: 100%; width: 100%;
} }
.card-list { .card-list {
width: 100%; width: 100%;
margin-top: 20px; margin-top: 20px;
li { li {
flex-direction: column; flex-direction: column;
.pic { .pic {
width: 100% !important; width: 100% !important;
margin-right: 0; margin-right: 0;
} }
.texts { .texts {
margin-top: 20px; margin-top: 20px;
width: 100%; width: 100%;
@ -757,54 +777,66 @@ export default {
} }
} }
} }
.talent { .talent {
.shows { .shows {
.left { .left {
width: 100%; width: 100%;
margin-bottom: 20px; margin-bottom: 20px;
} }
.pic { .pic {
width: 100%; width: 100%;
min-height: 0; min-height: 0;
} }
} }
} }
.media-wrap { .media-wrap {
flex-direction: column; flex-direction: column;
.left { .left {
width: 100%; width: 100%;
} }
.right { .right {
width: 100%; width: 100%;
margin-top: 20px; margin-top: 20px;
} }
} }
.news { .news {
flex-direction: column; flex-direction: column;
li { li {
margin-top: 30px; margin-top: 30px;
width: 100%; width: 100%;
} }
} }
.slide, .slide,
.list { .list {
flex-direction: column; flex-direction: column;
.texts, .texts,
.img-wrap { .img-wrap {
width: 100%; width: 100%;
} }
} }
.list { .list {
li { li {
width: 100% !important; width: 100% !important;
margin-top: 20px; margin-top: 20px;
} }
} }
.slides { .slides {
div { div {
flex: 1; flex: 1;
} }
} }
.program { .program {
.list { .list {
li { li {
@ -812,6 +844,7 @@ export default {
} }
} }
} }
#part6 { #part6 {
.slide { .slide {
.texts { .texts {

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save