@charset "utf-8";

.pc_load {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.pc_load .pc_load_view {
    position: relative;
    width: auto;
    text-align: center;
}

.pc_load .preloader_test {
    position: relative;
    top: 40%;
    left: 0;
    width: auto;
    color: #333;
    font-weight: 700;
    margin-top: 30px;
    overflow: hidden;
}

.pc_load #preloader_1 {
    position: relative;
    width: 45px;
    height: 1px;
    display: inline-block;
}

#preloader_1 span {
    display: block;
    bottom: 0;
    width: 9px;
    height: 5px;
    background: #9b59b6;
    position: absolute;
    -webkit-animation: preloader_1 1.5s infinite ease-in-out;
    -moz-animation: preloader_1 1.5s infinite ease-in-out;
    -ms-animation: preloader_1 1.5s infinite ease-in-out;
    -o-animation: preloader_1 1.5s infinite ease-in-out;
    animation: preloader_1 1.5s infinite ease-in-out
}

#preloader_1 span:nth-child(2) {
    left: 11px;
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -ms-animation-delay: .2s;
    -o-animation-delay: .2s;
    animation-delay: .2s
}

#preloader_1 span:nth-child(3) {
    left: 22px;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -ms-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s
}

#preloader_1 span:nth-child(4) {
    left: 33px;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s
}

#preloader_1 span:nth-child(5) {
    left: 44px;
    -webkit-animation-delay: .8s;
    -moz-animation-delay: .8s;
    -ms-animation-delay: .8s;
    -o-animation-delay: .8s;
    animation-delay: .8s
}

@-webkit-keyframes preloader_1 {
    0% {
        height: 5px;
        -webkit-transform: translateY(0px);
        background: #9b59b6
    }

    25% {
        height: 30px;
        -webkit-transform: translateY(15px);
        background: #3498db
    }

    50% {
        height: 5px;
        -webkit-transform: translateY(0px);
        background: #9b59b6
    }

    100% {
        height: 5px;
        -webkit-transform: translateY(0px);
        background: #9b59b6
    }
}

@-moz-keyframes preloader_1 {
    0% {
        height: 5px;
        -moz-transform: translateY(0px);
        background: #9b59b6
    }

    25% {
        height: 30px;
        -moz-transform: translateY(15px);
        background: #3498db
    }

    50% {
        height: 5px;
        -moz-transform: translateY(0px);
        background: #9b59b6
    }

    100% {
        height: 5px;
        -moz-transform: translateY(0px);
        background: #9b59b6
    }
}

@-ms-keyframes preloader_1 {
    0% {
        height: 5px;
        -ms-transform: translateY(0px);
        background: #9b59b6
    }

    25% {
        height: 30px;
        -ms-transform: translateY(15px);
        background: #3498db
    }

    50% {
        height: 5px;
        -ms-transform: translateY(0px);
        background: #9b59b6
    }

    100% {
        height: 5px;
        -ms-transform: translateY(0px);
        background: #9b59b6
    }
}

@keyframes preloader_1 {
    0% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6
    }

    25% {
        height: 30px;
        transform: translateY(15px);
        background: #3498db
    }

    50% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6
    }

    100% {
        height: 5px;
        transform: translateY(0px);
        background: #9b59b6
    }
}

video {
    z-index: 0;
}

canvas {
    z-index: 0;
}

.loading-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999999;
    overflow: hidden;
}

.loading-absolute span {
    position: relative;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: #000;
    -webkit-animation-name: layui-rotate;
    animation-name: layui-rotate;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    z-index: 999999;
    overflow: hidden;
}

.loading-rotate {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 20px;
    z-index: 99999;
    overflow: hidden;
}

.loading-rotate span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    margin: -25px 0 0 -25px;
    -webkit-animation-name: layui-rotate;
    animation-name: layui-rotate;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes layui-rotate {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes layui-rotate {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.pc-edit {
    left: 0;
}

.Guide {
    display: none !important;
}

.pc-canvas {
    display: none !important;
}

.navFixed.navTop {
    top: 0 !important;
}

.navFixed.navLeft {
    left: 0 !important;
    top: 0 !important;
}

.navFixed.navRight {
    top: 0 !important;
}

.myPlayerNone,
.weatherNone,
.canvasTextNone,
.Group_is {
    display: none !important;
}

.switchON,
.switchOFF,
.addModal,
.dataDown,
.positionCurve,
.fixedDown,
.policeHistory,
.publicPoliceHistory,
.positionCurve_all {
    cursor: pointer !important;
}

.DataSend {
    position: fixed;
    top: 0;
    left: -105%;
    width: 100%;
    bottom: 0;
    z-index: 99999;
    transform: translateZ(999999px);
}

.DataSend-T {
    position: absolute;
    top: 0;
    left: 0;
    width: 700px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background-color: #383e41;
    border-right: 1px solid #4a5053;
    z-index: 99;
}

.DataSend-TD {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: #fff;
}

.DataSend-L {
    position: absolute;
    top: 50px;
    left: 0;
    bottom: 0;
    width: 200px;
    background: #4a5053;
}

.DataSend-LC {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.DataSend-LA {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #999ea8;
    padding: 0 10px;
    font-size: 14px;
    overflow: hidden;
}

.DataSend-LB {
    background-color: #4c84ff;
    color: #fff;
}

.DataSend-R {
    position: absolute;
    top: 50px;
    left: 200px;
    bottom: 0;
    width: 500px;
    background-color: #eee;
    border-right: 1px solid #4a5053;
}

.DataSend-RT {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 120px;
    border-bottom: 1px solid #4a5053;
}

.DataSend-con {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.DataSend-RB {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 120px;
    background-color: #fff;
    border-bottom: 1px solid #4a5053;
}

.DataSend-YES,
.DataSend-NO {
    position: relative;
    float: right;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    background-color: #4c84ff;
    font-size: 14px;
    border-radius: 5px;
    margin: 60px 10px 0 0;
}

.DataSend-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    border: 0;
    padding: 10px;
    outline: none;
    resize: none;
}

.DataSend-NO {
    background-color: #4a5053;
}

.DataSend-RTA,
.DataSend-RTB {
    position: relative;
    width: 400px;
    line-height: 20px;
    background-color: #fff;
    margin: 10px 0 0 10px;
    border: 1px solid #4c84ff;
    padding: 10px 10px;
    border-radius: 5px;
}

.DataSend-RTB {
    border: 1px solid #4a5053;
}

.newModaldel {
    display: block;
}

.tooltips {
    top: -50px;
}

.map_spop_con {
    border: 1px solid #ccc;
    position: absolute;
    top: -73px;
    left: 50%;
    margin-left: -84px;
    width: 173px;
    height: 90px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    text-align: center;
    padding: 0 10px;
    overflow: hidden;
    z-index: 999;
    display: none;
}

.map_spop_con_txt {
    position: absolute;
    top: 3px;
    left: 7px;
    width: 120px;
    height: 65px;
    overflow: hidden;
    text-align: left;
}

#new-zishiying {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.map_spop_con_txt ul {
    padding: 0;
    margin: 0;
}

.map_spop_con_txt ul li {
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    list-style-type: none;
}

.map_spop_con_jiantou {
    position: absolute;
    right: 6px;
    bottom: 5px;
    cursor: pointer;
    color: #199be1;
}

.map_spop_con_time {
    position: absolute;
    right: 73px;
    bottom: 5px;
    cursor: pointer;
    color: #199be1;
}

.map_spop_con_biao {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 18px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: 18px 16px;
    background-image: url("../../images/biao.png");
    cursor: pointer;
}

.map_list {
    position: absolute;
    right: 0;
    top: 20px;
    bottom: 0px;
    width: 0;
    background-color: rgba(0, 0, 0, .8);
    box-shadow: 0 0 10px rgba(0, 0, 0, .6);
    border-radius: 5px;
    z-index: 1000;
    overflow: auto;
}

.map_list ul {
    position: absolute;
    top: 0;
    left: 20px;
    right: 40px;
    bottom: 0;
    width: 635px;
    margin: 0;
    padding: 0;
}

.map_list_title {
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid #999;
}

.map_list_title_left {
    float: left;
}

.map_list_title_right {
    float: right;
    font-size: 14px;
    font-weight: 500;
}

.map_list_title_tele {
    position: absolute;
    top: 16px;
    right: -34px;
    width: 24px;
    height: 24px;
    background-image: url("../../images/cha.png");
    background-size: 24px 24px;
    cursor: pointer;
}

.map_list_con {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
}

.map_list_con ul {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
}

.map_list_con ul li {
    position: relative;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #999;
    padding: 0;
    margin: 0px;
    color: #fff;
    list-style-type: none;
    cursor: pointer
}

.map_list_con_img {
    position: relative;
    width: 50px;
    height: 50px;
    float: left;
    margin-top: 5px;
}

.map_list_con_img img {
    width: 100%;
    height: 100%;
    background-color: #f1b14f;
    border-radius: 50%;
}

.map_list_con_li_span1 {
    position: relative;
    float: left;
    width: 200px;
    font-size: 18px;
    overflow: hidden;
    padding-left: 10px;
}

.map_list_con_li_span2 {
    position: relative;
    float: left;
    width: 60px;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
}

.map_list_con_li_span3 {
    position: relative;
    float: left;
    width: 200px;
    text-align: center;
    font-size: 14px;
    overflow: hidden;
}

.map_list_con_li_span4 {
    position: relative;
    float: left;
    width: 75px;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    overflow: hidden;
    height: 60px;
}

.map_list_con_li_span5 {
    position: relative;
    float: left;
    width: 45px;
    font-size: 14px;
    text-align: center;
    font-weight: 700;
    overflow: hidden;
    height: 60px;
}

.map_guanbi {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 10px;
    z-index: 1000;
    color: #199be1;
}

.pc-edit {
    padding: 0;
}

/* 数据下发 */
.DataHistory {
    position: fixed;
    top: 0;
    left: -105%;
    width: 100%;
    bottom: 0;
    z-index: 999988;
}

.DataHistory-T {
    position: absolute;
    top: 0;
    left: 0;
    width: 860px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background-color: #383e41;
    border-right: 1px solid #4a5053;
    z-index: 99;
}

.DataHistory-T span {
    float: left;
    margin-left: 10px;
}

.DataHistory_select {
    width: 160px;
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
    border: 1px solid #000;
    color: #000;
    margin-left: 10px;
}

.DataHistory-TD {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.DataHistory-R {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 800px;
    background-color: #eee;
}

.dataType {
    position: absolute;
    top: 50px;
    left: 0;
    width: 860px;
    bottom: 0;
    background-color: #eee;
    border: 1px solid #4a5053;
    display: none;
    overflow: hidden;
}

.dataTypeIs {
    display: block !important;
}

.dataVideo,
.dataMap,
.policeHistoryDateCon {
    top: 50px;
}

.DataHistory-echarts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50%;
    overflow: hidden;
}

.DataHistory-time {
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    font-size: 14px;
    background-color: #fff;
    border-bottom: 1px solid #d7d7d7;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.DataHistory-timeA {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    color: #333;
}

.DataHistory-timeB {
    border: 1px solid #4c84ff;
}

.DataHistory-biao {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

#DataHistoryEcharts {
    width: 100%;
    height: 100%;
}

.DataHistory-data {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

[class^="icon-"],
[class*=" icon-"] {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-top: 1px;
    *margin-right: .3em;
    line-height: 14px;
    vertical-align: text-top;
    background-image: url(../../images/zutai_new/glyphicons-halflings.png);
    background-position: 14px 14px;
    background-repeat: no-repeat;
}

.icon-arrow-left {
    background-position: -240px -96px;
}

.icon-arrow-right {
    background-position: -264px -96px;
}

.DataHistoryTime {
    display: inline-block;
    width: 100px;
    text-align: center;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    border: 1px solid #d7d7d7;
    color: #333;
}

.DataHistoryTA {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    color: #333;
    margin-left: 10px;
}

.DataHistory-list {
    position: absolute;
    top: 49px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
}

.DataHistory-list .DataHistory-con {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    overflow: auto;
}

.DataHistoryTab {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.DataHistoryTab tr th,
.DataHistoryTab tr td {
    line-height: 20px;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    border: 1px solid #fff;
    display: table-cell;
}

.DataHistoryTab tr th {
    background-color: #ddd;
}

.DataHistoryPage {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    text-align: right;
    z-index: 999;
    background-color: #fff;
    padding-top: 5px;
    padding-right: 20px;
    overflow: hidden;
}

.DataHistoryPageA,
.DataHistoryPageNA {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 15px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    font-size: 12px;
    color: #333;
}

.DataHistoryPageNB {
    border: 1px solid #4c84ff;
}

.MapData {
    position: fixed;
    top: 0;
    left: -150%;
    width: 100%;
    bottom: 0;
    z-index: 999999;
    transform: translateZ(999999px);
}

.MapData-T {
    position: absolute;
    top: 0;
    left: 0;
    width: 700px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background-color: #383e41;
    border-right: 1px solid #4a5053;
    z-index: 99;
}

#MapData-name {
    float: left;
    margin-left: 10px;
}

.MapData-id {
    float: right;
    margin-right: 60px;
}

.MapData-TD {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: #fff;
}

.MapData-R {
    position: absolute;
    top: 50px;
    left: 0;
    bottom: 0;
    width: 700px;
    background-color: #eee;
    border: 1px solid #4a5053;
}

.MapData-body {
    display: table;
    width: 100%;
    overflow: hidden;
}

.MapData-tr {
    display: table-row;
}

.MapData-td {
    display: table-cell;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.MapData-no {
    color: #ff0000;
}

.MapData-yes {
    color: #1296db;
}

.pc-center {
    overflow: hidden;
}

/*  报警历史记录  */
.policeHistoryDate {
    position: fixed;
    top: 0;
    left: -105%;
    width: 100%;
    bottom: 0;
    display: none;
    z-index: 999999;
}

.policeHistoryDateT50 {
    top: 50px !important;
}

.policeHistoryDateCon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50px;
    overflow: hidden;
}

.policeHistoryDateTab {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.policeHistoryDateTab tr td,
.policeHistoryDateTab tr th {
    padding: 10px;
    line-height: 20px;
    text-align: center;
    border: 1px solid #d7d7d7;
    font-size: 14px;
}

.policeHistoryDatePage {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #fff;
}

.policeHistoryDatePage a {
    display: inline-block;
    padding: 0 5px;
    color: #333;
    font-size: 14px;
}

.policeHistoryDatePageA {
    color: #0088cc !important;
}

.clickRefresh {
    cursor: pointer;
}

.clickRefresh:hover,
.fixedDown:hover,
.dataDown:hover,
.positionCurve:hover,
.policeHistory:hover,
.publicPoliceHistory:hover,
.positionCurve_all:hover {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    background-color: rgba(255, 255, 255, 0.2);
}

@-webkit-keyframes jello {

    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

@keyframes jello {

    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

.DataHistoryTimeVideo {
    display: inline-block;
    width: 200px;
    text-align: center;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    border: 1px solid #d7d7d7;
    color: #333;
}

.video-player {
    max-width: 1100px;
    width: 1100px;
    height: 500px;
}

@media screen and (max-width: 1000px) {
    .warningCon {
        width: 100%;
    }

    .DataSend-T {
        width: 100%;
    }

    .DataSend-L {
        width: 30%;
    }

    .DataSend-R {
        left: 30%;
        width: 70%;
    }

    .DataSend-RTA,
    .DataSend-RTB {
        width: 80%;
    }

    .DataHistory-T,
    .DataHistory-R,
    .MapData-T,
    .MapData-R {
        width: 100%;
    }

    .dataTypeIs {
        width: 100% !important;
    }

    .layui-laydate-range {
        width: 100% !important;
    }
}

.newModal {
    transform: translateZ(999999px);
}

/** 新增  **/
.myHistoryChartPopu {
    padding: 30px 20px;
}

.myHistoryChartPopu .name {
    float: left;
    width: 70px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    overflow: hidden;
}

.myHistoryChartPopu input {
    float: left;
    width: 250px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
    font-size: 14px;
}

/** 地图弹窗 **/
.infoBox {
    width: 260px;
    height: 158px;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 1px 2px 1px rgba(0, 0, 0, .15);
    margin-bottom: 24px;
}

.infoBox img {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    width: 20px;
    height: 20px;
    z-index: 999;
}

.infoBoxContent {
    position: relative;
    width: 260px;
    padding-top: 10px;
    overflow: hidden;
}

.infoBoxContent>.name {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.infoBoxContent>.list {
    position: relative;
    width: 100%;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.infoBoxContent>.bottom {
    position: relative;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #eee;
    margin-top: 10px;
    text-align: right;
    overflow: hidden;
}

.infoBoxContent>.bottom a {
    float: left;
    width: 33.333333%;
    color: #1694f3;
    text-align: center;
}

/** 基本数值类型  独立按钮数据下发发  **/
.onDataSend {
    position: fixed;
    top: 50%;
    left: 50%;
    margin: -188px 0 0 -200px;
    width: 400px;
    height: 376px;
    z-index: 999999;
    display: none;
}

.onDataSendIs {
    display: block !important;
}

.onDataSend .panel-title {
    font-size: 14px;
}

.onDataSend .popup-send-data {
    position: relative;
    height: 170px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    margin-bottom: 20px;
    overflow-y: scroll;
}

.onDataSend .popup-send-data .li {
    word-break: break-all;
    word-wrap: break-word;
    margin: 5px 25px 5px 5px;
    border: 1px solid #4c84ff;
    padding: 5px 5px;
    border-radius: 5px;
}

.onDataSend textarea {
    resize: none;
}

.onDataSend .but {
    text-align: right;
    margin-top: 10px;
}

.onDataSend .but button:last-child {
    margin-left: 10px;
}

.pc-view {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.mapHisTrail {
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
    overflow: hidden;
}

.showTrajectory .layui-layer-content {
    overflow: hidden !important;
}

/**
	参数设置
**/
.parameter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: none;
}

.parameter .parameter-body {
    position: fixed;
    top: 5%;
    left: 50%;
    margin-left: -300px;
    width: 600px;
    bottom: 5%;
    background-color: #fff;
    -webkit-background-clip: content;
    border-radius: 2px;
    box-shadow: 1px 1px 50px rgb(0 0 0 / 30%);
    z-index: 999988;
}

.parameter .parameter-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #d7d7d7;
    padding: 0 20px;
    z-index: 99;
}

.parameter .parameter-head .parameter-head-name {
    font-size: 14px;
}

.parameter .parameter-head .parameterClose {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #333;
    text-align: center;
}

.parameter .parameterCon {
    position: absolute;
    top: 50px;
    left: 20px;
    right: 20px;
    bottom: 50px;
    z-index: 99;
}

.parameter .parameterCon .parameterLi {
    position: relative;
    width: 100%;
    margin-top: 20px;
    overflow: hidden;
}

.parameter .parameterCon .parameterLi .parameterLiName {
    position: relative;
    float: left;
    width: 48%;
    overflow: hidden;
}

.parameter .parameterCon .parameterLi .parameterLiVal {
    position: relative;
    float: right;
    width: 48%;
    overflow: hidden;
}

.parameter .parameterCon .parameterLi .in {
    position: relative;
    width: 100%;
    height: 34px;
    line-height: 34px;
    border: 1px solid #d7d7d7;
    padding: 0 10px;
    border-radius: 5px;
    overflow: hidden;
}

.parameter .parameterFooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    border-top: 1px solid #d7d7d7;
    padding: 0 20px;
    z-index: 99;
}

.parameter .parameterFooter .submitA {
    position: relative;
    float: right;
    height: 32px;
    line-height: 32px;
    margin-top: 7px;
    text-align: center;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    border: 1px solid #4395ff;
    border-radius: 5px;
    padding: 0 20px;
}

.parameter .parameterFooter .submitB {
    position: relative;
    float: right;
    height: 32px;
    line-height: 32px;
    margin-top: 7px;
    margin-left: 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: #4395ff;
    border-radius: 5px;
    padding: 0 20px;
}

/**
	自定义地图控件
**/
.zoomControl {
    height: 32px;
    line-height: 32px;
    box-shadow: rgb(27 142 236 / 50%) 0px 2px 6px 0px;
    border-radius: 5px;
    background-color: white;
    position: absolute;
    z-index: 10;
    inset: 5px auto auto 80px;
    overflow: hidden;
}

.zoomControl .zoomControl_1,
.zoomControl .zoomControl_2 {
    float: left;
    width: auto;
    cursor: pointer;
    padding: 0 10px;
}

.zoomControl .zoomControl_on {
    color: #fff;
    background-color: #1694f3;
}

.clickAudio {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: none;
    overflow: hidden;
}

/*  报警历史记录 多选设备 */
.publicAlarm {
    position: fixed;
    top: 0;
    left: 0;
    left: -105%;
    width: 100%;
    bottom: 0;
    display: none;
    z-index: 999999;
}

.publicAlarm .publicAlarm-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    background-color: #383e41;
    border-right: 1px solid #4a5053;
    z-index: 99;
    padding: 0 10px;
}

.publicAlarm .publicAlarm-title .publicAlarm-select {
    width: 160px;
    height: 30px;
    line-height: 30px;
    padding: 0 5px;
    border: 1px solid #000;
    color: #000;
    margin-right: 10px;
}

.publicAlarm .publicAlarm-title .publicAlarm-ico {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: #fff;
    text-align: center;
}

.publicAlarm .publicAlarm-body {
    position: absolute;
    top: 50px;
    left: 0;
    bottom: 0;
    width: 800px;
    background-color: #eee;
}

.publicAlarm .publicAlarm-body .publicAlarm-con {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 50px;
    overflow: hidden;
}

.publicAlarm .publicAlarm-body .publicAlarm-con .publicAlarm-date {
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    font-size: 14px;
    border-bottom: 1px solid #d7d7d7;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

.publicAlarm .publicAlarm-body .publicAlarm-con .publicAlarm-date .publicAlarm-in {
    display: inline-block;
    width: 100px;
    text-align: center;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    border: 1px solid #d7d7d7;
    color: #333;
}

.publicAlarm .publicAlarm-body .publicAlarm-con .publicAlarm-date .publicAlarm-search {
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    color: #333;
}

.publicAlarm .publicAlarm-body .publicAlarm-con .publicAlarm-data {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: auto;
}

.publicAlarm .publicAlarm-body .publicAlarm-con .publicAlarm-data .publicAlarm-table {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.publicAlarm .publicAlarm-body .publicAlarm-con .publicAlarm-data .publicAlarm-table tr td,
.publicAlarm .publicAlarm-body .publicAlarm-con .publicAlarm-data .publicAlarm-table tr th {
    padding: 10px;
    line-height: 20px;
    text-align: center;
    border: 1px solid #d7d7d7;
    font-size: 14px;
}

.publicAlarm .publicAlarm-body .publicAlarm-page {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-top: 1px solid #d7d7d7;
}

.publicAlarm .publicAlarm-body .publicAlarm-page a {
    display: inline-block;
    padding: 0 5px;
    color: #333;
    font-size: 14px;
}

.publicAlarm .publicAlarm-body .publicAlarm-page .on {
    color: #0088cc !important;
}

.linkStatus,
.noLinkStatus,
.down-data {
    cursor: pointer;
}

.show-nubmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    cursor: pointer;
}


.new-fang {
    display: none;
}

.new-fang-con {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.new-fang .new-fang-view {
    position: relative;
    width: 460px;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 0 16px rgba(0, 0, 0, .4);
    border-radius: 5px;
}

.new-fang .new-fang-view .new-fangH {
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    padding: 0 10px;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    background: -webkit-linear-gradient(left, #41d2ff, #3382fc);
    background: -o-linear-gradient(right, #41d2ff, #3382fc);
    background: -moz-linear-gradient(right, #41d2ff, #3382fc);
    background: linear-gradient(to right, #41d2ff, #3382fc);
}

.new-fang .new-fang-view .new-fangC {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.new-fang .new-fang-view .new-fangC .new-fangI {
    position: relative;
    width: 290px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    padding: 0 5px;
    overflow: hidden;
    margin-top: 30px;
    background-color: #f2f6fa;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
}

.new-fang .new-fang-view .new-fangC .new-fangB {
    display: inline-block;
    width: 290px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: #4598ff;
    border-radius: 20px;
    margin-top: 20px;
}

.new-fang .new-fang-view .new-fangC .new-fangN {
    position: relative;
    width: 100%;
    height: 40px;
    text-align: center;
    font-size: 12px;
    line-height: 40px;
    margin-top: 20px;
}