﻿.lang {
    white-space: pre;
}
.mtab-content {
    border-bottom: 1px solid #166EFF;
    background: #166EFF30;
    /* opacity: 0.2;*/
    box-shadow: 0px 0 10px #166EFF inset;
}

.mtab-item {
    padding: 3px 8px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* 鼠标手型*/
    cursor: pointer;
    box-sizing:border-box;
}

.mtab-curr {
    background: #166EFF;
    color:#fff;
}
.mtab-content2 {
    border-bottom: 1px solid #166EFF;
    
    /* opacity: 0.2;*/
    /* box-shadow: 0px 0 10px #166EFF inset; */
}
.mtab-curr2 {
    color: #166EFF;
    border-bottom:3px solid #166EFF;
}

/*单选框*/
.radiogroup-content {
    /*width: 120px;*/
    /*height: 26px;*/
    background: rgba(1, 130, 231, 0.1);
    border: 1px solid #166EFF;
    opacity: 0.8;
    border-radius: 15px;
    box-shadow: 0px 0 10px #166EFF inset;
    /* 内发光 */
    /* 鼠标手型*/
    cursor: pointer;
}

.radiogroup-item {
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radiogroup-curr {
    background: #0182E7;
    border: 1px solid #166EFF;
    border-radius: 15px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 13px;
    font-family: Microsoft YaHei;
}



.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.cannet-content {
    height: calc(100vh)
}

/*类似标签的效果，无法输入，方便也form表单赋值*/
.label-input {
    pointer-events: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

.top {
    top: 0px;
}

.bottom {
    bottom: 0px;
}

.left {
    left: 0px;
}

.right {
    right: 0px;
}

.flex-box {
    box-sizing: border-box;
}

.flex {
    display: flex;
    display: -webkit-flex;
}

.flex-direction {
    flex-direction: column;
}

.flex-column {
    display: flex;
    flex-direction: column;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-direction-row {
    flex-direction: row;
}

/*水平垂直居中并且横向排列*/
.flexrow {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    /*水平居中*/
    align-items: center;
    /*垂直居中*/
}

/*水平垂直并且横向排列*/
.flexrowstart {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    justify-content: flex-start;
    /*水平居中*/
    align-items: center;
    /*垂直居中*/
}

.flexrowbetween {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    justify-content: space-between;
    /*水平居中*/
    align-items: center;
    /*垂直居中*/
}

/*水平垂直居中并且竖向排列*/
.flexcolumn {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    /*水平居中*/
    align-items: center;
    /*垂直居中*/
}

.flexcolumnstart {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.flexcolumn-center-start {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.flex-sub {
    flex: 1
}

.flex-twice {
    flex: 2
}

.flex-third {
    flex: 3
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow {
    flex-grow: 1;
}

.flex-just-between {
    justify-content: space-between;
}

.flex-just-start {
    justify-content: flex-start;
}

.flex-just-end {
    justify-content: flex-end;
}
.flex-align-items-stretch {
    align-items: stretch; /* 使子项伸展以填满高度 */
}
.flex-just-center {
    justify-content: center;
}

.flex-align-start {
    align-items: flex-start;
}

.flex-align-center {
    align-items: center;
}

.flex-align-baseline {
    align-items: baseline;
}

/* 顶部左起 */
.align-left-top {
    display: flex;
    /* 顶部对齐 */
    align-items: flex-start;
    /* 左侧对齐 */
    justify-content: flex-start;
}

/* 垂直居中,水平居左 */
.align-center-left {
    display: flex;
    /* 垂直居中 */
    align-items: center;
}

/* 水平居中 */
.align-horizontal-center {
    display: flex;
    /*  */
    align-items: center;
    /* 左侧对齐 */
    justify-content: center;
}

/* 垂直居中 */
.align-vertical-center {
    display: flex;
    flex-direction: column;
    /*  */
    align-items: center;
    /* 左侧对齐 */
    justify-content: center;
}

.vertical-top-left {
    display: flex;
    flex-direction: column;
    /*  */
    align-items: flex-start;
    /* 左侧对齐 */
    justify-content: flex-start;
}

.vertical-top-center {
    display: flex;
    flex-direction: column;
    /*  */
    align-items: center;
    /* 左侧对齐 */
    justify-content: flex-start;
}
.w-auto {
    width: auto !important;
}

.radius5 {
    border-radius:5px;
}
.radius12 {
    border-radius: 12px;
}
.radius15 {
    border-radius: 15px;
}
.radius50 {
    border-radius: 50px;
}



.w100 {
    width: 100%;
}
.w20 {
    width: 20%;
}
.w25 {
    width: 25%;
}
.w30 {
    width: 30%;
}
.w33 {
    width: 33%;
}
.w35 {
    width: 35%;
}
.w40 {
    width: 40%;
}
.w45 {
    width: 45%;
}
.w50 {
    width: 50%;
}
.w60 {
    width: 60%;
}
.w70 {
    width: 70%;
}
.w75 {
    width: 75%;
}
.w80 {
    width: 80%;
}
.h100 {
    height: 100%;
}
.h50 {
    height: 50%;
}

.wh100 {
    width: 100%;
    height: 100%;
}
.vw100 {
    height: 100vw;
}
.vh100 {
    height: 100vh;
}
.vh10 {
    height: 10vh;
}
.vh5 {
    height: 5vh;
}
.vh15 {
    height: 15vh;
}
.vh20 {
    height: 20vh;
}
.vh25 {
    height: 25vh;
}
.vh30 {
    height: 30vh;
}
.vh40 {
    height: 40vh;
}
.vh50 {
    height: 50vh;
}
.vh60 {
    height: 60vh;
}
.vh70 {
    height: 70vh;
}
.vh75 {
    height: 75vh;
}
.vh80 {
    height: 80vh;
}
.vh90 {
    height: 90vh;
}
/*表单底部--保存按钮位置*/
.m-foot-item {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #0c1946 !important;
    border-top: 1px solid #00309d !important;
    box-sizing: border-box;
}

.padding-0 {
    padding: 0px;
}

.padding-5 {
    padding: 5px
}


.padding-8 {
    padding: 8px;
}

.padding-12 {
    padding: 12px;
}
.padding-18 {
    padding: 18px;
}
.padding-24 {
    padding: 24px;
}

.padding-top-3 {
    padding-top: 3px;
}

.padding-top-5 {
    padding-top: 5px;
}

.padding-top-8 {
    padding-top: 8px;
}

.padding-top-12 {
    padding-top: 12px;
}

.padding-bottom-3 {
    padding-bottom: 3px;
}

.padding-bottom-5 {
    padding-bottom: 5px;
}
.padding-bottom-8 {
    padding-bottom: 8px;
}
.padding-bottom-12 {
    padding-bottom: 12px;
}

.padding-left-3 {
    padding-left: 3px;
}

.padding-left-5 {
    padding-left: 5px;
}

.padding-left-8 {
    padding-left: 8px;
}

.padding-left-12 {
    padding-left: 12px;
}

.padding-left-24 {
    padding-left: 24px;
}

.padding-right-12 {
    padding-right: 12px;
}

.padding-right-24 {
    padding-right: 24px;
}

.padding-tb-3 {
    padding-top: 3px;
    padding-bottom: 3px;
}

.padding-tb-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.padding-tb-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}
.padding-tb-24 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.padding-lr-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.padding-lr-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.padding-lr-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.padding-lr-24 {
    padding-left: 24px;
    padding-right: 24px;
}

.padding-tb-12 {
    padding-top: 12px;
    padding-bottom: 12px;
}

/*****margin外边距************************************************************/

.margin-5 {
    margin: 5px;
}

.margin-8 {
    margin: 8px;
}

.margin-12 {
    margin: 12px;
}

.margin-top-3 {
    margin-top: 3px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-top-8 {
    margin-top: 8px;
}

.margin-top-12 {
    margin-top: 12px;
}

.margin-bottom-3 {
    margin-bottom: 3px;
}

.margin-bottom-5 {
    margin-bottom: 5px;
}

.margin-bottom-8 {
    margin-bottom: 8px;
}

.margin-bottom-12 {
    margin-bottom: 12px;
}
.margin-bottom-24 {
    margin-bottom: 24px;
}

.margin-left-5 {
    margin-left: 5px;
}

.margin-left-8 {
    margin-left: 8px;
}

.margin-left-12 {
    margin-left: 12px;
}
.margin-left-24 {
    margin-left: 24px;
}

.margin-right-5 {
    margin-right: 5px;
}

.margin-right-8 {
    margin-right: 8px;
}

.margin-right-12 {
    margin-right: 12px;
}

.margin-right-24 {
    margin-right: 24px;
}

.margin-lr-3 {
    margin-left: 3px;
    margin-right: 3px;
}
.margin-lr-5 {
    margin-left: 5px;
    margin-right: 5px;
}
.margin-lr-8 {
    margin-left: 8px;
    margin-right: 8px;
}
.margin-lr-12 {
    margin-left: 12px;
    margin-right: 12px;
}

.margin-tb-5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.margin-tb-8 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.hand {
    /* 鼠标手型*/
    cursor: pointer;
}

/*选择年月日时间的时候*/
.radiogroup .layui-form-radio {
    padding-right: 0px;
    margin: 0px;
    border: 1px solid #0183e5cc;
}

    .radiogroup .layui-form-radio i {
        display: none
    }

    .radiogroup .layui-form-radio:hover *,
    .radiogroup .layui-form-radioed,
    .radiogroup .layui-form-radioed > i {
        color: white;
        background-color: #1890FF;
    }

    .radiogroup .layui-form-radio div {
        padding: 0px 10px;
    }


/*能源类型*/
.nylxcontent {
    height: 42px;
    border-bottom: 1px solid rgba(3, 39, 153, 0.75);
}

    .nylxcontent .nylx-item {
        padding-right: 0px;
        margin: 0px;
        border: 1px solid #0183e5cc;
        padding: 3px 10px;
        font-size: 16px;
        cursor:pointer;
    }

        /*   .nylxcontent .layui-form-radio i {
        display: none
    }*/

        .nylxcontent .nylx-item:hover,
        .nylxcontent .nylx-item-curr,
        .nylxcontent .nylx-item-curr > i {
            color: white;
            background-color: #1890FF;
        }

.nylx-item {
}


.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px;
}

.text-16 {
    font-size: 16px;
}

.text-18 {
    font-size: 18px;
}

.text-20 {
    font-size: 20px;
}

.text-22 {
    font-size: 22px;
}

.text-24 {
    font-size: 24px;
}

.text-28 {
    font-size: 28px;
}
.text-36 {
    font-size: 28px;
}
.text-48 {
    font-size: 48px;
}
.text-48 {
    font-size: 56px;
}
.text-bold {
    font-weight: bold;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/*下划线*/
.text-underline {
    text-decoration: underline;
}
.text-333 {
    color: #333;
}
.text-666 {
    color: #666;
}
.text-999 {
    color: #999;
}

.text-white {
    color: white;
}

.text-green {
    color: #46CDC7 !important;
}

.text-orange {
    color: #ff6a00 !important;
}

.text-red {
    color: #FE5454 !important;
}

.text-blue {
    color: #0082E6;
}

.text-FE5454 {
    color: #FE5454;
}

.text-22B78F {
    color: #22B78F;
}

.text-cut {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/*滚动文本*/
.text-roll-parent {
    overflow: hidden;
    white-space: nowrap;
    /* text-overflow: ellipsis;*/
}

.text-roll {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .text-roll:hover {
        animation: 8s linear 0s infinite normal none running roll-text;
        text-overflow: inherit;
        overflow: unset;
    }
.text-nowrap {
    white-space: nowrap;
}
.text-wrap {
    white-space:pre-wrap;
}
/*省略号 要加宽度*/
.text-ellipsis {
    /*width: 100px;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*多行省略号 要加宽度*/
.text-ellipsis-more2 {
    /*width: 100px;*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*********************************背景色********************************************************/
.bg-darkblue {
    background-color: #052283
}
.bg-yellow {
    background-color: #E3C94F;
}
.bg-orange {
    background-color: #ff6a00;
}
.bg-999 {
    background-color: #999999;
}
.bg-grey {
    background-color: grey;
}
.bg-green {
    background-color: #46CDC7;
}

.bg-red {
    background-color: #FE5454;
}

.bg-blue {
    background-color: #0082E6;
}

.line1 {
    width: 100%;
    height: 1px;
    background-color: #203B8B;
}

.line2 {
    width: 100%;
    height: 2px;
    background-color: #203B8B;
}

.wline1 {
    width: 1px;
    height: 100%;
}

.wline2 {
    width: 2px;
    height: 100%;
}

 
/******************************************************************************/

.cannetTable {
    overflow: auto;
}

    .cannetTable table {
        border-spacing: 0px;
    }

        .cannetTable table tbody tr td {
            border: 1px solid #002796;
            font-size: 12px;
            padding: 0px 5px;
            height: 33px;
        }

        .cannetTable table thead tr td {
            border: 1px solid #004BB7;
            font-size: 12px;
            padding: 0px 5px;
            height: 33px;
        }

        .cannetTable table thead {
            background: #002899;
            font-size: 12px;
            font-family: Microsoft YaHei;
            font-weight: 400;
            color: #8F9BCF;
            position: sticky;
            top: 0px;
            z-index: 1
        }
        .cannetTable .tdfixd {
            position: sticky;
            left: 0;
            /*background-color: #0A1B53;*/ /* 为了防止滚动时内容重叠，可以设置一个背景色 */
            /*z-index: 1;*/ /* 确保冻结列在上方 */
        }

.cannetTable tr:hover {
    background-color: #004BB733 !important;
}

/*间隔行颜色*/
.cannetTable .event tr:nth-child(2n) {
    background-color: #004BB733;
}

.cn-table-noborder table tbody tr td {
    border-width: 0px;
}

.cannetTable .cn-hover:hover,
.cannetTable .tr-curr-click,
.cannetTable .cn-curr {
    background-color: #004BB733 !important;
}

@keyframes roll-text {
    0% {
        transform: translateZ(0)
    }

    to {
        transform: translate3d(-50%, 0, 0)
    }
}
/*分页数量过多*/
.cannet-page .layui-box {
    display: flex;
    align-items: center;
    overflow: auto;
}
.cannet-page .layui-box span, .cannet-page .layui-box a {
    white-space: nowrap;
}
.cannet-page .layui-box::-webkit-scrollbar { /*滚动条整体样式*/
    width: 0px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
}

.cannet-card {
    border-top: 1px solid #276abd;
    border-left: 1px solid #276abd;
    border-bottom: 1px solid #276abd;
    border-right: 1px solid #276abd;
    /*border-bottom:;*/
    position: relative;
    border-radius: 5px;
    box-sizing: border-box;
    /* background-color: inherit; */
    /*background-color: #202B5B;*/
    display: flex;
    flex-direction: column;
}

.cannet-card::after {
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: -1px;
    right: -1px;
    background-color: inherit;
    content: " ";
    background-image: url(../image/public_line_triangle1.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-top-left-radius: 120%;
}

.cannet-card-border {
    border-top: 1px solid #276abd;
    border-left: 1px solid #276abd;
    border-bottom: 1px solid #276abd;
    border-right: 1px solid #276abd;
    /*border-bottom:;*/
    position: relative;
    border-radius: 5px;
    box-sizing: border-box;
    /* background-color: inherit; */
    background-color: #202B5B;
    display: flex;
    flex-direction: column;
}


.card-header {
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #276abd;
}

.card-header-icon {
    width: 24px;
    height: 24px;
    background-size: 100%;
    background-repeat: no-repeat;
    margin: 5px;
}

.card-header-title {
    flex: 1;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
}


/*单选框*/
.radiogroup-select-content {
    /*width: 120px;*/
    /*height: 26px;*/
    background: rgba(1, 130, 231, 0.1);
    border: 1px solid #166EFF;
    opacity: 0.8;
    border-radius: 15px;
    box-shadow: 0px 0 10px #166EFF inset;
    /* 内发光 */
    /* 鼠标手型*/
    cursor: pointer;
}

.radiogroup-select-item {
    width: 40px;
    padding: 0px 12px;
    border-radius: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radiogroup-select-curr {
    background: #0182E7;
    border: 1px solid #166EFF;
    border-radius: 15px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 13px;
    font-family: Microsoft YaHei;
}




/*事件等级颜色*/
.bg-level1 {
    background-color: #EF6767;
}

.bg-level2 {
    background-color: #FAC859;
}

.bg-level3 {
    background-color: #00A8FF;
}

.bg-level4 {
    background-color: #BC9BF2;
}

.SBZT {
    top: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0px 5px;
    background-color: #4C5CF1;
    color: #000;
    font-size: 8px;
    line-height: 10px;
}
/*暂停*/
.SBZT-bg4 {
    background-color: #FFAC34;
    color: #000;
}

/*考核类型*/
.KHLX {
    top: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0px 5px;
    background-color: #F2DF9A;
    color: #000;
    font-size: 8px;
    line-height: 10px;
}

.mKHLX-bg2 {
    background-color: #86B9E0;
    color: #000;
}

.mJSZT {
    top: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0px 5px;
    background-color: #A4DA8F;
    color: #000;
    font-size: 8px;
    line-height: 10px;
}
.mJSZT-bgnull {
    background-color: #A4DA8F80;
    color: #000;
}
.mJSZT-bg0 {
    background-color: #F2727350;
    color: #F27273;
}


/*表格下拉框*/
.table-drop-item {
    color: #ffffffb3;
    padding: 8px 12px;
    border-bottom: 1px solid #166EFF50;
    cursor: pointer;
}

    .table-drop-item:before {
        margin-right: 12px;
    }

    .table-drop-item:hover {
        background-color: #166EFFB3;
        color: #fff;
    }


    /*表格框样式*/
.borderTable {

}
.borderTable {
    overflow: auto;
}

    .borderTable table {
        border-spacing: 0px;
        border: solid #002899;
        border-width: 0px;
        border-collapse: collapse !important;
    }

        .borderTable table tr {
            border: solid #002899;
            border-width: 1px 1px 1px 0px;
            /*border-width: 1px;*/
            /*border-top-width: 1px;*/
            /*background-color: rgba(0, 40, 153, 0.5);*/
        }
        .borderTable table tr td:first-child {
        border-left-width:1px;
        }


            .borderTable table tbody tr td {
            border: solid #002899;
            border-width: 0px 1px 0px 0px;
            font-size: 12px;
            padding: 5px 8px;
            min-height: 33px;
        }

        .borderTable table thead tr td {
            border: solid #002899;
            border-width: 0px 1px 0px 0px;
            font-size: 12px;
            padding: 0px 5px;
            height: 33px;
        }

        .borderTable table thead {
            background: #002899;
            font-size: 12px;
            font-family: Microsoft YaHei;
            font-weight: 400;
            color: #8F9BCF;
            position: sticky;
            top: 0px;
            z-index: 1
        }
        .borderTable table .nobg {
            background:unset;
            font-size: 12px;
            font-family: Microsoft YaHei;
            font-weight: 400;
            color: #8F9BCF;
            position: sticky;
            top: 0px;
            z-index: 1
        }

    .borderTable .tdfixd {
        position: sticky;
        left: 0;
        /*background-color: #0A1B53;*/ /* 为了防止滚动时内容重叠，可以设置一个背景色 */
        /*z-index: 1;*/ /* 确保冻结列在上方 */
    }


.scrollbar-0 ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.chart-tooltips {
    border: 0px solid #ccc;
    padding: 4px 6px;
    opacity: .85;
    width: auto;
    overflow-y: auto;
    font-size: 12px;
    color: white;
    background-image: linear-gradient(to bottom left, #01737a, #014188);
}

.common-img {
  background-repeat:no-repeat;
  background-size:cover;
}
.cn-curr {
    /* background-color: #00289990; */
    background-image: linear-gradient(#2596d080, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), #2596d080);
}
.cn-hover:hover {
    /* background-color: #00289920; */
    background-image: linear-gradient(#2596d080, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), #2596d080);
}
.solid_top {
    border-top: 1px solid #002899;
}
.solid_bottom {
    border-bottom: 1px solid #002899;
}