|
|
|
@ -2,21 +2,23 @@ |
|
|
|
|
::-webkit-scrollbar { |
|
|
|
|
width: 4px; |
|
|
|
|
height: 4px; |
|
|
|
|
background-color: rgba(102,182,255, .1); |
|
|
|
|
background-color: rgba(102, 182, 255, .1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/*定义滚动条轨道 内阴影+圆角*/ |
|
|
|
|
::-webkit-scrollbar-track { |
|
|
|
|
box-shadow: inset 0 0 6px rgba(102,182,255, 0.3); |
|
|
|
|
-webkit-box-shadow: inset 0 0 6px rgba(102,182,255, 0.3); |
|
|
|
|
box-shadow: inset 0 0 6px rgba(102, 182, 255, 0.3); |
|
|
|
|
-webkit-box-shadow: inset 0 0 6px rgba(102, 182, 255, 0.3); |
|
|
|
|
border-radius: 4px; |
|
|
|
|
background-color: rgba(102,182,255, 0.1); |
|
|
|
|
background-color: rgba(102, 182, 255, 0.1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/*定义滑块 内阴影+圆角*/ |
|
|
|
|
::-webkit-scrollbar-thumb { |
|
|
|
|
border-radius: 4px; |
|
|
|
|
box-shadow: inset 0 0 6px rgba(102,182,255, 0.1); |
|
|
|
|
-webkit-box-shadow: inset 0 0 6px rgba(102,182,255, 0.1); |
|
|
|
|
background-color: rgba(102,182,255, 1); |
|
|
|
|
box-shadow: inset 0 0 6px rgba(102, 182, 255, 0.1); |
|
|
|
|
-webkit-box-shadow: inset 0 0 6px rgba(102, 182, 255, 0.1); |
|
|
|
|
background-color: rgba(102, 182, 255, 1); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* 屏幕基准 */ |
|
|
|
@ -71,29 +73,155 @@ body { |
|
|
|
|
.height-full { |
|
|
|
|
height: 100% |
|
|
|
|
} |
|
|
|
|
.row{display:flex;flex-wrap:wrap} |
|
|
|
|
.col{flex:1 0 0%} |
|
|
|
|
.col-auto{flex:0 0 auto;width:auto} |
|
|
|
|
.col-1{flex:0 0 auto;width:8.33333333%} |
|
|
|
|
.col-2{flex:0 0 auto;width:16.66666667%} |
|
|
|
|
.col-3{flex:0 0 auto;width:25%} |
|
|
|
|
.col-4{flex:0 0 auto;width:33.33333333%} |
|
|
|
|
.col-5{flex:0 0 auto;width:41.66666667%} |
|
|
|
|
.col-6{flex:0 0 auto;width:50%} |
|
|
|
|
.col-7{flex:0 0 auto;width:58.33333333%} |
|
|
|
|
.col-8{flex:0 0 auto;width:66.66666667%} |
|
|
|
|
.col-9{flex:0 0 auto;width:75%} |
|
|
|
|
.col-10{flex:0 0 auto;width:83.33333333%} |
|
|
|
|
.col-11{flex:0 0 auto;width:91.66666667%} |
|
|
|
|
.col-12{flex:0 0 auto;width:100%} |
|
|
|
|
|
|
|
|
|
.row { |
|
|
|
|
display: flex; |
|
|
|
|
flex-wrap: wrap |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col { |
|
|
|
|
flex: 1 0 0% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-auto { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: auto |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-1 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 8.33333333% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-2 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 16.66666667% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-3 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 25% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-4 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 33.33333333% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-5 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 41.66666667% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-6 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 50% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-7 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 58.33333333% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-8 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 66.66666667% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-9 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 75% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-10 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 83.33333333% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-11 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 91.66666667% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.col-12 { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 100% |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.text-ellipsis { |
|
|
|
|
overflow: hidden; |
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
white-space: nowrap; |
|
|
|
|
} |
|
|
|
|
.p-dispatch-box{ |
|
|
|
|
.p-dispatch-name{flex:0 0 auto;width:120px} |
|
|
|
|
|
|
|
|
|
.p-mapSelect { |
|
|
|
|
position: fixed; |
|
|
|
|
top: 25px; |
|
|
|
|
width: 250px; |
|
|
|
|
left: 400px; |
|
|
|
|
z-index: 9999; |
|
|
|
|
|
|
|
|
|
.p-mapSelect-box { |
|
|
|
|
cursor: pointer; |
|
|
|
|
text-align: center; |
|
|
|
|
margin: 0 auto; |
|
|
|
|
margin-right: 5px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-mapSelect-icon { |
|
|
|
|
display: inline-block; |
|
|
|
|
width: 30px; |
|
|
|
|
height: 30px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-mapSelect-box.weixin .p-mapSelect-icon { |
|
|
|
|
background: url('~@/assets/images/map01.svg'); |
|
|
|
|
background-repeat: repeat; |
|
|
|
|
background-size: 30px; |
|
|
|
|
background-size: contain; |
|
|
|
|
background-position: center center; |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-mapSelect-box.shuzi .p-mapSelect-icon { |
|
|
|
|
background: url('~@/assets/images/map02.svg'); |
|
|
|
|
background-repeat: repeat; |
|
|
|
|
background-size: 30px; |
|
|
|
|
background-size: contain; |
|
|
|
|
background-position: center center; |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.p-mapSelect-text { |
|
|
|
|
display: inline-block; |
|
|
|
|
line-height: 30px; |
|
|
|
|
text-align: center; |
|
|
|
|
font-size: 14px; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-mapSelect-box.weixin.active { |
|
|
|
|
.p-mapSelect-icon { |
|
|
|
|
background: url('~@/assets/images/map01_active.svg'); |
|
|
|
|
} |
|
|
|
|
.p-mapSelect-text{color: rgb(66, 233, 131);} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
.p-mapSelect-box.shuzi.active { |
|
|
|
|
.p-mapSelect-text{color: rgb(66, 233, 131);} |
|
|
|
|
.p-mapSelect-icon { |
|
|
|
|
background: url('~@/assets/images/map02_active.svg'); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-dispatch-box { |
|
|
|
|
.p-dispatch-name { |
|
|
|
|
flex: 0 0 auto; |
|
|
|
|
width: 120px |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-emergency-plan { |
|
|
|
|
.p-emergency-plan-item { |
|
|
|
|
display: flex; |
|
|
|
@ -148,10 +276,15 @@ body { |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-container { |
|
|
|
|
padding: 0 20rem; |
|
|
|
|
} |
|
|
|
|
.inline-block{ display: inline-block;} |
|
|
|
|
|
|
|
|
|
.inline-block { |
|
|
|
|
display: inline-block; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* 页面盒子 */ |
|
|
|
|
.p-pages-box { |
|
|
|
|
position: fixed; |
|
|
|
@ -184,13 +317,26 @@ body { |
|
|
|
|
background-position: bottom; |
|
|
|
|
cursor: pointer; |
|
|
|
|
} |
|
|
|
|
.p-talarm-dialog{position: fixed!important; left: 300rem!important; top: 10rem!important;background: #102032; |
|
|
|
|
|
|
|
|
|
.p-talarm-dialog { |
|
|
|
|
position: fixed !important; |
|
|
|
|
left: 300rem !important; |
|
|
|
|
top: 10rem !important; |
|
|
|
|
background: #102032; |
|
|
|
|
text-align: center; |
|
|
|
|
.el-dialog__header{padding: 0;} |
|
|
|
|
|
|
|
|
|
.el-dialog__header { |
|
|
|
|
padding: 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-icon-close:before { |
|
|
|
|
content: ''; |
|
|
|
|
} |
|
|
|
|
.el-dialog__body{padding: $p-spacer-small;} |
|
|
|
|
|
|
|
|
|
.el-dialog__body { |
|
|
|
|
padding: $p-spacer-small; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-dialog__headerbtn { |
|
|
|
|
top: -10rem; |
|
|
|
|
right: -10rem; |
|
|
|
@ -207,10 +353,15 @@ body { |
|
|
|
|
opacity: 1; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-filter-dialog { |
|
|
|
|
background: #102032; |
|
|
|
|
text-align: center; |
|
|
|
|
.el-dialog__header{padding: 0;} |
|
|
|
|
text-align: center; |
|
|
|
|
|
|
|
|
|
.el-dialog__header { |
|
|
|
|
padding: 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-icon-close:before { |
|
|
|
|
content: ''; |
|
|
|
|
} |
|
|
|
@ -591,7 +742,7 @@ text-align: center; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 流量状态 */ |
|
|
|
|
.type1 ,.type2{ |
|
|
|
|
.type1, .type2 { |
|
|
|
|
/* 舒适 */ |
|
|
|
|
display: inline-flex; |
|
|
|
|
width: 100rem; |
|
|
|
@ -639,7 +790,7 @@ text-align: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* 拥挤状态 */ |
|
|
|
|
.type4, .type5{ |
|
|
|
|
.type4, .type5 { |
|
|
|
|
/* 拥挤 */ |
|
|
|
|
display: inline-flex; |
|
|
|
|
width: 100rem; |
|
|
|
@ -669,11 +820,12 @@ text-align: center; |
|
|
|
|
border-color: rgba($p-border-color, .5) !important; |
|
|
|
|
color: #fff; |
|
|
|
|
} |
|
|
|
|
.el-input--mini .el-input__inner { |
|
|
|
|
background-color: #152537 !important; |
|
|
|
|
border-color: rgba($p-border-color,1) !important; |
|
|
|
|
color: #fff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-input--mini .el-input__inner { |
|
|
|
|
background-color: #152537 !important; |
|
|
|
|
border-color: rgba($p-border-color, 1) !important; |
|
|
|
|
color: #fff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-icon-arrow-up:before { |
|
|
|
|
content: "\e636" !important; |
|
|
|
@ -697,11 +849,12 @@ text-align: center; |
|
|
|
|
border-color: rgba($p-border-color, .5) !important; |
|
|
|
|
color: #fff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-input__inner { |
|
|
|
|
height: 30px; |
|
|
|
|
line-height: 30px; |
|
|
|
|
background-color: #152537 !important; |
|
|
|
|
border-color: rgba($p-border-color,1) !important; |
|
|
|
|
border-color: rgba($p-border-color, 1) !important; |
|
|
|
|
color: #fff; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -718,8 +871,13 @@ text-align: center; |
|
|
|
|
color: $p-primary-color; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.audio-controls{position: relative; z-index: 9999;} |
|
|
|
|
.p-pages-box{ |
|
|
|
|
|
|
|
|
|
.audio-controls { |
|
|
|
|
position: relative; |
|
|
|
|
z-index: 9999; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-pages-box { |
|
|
|
|
.el-select-dropdown { |
|
|
|
|
position: relative; |
|
|
|
|
margin-top: $p-spacer-mini !important; |
|
|
|
@ -786,11 +944,18 @@ text-align: center; |
|
|
|
|
background: linear-gradient(to bottom, rgba($p-primary-color, 0) 0, rgba($p-primary-color, 0.6) 50%, rgba($p-primary-color, 0) 100%); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.el-message-box.v-message{ |
|
|
|
|
|
|
|
|
|
.el-message-box.v-message { |
|
|
|
|
background-color: #001621 !important; |
|
|
|
|
border-color: rgba($p-border-color, .5) !important; |
|
|
|
|
.el-message-box__title{color: #fff} |
|
|
|
|
.el-message-box__message p{color: #fff} |
|
|
|
|
|
|
|
|
|
.el-message-box__title { |
|
|
|
|
color: #fff |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.el-message-box__message p { |
|
|
|
|
color: #fff |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -1688,7 +1853,7 @@ text-align: center; |
|
|
|
|
width: 30px; |
|
|
|
|
height: 30px; |
|
|
|
|
border: 1px solid $p-primary-color; |
|
|
|
|
box-shadow: inset 0px 0px 6px 0px rgba(66,233,131, .8); |
|
|
|
|
box-shadow: inset 0px 0px 6px 0px rgba(66, 233, 131, .8); |
|
|
|
|
border-radius: 30px; |
|
|
|
|
margin-bottom: $p-spacer-mini; |
|
|
|
|
text-align: center; |
|
|
|
@ -1709,6 +1874,7 @@ text-align: center; |
|
|
|
|
-webkit-background-clip: text; |
|
|
|
|
-webkit-text-fill-color: transparent; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* 弹框 盒子 */ |
|
|
|
|
.p-dialog-box { |
|
|
|
|
position: relative; |
|
|
|
@ -2280,18 +2446,32 @@ text-align: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
.p-map-tip{ |
|
|
|
|
|
|
|
|
|
.p-map-tip { |
|
|
|
|
position: absolute; |
|
|
|
|
right: 40rem; |
|
|
|
|
bottom: 40rem; |
|
|
|
|
.p-map-tip-item{padding: 10rem 20rem; margin-bottom: 10rem; |
|
|
|
|
|
|
|
|
|
.p-map-tip-item { |
|
|
|
|
padding: 10rem 20rem; |
|
|
|
|
margin-bottom: 10rem; |
|
|
|
|
height: 100rem; |
|
|
|
|
background: url("~@/assets/images/p_data_bottom.svg"); |
|
|
|
|
background-size: contain; |
|
|
|
|
background-position: bottom; |
|
|
|
|
background-repeat: no-repeat;} |
|
|
|
|
.p-map-tip-num{font-family: "DIN Alternate"; margin-top: -8rem; font-size: 25rem; text-align: center;} |
|
|
|
|
.p-map-tip-txt{ text-align: center;} |
|
|
|
|
background-repeat: no-repeat; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-map-tip-num { |
|
|
|
|
font-family: "DIN Alternate"; |
|
|
|
|
margin-top: -8rem; |
|
|
|
|
font-size: 25rem; |
|
|
|
|
text-align: center; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.p-map-tip-txt { |
|
|
|
|
text-align: center; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
.m-t-mini { |
|
|
|
|