You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
952 lines
27 KiB
952 lines
27 KiB
<template> |
|
<div class="wrap"> |
|
<el-carousel class="carousel" |
|
:interval="6000" |
|
: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'"> |
|
<template v-for="(item, i) in modules[0].list"> |
|
<el-carousel-item v-if="item.pic && item.isEnable" |
|
:key="i"> |
|
<img :class="[{'cursor-pointer': isLink(item.link.linkName)}]" |
|
width="100%" |
|
:src="item.pic" |
|
alt="" |
|
@click="openLink(item)"> |
|
<div class="texts"> |
|
<h6>{{ item.title }}</h6> |
|
<p class="text">{{ item.des }}</p> |
|
</div> |
|
</el-carousel-item> |
|
</template> |
|
</el-carousel> |
|
|
|
<div class="block" |
|
style="padding-top: 80px"> |
|
<div class="inner"> |
|
<h2 class="b-title wow fadeInUp">{{ modules[1].form.title }}</h2> |
|
<p class="intro wow fadeInUp" |
|
data-wow-delay="0.5s">{{ modules[1].form.des }}</p> |
|
<ul class="card"> |
|
<li class="wow fadeInDown" |
|
data-wow-delay="0.2s" |
|
:class="{'cursor-pointer': isLink(modules[2].form.link.linkName)}" |
|
@click="openLink(modules[2].form)"> |
|
<img class="pic" |
|
:src="modules[2].form.pic" |
|
alt=""> |
|
<div class="project">SILF</div> |
|
<div class="texts"> |
|
<div class="name">SILF</div> |
|
<h6>{{ modules[2].form.title }}</h6> |
|
<p class="des">{{ modules[2].form.des }}</p> |
|
</div> |
|
</li> |
|
<li class="wow fadeInDown" |
|
data-wow-delay="0.6s" |
|
:class="{'cursor-pointer': isLink(modules[3].form.link.linkName)}" |
|
@click="openLink(modules[3].form)"> |
|
<img class="pic" |
|
:src="modules[3].form.pic" |
|
alt=""> |
|
<div class="project">S³FEL</div> |
|
<div class="texts"> |
|
<div class="name">S³FEL</div> |
|
<h6>{{ modules[3].form.title }}</h6> |
|
<p class="des">{{ modules[3].form.des }}</p> |
|
</div> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
<div class="block news-wrap"> |
|
<div class="inner"> |
|
<h2 class="b-title wow fadeInUp">{{ modules[4].form.title }}</h2> |
|
<p class="intro wow fadeInUp" |
|
data-wow-delay="0.5s">{{ modules[4].form.des }}</p> |
|
<div class="all-link" |
|
@click="toAll(modules[5].form)"> |
|
<span>{{$t('column.seeMore')}} <img class="icon" |
|
src="@/assets/images/arrow.png" |
|
alt=""></span> |
|
</div> |
|
<template v-if="articles.length"> |
|
<div class="news-banner wow fadeInDown" |
|
data-wow-delay="0.5s" |
|
@click="toArtice(articles[0], modules[5].form)"> |
|
<div class="pic-wrap"> |
|
<img class="pic" |
|
width="100%" |
|
height="100%" |
|
:src="articles[0].titleImg" |
|
alt=""> |
|
</div> |
|
<div class="right"> |
|
<h6>{{ articles[0].title }}</h6> |
|
<div class="des" |
|
v-html="articles[0].mainBody"></div> |
|
<p class="meta">{{ articles[0].releaseTime }} {{ articles[0].classificationName && ' | ' + articles[0].classificationName }}</p> |
|
</div> |
|
</div> |
|
|
|
<ul class="news"> |
|
<template v-for="(item, i) in articles"> |
|
<li v-if="i" |
|
:key="i" |
|
class="wow fadeInDown" |
|
:data-wow-delay="(0.1 * i).toFixed(1) + 's'" |
|
@click="toArtice(item, modules[5].form)"> |
|
<div class="pic-wrap"> |
|
<img class="pic" |
|
:src="item.titleImg" |
|
alt=""> |
|
</div> |
|
<div class="texts"> |
|
<h6>{{ item.title }}</h6> |
|
<div class="des" |
|
v-html="item.mainBody"></div> |
|
<p class="meta">{{ item.releaseTime }} {{ item.classificationName && ' | ' + item.classificationName }}</p> |
|
</div> |
|
</li> |
|
</template> |
|
</ul> |
|
</template> |
|
<ul class="news-carousel"> |
|
<li v-if="articles1.length"> |
|
<img class="pic" |
|
src="http://10.10.11.7/images/iasf/8.png" |
|
alt=""> |
|
<div class="texts"> |
|
<h6 @click="toAll(modules[6].form)">{{ getColumnTitle(modules[6].form) }} <i class="el-icon-arrow-right"></i></h6> |
|
<div class="des-wrap"> |
|
<p class="meta">{{ curArticle1.source }}</p> |
|
<div class="des" |
|
@click="toArtice(curArticle1, modules[6].form)">{{ curArticle1.title }}</div> |
|
</div> |
|
<p class="date">{{ curArticle1.releaseTime }}</p> |
|
</div> |
|
<div class="action"> |
|
<i class="el-icon-arrow-left dir" |
|
@click.stop="prevCarousel(1)"></i> |
|
<ul class="inds"> |
|
<li v-for="i in articles1.length > 3 ? 4 : articles1.length" |
|
:key="i" |
|
:class="{active: curInd1 == i - 1}" |
|
@click.stop="switchCarousel(1, i - 1)"></li> |
|
</ul> |
|
<i class="el-icon-arrow-right dir" |
|
@click.stop="nextCarousel(1)"></i> |
|
</div> |
|
</li> |
|
<li v-if="articles2.length"> |
|
<img class="pic" |
|
src="http://10.10.11.7/images/iasf/9.png" |
|
alt=""> |
|
<div class="texts"> |
|
<h6 @click="toAll(modules[7].form)">{{ getColumnTitle(modules[7].form) }} <i class="el-icon-arrow-right"></i></h6> |
|
<div class="des-wrap"> |
|
<p class="meta">{{ curArticle2.classificationName }}</p> |
|
<div class="des" |
|
@click="toArtice(curArticle2, modules[7].form)">{{ curArticle2.title }}</div> |
|
</div> |
|
<p class="date">{{ curArticle2.releaseTime }}</p> |
|
</div> |
|
<div class="action"> |
|
<i class="el-icon-arrow-left dir" |
|
@click.stop="prevCarousel(2)"></i> |
|
<ul class="inds"> |
|
<li v-for="i in articles2.length > 3 ? 4 : articles2.length" |
|
:key="i" |
|
:class="{active: curInd2 == i - 1}" |
|
@click.stop="switchCarousel(2, i - 1)"></li> |
|
</ul> |
|
<i class="el-icon-arrow-right dir" |
|
@click.stop="nextCarousel(2)"></i> |
|
</div> |
|
</li> |
|
<li v-if="articles3.length"> |
|
<img class="pic" |
|
src="http://10.10.11.7/images/iasf/10.png" |
|
alt=""> |
|
<div class="texts"> |
|
<h6 @click="toAll(modules[8].form)">{{ getColumnTitle(modules[8].form) }} <i class="el-icon-arrow-right"></i></h6> |
|
<div class="des-wrap" |
|
style="margin-top: 16px"> |
|
<div class="des" |
|
@click="toArtice(curArticle3, modules[8].form)">{{ curArticle3.title }}</div> |
|
</div> |
|
<p class="date">{{ curArticle3.releaseTime }}</p> |
|
</div> |
|
<div class="action"> |
|
<i class="el-icon-arrow-left dir" |
|
@click.stop="prevCarousel(3)"></i> |
|
<ul class="inds"> |
|
<li v-for="i in articles3.length > 3 ? 4 : articles3.length" |
|
:key="i" |
|
:class="{active: curInd3 == i - 1}" |
|
@click.stop="switchCarousel(3, i - 1)"></li> |
|
</ul> |
|
<i class="el-icon-arrow-right dir" |
|
@click.stop="nextCarousel(3)"></i> |
|
</div> |
|
</li> |
|
</ul> |
|
</div> |
|
</div> |
|
|
|
<div class="block"> |
|
<div class="inner"> |
|
<h2 class="b-title wow fadeInUp">{{ modules[9].form.title }}</h2> |
|
<p class="intro wow fadeInUp" |
|
data-wow-delay="0.5s">{{ modules[9].form.des }}</p> |
|
<ul v-if="articles4.length" |
|
class="people"> |
|
<li v-for="(item, i) in articles4" |
|
:key="i" |
|
@click="toArtice(item, modules[10].form)" |
|
class="wow fadeInDown"> |
|
<img class="pic" |
|
:src="item.titleImg" |
|
alt=""> |
|
<div class="texts"> |
|
<h6>{{ item.title }}</h6> |
|
<p class="job">岗位:{{ item.post }}</p> |
|
<p class="hobby">爱好:{{ item.hobby }}</p> |
|
<div class="text" |
|
v-html="item.mainBody"></div> |
|
</div> |
|
</li> |
|
</ul> |
|
<div class="all-link" |
|
@click="toAll(modules[10].form)"> |
|
<span>{{$t('column.all')}} <img class="icon" |
|
src="@/assets/images/arrow.png" |
|
alt=""></span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="block talent-block"> |
|
<div class="inner"> |
|
<h2 class="b-title wow fadeInUp">{{ modules[11].form.title }}</h2> |
|
<p class="intro wow fadeInUp" |
|
data-wow-delay="0.5s">{{ modules[11].form.des }}</p> |
|
<div class="talent"> |
|
<div class="left wow fadeInLeft" |
|
data-wow-delay="0.5s"> |
|
<h6>{{ modules[12].form.title }}</h6> |
|
<p class="sub-title">{{ modules[12].form.subTitle }}</p> |
|
<div class="text" |
|
v-html="modules[12].form.des"></div> |
|
<el-button v-if="isLink(modules[12].form.link.linkName)" |
|
style="background-color: #026BE1;" |
|
type="primary" |
|
round |
|
@click="openLink(modules[12].form)">诚邀海内外人才加入我们 ></el-button> |
|
</div> |
|
<img :src="modules[12].form.pic" |
|
alt="" |
|
class="pic"> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="about"> |
|
<div class="about-bg"> |
|
<div class="inner"> |
|
<div class="left"> |
|
<h6>{{ modules[13].form.title }}</h6> |
|
<div class="text" |
|
v-html="modules[13].form.des"></div> |
|
<img src="@/assets/images/arrow-white.png" |
|
alt="" |
|
:class="{'arrow': isLink(modules[13].form.link.linkName)}" |
|
@click="openLink(modules[13].form)"> |
|
</div> |
|
<img class="pic" |
|
:src="modules[13].form.pic" |
|
alt=""> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<ul class="tools"> |
|
<li v-for="(item, i) in modules[19].list" |
|
:key="i" |
|
@click="toLink(item, i)"> |
|
<!-- <img :src="'http://10.10.11.7/images/iasf/icon' + (i < 4 ? i + 1 : 1) + '.png'" |
|
alt="" |
|
class="icon"> --> |
|
{{ item.title }} |
|
</li> |
|
</ul> |
|
</div> |
|
</template> |
|
|
|
<script> |
|
import mixins from '@/mixins/page' |
|
import Setting from '@/setting' |
|
import Util from '@/libs/util' |
|
import WOW from 'wow.js' |
|
export default { |
|
mixins: [mixins], |
|
data () { |
|
return { |
|
articles: [], |
|
articles1: [], |
|
articles2: [], |
|
articles3: [], |
|
articles4: [], |
|
curInd1: 0, |
|
curArticle1: {}, |
|
curInd2: 0, |
|
curArticle2: {}, |
|
curInd3: 0, |
|
curArticle3: {}, |
|
timer: null, |
|
} |
|
}, |
|
mounted () { |
|
new WOW().init() |
|
}, |
|
methods: { |
|
// 获取文章详情 |
|
getInfo () { |
|
// 预览/详情 |
|
this.$post(`${this.api[this.preview ? 'getRedisCache' : 'findPage']}?columnId=${this.id}`).then(({ data }) => { |
|
if (data.length) { |
|
// state:已发布(1)则取theEditedJson,草稿(0)则取jsonBeforeEditing |
|
const json = JSON.parse(this.preview ? |
|
data : |
|
data[data.length - 1][data[data.length - 1].state ? 'theEditedJson' : 'jsonBeforeEditing']) |
|
|
|
this.modules = json |
|
console.log("🚀 ~ file: index.vue ~ line 138 ~ this.$post ~ this.modules", this.modules) |
|
|
|
// 获取文章列表 |
|
if (json[5].form.column.length) { |
|
const { column, articleNum } = json[5].form |
|
this.$post(`${this.api.queryArticlesByColumnType}?columnId=${column[column.length - 1]}`).then(({ data }) => { |
|
this.articles = Util.removeTag(data.slice(0, articleNum || 4)) |
|
}).catch(err => { }) |
|
} |
|
|
|
if (json[6].form.column.length) { |
|
const { column, articleNum } = json[6].form |
|
this.$post(`${this.api.queryArticlesByColumnType}?columnId=${column[column.length - 1]}`).then(({ data }) => { |
|
this.articles1 = Util.removeTag(data.slice(0, articleNum || 4)) |
|
if (this.articles1.length) this.curArticle1 = this.articles1[0] |
|
}).catch(err => { }) |
|
} |
|
if (json[7].form.column.length) { |
|
const { column, articleNum } = json[7].form |
|
this.$post(`${this.api.queryArticlesByColumnType}?columnId=${column[column.length - 1]}`).then(({ data }) => { |
|
this.articles2 = Util.removeTag(data.slice(0, articleNum || 4)) |
|
if (this.articles2.length) this.curArticle2 = this.articles2[0] |
|
}).catch(err => { }) |
|
} |
|
if (json[8].form.column.length) { |
|
const { column, articleNum } = json[8].form |
|
this.$post(`${this.api.queryArticlesByColumnType}?columnId=${column[column.length - 1]}`).then(({ data }) => { |
|
this.articles3 = Util.removeTag(data.slice(0, articleNum || 4)) |
|
if (this.articles3.length) this.curArticle3 = this.articles3[0] |
|
}).catch(err => { }) |
|
} |
|
if (json[10].form.column.length) { |
|
const { column, articleNum } = json[10].form |
|
this.$post(`${this.api.queryArticlesByColumnType}?columnId=${column[column.length - 1]}`).then(({ data }) => { |
|
this.articles4 = Util.removeTag(data.slice(0, articleNum || 3)) |
|
}).catch(err => { }) |
|
} |
|
this.carouselInterval() |
|
} |
|
}).catch(err => { }) |
|
}, |
|
// 自动轮播 |
|
carouselInterval () { |
|
clearInterval(this.timer) |
|
this.timer = setInterval(() => { |
|
this.curInd1++ |
|
if (this.curInd1 > 3) this.curInd1 = 0 |
|
if (this.articles1[this.curInd1]) this.curArticle1 = this.articles1[this.curInd1] || {} |
|
|
|
this.curInd2++ |
|
if (this.curInd2 > 3) this.curInd2 = 0 |
|
if (this.articles2[this.curInd2]) this.curArticle2 = this.articles2[this.curInd2] || {} |
|
|
|
this.curInd3++ |
|
if (this.curInd3 > 3) this.curInd3 = 0 |
|
if (this.articles3[this.curInd3]) this.curArticle3 = this.articles3[this.curInd3] || {} |
|
}, 5000) |
|
}, |
|
// 手动轮播切换 |
|
switchCarousel (k, i) { |
|
if (this['curInd' + k] !== i) { |
|
this['curInd' + k] = i |
|
this['curArticle' + k] = this['articles' + k][this['curInd' + k]] || {} |
|
} |
|
}, |
|
// 上一页轮播 |
|
prevCarousel (k) { |
|
--this['curInd' + k] |
|
if (this['curInd' + k] < 0) this['curInd' + k] = this['articles' + k].length - 1 |
|
this['curArticle' + k] = this['articles' + k][this['curInd' + k]] || {} |
|
}, |
|
// 上一页轮播 |
|
nextCarousel (k) { |
|
++this['curInd' + k] |
|
if (this['curInd' + k] > this['articles' + k].length - 1) this['curInd' + k] = 0 |
|
this['curArticle' + k] = this['articles' + k][this['curInd' + k]] || {} |
|
}, |
|
// 右侧工具栏点击回调 |
|
toLink (item, i) { |
|
i ? this.openLink(item) : window.scrollTo(0, document.documentElement.scrollHeight) |
|
} |
|
} |
|
}; |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
@import url(../../plugins/wow/animate.css); |
|
@import '../../styles/page/page.scss'; |
|
.carousel { |
|
height: 100vh; |
|
img { |
|
height: 100%; |
|
} |
|
/deep/.el-carousel__container { |
|
height: 100vh; |
|
} |
|
.texts { |
|
position: absolute; |
|
bottom: 20%; |
|
left: 120px; |
|
h6, |
|
.text { |
|
padding: 20px 15px; |
|
color: #fff; |
|
background-color: rgba(0, 0, 0, 0.29); |
|
} |
|
h6 { |
|
margin-bottom: 30px; |
|
font-size: 3rem; |
|
font-family: AlimamaShuHeiTi-Bold, AlimamaShuHeiTi; |
|
} |
|
.text { |
|
font-size: 1.1rem; |
|
font-family: AppleSystemUIFont; |
|
} |
|
} |
|
} |
|
.block { |
|
padding-top: 3.15rem; |
|
.b-title { |
|
font-size: 35px; |
|
font-family: PingFangSC-Semibold, PingFang SC; |
|
color: #333; |
|
} |
|
.intro { |
|
margin-bottom: 3.6rem; |
|
font-size: 30px; |
|
font-family: FZLTXHK--GBK1-0, FZLTXHK--GBK1; |
|
color: #5b5b5e; |
|
} |
|
} |
|
.inner { |
|
width: 1444px; |
|
min-width: 70%; |
|
} |
|
.card { |
|
display: flex; |
|
justify-content: space-between; |
|
li { |
|
position: relative; |
|
width: 47%; |
|
height: 366px; |
|
transition: 0.3s; |
|
overflow: hidden; |
|
&:hover { |
|
.project { |
|
top: -100%; |
|
} |
|
.texts { |
|
top: 0; |
|
} |
|
} |
|
} |
|
.pic { |
|
width: 100%; |
|
height: 100%; |
|
} |
|
.project { |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
width: 100%; |
|
height: 100%; |
|
font-size: 2.4rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
color: #fff; |
|
background-color: rgba(0, 0, 0, 0.3); |
|
transition: 0.3s; |
|
} |
|
.texts { |
|
position: absolute; |
|
top: 100%; |
|
left: 0; |
|
display: flex; |
|
justify-content: center; |
|
flex-direction: column; |
|
align-items: center; |
|
width: 100%; |
|
height: 100%; |
|
padding: 0 1rem; |
|
color: #fff; |
|
background-color: rgba(0, 0, 0, 0.3); |
|
transition: 0.3s; |
|
} |
|
.name { |
|
font-size: 2rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
} |
|
h6 { |
|
margin: 1rem 0; |
|
line-height: 2rem; |
|
font-size: 1.6rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
@include mul-ellipsis(2); |
|
} |
|
.des { |
|
font-size: 1.2rem; |
|
line-height: 30px; |
|
} |
|
} |
|
.news-wrap { |
|
background: url(http://10.10.11.7/images/iasf/1.png) 0 0/100% 100% no-repeat; |
|
} |
|
.news-title:after { |
|
display: none; |
|
} |
|
.news-banner { |
|
display: flex; |
|
margin-top: 20px; |
|
cursor: pointer; |
|
.pic-wrap { |
|
width: 50%; |
|
height: 24.5rem; |
|
overflow: hidden; |
|
} |
|
.pic { |
|
transition: 0.5s; |
|
} |
|
.right { |
|
position: relative; |
|
width: 50%; |
|
padding: 42px 71px 90px 58px; |
|
background: #026be1; |
|
color: #fff; |
|
h6 { |
|
font-size: 24px; |
|
font-family: PingFangSC-Semibold, PingFang SC; |
|
line-height: 43px; |
|
@include mul-ellipsis(2); |
|
} |
|
.des { |
|
margin: 28px 0 25px; |
|
font-size: 18px; |
|
line-height: 32px; |
|
} |
|
.meta { |
|
font-size: 16px; |
|
} |
|
} |
|
} |
|
.news { |
|
display: flex; |
|
flex-wrap: wrap; |
|
margin: 20px 0; |
|
li { |
|
width: calc((100% - 40px) / 3); |
|
margin-right: 20px; |
|
background-color: #fff; |
|
cursor: pointer; |
|
&:nth-child(3n) { |
|
margin-right: 0; |
|
} |
|
} |
|
.pic-wrap { |
|
width: 100%; |
|
height: 220px; |
|
overflow: hidden; |
|
} |
|
.pic { |
|
width: 100%; |
|
height: 100%; |
|
transition: 0.5s; |
|
} |
|
.texts { |
|
padding: 24px 28px; |
|
background-color: #fff; |
|
box-shadow: 2px 2px 2px rgba(241, 241, 241, 0.8); |
|
} |
|
.meta { |
|
font-size: 16px; |
|
color: #666; |
|
} |
|
h6 { |
|
font-size: 20px; |
|
font-family: PingFangSC-Semibold, PingFang SC; |
|
color: #333; |
|
@include ellipsis; |
|
} |
|
.des { |
|
height: 84px; |
|
margin: 14px 0 16px; |
|
font-size: 16px; |
|
line-height: 28px; |
|
color: #333; |
|
text-indent: 2em; |
|
} |
|
} |
|
.news-carousel { |
|
display: flex; |
|
li { |
|
position: relative; |
|
width: calc((100% - 40px) / 3); |
|
height: 284px; |
|
margin-right: 20px; |
|
overflow: hidden; |
|
&:nth-child(3n) { |
|
margin-right: 0; |
|
} |
|
} |
|
.pic { |
|
width: 100%; |
|
height: 100%; |
|
transition: 0.5s; |
|
} |
|
.texts { |
|
position: absolute; |
|
top: 0; |
|
left: 0; |
|
width: 100%; |
|
height: 100%; |
|
padding: 50px 30px; |
|
color: #fff; |
|
background-color: rgba(0, 0, 0, 0.3); |
|
} |
|
h6 { |
|
font-size: 24px; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
cursor: pointer; |
|
} |
|
.des-wrap { |
|
height: 101px; |
|
margin: 11px 0 25px; |
|
} |
|
.meta { |
|
margin-bottom: 16px; |
|
font-size: 18px; |
|
color: rgba(255, 255, 255, 0.86); |
|
} |
|
.des { |
|
font-size: 20px; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
-webkit-line-clamp: 2; |
|
line-height: 30px; |
|
cursor: pointer; |
|
} |
|
.date { |
|
font-size: 16px; |
|
} |
|
.action { |
|
position: absolute; |
|
bottom: 20px; |
|
right: 20px; |
|
display: flex; |
|
align-items: center; |
|
font-size: 14px; |
|
color: rgba(255, 255, 255, 0.65); |
|
} |
|
.inds { |
|
display: inline-flex; |
|
margin: 0 5px; |
|
li { |
|
width: 10px; |
|
height: 10px; |
|
margin-right: 6px; |
|
background: rgba(255, 255, 255, 0.65); |
|
border-radius: 50%; |
|
transition: 0.2s; |
|
cursor: pointer; |
|
&.active { |
|
width: 20px; |
|
background: rgba(255, 255, 255, 0.3); |
|
border-radius: 5px; |
|
} |
|
&:last-child { |
|
margin-right: 0; |
|
} |
|
} |
|
} |
|
.dir { |
|
line-height: 1; |
|
cursor: pointer; |
|
} |
|
} |
|
.people { |
|
display: flex; |
|
li { |
|
width: 33.33%; |
|
padding: 30px; |
|
text-align: center; |
|
border-right: 1px solid #ddd; |
|
cursor: pointer; |
|
&:last-child { |
|
border-right: 0; |
|
} |
|
} |
|
.pic { |
|
width: 293px; |
|
height: 293px; |
|
margin-bottom: 28px; |
|
border-radius: 50%; |
|
} |
|
h6 { |
|
font-size: 1.1rem; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
color: #333; |
|
} |
|
.job { |
|
margin: 18px 0 12px; |
|
font-size: 1rem; |
|
font-weight: 600; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
color: #333; |
|
} |
|
.hobby { |
|
margin-bottom: 15px; |
|
font-size: 1rem; |
|
color: #333; |
|
} |
|
.text { |
|
font-size: 1rem; |
|
line-height: 1.6; |
|
color: #333; |
|
} |
|
} |
|
.talent-block { |
|
background: url(http://10.10.11.7/images/iasf/11.png) 0 0/100% 100% no-repeat; |
|
} |
|
.talent { |
|
display: flex; |
|
color: #fff; |
|
border-radius: 0px 100px 0px 100px; |
|
overflow: hidden; |
|
.left { |
|
width: 50%; |
|
padding: 120px 80px 0 5%; |
|
background: #111c43; |
|
} |
|
h6 { |
|
font-size: 30px; |
|
font-family: PingFangSC-Medium, PingFang SC; |
|
} |
|
.sub-title { |
|
margin: 8px 0 20px; |
|
font-size: 0.9rem; |
|
} |
|
.text { |
|
margin-bottom: 60px; |
|
font-size: 1rem; |
|
line-height: 2; |
|
} |
|
.el-button { |
|
font-size: 20px; |
|
border: 0; |
|
} |
|
.pic { |
|
width: 50%; |
|
min-height: 465px; |
|
} |
|
} |
|
.about { |
|
padding: 100px 0 229px; |
|
background: url(http://10.10.11.7/images/iasf/12.png) 0 450px no-repeat; |
|
.about-bg { |
|
background-color: #0a7fec; |
|
} |
|
.inner { |
|
position: relative; |
|
height: 465px; |
|
padding: 73px 50px 58px; |
|
} |
|
.left { |
|
width: 44%; |
|
} |
|
h6 { |
|
font-size: 36px; |
|
font-family: PingFangSC-Semibold, PingFang SC; |
|
color: #fff; |
|
} |
|
.text { |
|
margin: 24px 0 37px; |
|
font-size: 20px; |
|
line-height: 35px; |
|
color: #fff; |
|
@include mul-ellipsis(4); |
|
} |
|
.pic { |
|
position: absolute; |
|
top: -60px; |
|
right: 0; |
|
width: 744px; |
|
height: 657px; |
|
} |
|
} |
|
.tools { |
|
z-index: 10; |
|
position: fixed; |
|
top: 60vh; |
|
right: 0; |
|
display: flex; |
|
flex-direction: column; |
|
align-items: flex-end; |
|
li { |
|
position: relative; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
// width: 160px; |
|
padding: 0 1.2rem; |
|
margin-bottom: 1px; |
|
font-size: 1rem; |
|
color: #0084ff; |
|
line-height: 56px; |
|
background-color: rgba(19, 18, 19, 0.94); |
|
cursor: pointer; |
|
transition: 0.3s; |
|
&:before { |
|
content: ''; |
|
width: 28px; |
|
height: 28px; |
|
margin-right: 5px; |
|
background: url(http://10.10.11.7/images/iasf/icon1.png) no-repeat; |
|
} |
|
&:nth-child(2):before { |
|
background-image: url(http://10.10.11.7/images/iasf/icon2.png); |
|
} |
|
&:nth-child(2):hover:before { |
|
background-image: url(http://10.10.11.7/images/iasf/icon2-1.png); |
|
} |
|
&:nth-child(3):before { |
|
background-image: url(http://10.10.11.7/images/iasf/icon3.png); |
|
} |
|
&:nth-child(3):hover:before { |
|
background-image: url(http://10.10.11.7/images/iasf/icon3-1.png); |
|
} |
|
&:nth-child(4):before { |
|
background-image: url(http://10.10.11.7/images/iasf/icon4.png); |
|
} |
|
&:nth-child(4):hover:before { |
|
background-image: url(http://10.10.11.7/images/iasf/icon4-1.png); |
|
} |
|
&:hover { |
|
justify-content: flex-start; |
|
// width: 192px; |
|
padding-right: 4rem; |
|
color: #fff; |
|
background-color: rgba(1, 129, 247, 0.94); |
|
&:before { |
|
background-image: url(http://10.10.11.7/images/iasf/icon1-1.png); |
|
} |
|
} |
|
} |
|
.icon { |
|
margin-right: 10px; |
|
} |
|
} |
|
@media (max-width: 1470px) { |
|
.inner { |
|
width: 95%; |
|
} |
|
.about { |
|
.pic { |
|
width: 700px; |
|
height: auto; |
|
} |
|
} |
|
} |
|
@media (max-width: 1370px) { |
|
.about { |
|
.inner { |
|
height: auto; |
|
} |
|
.left { |
|
width: 100%; |
|
} |
|
.pic { |
|
position: static; |
|
width: auto; |
|
max-width: 100%; |
|
height: auto; |
|
margin-top: 10px; |
|
} |
|
} |
|
} |
|
@media (max-width: 1200px) { |
|
.carousel .texts { |
|
left: 5%; |
|
right: 5%; |
|
} |
|
.card { |
|
flex-direction: column; |
|
li { |
|
margin-top: 1.25rem; |
|
width: 100%; |
|
} |
|
} |
|
.news { |
|
flex-direction: column; |
|
li { |
|
width: 100%; |
|
} |
|
} |
|
.news-banner { |
|
flex-direction: column; |
|
.pic-wrap, |
|
.right { |
|
width: 100%; |
|
} |
|
} |
|
.news-carousel, |
|
.people { |
|
flex-direction: column; |
|
li { |
|
width: 100%; |
|
margin-bottom: 10px; |
|
} |
|
} |
|
.talent { |
|
flex-direction: column; |
|
.left, |
|
.pic { |
|
width: 100%; |
|
} |
|
.left { |
|
padding-bottom: 50px; |
|
margin-bottom: 10px; |
|
} |
|
} |
|
.entry { |
|
flex-direction: column; |
|
li { |
|
width: 100% !important; |
|
margin-right: 0; |
|
} |
|
} |
|
} |
|
</style> |