|
|
|
@ -1,7 +1,9 @@ |
|
|
|
|
<template> |
|
|
|
|
<div class="wrap"> |
|
|
|
|
<div class="single-banner single-banner-overview"> |
|
|
|
|
<img class="banner-img" :src="modules[0].form.pic" alt=""> |
|
|
|
|
<img class="banner-img" |
|
|
|
|
:src="modules[0].form.pic" |
|
|
|
|
alt=""> |
|
|
|
|
<div class="texts"> |
|
|
|
|
<h6 class="banner-title">{{ modules[0].form.title }}</h6> |
|
|
|
|
</div> |
|
|
|
@ -10,58 +12,89 @@ |
|
|
|
|
<div class="article"> |
|
|
|
|
<div class="left"> |
|
|
|
|
<h6 class="talent-title">{{ modules[1].form.title }}</h6> |
|
|
|
|
<div class="talent-text" v-html="modules[1].form.des"></div> |
|
|
|
|
<div class="talent-text" |
|
|
|
|
v-html="modules[1].form.des"></div> |
|
|
|
|
<ul class="recruit"> |
|
|
|
|
<li> |
|
|
|
|
<img class="pic" :src="modules[2].form.pic" alt=""> |
|
|
|
|
<img class="pic" |
|
|
|
|
:src="modules[2].form.pic" |
|
|
|
|
alt=""> |
|
|
|
|
<div class="texts"> |
|
|
|
|
<div class="flex j-between a-center"> |
|
|
|
|
<h6 class="c-title">{{ modules[3].form.title }}</h6> |
|
|
|
|
<div v-if="isLink(modules[3].form.link.linkName)" class="more" @click="openLink(modules[3].form)">查看更多 ></div> |
|
|
|
|
<div v-if="isLink(modules[3].form.link.linkName)" |
|
|
|
|
class="more" |
|
|
|
|
@click="openLink(modules[3].form)">查看更多 ></div> |
|
|
|
|
</div> |
|
|
|
|
<div class="des" v-html="modules[3].form.des"></div> |
|
|
|
|
<div class="des" |
|
|
|
|
v-html="modules[3].form.des"></div> |
|
|
|
|
<p class="hot">热门岗位</p> |
|
|
|
|
<div class="labels"> |
|
|
|
|
<p v-for="(item, i) in modules[4].list" :key="i" class="label">{{ item.title }}</p> |
|
|
|
|
<template v-for="(item, i) in modules[4].list"> |
|
|
|
|
<p v-if="item.isEnable" |
|
|
|
|
:key="i" |
|
|
|
|
class="label">{{ item.title }}</p> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</li> |
|
|
|
|
<li> |
|
|
|
|
<img class="pic" :src="modules[5].form.pic" alt=""> |
|
|
|
|
<img class="pic" |
|
|
|
|
:src="modules[5].form.pic" |
|
|
|
|
alt=""> |
|
|
|
|
<div class="texts"> |
|
|
|
|
<div class="flex j-between a-center"> |
|
|
|
|
<h6 class="c-title">{{ modules[6].form.title }}</h6> |
|
|
|
|
<div v-if="isLink(modules[6].form.link.linkName)" class="more" @click="openLink(modules[6].form)">查看更多 ></div> |
|
|
|
|
<div v-if="isLink(modules[6].form.link.linkName)" |
|
|
|
|
class="more" |
|
|
|
|
@click="openLink(modules[6].form)">查看更多 ></div> |
|
|
|
|
</div> |
|
|
|
|
<div class="des" v-html="modules[6].form.des"></div> |
|
|
|
|
<div class="des" |
|
|
|
|
v-html="modules[6].form.des"></div> |
|
|
|
|
<p class="hot">热门岗位</p> |
|
|
|
|
<div class="labels"> |
|
|
|
|
<p v-for="(item, i) in modules[7].list" :key="i" class="label">{{ item.title }}</p> |
|
|
|
|
<template v-for="(item, i) in modules[7].list"> |
|
|
|
|
<p v-if="item.isEnable" |
|
|
|
|
:key="i" |
|
|
|
|
class="label">{{ item.title }}</p> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
<ul class="notice"> |
|
|
|
|
<li |
|
|
|
|
:class="{ 'cursor-pointer': isLink(modules[8].form.link.linkName) }" |
|
|
|
|
@click="openLink(modules[8].form)"> |
|
|
|
|
<img class="pic" :src="modules[8].form.pic" alt=""> |
|
|
|
|
<p class="text">{{ modules[8].form.title }}</p> |
|
|
|
|
<li :class="{ 'cursor-pointer': isLink(modules[8].form.link.linkName) }" |
|
|
|
|
@click="openLink(modules[8].form)"> |
|
|
|
|
<img class="pic" |
|
|
|
|
:src="modules[8].form.pic" |
|
|
|
|
alt=""> |
|
|
|
|
<p class="text">{{ modules[8].form.title }}</p> |
|
|
|
|
</li> |
|
|
|
|
<li |
|
|
|
|
:class="{ 'cursor-pointer': isLink(modules[9].form.link.linkName) }" |
|
|
|
|
@click="openLink(modules[8].form)"> |
|
|
|
|
<img class="pic" :src="modules[9].form.pic" alt=""> |
|
|
|
|
<p class="text">{{ modules[9].form.title }}</p> |
|
|
|
|
<li :class="{ 'cursor-pointer': isLink(modules[9].form.link.linkName) }" |
|
|
|
|
@click="openLink(modules[8].form)"> |
|
|
|
|
<img class="pic" |
|
|
|
|
:src="modules[9].form.pic" |
|
|
|
|
alt=""> |
|
|
|
|
<p class="text">{{ modules[9].form.title }}</p> |
|
|
|
|
</li> |
|
|
|
|
</ul> |
|
|
|
|
</div> |
|
|
|
|
<div class="right"> |
|
|
|
|
<el-tree class="column" ref="column" :data="columns" highlight-current :expand-on-click-node="false" :props="defaultProps" node-key="id" @node-click="columnTo"></el-tree> |
|
|
|
|
<el-tree class="column" |
|
|
|
|
ref="column" |
|
|
|
|
:data="columns" |
|
|
|
|
highlight-current |
|
|
|
|
:expand-on-click-node="false" |
|
|
|
|
:props="defaultProps" |
|
|
|
|
node-key="id" |
|
|
|
|
@node-click="columnTo"></el-tree> |
|
|
|
|
|
|
|
|
|
<p class="l-title">{{$t('column.hot')}}</p> |
|
|
|
|
<ul class="list"> |
|
|
|
|
<li v-for="(item, i) in hots" :key="i" :title="item.title" @click="toArtice(item)"> |
|
|
|
|
<li v-for="(item, i) in hots" |
|
|
|
|
:key="i" |
|
|
|
|
:title="item.title" |
|
|
|
|
@click="toArtice(item)"> |
|
|
|
|
<p class="text">{{ item.title }}</p> |
|
|
|
|
<span class="date">{{ item.releaseTime }}</span> |
|
|
|
|
</li> |
|
|
|
@ -69,7 +102,10 @@ |
|
|
|
|
|
|
|
|
|
<p class="l-title">{{$t('column.latestNews')}}</p> |
|
|
|
|
<ul class="list"> |
|
|
|
|
<li v-for="(item, i) in news" :key="i" :title="item.title" @click="toArtice(item)"> |
|
|
|
|
<li v-for="(item, i) in news" |
|
|
|
|
:key="i" |
|
|
|
|
:title="item.title" |
|
|
|
|
@click="toArtice(item)"> |
|
|
|
|
<p class="text">{{ item.title }}</p> |
|
|
|
|
<span class="date">{{ item.releaseTime }}</span> |
|
|
|
|
</li> |
|
|
|
@ -88,7 +124,7 @@ import Util from '@/libs/util' |
|
|
|
|
import WOW from 'wow.js' |
|
|
|
|
export default { |
|
|
|
|
mixins: [mixins, articleMixins], |
|
|
|
|
data() { |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
columnId: '', |
|
|
|
|
form: {}, |
|
|
|
@ -101,13 +137,13 @@ export default { |
|
|
|
|
hots: [] |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
mounted () { |
|
|
|
|
this.getColumn() |
|
|
|
|
this.getArticle() |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
// 获取文章详情 |
|
|
|
|
getInfo() { |
|
|
|
|
getInfo () { |
|
|
|
|
// 预览/详情 |
|
|
|
|
this.$post(`${this.api[this.preview ? 'getRedisCache' : 'findPage']}?columnId=${this.id}`).then(({ data }) => { |
|
|
|
|
if (data.length) { |
|
|
|
@ -118,34 +154,34 @@ export default { |
|
|
|
|
this.modules = json |
|
|
|
|
console.log("🚀 ~ file: index.vue ~ line 180 ~ this.$post ~ json", json) |
|
|
|
|
} |
|
|
|
|
}).catch(err => {}) |
|
|
|
|
}).catch(err => { }) |
|
|
|
|
}, |
|
|
|
|
// 资讯 |
|
|
|
|
getColumn() { |
|
|
|
|
getColumn () { |
|
|
|
|
this.$post(this.api.listWithTreeMenuVisible, { |
|
|
|
|
siteId: this.$route.query.siteId || this.$store.state.content.site, |
|
|
|
|
columnName: '', |
|
|
|
|
templateId: '', |
|
|
|
|
typeId : '', |
|
|
|
|
typeId: '', |
|
|
|
|
isSort: 1 |
|
|
|
|
}).then(({ data }) => { |
|
|
|
|
this.columns = data |
|
|
|
|
this.getInfo() |
|
|
|
|
}).catch(err => {}) |
|
|
|
|
|
|
|
|
|
}).catch(err => { }) |
|
|
|
|
|
|
|
|
|
this.$post(`${this.api.hotContent}?siteId=${this.$route.query.siteId || this.$store.state.content.site}`).then(({ data }) => { |
|
|
|
|
this.hots = Util.removeTag(data) |
|
|
|
|
}).catch(err => {}) |
|
|
|
|
}).catch(err => { }) |
|
|
|
|
}, |
|
|
|
|
// 最新资讯 |
|
|
|
|
getArticle() { |
|
|
|
|
getArticle () { |
|
|
|
|
this.$post(this.api.newlyPublishedArticles, { |
|
|
|
|
pageNum: 1, |
|
|
|
|
pageSize: 5, |
|
|
|
|
siteId: this.$route.query.siteId || this.$store.state.content.site |
|
|
|
|
}).then(({ data }) => { |
|
|
|
|
this.news = Util.removeTag(data.records) |
|
|
|
|
}).catch(res => {}) |
|
|
|
|
}).catch(res => { }) |
|
|
|
|
}, |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
@ -153,443 +189,443 @@ export default { |
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
@import url(../../plugins/wow/animate.css); |
|
|
|
|
@import "../../styles/page/page.scss"; |
|
|
|
|
@import '../../styles/page/page.scss'; |
|
|
|
|
.wrap { |
|
|
|
|
background-color: #F9FAFA; |
|
|
|
|
background-color: #f9fafa; |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
width: 1400px; |
|
|
|
|
width: 1400px; |
|
|
|
|
} |
|
|
|
|
.article { |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
.left { |
|
|
|
|
width: 66%; |
|
|
|
|
.talent-title { |
|
|
|
|
padding-bottom: 10px; |
|
|
|
|
font-size: 1.2rem; |
|
|
|
|
color: #666; |
|
|
|
|
border-bottom: 1px solid #EAEEF2; |
|
|
|
|
} |
|
|
|
|
.talent-text { |
|
|
|
|
margin: 20px 0; |
|
|
|
|
font-size: 1.1rem; |
|
|
|
|
color: #333; |
|
|
|
|
line-height: 28px; |
|
|
|
|
p { |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
display: flex; |
|
|
|
|
padding: 20px; |
|
|
|
|
margin-bottom: 24px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
} |
|
|
|
|
.pic { |
|
|
|
|
width: 410px; |
|
|
|
|
height: 250px; |
|
|
|
|
margin-right: 20px; |
|
|
|
|
} |
|
|
|
|
.c-title { |
|
|
|
|
font-size: 1.2rem; |
|
|
|
|
columns: #333; |
|
|
|
|
} |
|
|
|
|
.more { |
|
|
|
|
font-size: .8rem; |
|
|
|
|
color: #0648A8; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
.des { |
|
|
|
|
margin: 20px 0; |
|
|
|
|
font-size: 1rem; |
|
|
|
|
color: #666; |
|
|
|
|
line-height: 22px; |
|
|
|
|
} |
|
|
|
|
.hot { |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
font-size: 1.1rem; |
|
|
|
|
color: #333; |
|
|
|
|
} |
|
|
|
|
.labels { |
|
|
|
|
display: flex; |
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
display: flex; |
|
|
|
|
justify-content: space-between; |
|
|
|
|
.left { |
|
|
|
|
width: 66%; |
|
|
|
|
.talent-title { |
|
|
|
|
padding-bottom: 10px; |
|
|
|
|
font-size: 1.2rem; |
|
|
|
|
color: #666; |
|
|
|
|
border-bottom: 1px solid #eaeef2; |
|
|
|
|
} |
|
|
|
|
.talent-text { |
|
|
|
|
margin: 20px 0; |
|
|
|
|
font-size: 1.1rem; |
|
|
|
|
color: #333; |
|
|
|
|
line-height: 28px; |
|
|
|
|
p { |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.label { |
|
|
|
|
padding: 5px 15px; |
|
|
|
|
margin: 0 15px 15px 0; |
|
|
|
|
font-size: 1rem; |
|
|
|
|
border-radius: 22px; |
|
|
|
|
border: 1px solid #666; |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
display: flex; |
|
|
|
|
padding: 20px; |
|
|
|
|
margin-bottom: 24px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
} |
|
|
|
|
.pic { |
|
|
|
|
width: 410px; |
|
|
|
|
height: 250px; |
|
|
|
|
margin-right: 20px; |
|
|
|
|
} |
|
|
|
|
.c-title { |
|
|
|
|
font-size: 1.2rem; |
|
|
|
|
columns: #333; |
|
|
|
|
} |
|
|
|
|
.more { |
|
|
|
|
font-size: 0.8rem; |
|
|
|
|
color: #0648a8; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
.des { |
|
|
|
|
margin: 20px 0; |
|
|
|
|
font-size: 1rem; |
|
|
|
|
color: #666; |
|
|
|
|
line-height: 22px; |
|
|
|
|
} |
|
|
|
|
.hot { |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
font-size: 1.1rem; |
|
|
|
|
color: #333; |
|
|
|
|
} |
|
|
|
|
.labels { |
|
|
|
|
display: flex; |
|
|
|
|
flex-wrap: wrap; |
|
|
|
|
} |
|
|
|
|
.label { |
|
|
|
|
padding: 5px 15px; |
|
|
|
|
margin: 0 15px 15px 0; |
|
|
|
|
font-size: 1rem; |
|
|
|
|
border-radius: 22px; |
|
|
|
|
border: 1px solid #666; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
display: flex; |
|
|
|
|
li { |
|
|
|
|
position: relative; |
|
|
|
|
width: calc((100% - 20px) / 2); |
|
|
|
|
height: 300px; |
|
|
|
|
padding: 20px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
.notice { |
|
|
|
|
display: flex; |
|
|
|
|
li { |
|
|
|
|
position: relative; |
|
|
|
|
width: calc((100% - 20px) / 2); |
|
|
|
|
height: 300px; |
|
|
|
|
padding: 20px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
} |
|
|
|
|
.pic { |
|
|
|
|
width: 100%; |
|
|
|
|
height: 100%; |
|
|
|
|
} |
|
|
|
|
.text { |
|
|
|
|
position: absolute; |
|
|
|
|
bottom: 20px; |
|
|
|
|
left: 20px; |
|
|
|
|
width: calc(100% - 40px); |
|
|
|
|
font-size: 1.6rem; |
|
|
|
|
line-height: 66px; |
|
|
|
|
text-align: center; |
|
|
|
|
color: #fff; |
|
|
|
|
background: rgba(32, 57, 81, 0.68); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.pic { |
|
|
|
|
width: 100%; |
|
|
|
|
height: 100%; |
|
|
|
|
.right { |
|
|
|
|
width: 20%; |
|
|
|
|
} |
|
|
|
|
.text { |
|
|
|
|
position: absolute; |
|
|
|
|
bottom: 20px; |
|
|
|
|
left: 20px; |
|
|
|
|
width: calc(100% - 40px); |
|
|
|
|
font-size: 1.6rem; |
|
|
|
|
line-height: 66px; |
|
|
|
|
text-align: center; |
|
|
|
|
color: #fff; |
|
|
|
|
background: rgba(32,57,81,0.68); |
|
|
|
|
.column { |
|
|
|
|
width: 100%; |
|
|
|
|
margin-bottom: 25px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.right { |
|
|
|
|
width: 20%; |
|
|
|
|
} |
|
|
|
|
.column { |
|
|
|
|
width: 100%; |
|
|
|
|
margin-bottom: 25px; |
|
|
|
|
} |
|
|
|
|
/deep/.el-tree-node__content { |
|
|
|
|
height: 44px; |
|
|
|
|
background-color: #E5EDF8; |
|
|
|
|
border-bottom: 2px solid #fff; |
|
|
|
|
} |
|
|
|
|
/deep/.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content { |
|
|
|
|
color: #fff; |
|
|
|
|
background-color: #0f5698; |
|
|
|
|
} |
|
|
|
|
.list { |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
li { |
|
|
|
|
padding: 16px 0; |
|
|
|
|
border-bottom: 1px solid #D8D8D8; |
|
|
|
|
/deep/.el-tree-node__content { |
|
|
|
|
height: 44px; |
|
|
|
|
background-color: #e5edf8; |
|
|
|
|
border-bottom: 2px solid #fff; |
|
|
|
|
} |
|
|
|
|
.text { |
|
|
|
|
margin-bottom: 5px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
&:hover { |
|
|
|
|
color: $main-color; |
|
|
|
|
} |
|
|
|
|
/deep/.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content { |
|
|
|
|
color: #fff; |
|
|
|
|
background-color: #0f5698; |
|
|
|
|
} |
|
|
|
|
.date { |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #999; |
|
|
|
|
.list { |
|
|
|
|
margin-bottom: 20px; |
|
|
|
|
li { |
|
|
|
|
padding: 16px 0; |
|
|
|
|
border-bottom: 1px solid #d8d8d8; |
|
|
|
|
} |
|
|
|
|
.text { |
|
|
|
|
margin-bottom: 5px; |
|
|
|
|
font-size: 14px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
&:hover { |
|
|
|
|
color: $main-color; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.date { |
|
|
|
|
font-size: 12px; |
|
|
|
|
color: #999; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (max-width: 1200px) { |
|
|
|
|
.content { |
|
|
|
|
width: 98%; |
|
|
|
|
} |
|
|
|
|
.article { |
|
|
|
|
flex-direction: column; |
|
|
|
|
.left, .right { |
|
|
|
|
width: 100%; |
|
|
|
|
.content { |
|
|
|
|
width: 98%; |
|
|
|
|
} |
|
|
|
|
.left { |
|
|
|
|
margin-bottom: 30px; |
|
|
|
|
.article { |
|
|
|
|
flex-direction: column; |
|
|
|
|
.left, |
|
|
|
|
.right { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
.left { |
|
|
|
|
margin-bottom: 30px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@media (min-width: 280px) and (max-width: 750px) { |
|
|
|
|
.article { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
flex-direction: column; |
|
|
|
|
} |
|
|
|
|
.pic { |
|
|
|
|
width: 100%; |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
flex-direction: column; |
|
|
|
|
li { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (max-width: 1200px) { |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
flex-direction: column; |
|
|
|
|
.left { |
|
|
|
|
width: 100%; |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
flex-direction: column; |
|
|
|
|
.pic { |
|
|
|
|
width: 100%; |
|
|
|
|
|
|
|
|
|
li { |
|
|
|
|
flex-direction: column; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
margin-top: .8rem; |
|
|
|
|
.pic { |
|
|
|
|
width: 100%; |
|
|
|
|
margin-bottom: 10px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
flex-direction: column; |
|
|
|
|
li { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
flex-direction: column; |
|
|
|
|
li { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.right{ |
|
|
|
|
width: 100%; |
|
|
|
|
.el-tree { |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (max-width: 1200px) { |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
flex-direction: column; |
|
|
|
|
.left { |
|
|
|
|
width: 100%; |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
flex-direction: column; |
|
|
|
|
.pic { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
margin-top: 0.8rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
flex-direction: column; |
|
|
|
|
li { |
|
|
|
|
width: 100%; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.right { |
|
|
|
|
width: 100%; |
|
|
|
|
.el-tree { |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (max-width: 320px) { |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 13rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 7rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 13rem; |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 13rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 7rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 13rem; |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 13rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 13rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (min-width: 320px) and (max-width: 375px) { |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 15rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 7rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 15rem; |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 15rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 7rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 15rem; |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 15rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 15rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (min-width: 375px) and (max-width: 480px) { |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 18rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 10rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 18rem; |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 18rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 10rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 18rem; |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 18rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 18rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (min-width: 480px) and (max-width: 640px) { |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 20rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 12rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 22rem; |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 20rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 12rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 22rem; |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 22rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 22rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (min-width: 640px) and (max-width: 768px) { |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 22rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 14rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 26rem; |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 22rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 14rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 26rem; |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 26rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 26rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (min-width: 768px) and (max-width: 980px) { |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 26rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 16rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 30rem; |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 26rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 16rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 30rem; |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 30rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 30rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (min-width: 980px) and (max-width: 1200px) { |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 30rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 18rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 35rem; |
|
|
|
|
.wrap { |
|
|
|
|
.single-banner { |
|
|
|
|
.banner-img { |
|
|
|
|
height: 30rem; |
|
|
|
|
} |
|
|
|
|
.texts { |
|
|
|
|
left: 3rem; |
|
|
|
|
top: 18rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 35rem; |
|
|
|
|
} |
|
|
|
|
.content { |
|
|
|
|
.article { |
|
|
|
|
.left { |
|
|
|
|
.recruit { |
|
|
|
|
li { |
|
|
|
|
.pic { |
|
|
|
|
height: 35rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.notice { |
|
|
|
|
li { |
|
|
|
|
height: auto; |
|
|
|
|
.pic { |
|
|
|
|
height: 35rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
</style> |