2023-03-29 19:07:13 +08:00

56 lines
1.1 KiB
Vue

<template>
<div class="main">
<p class="title">分析</p>
<div class="text">新桥服务区入区车辆主要来自杭州市, 入车车辆主要是普通车型(30-60)</div>
</div>
</template>
<script>
export default {
name: "analyse",
data(){
return {
}
}
}
</script>
<style scoped lang="scss">
.main{
width: 100%;
height: 48px;
box-sizing: border-box;
padding: 6px 8px;
background: #F1F3F7;
border-radius: 4px;
display: flex;
margin-top: 12px;
.title{
width: 28px;
height: 18px;
font-size: 12px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #160002;
line-height: 18px;
padding: 0 4px;
text-align: center;
border-radius: 4px;
background:rgba(6, 93, 255, 0.1);
}
.text{
width: calc(100% - 46px);
padding-left: 6px;
font-size: 12px;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #786B6C;
line-height: 18px;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
-webkit-line-clamp: 2;
}
}
</style>