|
|
|
@ -24,6 +24,57 @@
|
|
|
|
|
<div class="picture_text_five">未经过的出口</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="picture_item">
|
|
|
|
|
<div class="start_point">
|
|
|
|
|
<div class="start_point_item">
|
|
|
|
|
<div class="start_point_item_text">1.转处置任务治安大队</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="line_one">
|
|
|
|
|
<div class="line_item"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="line_two">
|
|
|
|
|
<div class="line_item_one"></div>
|
|
|
|
|
<div class="line_item_two"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 箭头 -->
|
|
|
|
|
<div class="arrow_one">
|
|
|
|
|
<div class="arrow_item_one"></div>
|
|
|
|
|
<div class="arrow_item_two"></div>
|
|
|
|
|
<div class="arrow_item_three"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 流程点 -->
|
|
|
|
|
<div class="next_point">
|
|
|
|
|
<div class="next_point_item_one">
|
|
|
|
|
<div class="next_point_item_one_text">1.转处置任务治安大队</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="next_point_item_two">
|
|
|
|
|
<div class="next_point_item_two_text">1.转处置任务治安大队</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="next_point_item_three">
|
|
|
|
|
<div class="next_point_item_three_text">1.转处置任务治安大队</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 流程线 -->
|
|
|
|
|
<div class="line_three">
|
|
|
|
|
<div class="line_item_one"></div>
|
|
|
|
|
<div class="line_item_two"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 流程线 -->
|
|
|
|
|
<div class="line_four">
|
|
|
|
|
<div class="line_item"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 箭头 -->
|
|
|
|
|
<div class="arrow_two">
|
|
|
|
|
<div class="arrow_item"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 流程终结点 -->
|
|
|
|
|
<div class="end_point">
|
|
|
|
|
<div class="end_point_item">
|
|
|
|
|
<div class="end_point_item_text">1.转处置任务治安大队</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
@ -126,5 +177,224 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.picture_item {
|
|
|
|
|
width: 94vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
margin-left: 1vw;
|
|
|
|
|
margin-top: 1vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
.start_point {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.start_point_item {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 10vh;
|
|
|
|
|
// margin-top: 18vh;
|
|
|
|
|
background: url("~@/assets/companyFile/point01.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.start_point_item_text {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 5vh;
|
|
|
|
|
color: #c8c8c8;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 5vh;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.line_one {
|
|
|
|
|
width: 10vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.line_item {
|
|
|
|
|
width: 10vw;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background: #278961;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.line_two {
|
|
|
|
|
width: 8vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
.line_item_one {
|
|
|
|
|
width: 8vw;
|
|
|
|
|
height: 15vh;
|
|
|
|
|
border-left: 2px solid #278961;
|
|
|
|
|
border-bottom: 2px solid #278961;
|
|
|
|
|
border-top: 1px solid #278961;
|
|
|
|
|
}
|
|
|
|
|
.line_item_two {
|
|
|
|
|
width: 8vw;
|
|
|
|
|
height: 15vh;
|
|
|
|
|
border-left: 2px solid #278961;
|
|
|
|
|
border-top: 2px solid #278961;
|
|
|
|
|
border-bottom: 1px solid #278961;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.arrow_one {
|
|
|
|
|
width: 1.5vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
.arrow_item_one {
|
|
|
|
|
width: 1.5vw;
|
|
|
|
|
height: 2vh;
|
|
|
|
|
margin-top: 14vh;
|
|
|
|
|
background: url("~@/assets/companyFile/rightarrow.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
}
|
|
|
|
|
.arrow_item_two {
|
|
|
|
|
width: 1.5vw;
|
|
|
|
|
height: 2vh;
|
|
|
|
|
margin-top: 13vh;
|
|
|
|
|
background: url("~@/assets/companyFile/rightarrow.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
}
|
|
|
|
|
.arrow_item_three {
|
|
|
|
|
width: 1.5vw;
|
|
|
|
|
height: 2vh;
|
|
|
|
|
margin-top: 13vh;
|
|
|
|
|
background: url("~@/assets/companyFile/rightarrow.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.next_point {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
.next_point_item_one {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 10vh;
|
|
|
|
|
margin-top: 10vh;
|
|
|
|
|
background: url("~@/assets/companyFile/point01.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.next_point_item_one_text {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 5vh;
|
|
|
|
|
color: #c8c8c8;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 5vh;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.next_point_item_two {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 10vh;
|
|
|
|
|
margin-top: 5vh;
|
|
|
|
|
background: url("~@/assets/companyFile/point02.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.next_point_item_two_text {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 5vh;
|
|
|
|
|
color: #c8c8c8;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 5vh;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.next_point_item_three {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 10vh;
|
|
|
|
|
margin-top: 5vh;
|
|
|
|
|
background: url("~@/assets/companyFile/point03.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.next_point_item_three_text {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 5vh;
|
|
|
|
|
color: #c8c8c8;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 5vh;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.line_three {
|
|
|
|
|
width: 8vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
.line_item_one {
|
|
|
|
|
width: 8vw;
|
|
|
|
|
height: 15vh;
|
|
|
|
|
border-right: 2px solid #747b7e;
|
|
|
|
|
border-bottom: 2px solid #747b7e;
|
|
|
|
|
border-top: 1px solid #747b7e;
|
|
|
|
|
}
|
|
|
|
|
.line_item_two {
|
|
|
|
|
width: 8vw;
|
|
|
|
|
height: 15vh;
|
|
|
|
|
border-right: 2px solid #747b7e;
|
|
|
|
|
border-top: 2px solid #747b7e;
|
|
|
|
|
border-bottom: 1px solid #747b7e;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.line_four {
|
|
|
|
|
width: 10vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.line_item {
|
|
|
|
|
width: 10vw;
|
|
|
|
|
height: 2px;
|
|
|
|
|
background: #747b7e;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.arrow_two {
|
|
|
|
|
width: 1.5vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.arrow_item {
|
|
|
|
|
width: 1.5vw;
|
|
|
|
|
height: 2vh;
|
|
|
|
|
// border: 0.1px solid #3f5564;
|
|
|
|
|
background: url("~@/assets/companyFile/rightarrow02.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.end_point {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 60vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.end_point_item {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 10vh;
|
|
|
|
|
// margin-top: 18vh;
|
|
|
|
|
background: url("~@/assets/companyFile/point03.png") no-repeat !important;
|
|
|
|
|
background-size: 100% 100% !important;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.end_point_item_text {
|
|
|
|
|
width: 15vw;
|
|
|
|
|
height: 5vh;
|
|
|
|
|
color: #c8c8c8;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 5vh;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|