167 lines
3.8 KiB
Vue
167 lines
3.8 KiB
Vue
|
||
<template>
|
||
<div class="container">
|
||
<AppHead/>
|
||
<div class="banner">
|
||
<div class="banner_main">
|
||
<h2>业务服务</h2>
|
||
<p>安全第一 预防为主 综合治理</p>
|
||
</div>
|
||
</div>
|
||
<div class="new_container">
|
||
<div class="top">
|
||
<div class="wrap">
|
||
<div
|
||
v-for="(item, index) in serverItems"
|
||
:key="index"
|
||
class="list"
|
||
:class="{ active: activeIndex === index }"
|
||
@click="activeIndex = index"
|
||
>
|
||
{{item}}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="new_main">
|
||
<div>河北秦安安全科技股份有限公司(原秦皇岛中宇安全评价有限公司)2019年12月26日取得了河北省应急管理厅颁发的《安全评价机构资质证书》,证书编号:APJ-(冀)-001。现有安全评价师35人,其中一级评价师9人,二级评价师10人,三级评价师16人。具有高级专业技术职称的6人,具有中级专业技术职称的5人,注册安全工程师20人。</div>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
<AppFoot/>
|
||
<right/>
|
||
</div>
|
||
</template>
|
||
<script setup lang="ts">
|
||
import { ref } from "vue";
|
||
|
||
const serverItems=["安全评价", "安全标准化评南与咨询", "职业卫生检测与评价", "安全生产检测检验","环境卫生检测检验","应急救援预案指导","安全培训","交通培训"];
|
||
const activeIndex = ref(0);
|
||
|
||
|
||
</script>
|
||
|
||
<style scoped lang="scss">
|
||
.container {
|
||
background: #f6f8fa;
|
||
|
||
.banner {
|
||
width: 100%;
|
||
height: 400px;
|
||
background: url("@/assets/images/newbanner.png") no-repeat top center;
|
||
.banner_main {
|
||
width: 1400px;
|
||
margin: 0 auto;
|
||
padding-top: 180px;
|
||
h2 {
|
||
font-size: 60px;
|
||
color: #ffffff;
|
||
margin: 0;
|
||
padding: 0;
|
||
}
|
||
p {
|
||
margin: 0;
|
||
color: #ffffff;
|
||
}
|
||
}
|
||
}
|
||
.new_container {
|
||
width: 100%;
|
||
|
||
.top {
|
||
width: 100%;
|
||
height: 60px;
|
||
background: #ffffff;
|
||
|
||
.wrap {
|
||
width: 1400px;
|
||
margin: 0 auto;
|
||
display: flex;
|
||
|
||
.list {
|
||
font-size: 16px;
|
||
line-height: 60px;
|
||
cursor: pointer;
|
||
position: relative;
|
||
margin-right: 40px;
|
||
|
||
&.active {
|
||
color: #006aff;
|
||
&:before {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
|
||
&:before {
|
||
content: "";
|
||
position: absolute;
|
||
left: 0;
|
||
bottom: 0;
|
||
border-bottom: 3px solid #006aff;
|
||
width: 100%;
|
||
opacity: 0;
|
||
}
|
||
&:hover {
|
||
color: #006aff;
|
||
&:before {
|
||
opacity: 1;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
.new_main{
|
||
width: 1400px;
|
||
margin: 20px auto;
|
||
background: #ffffff;
|
||
padding: 20px;
|
||
box-sizing: border-box;
|
||
img{
|
||
max-width: 1200px;
|
||
margin: 0 auto;
|
||
|
||
}
|
||
a{
|
||
text-decoration: none;
|
||
}
|
||
.wrap{
|
||
width: 100%;
|
||
background: #ffffff;
|
||
padding: 20px;
|
||
border-radius: 4px;
|
||
margin-bottom: 20px;
|
||
.item{
|
||
display: flex;
|
||
.info{
|
||
padding-left: 20px;
|
||
.title{
|
||
font-size: 18px;
|
||
color: #222222;
|
||
}
|
||
.text{
|
||
font-size: 14px;
|
||
color: #696969;
|
||
margin-top: 20px;
|
||
}
|
||
.time{
|
||
color: #999999;
|
||
margin-top: 10px;
|
||
display: flex;
|
||
align-items: center;
|
||
span{
|
||
padding-left: 5px;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
&:hover{
|
||
box-shadow: 0 8px 30px rgba(45, 104, 255, 0.15)
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
</style>
|