|
|
@ -13,11 +13,7 @@
|
|
|
|
<!-- 顶部搜索区域 -->
|
|
|
|
<!-- 顶部搜索区域 -->
|
|
|
|
<div class="top">
|
|
|
|
<div class="top">
|
|
|
|
<div class="top_search">
|
|
|
|
<div class="top_search">
|
|
|
|
<el-input
|
|
|
|
<el-input class="top_search_input" placeholder="输入企业名称搜索" v-model="searchCompany">
|
|
|
|
class="top_search_input"
|
|
|
|
|
|
|
|
placeholder="输入企业名称搜索"
|
|
|
|
|
|
|
|
v-model="searchCompany"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
</el-input>
|
|
|
|
</el-input>
|
|
|
|
<div class="top_search_button">
|
|
|
|
<div class="top_search_button">
|
|
|
|
<i class="el-icon-search" @click="getData_icon()"></i>
|
|
|
|
<i class="el-icon-search" @click="getData_icon()"></i>
|
|
|
@ -34,27 +30,21 @@
|
|
|
|
<img :src="item.picUrl" alt="" @error="setDefaultImage" />
|
|
|
|
<img :src="item.picUrl" alt="" @error="setDefaultImage" />
|
|
|
|
<span class="company_name"> {{ item.companyName }} </span>
|
|
|
|
<span class="company_name"> {{ item.companyName }} </span>
|
|
|
|
<div class="company_label">
|
|
|
|
<div class="company_label">
|
|
|
|
<div
|
|
|
|
<div :class="{
|
|
|
|
:class="{
|
|
|
|
|
|
|
|
shewei: val == '剧毒' || val == '易制毒',
|
|
|
|
shewei: val == '剧毒' || val == '易制毒',
|
|
|
|
zhongdian: val == '消防重点' || val == '所管消防',
|
|
|
|
zhongdian: val == '消防重点' || val == '所管消防',
|
|
|
|
zhibao: val == '放射源' || val == '易制爆',
|
|
|
|
zhibao: val == '放射源' || val == '易制爆',
|
|
|
|
zhian: val == '治安重点' || val == '创安单位',
|
|
|
|
zhian: val == '治安重点' || val == '创安单位',
|
|
|
|
}"
|
|
|
|
}" v-for="(val, index) in item.companyTypes" :key="index">
|
|
|
|
v-for="(val, index) in item.companyTypes"
|
|
|
|
|
|
|
|
:key="index"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
{{ val }}
|
|
|
|
{{ val }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<span class="company_unit"
|
|
|
|
<span class="company_unit"><i class="el-icon-location"></i>
|
|
|
|
><i class="el-icon-location"></i>
|
|
|
|
{{ item.companyAddress }}</span>
|
|
|
|
{{ item.companyAddress }}</span
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<!-- 遮罩层 -->
|
|
|
|
<!-- 遮罩层 -->
|
|
|
|
<div class="image_mask">
|
|
|
|
<div class="image_mask">
|
|
|
|
<div class="btn">
|
|
|
|
<div class="btn">
|
|
|
|
<button class="check" @click="jump()">查看档案</button>
|
|
|
|
<button class="check" @click="jump(item)">查看档案</button>
|
|
|
|
<button class="change" @click="openDialog(3, item)">
|
|
|
|
<button class="change" @click="openDialog(3, item)">
|
|
|
|
编辑
|
|
|
|
编辑
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
@ -68,15 +58,9 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- 分页区域 -->
|
|
|
|
<!-- 分页区域 -->
|
|
|
|
<div class="footer">
|
|
|
|
<div class="footer">
|
|
|
|
<el-pagination
|
|
|
|
<el-pagination :background="true" @current-change="handleCurrentChange" :page-sizes="[6]"
|
|
|
|
:background="true"
|
|
|
|
:page-size="pageSize" :current-page="pageNum" layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
:total="total">
|
|
|
|
:page-sizes="[6]"
|
|
|
|
|
|
|
|
:page-size="pageSize"
|
|
|
|
|
|
|
|
:current-page="pageNum"
|
|
|
|
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
|
|
|
:total="total"
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
</el-pagination>
|
|
|
|
</el-pagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
@ -165,8 +149,12 @@ export default {
|
|
|
|
back() {
|
|
|
|
back() {
|
|
|
|
this.getData();
|
|
|
|
this.getData();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
jump() {
|
|
|
|
jump(val) {
|
|
|
|
|
|
|
|
console.log(val, 'Val');
|
|
|
|
|
|
|
|
sessionStorage.setItem('companyID', val.id)
|
|
|
|
|
|
|
|
sessionStorage.setItem('companyName', val.companyName)
|
|
|
|
this.$router.push("/home/archives");
|
|
|
|
this.$router.push("/home/archives");
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
setDefaultImage(e) {
|
|
|
|
setDefaultImage(e) {
|
|
|
|
// 加载失败默认图片
|
|
|
|
// 加载失败默认图片
|
|
|
@ -178,11 +166,14 @@ export default {
|
|
|
|
<style lang="less" scoped>
|
|
|
|
<style lang="less" scoped>
|
|
|
|
/* card统一样式 */
|
|
|
|
/* card统一样式 */
|
|
|
|
.el-card.box-card.is-always-shadow {
|
|
|
|
.el-card.box-card.is-always-shadow {
|
|
|
|
height: calc(100vh - 116px); /* 控制card布局高度,用于适配 */
|
|
|
|
height: calc(100vh - 116px);
|
|
|
|
|
|
|
|
/* 控制card布局高度,用于适配 */
|
|
|
|
position: relative;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
/* card统一样式 */
|
|
|
|
/* card统一样式 */
|
|
|
|
/deep/.el-card__header {
|
|
|
|
/deep/.el-card__header {
|
|
|
|
border-bottom: 1px solid #a1a1a1 !important;
|
|
|
|
border-bottom: 1px solid #a1a1a1 !important;
|
|
|
|
|
|
|
|
|
|
|
|
.clearfix {
|
|
|
|
.clearfix {
|
|
|
|
span {
|
|
|
|
span {
|
|
|
|
font-size: 17px;
|
|
|
|
font-size: 17px;
|
|
|
@ -193,38 +184,47 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.main {
|
|
|
|
.main {
|
|
|
|
height: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
.el-card.box-card.is-always-shadow {
|
|
|
|
.el-card.box-card.is-always-shadow {
|
|
|
|
background: url("~@/assets/companyFile/22136.png") no-repeat !important;
|
|
|
|
background: url("~@/assets/companyFile/22136.png") no-repeat !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
border: 0px;
|
|
|
|
border: 0px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.card_body {
|
|
|
|
.card_body {
|
|
|
|
height: 90% !important;
|
|
|
|
height: 90% !important;
|
|
|
|
|
|
|
|
|
|
|
|
.top {
|
|
|
|
.top {
|
|
|
|
width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
|
|
.top_search {
|
|
|
|
.top_search {
|
|
|
|
margin-left: 2vw;
|
|
|
|
margin-left: 2vw;
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
width: 40%;
|
|
|
|
width: 40%;
|
|
|
|
height: 40px;
|
|
|
|
height: 40px;
|
|
|
|
|
|
|
|
|
|
|
|
.top_search_input ::v-deep {
|
|
|
|
.top_search_input ::v-deep {
|
|
|
|
/* 查询框 */
|
|
|
|
/* 查询框 */
|
|
|
|
width: 60%;
|
|
|
|
width: 60%;
|
|
|
|
|
|
|
|
|
|
|
|
.el-input__inner {
|
|
|
|
.el-input__inner {
|
|
|
|
border-radius: 4px 0px 0px 4px;
|
|
|
|
border-radius: 4px 0px 0px 4px;
|
|
|
|
background: #3c4b4a;
|
|
|
|
background: #3c4b4a;
|
|
|
|
color: #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 查询框点击颜色变化 */
|
|
|
|
/* 查询框点击颜色变化 */
|
|
|
|
.el-input__inner:focus,
|
|
|
|
.el-input__inner:focus,
|
|
|
|
.el-input__inner:hover {
|
|
|
|
.el-input__inner:hover {
|
|
|
|
border-color: #1b3736;
|
|
|
|
border-color: #1b3736;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.top_search_button {
|
|
|
|
.top_search_button {
|
|
|
|
width: 7%;
|
|
|
|
width: 7%;
|
|
|
|
height: 100%;
|
|
|
|
height: 100%;
|
|
|
@ -233,19 +233,23 @@ export default {
|
|
|
|
text-align: center;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 28px;
|
|
|
|
font-size: 28px;
|
|
|
|
cursor: pointer;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
.el-icon-search {
|
|
|
|
.el-icon-search {
|
|
|
|
color: #fff;
|
|
|
|
color: #fff;
|
|
|
|
padding: 11% 0;
|
|
|
|
padding: 11% 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.top_search_button:focus,
|
|
|
|
.top_search_button:focus,
|
|
|
|
.top_search_button:hover {
|
|
|
|
.top_search_button:hover {
|
|
|
|
/* 放大镜点击特效 */
|
|
|
|
/* 放大镜点击特效 */
|
|
|
|
background: #126a58;
|
|
|
|
background: #126a58;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.top_add_btn {
|
|
|
|
.top_add_btn {
|
|
|
|
width: 10%;
|
|
|
|
width: 10%;
|
|
|
|
|
|
|
|
|
|
|
|
.el-button {
|
|
|
|
.el-button {
|
|
|
|
width: 82%;
|
|
|
|
width: 82%;
|
|
|
|
border: 1px solid #4a6072;
|
|
|
|
border: 1px solid #4a6072;
|
|
|
@ -254,6 +258,7 @@ export default {
|
|
|
|
background: url("~@/assets/companyFile/btn05.png") no-repeat !important;
|
|
|
|
background: url("~@/assets/companyFile/btn05.png") no-repeat !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.el-button:focus,
|
|
|
|
.el-button:focus,
|
|
|
|
.el-button:hover {
|
|
|
|
.el-button:hover {
|
|
|
|
text-shadow: 0 0 9px #34e1b3;
|
|
|
|
text-shadow: 0 0 9px #34e1b3;
|
|
|
@ -261,17 +266,20 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 公司图片展示区域 */
|
|
|
|
/* 公司图片展示区域 */
|
|
|
|
.center {
|
|
|
|
.center {
|
|
|
|
width: 100%;
|
|
|
|
width: 100%;
|
|
|
|
height: 65vh;
|
|
|
|
height: 65vh;
|
|
|
|
margin-top: 22px;
|
|
|
|
margin-top: 22px;
|
|
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
ul {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-start;
|
|
|
|
justify-content: flex-start;
|
|
|
|
height: 100%;
|
|
|
|
height: 100%;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding-left: 0px;
|
|
|
|
padding-left: 0px;
|
|
|
|
|
|
|
|
|
|
|
|
li {
|
|
|
|
li {
|
|
|
|
margin-left: 2.5%;
|
|
|
|
margin-left: 2.5%;
|
|
|
|
position: relative;
|
|
|
|
position: relative;
|
|
|
@ -280,12 +288,14 @@ export default {
|
|
|
|
height: 31vh;
|
|
|
|
height: 31vh;
|
|
|
|
background: #1b3736;
|
|
|
|
background: #1b3736;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
|
|
|
|
|
|
|
|
img {
|
|
|
|
img {
|
|
|
|
margin-left: 0.3vw;
|
|
|
|
margin-left: 0.3vw;
|
|
|
|
margin-top: 0.5vh;
|
|
|
|
margin-top: 0.5vh;
|
|
|
|
width: 25vw;
|
|
|
|
width: 25vw;
|
|
|
|
height: 30vh;
|
|
|
|
height: 30vh;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 公司图片相关信息区域 */
|
|
|
|
/* 公司图片相关信息区域 */
|
|
|
|
.company_name {
|
|
|
|
.company_name {
|
|
|
|
position: absolute;
|
|
|
|
position: absolute;
|
|
|
@ -296,12 +306,14 @@ export default {
|
|
|
|
bottom: 70px;
|
|
|
|
bottom: 70px;
|
|
|
|
font-size: 18px;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.company_label {
|
|
|
|
.company_label {
|
|
|
|
display: flex;
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
z-index: 2;
|
|
|
|
left: 10px;
|
|
|
|
left: 10px;
|
|
|
|
bottom: 35px;
|
|
|
|
bottom: 35px;
|
|
|
|
|
|
|
|
|
|
|
|
.shewei {
|
|
|
|
.shewei {
|
|
|
|
height: 26px;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
@ -320,8 +332,7 @@ export default {
|
|
|
|
height: 26px;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
width: auto;
|
|
|
|
width: auto;
|
|
|
|
background: url("~@/assets/companyFile/编组 11222221.png")
|
|
|
|
background: url("~@/assets/companyFile/编组 11222221.png") no-repeat;
|
|
|
|
no-repeat;
|
|
|
|
|
|
|
|
padding: 0 5px;
|
|
|
|
padding: 0 5px;
|
|
|
|
font-size: 14px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #e3deff;
|
|
|
|
color: #e3deff;
|
|
|
@ -335,8 +346,7 @@ export default {
|
|
|
|
height: 26px;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
width: auto;
|
|
|
|
width: auto;
|
|
|
|
background: url("~@/assets/companyFile/编组 11991备份 10.png")
|
|
|
|
background: url("~@/assets/companyFile/编组 11991备份 10.png") no-repeat;
|
|
|
|
no-repeat;
|
|
|
|
|
|
|
|
padding: 0 5px;
|
|
|
|
padding: 0 5px;
|
|
|
|
font-size: 14px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #e3deff;
|
|
|
|
color: #e3deff;
|
|
|
@ -350,8 +360,7 @@ export default {
|
|
|
|
height: 26px;
|
|
|
|
height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
line-height: 26px;
|
|
|
|
width: auto;
|
|
|
|
width: auto;
|
|
|
|
background: url("~@/assets/companyFile/编组 11991备份 21.png")
|
|
|
|
background: url("~@/assets/companyFile/编组 11991备份 21.png") no-repeat;
|
|
|
|
no-repeat;
|
|
|
|
|
|
|
|
padding: 0 5px;
|
|
|
|
padding: 0 5px;
|
|
|
|
font-size: 14px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #e3deff;
|
|
|
|
color: #e3deff;
|
|
|
@ -361,6 +370,7 @@ export default {
|
|
|
|
margin-right: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.company_unit {
|
|
|
|
.company_unit {
|
|
|
|
position: absolute;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
z-index: 2;
|
|
|
@ -368,6 +378,7 @@ export default {
|
|
|
|
left: 10px;
|
|
|
|
left: 10px;
|
|
|
|
bottom: 10px;
|
|
|
|
bottom: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 图片鼠标经过 */
|
|
|
|
/* 图片鼠标经过 */
|
|
|
|
.image_mask {
|
|
|
|
.image_mask {
|
|
|
|
z-index: 3;
|
|
|
|
z-index: 3;
|
|
|
@ -378,10 +389,12 @@ export default {
|
|
|
|
background: rgba(73, 72, 72, 0.6);
|
|
|
|
background: rgba(73, 72, 72, 0.6);
|
|
|
|
color: #ffffff;
|
|
|
|
color: #ffffff;
|
|
|
|
opacity: 0;
|
|
|
|
opacity: 0;
|
|
|
|
|
|
|
|
|
|
|
|
/* 图片鼠标经过按钮 */
|
|
|
|
/* 图片鼠标经过按钮 */
|
|
|
|
.btn {
|
|
|
|
.btn {
|
|
|
|
margin-left: 25%;
|
|
|
|
margin-left: 25%;
|
|
|
|
margin-top: 25%;
|
|
|
|
margin-top: 25%;
|
|
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
button {
|
|
|
|
height: 60px;
|
|
|
|
height: 60px;
|
|
|
|
padding: 20px;
|
|
|
|
padding: 20px;
|
|
|
@ -392,28 +405,34 @@ export default {
|
|
|
|
border-radius: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
cursor: pointer;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
button.check {
|
|
|
|
button.check {
|
|
|
|
background: url("~@/assets/companyFile/btn05.png") no-repeat !important;
|
|
|
|
background: url("~@/assets/companyFile/btn05.png") no-repeat !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 点击高亮 */
|
|
|
|
/* 点击高亮 */
|
|
|
|
button.check:hover,
|
|
|
|
button.check:hover,
|
|
|
|
button.check:focus {
|
|
|
|
button.check:focus {
|
|
|
|
filter: brightness(150%);
|
|
|
|
filter: brightness(150%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
button.change {
|
|
|
|
button.change {
|
|
|
|
background: url("~@/assets/companyFile/btn06.png") no-repeat !important;
|
|
|
|
background: url("~@/assets/companyFile/btn06.png") no-repeat !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 点击高亮 */
|
|
|
|
/* 点击高亮 */
|
|
|
|
button.change:hover,
|
|
|
|
button.change:hover,
|
|
|
|
button.change:focus {
|
|
|
|
button.change:focus {
|
|
|
|
filter: brightness(150%);
|
|
|
|
filter: brightness(150%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
button.clear {
|
|
|
|
button.clear {
|
|
|
|
background: url("~@/assets/companyFile/btn07.png") no-repeat !important;
|
|
|
|
background: url("~@/assets/companyFile/btn07.png") no-repeat !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 点击高亮 */
|
|
|
|
/* 点击高亮 */
|
|
|
|
button.clear:hover,
|
|
|
|
button.clear:hover,
|
|
|
|
button.clear:focus {
|
|
|
|
button.clear:focus {
|
|
|
@ -422,50 +441,62 @@ export default {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
li:hover .image_mask {
|
|
|
|
li:hover .image_mask {
|
|
|
|
opacity: 1;
|
|
|
|
opacity: 1;
|
|
|
|
cursor: default;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
li:hover .shewei {
|
|
|
|
li:hover .shewei {
|
|
|
|
opacity: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
li:hover .zhongdian {
|
|
|
|
li:hover .zhongdian {
|
|
|
|
opacity: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
li:hover .zhibao {
|
|
|
|
li:hover .zhibao {
|
|
|
|
opacity: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
li:hover .zhian {
|
|
|
|
li:hover .zhian {
|
|
|
|
opacity: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
li:hover span {
|
|
|
|
li:hover span {
|
|
|
|
opacity: 0;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 底部分页展示区域 */
|
|
|
|
/* 底部分页展示区域 */
|
|
|
|
.footer {
|
|
|
|
.footer {
|
|
|
|
.el-pagination {
|
|
|
|
.el-pagination {
|
|
|
|
margin-left: 50%;
|
|
|
|
margin-left: 50%;
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.el-pagination__total {
|
|
|
|
/deep/.el-pagination__total {
|
|
|
|
color: #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.el-input__inner {
|
|
|
|
/deep/.el-input__inner {
|
|
|
|
border-radius: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
background: #3c4b4a;
|
|
|
|
background: #3c4b4a;
|
|
|
|
color: #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.btn-prev {
|
|
|
|
/deep/.btn-prev {
|
|
|
|
border-radius: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
background: #3c4b4a;
|
|
|
|
background: #3c4b4a;
|
|
|
|
color: #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/deep/ul {
|
|
|
|
/deep/ul {
|
|
|
|
li {
|
|
|
|
li {
|
|
|
|
background: #3c4b4a;
|
|
|
|
background: #3c4b4a;
|
|
|
|
color: #fff;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/deep/.btn-next {
|
|
|
|
/deep/.btn-next {
|
|
|
|
border-radius: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
background: #3c4b4a;
|
|
|
|
background: #3c4b4a;
|
|
|
|