|
|
|
@ -1,55 +1,108 @@ |
|
|
|
|
<template> |
|
|
|
|
<div :class="['header', { channel: isHome, estate: isEstate }]"> |
|
|
|
|
<a class="logo" @click="toIndex"> |
|
|
|
|
<template v-if="!$store.getters.getModelType"> |
|
|
|
|
<img :src="require('@/assets/images/logo2.png')" alt=""> |
|
|
|
|
</template> |
|
|
|
|
<template v-else> |
|
|
|
|
<a class="logo" |
|
|
|
|
@click="toIndex"> |
|
|
|
|
<template v-if="!$store.getters.getModelType"> |
|
|
|
|
<img :src="require('@/assets/images/logo2.png')" |
|
|
|
|
alt=""> |
|
|
|
|
</template> |
|
|
|
|
<template v-else> |
|
|
|
|
|
|
|
|
|
<img :src="require('@/assets/images/' + (isSfel ? 'logo2' : isHome ? 'logo' : 'logo2') + '.png')" alt=""> |
|
|
|
|
</template> |
|
|
|
|
<img :src="require('@/assets/images/' + (isSfel ? 'logo2' : isHome ? 'logo' : 'logo2') + '.png')" |
|
|
|
|
alt=""> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
</a> |
|
|
|
|
<!-- pc端 --> |
|
|
|
|
<template v-if="$store.getters.getModelType"> |
|
|
|
|
<navbar v-if="navShow" ref="nav" :isHome.sync="isHome" :isEstate.sync="isEstate" @showMoreBtns="updateBtnsType"></navbar> |
|
|
|
|
<navbar v-if="navShow" |
|
|
|
|
ref="nav" |
|
|
|
|
:isHome.sync="isHome" |
|
|
|
|
:isEstate.sync="isEstate" |
|
|
|
|
@showMoreBtns="updateBtnsType"></navbar> |
|
|
|
|
<div class="tools"> |
|
|
|
|
<img class="search" :src="require('@/assets/images/search' + (isHome ? '-white' : '') + '.png')" alt="" @click.stop="toggleSearch"> |
|
|
|
|
<img class="search" |
|
|
|
|
:src="require('@/assets/images/search' + (isHome ? '-white' : '') + '.png')" |
|
|
|
|
alt="" |
|
|
|
|
@click.stop="toggleSearch"> |
|
|
|
|
<template v-if="site == 2"> |
|
|
|
|
<img class="search" |
|
|
|
|
:src="require('@/assets/images/email' + (isHome ? '-white' : '') + '.png')" |
|
|
|
|
alt="" |
|
|
|
|
@click.stop="toMail"> |
|
|
|
|
<img class="search" |
|
|
|
|
:src="require('@/assets/images/oa' + (isHome ? '-white' : '') + '.png')" |
|
|
|
|
alt="" |
|
|
|
|
@click.stop="toMail"> |
|
|
|
|
</template> |
|
|
|
|
<template v-if="$i18n.locale == 'en'"> |
|
|
|
|
<img :src="require('@/assets/images/cn' + (isHome ? '-white' : '') + '.png')" alt="" @click.stop="toggleLang"> |
|
|
|
|
<img :src="require('@/assets/images/cn' + (isHome ? '-white' : '') + '.png')" |
|
|
|
|
alt="" |
|
|
|
|
@click.stop="toggleLang"> |
|
|
|
|
</template> |
|
|
|
|
<template v-else-if="$i18n.locale == 'zh'"> |
|
|
|
|
<img :src="require('@/assets/images/en' + (isHome ? '-white' : '') + '.png')" alt="" @click.stop="toggleLang"> |
|
|
|
|
<img :src="require('@/assets/images/en' + (isHome ? '-white' : '') + '.png')" |
|
|
|
|
alt="" |
|
|
|
|
@click.stop="toggleLang"> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div v-if="showSearch" class="search-wrap" @click.stop="stop"> |
|
|
|
|
<input ref="search" type="text" :placeholder="$t('column.titlePlaceholder')" v-model="title"> |
|
|
|
|
<img class="search-icon" src="@/assets/images/search.png" alt="" @click="handleSearch"> |
|
|
|
|
<i class="el-icon-close close-icon" @click="showSearch = false"></i> |
|
|
|
|
<div v-if="showSearch" |
|
|
|
|
class="search-wrap" |
|
|
|
|
@click.stop="stop"> |
|
|
|
|
<input ref="search" |
|
|
|
|
type="text" |
|
|
|
|
:placeholder="$t('column.titlePlaceholder')" |
|
|
|
|
v-model="title"> |
|
|
|
|
<img class="search-icon" |
|
|
|
|
src="@/assets/images/search.png" |
|
|
|
|
alt="" |
|
|
|
|
@click="handleSearch"> |
|
|
|
|
<i class="el-icon-close close-icon" |
|
|
|
|
@click="showSearch = false"></i> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<!-- 手机端 --> |
|
|
|
|
<template v-else> |
|
|
|
|
<i class="rightBox" :class="modelType ? 'el-icon-s-fold': 'el-icon-s-unfold' " @click="updateModelType"></i> |
|
|
|
|
<div class="contentBox" v-show="modelType"> |
|
|
|
|
<navbar ref="nav" :isHome.sync="isHome" :updateModelType="updateType"></navbar> |
|
|
|
|
<i class="rightBox" |
|
|
|
|
:class="modelType ? 'el-icon-s-fold': 'el-icon-s-unfold' " |
|
|
|
|
@click="updateModelType"></i> |
|
|
|
|
<div class="contentBox" |
|
|
|
|
v-show="modelType"> |
|
|
|
|
<navbar ref="nav" |
|
|
|
|
:isHome.sync="isHome" |
|
|
|
|
:updateModelType="updateType"></navbar> |
|
|
|
|
<div class="modelBox"> |
|
|
|
|
<div class="searchBox"><img class="search" :src="require('@/assets/images/search' + (isHome && $store.getters.getModelType ? '-white' : '') + '.png')" alt="" @click.stop="toggleSearch"></div> |
|
|
|
|
<div class="searchBox"><img class="search" |
|
|
|
|
:src="require('@/assets/images/search' + (isHome && $store.getters.getModelType ? '-white' : '') + '.png')" |
|
|
|
|
alt="" |
|
|
|
|
@click.stop="toggleSearch"></div> |
|
|
|
|
<div class="languageBox"> |
|
|
|
|
<!-- <img :src="require('@/assets/images/cn' + (isHome && $store.getters.getModelType ? '-white' : '') + '.png')" alt="" @click.stop="toggleLang"> --> |
|
|
|
|
<template v-if="$i18n.locale == 'en'"> |
|
|
|
|
<img :src="require('@/assets/images/cn' + (isHome && $store.getters.getModelType ? '-white' : '') + '.png')" alt="" @click.stop="toggleLang"> |
|
|
|
|
</template> |
|
|
|
|
<template v-else-if="$i18n.locale == 'zh'"> |
|
|
|
|
<img :src="require('@/assets/images/en' + (isHome && $store.getters.getModelType ? '-white' : '') + '.png')" alt="" @click.stop="toggleLang"> |
|
|
|
|
</template> |
|
|
|
|
<!-- <img :src="require('@/assets/images/cn' + (isHome && $store.getters.getModelType ? '-white' : '') + '.png')" alt="" @click.stop="toggleLang"> --> |
|
|
|
|
<template v-if="$i18n.locale == 'en'"> |
|
|
|
|
<img :src="require('@/assets/images/cn' + (isHome && $store.getters.getModelType ? '-white' : '') + '.png')" |
|
|
|
|
alt="" |
|
|
|
|
@click.stop="toggleLang"> |
|
|
|
|
</template> |
|
|
|
|
<template v-else-if="$i18n.locale == 'zh'"> |
|
|
|
|
<img :src="require('@/assets/images/en' + (isHome && $store.getters.getModelType ? '-white' : '') + '.png')" |
|
|
|
|
alt="" |
|
|
|
|
@click.stop="toggleLang"> |
|
|
|
|
</template> |
|
|
|
|
</div> |
|
|
|
|
<div v-if="showSearch" class="search-wrap" @click.stop="stop"> |
|
|
|
|
<input ref="search" type="text" :placeholder="$t('column.titlePlaceholder')" v-model="title"> |
|
|
|
|
<img class="search-icon" src="@/assets/images/search.png" alt="" @click="handleSearch"> |
|
|
|
|
<i class="el-icon-close close-icon" @click="showSearch = false"></i> |
|
|
|
|
<div v-if="showSearch" |
|
|
|
|
class="search-wrap" |
|
|
|
|
@click.stop="stop"> |
|
|
|
|
<input ref="search" |
|
|
|
|
type="text" |
|
|
|
|
:placeholder="$t('column.titlePlaceholder')" |
|
|
|
|
v-model="title"> |
|
|
|
|
<img class="search-icon" |
|
|
|
|
src="@/assets/images/search.png" |
|
|
|
|
alt="" |
|
|
|
|
@click="handleSearch"> |
|
|
|
|
<i class="el-icon-close close-icon" |
|
|
|
|
@click="showSearch = false"></i> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
@ -62,7 +115,7 @@ import Util from '@/libs/util' |
|
|
|
|
import { mapMutations } from 'vuex' |
|
|
|
|
import navbar from '../navbar' |
|
|
|
|
export default { |
|
|
|
|
data() { |
|
|
|
|
data () { |
|
|
|
|
return { |
|
|
|
|
isHome: true, |
|
|
|
|
isEstate: false, |
|
|
|
@ -78,13 +131,16 @@ export default { |
|
|
|
|
navbar |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
isSfel() { |
|
|
|
|
isSfel () { |
|
|
|
|
return this.$route.path === '/sfel' |
|
|
|
|
}, |
|
|
|
|
site () { |
|
|
|
|
return this.$route.query.siteId || this.$store.state.content.site |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
watch: { |
|
|
|
|
'$route.path': { |
|
|
|
|
handler() { |
|
|
|
|
handler () { |
|
|
|
|
this.isHome = Util.isIndex() |
|
|
|
|
this.isEstate = this.$route.path === '/estate/index' |
|
|
|
|
}, |
|
|
|
@ -95,7 +151,7 @@ export default { |
|
|
|
|
beforeDestroy () { |
|
|
|
|
window.removeEventListener('scroll', this.handleScroll) |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
mounted () { |
|
|
|
|
this.setKeyword('') |
|
|
|
|
window.addEventListener('scroll', this.handleScroll) // 监听页面滚动 |
|
|
|
|
}, |
|
|
|
@ -103,17 +159,17 @@ export default { |
|
|
|
|
...mapMutations('content', [ |
|
|
|
|
'setKeyword' |
|
|
|
|
]), |
|
|
|
|
toIndex() { |
|
|
|
|
toIndex () { |
|
|
|
|
this.$refs.nav.jump() |
|
|
|
|
}, |
|
|
|
|
stop() { |
|
|
|
|
stop () { |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
/** |
|
|
|
|
* pc端下,当导航栏条目大于10的情况下,显示更多按钮 |
|
|
|
|
* type : true显示,false隐藏 |
|
|
|
|
*/ |
|
|
|
|
updateBtnsType(type) { |
|
|
|
|
updateBtnsType (type) { |
|
|
|
|
this.showMoreBtns = type |
|
|
|
|
}, |
|
|
|
|
// 获取页面滚动距离(home长页专用) |
|
|
|
@ -132,14 +188,22 @@ export default { |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 切换显示搜索 |
|
|
|
|
toggleSearch() { |
|
|
|
|
toggleSearch () { |
|
|
|
|
this.showSearch = !this.showSearch |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
this.$refs.search.focus() |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
// mail点击 |
|
|
|
|
toMail () { |
|
|
|
|
window.open('https://qiye.aliyun.com/alimail/auth/login?custom_login_flag=1&reurl=%2Falimail%2F') |
|
|
|
|
}, |
|
|
|
|
// oa点击 |
|
|
|
|
toOa () { |
|
|
|
|
window.open('http://oa.iasf.ac.cn/sys/portal/page.jsp') |
|
|
|
|
}, |
|
|
|
|
// 切换语言 |
|
|
|
|
toggleLang() { |
|
|
|
|
toggleLang () { |
|
|
|
|
let id = +(this.$route.query.siteId || this.$store.state.content.site) |
|
|
|
|
// 中英文站点的id是相邻的,有6个站点,1/2 3/4 5/6 |
|
|
|
|
id % 2 ? id++ : id-- |
|
|
|
@ -147,7 +211,7 @@ export default { |
|
|
|
|
location.reload() |
|
|
|
|
}, |
|
|
|
|
// 全局搜索 |
|
|
|
|
handleSearch() { |
|
|
|
|
handleSearch () { |
|
|
|
|
this.setKeyword(this.title) |
|
|
|
|
this.modelType = !this.modelType |
|
|
|
|
if (this.title) { |
|
|
|
@ -156,10 +220,10 @@ export default { |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
// 更改右侧盒子样式 |
|
|
|
|
updateModelType() { |
|
|
|
|
this.modelType = !this.modelType |
|
|
|
|
updateModelType () { |
|
|
|
|
this.modelType = !this.modelType |
|
|
|
|
}, |
|
|
|
|
updateType(type) { |
|
|
|
|
updateType (type) { |
|
|
|
|
this.modelType = type |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -168,146 +232,146 @@ export default { |
|
|
|
|
<style scoped lang="scss"> |
|
|
|
|
$height: 90px; |
|
|
|
|
.header { |
|
|
|
|
z-index: 10; |
|
|
|
|
position: fixed; |
|
|
|
|
top: 0; |
|
|
|
|
left: 0; |
|
|
|
|
width: 100%; |
|
|
|
|
// min-width: $min-width; |
|
|
|
|
// background-color: #fff; |
|
|
|
|
height: $height; |
|
|
|
|
box-sizing: content-box; |
|
|
|
|
&:not(.channel) { |
|
|
|
|
background-color: #fff; |
|
|
|
|
border-bottom: 1px solid #f7f7f7; |
|
|
|
|
} |
|
|
|
|
&.estate { |
|
|
|
|
background-color: rgba(0, 0, 0, .15); |
|
|
|
|
} |
|
|
|
|
.logo{ |
|
|
|
|
position: absolute; |
|
|
|
|
z-index: 10; |
|
|
|
|
position: fixed; |
|
|
|
|
top: 0; |
|
|
|
|
left: 5%; |
|
|
|
|
font-size: 1.428rem; |
|
|
|
|
color: #333330; |
|
|
|
|
line-height: $height; |
|
|
|
|
cursor: pointer; |
|
|
|
|
img { |
|
|
|
|
margin-right: 10px; |
|
|
|
|
left: 0; |
|
|
|
|
width: 100%; |
|
|
|
|
// min-width: $min-width; |
|
|
|
|
// background-color: #fff; |
|
|
|
|
height: $height; |
|
|
|
|
box-sizing: content-box; |
|
|
|
|
&:not(.channel) { |
|
|
|
|
background-color: #fff; |
|
|
|
|
border-bottom: 1px solid #f7f7f7; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.tools { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 30px; |
|
|
|
|
right: 5%; |
|
|
|
|
img { |
|
|
|
|
cursor: pointer; |
|
|
|
|
&.estate { |
|
|
|
|
background-color: rgba(0, 0, 0, 0.15); |
|
|
|
|
} |
|
|
|
|
.logo { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 0; |
|
|
|
|
left: 5%; |
|
|
|
|
font-size: 1.428rem; |
|
|
|
|
color: #333330; |
|
|
|
|
line-height: $height; |
|
|
|
|
cursor: pointer; |
|
|
|
|
img { |
|
|
|
|
margin-right: 10px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.tools { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 30px; |
|
|
|
|
right: 5%; |
|
|
|
|
img { |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.search { |
|
|
|
|
margin-right: 43px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.search { |
|
|
|
|
margin-right: 43px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.search-wrap { |
|
|
|
|
position: absolute; |
|
|
|
|
top: 67px; |
|
|
|
|
right: 89px; |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
padding: 10px 15px 10px 10px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
box-shadow: 0px 6px 9px 0px rgba(0,0,0,0.3); |
|
|
|
|
input { |
|
|
|
|
width: 300px; |
|
|
|
|
height: 40px; |
|
|
|
|
padding: 0 40px 0 15px; |
|
|
|
|
font-size: 1.14rem; |
|
|
|
|
color: #333; |
|
|
|
|
line-height: 46px; |
|
|
|
|
border: 0; |
|
|
|
|
border-radius: 4px; |
|
|
|
|
outline: none; |
|
|
|
|
} |
|
|
|
|
.search-icon { |
|
|
|
|
padding-right: 15px; |
|
|
|
|
margin: 0 15px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
border-right: 1px solid #ccc; |
|
|
|
|
} |
|
|
|
|
.close-icon { |
|
|
|
|
font-size: 2rem; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
position: absolute; |
|
|
|
|
top: 67px; |
|
|
|
|
right: 89px; |
|
|
|
|
display: flex; |
|
|
|
|
align-items: center; |
|
|
|
|
padding: 10px 15px 10px 10px; |
|
|
|
|
background-color: #fff; |
|
|
|
|
box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.3); |
|
|
|
|
input { |
|
|
|
|
width: 300px; |
|
|
|
|
height: 40px; |
|
|
|
|
padding: 0 40px 0 15px; |
|
|
|
|
font-size: 1.14rem; |
|
|
|
|
color: #333; |
|
|
|
|
line-height: 46px; |
|
|
|
|
border: 0; |
|
|
|
|
border-radius: 4px; |
|
|
|
|
outline: none; |
|
|
|
|
} |
|
|
|
|
.search-icon { |
|
|
|
|
padding-right: 15px; |
|
|
|
|
margin: 0 15px; |
|
|
|
|
cursor: pointer; |
|
|
|
|
border-right: 1px solid #ccc; |
|
|
|
|
} |
|
|
|
|
.close-icon { |
|
|
|
|
font-size: 2rem; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.menu-child { |
|
|
|
|
/deep/ .el-submenu__title{ |
|
|
|
|
font-size: 1rem; |
|
|
|
|
} |
|
|
|
|
/deep/ .el-submenu__title { |
|
|
|
|
font-size: 1rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.rightBox{ |
|
|
|
|
font-size: 2.57rem; |
|
|
|
|
position: absolute; |
|
|
|
|
right: 10px; |
|
|
|
|
top: 2rem; |
|
|
|
|
.rightBox { |
|
|
|
|
font-size: 2.57rem; |
|
|
|
|
position: absolute; |
|
|
|
|
right: 10px; |
|
|
|
|
top: 2rem; |
|
|
|
|
} |
|
|
|
|
.contentBox{ |
|
|
|
|
width: 100%; |
|
|
|
|
position: absolute; |
|
|
|
|
top: 90px; |
|
|
|
|
left: 0; |
|
|
|
|
background-color: white; |
|
|
|
|
z-index: 9999; |
|
|
|
|
max-height: 30rem; |
|
|
|
|
overflow-y: scroll; |
|
|
|
|
.contentBox { |
|
|
|
|
width: 100%; |
|
|
|
|
position: absolute; |
|
|
|
|
top: 90px; |
|
|
|
|
left: 0; |
|
|
|
|
background-color: white; |
|
|
|
|
z-index: 9999; |
|
|
|
|
max-height: 30rem; |
|
|
|
|
overflow-y: scroll; |
|
|
|
|
} |
|
|
|
|
.searchBox, .languageBox{ |
|
|
|
|
padding-left: 20px; |
|
|
|
|
height: 56px; |
|
|
|
|
line-height: 56px; |
|
|
|
|
.searchBox, |
|
|
|
|
.languageBox { |
|
|
|
|
padding-left: 20px; |
|
|
|
|
height: 56px; |
|
|
|
|
line-height: 56px; |
|
|
|
|
} |
|
|
|
|
.modelBox{ |
|
|
|
|
position: relative; |
|
|
|
|
padding-bottom: 20px; |
|
|
|
|
.search-wrap{ |
|
|
|
|
top: 0; |
|
|
|
|
} |
|
|
|
|
.modelBox { |
|
|
|
|
position: relative; |
|
|
|
|
padding-bottom: 20px; |
|
|
|
|
.search-wrap { |
|
|
|
|
top: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@media (max-width: 1660px) { |
|
|
|
|
.header { |
|
|
|
|
.logo { |
|
|
|
|
left: 10px; |
|
|
|
|
} |
|
|
|
|
.search { |
|
|
|
|
margin-right: 20px; |
|
|
|
|
} |
|
|
|
|
.tools { |
|
|
|
|
right: 30px |
|
|
|
|
.header { |
|
|
|
|
.logo { |
|
|
|
|
left: 10px; |
|
|
|
|
} |
|
|
|
|
.search { |
|
|
|
|
margin-right: 20px; |
|
|
|
|
} |
|
|
|
|
.tools { |
|
|
|
|
right: 30px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@media (min-width: 280px) and (max-width: 1200px) { |
|
|
|
|
.header{ |
|
|
|
|
color: black !important; |
|
|
|
|
background-color: #fff; |
|
|
|
|
} |
|
|
|
|
.contentBox{ |
|
|
|
|
.searchBox, .languageBox{ |
|
|
|
|
padding-left: 20px; |
|
|
|
|
height: 40px; |
|
|
|
|
line-height: 40px; |
|
|
|
|
.header { |
|
|
|
|
color: black !important; |
|
|
|
|
background-color: #fff; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.search-wrap { |
|
|
|
|
right: 10px; |
|
|
|
|
top: 0; |
|
|
|
|
width: 70%; |
|
|
|
|
input { |
|
|
|
|
width: 15rem; |
|
|
|
|
padding: 0 .5rem 0 .1rem; |
|
|
|
|
.contentBox { |
|
|
|
|
.searchBox, |
|
|
|
|
.languageBox { |
|
|
|
|
padding-left: 20px; |
|
|
|
|
height: 40px; |
|
|
|
|
line-height: 40px; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.search-wrap { |
|
|
|
|
right: 10px; |
|
|
|
|
top: 0; |
|
|
|
|
width: 70%; |
|
|
|
|
input { |
|
|
|
|
width: 15rem; |
|
|
|
|
padding: 0 0.5rem 0 0.1rem; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
</style> |
|
|
|
|