
.NamePwdInput,
._password{
    .ant-input-suffix{
        .pd-active{
            .svgHover(@pdEyeIconA) !important;
        }
        .pd-default{
            .svgHover(transparent) !important;
        }
        .pd-active>svg path:first-child{
            fill:@pdEyeIconA;
            opacity: 0.5;
            &:hover{
                fill:@pdEyeIconA;
            }
        }
        .pd-default>svg path:first-child{
            fill:none;
            opacity: 0.5;
            &:hover{
                fill:none;
            }
        }
    }
    .ant-input-affix-wrapper-focused {
        .pd-active>svg path:first-child{
            fill:@pdEyeIconA;
            opacity: 1;
        }
        .pd-default>svg path:first-child{
            fill:none;
            opacity: 1;
        }
    }
}


.ant-transfer {
    .ant-transfer-list-header{
        background-color: @--component-bg;
        border-color: @--component-border;
    }

    .ant-transfer-list {
        border-color: @--component-border;
    }
}

._tabCard_ {
    .ant-tabs-nav {
        margin: 0 !important;
    }
    .ant-tabs-nav-list {
        width: 100%;
    }
    .ant-tabs-tab-btn:focus,
    .ant-tabs-tab-remove:focus,
    .ant-tabs-tab-btn:active,
    .ant-tabs-tab-remove:active {
        color:@navMenuTextN;
    }
    .ant-tabs-tab {
        flex: 1;
        background: @pagetabBgN !important; 
        color: .color_N(@pagetabBgN)[] !important; 
        border: 1px solid @tabBorder !important;
        margin: 0 !important;

        .ant-tabs-tab-btn {
            width: 100%;
            text-align: center;
        }

        &.ant-tabs-tab-active  {
            background: @tabBgA !important;
            .ant-tabs-tab-btn {
                color: @tabTextA !important;
            }
            
        }
    }
}


.ant-input-affix-wrapper-status-error{
    &:not(.ant-input-affix-wrapper-disabled){
        &:not(.ant-input-affix-wrapper-borderless){
            &.ant-input-affix-wrapper{
                background: none;
                border-color: @errorColor;
                &:focus,
                &:hover{
                    box-shadow: none;
                    background: none;
                    border-color: @errorColor;
                }
            }
        }
    }
}

.ant-tag {
    color: @buttonNormalTextN;
    background-color: @buttonNormalBgN;
    border-color: @buttonNormalBorderN;
}

.left-range-picker {
    
    @max-preset: 20;
    
    @preset-margin: 26 / @px-unit;
    
    --ranges-width: 100px;
    .ant-picker-panels {
        margin-left: var(--ranges-width);
        border-bottom: none;
    }
    .ant-picker-footer {
        .ant-picker-ranges {
            >.ant-picker-preset {
                position: absolute;
                left: 0;
                
                each(range(@max-preset), {
                    &:nth-child(@{value}) {
                        top: (18 / @px-unit) + (@preset-margin * (@value - 1));
                    }
                });
                >span {
                    font-size: 14 / @px-unit;
                    background-color: transparent;
                    border: none;
                    color: @PickerBodyTextN;
                    line-height: 22 / @px-unit;
                    white-space: nowrap; 
                    overflow: hidden; 
                    text-overflow: ellipsis; 
                    max-width: var(--ranges-width);
                    padding-left: 12 / @px-unit;
                    &:hover {
                        
                        color: @current;
                        
                    }
                }
            }
        }

    }
}

.cus_icons {
    .svgFont();
    .svgOut();
    .svgHover();
    &.disabled_icons {
        .svgDisabled();
    }
    &.active {
        .svgOut(@current, @iconLinearStartColorA, @iconLinearStopColorA);
    }

    .colorSvg(action_red, @errorColor);
}



.loading-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: @pageBodyBg;
    opacity: 0.6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5 / @px-unit solid transparent;
    border-top: 5 / @px-unit solid @current;
    border-left: 5 / @px-unit solid @current;
    animation: spin 1s infinite linear;
    position: relative;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.cmpLabelText{
    &.spaceBreak{
        
        white-space: pre-line;
        
        width: 680/@px-unit;
    }
}
.native-tooltip{
    display: inline;
}


._TopTitleDivider_{
    height: 22px;
    line-height: 22px;
    margin: 0 0 8px;
    font-weight: bold;
}
._FirstTitleDivider_{
    height: 22px;
    line-height: 22px;
    margin: 0 0 8px;
    font-weight: bold;
    font-size: 18px;
}
._MidTitleDivider_  {
    height: 22px;
    line-height: 22px;
    margin: 36px 0 8px;
    font-weight: bold;
}
._HighDivider_{
    height: 28px;
    margin: 0 0;
}




.steps-form-wrapper {
    --white: var(--neutral-fg-1-normal, #fff);
    --step-color: var(--neutral-fg-3-normal, #bec3cc);
    --step-bg: var(--neutral-bg-4-normal, #191a26);
    
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;

    .step-wrapper {
        padding: 20 / @px-unit;

        .ant-steps-item-container {
            .ant-steps-item-content {
                height: 40 / @px-unit;
                line-height: 40 / @px-unit;
                display: inline-flex;
                align-items: center;
            }

            .ant-steps-item-icon {
                width: 40 / @px-unit;
                height: 40 / @px-unit;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                padding: 0;

                
                
                .ant-steps-icon {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    
                    color: var(--white);
                }
            }
        }

        .ant-steps-item-process {
            .ant-steps-item-icon {
                background-color: @current;
            }
        }

        .ant-steps-item-wait {
            .ant-steps-item-icon {
                background: var(--step-bg);
            }
        }

        .ant-steps-item-finish {
            .ant-steps-item-icon {
                border-width: 2px;
                background-color: transparent;

                .ant-steps-icon {
                    color: @current;
                }
            }
        }

        .ant-steps-item-wait .ant-steps-icon {
            color: var(--step-color);
        }

        .ant-steps-item-container > .ant-steps-item-content > .ant-steps-item-title {
            color: var(--step-color);
        }
    }

    .content-wrapper {
        
        background-color: var(--step-bg);
        flex: 1;
        overflow-y: auto;

        display: flex;
        flex-direction: column;

        .tabs-wrapper {
            flex: 1;
            overflow-y: auto;

            > .ant-tabs-nav {
                display: none !important;
            }

            .ant-tabs-content {
                height: 100%;

                .ant-tabs-tabpane {
                    height: 100%;
                    overflow-y: auto;
                }
            }
        }

        .btn-wrapper {
            margin: 0 auto;
            width: 50%;
            display: flex;
            justify-content: center;
            padding: 30 / @px-unit;

            .label-div-Container {
                flex: 1;
                width: 100%;
                margin: 0 10 / @px-unit;

                .label-normal-container {
                    width: 100% !important;

                    .label-normal-wrapper,
                    button {
                        width: 100% !important;
                        max-width: 100% !important;
                    }
                }
            }
        }
    }
}

.ant-select-auto-complete{
    width: 100%;
}

._ColorCheckGroup_ {
    display: flex;
    flex-direction: row;
    
    .color_checkbox_all_box {
        height: 28px;
        line-height: 28px;
    }
    
    &alarm {
        .ant-checkbox-inner {
            background-color: @alarm !important;
        }
    }
    &general {
        .ant-checkbox-inner {
            background-color: @general !important;
        }
    }
    &detect {
        .ant-checkbox-inner {
            background-color: @detect !important;
        }
    }
    &ivs {
        .ant-checkbox-inner {
            background-color: @ivs !important;
        }
    }
    &pos {
        .ant-checkbox-inner {
            background-color: @pos !important;
        }
    }
    &card {
        .ant-checkbox-inner {
            background-color: @card !important;
        }
    }

    .label-switch-content{
        margin-right: 10 / @px-unit;
        
        .ant-switch {
            .ant-switch-handle::before {
                background: url('/static/media/off.png') 0 / auto 100%;
            }
        }
        .ant-switch-checked  .ant-switch-handle::before {
            background: url('/static/media/on.png') 0 / auto 100%;
        }
        display: flex;
        .label-normal-wrapper {
            width: auto !important;
        }
        .sdd-swtich-contianer {
            margin-right: 8 / @px-unit;
        }
        .alarm {
            .ant-switch-checked {
                background-color: @alarm !important;
            }
        }
        .general {
            .ant-switch-checked {
                background-color: @general !important;
            }
        }
        .detect {
            .ant-switch-checked {
                background-color: @detect !important;
            }
        }
        .ivs {
            .ant-switch-checked {
                background-color: @ivs !important;
            }
        }
        .pos {
            .ant-switch-checked {
                background-color: @pos !important;
            }
        }
        .card {
            .ant-switch-checked {
                background-color: @card !important;
            }
        }
    }
}



.DefaultImgClass{
    width: 100%;
    height: 100%;
    object-fit: fill;
}


.label-button {
    max-width: 150/@px-unit;
    min-width: 100/@px-unit;
    .ant-btn {
        padding: 4/@px-unit 4/@px-unit;
    }
}
.labelText-wrapper{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}


.similarity-progress{
    display: flex;
    height: 100%;
    align-items: center;
    .temp-picData-progress{
        height: 18/@px-unit;
        width: 100%;
        padding: 0/@px-unit 15/@px-unit;
        display: flex;
        .temp-progress-bar-swrap{
            width: 67%;
            display: flex;
            align-items: center;
            padding: 0/@px-unit 5/@px-unit 0/@px-unit 0/@px-unit;
            .temp-progress-bar{
                background-color: @progressBg;
                height: 8/@px-unit;
                width: 100%;
                border-radius: 5/@px-unit;
            }
        }

        .temp-progress-similar{
            display: flex;
            align-items: center;
            width: 33%;
        }
    }
    
    .picData-progress {
        
        display: flex;
        width: 100%;
        align-items: center;
        background: @ai_progress_default;
        height: 14/@px-unit;
        position: relative;
        color: @pageTextA;

        .progress-item {
            display: inline-block;
            height: 100%;
        }

        .progress-red {
            background: @ai_progress_red;
        }

        .progress-orange {
            background: @ai_progress_orange;
        }

        .progress-blue {
            background: @ai_progress_blue;
        }

        .progress-label {
            position: absolute;
            right: 0;
            line-height: 14/@px-unit;
            top: 0;
        }
    }
}


.site-calendar-demo-card {
    
    border: 1px solid @pageBorderN;
    border-radius: 2px;
    position: relative;
    .mask_panel {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 10;
    }
    .mask_panel_show {
        display: block;
    }
    .mask_panel_hide {
        display: none;
    }
    .calender-point {
        position: absolute;
        background-color: @pageTextN;
        width: 4px;
        height: 4px;
        border: 1px solid @pageTextN;
        border-radius: 100%;
        left: 46%;
        bottom: -1px;
        transform: translate(0, -50%);
    }
}
.ant-picker-calendar {
    background-color: @preview_center_bottom_Bg !important;
    .ant-picker-content {
        color: @pageTextN !important;
    }
    .ant-picker-panel {
        border-top: 1px solid @pageBorderN;
        background-color: @formInputBgN !important;
    }
    .ant-picker-cell {
        color: @pageTextD !important;
    }
    .ant-picker-cell-in-view {
        color: @pageTextN !important;
    }
    .ant-picker-content th {
        color: @pageTextN;
    }
    .ant-select-selector {
        width: 100 / @px-unit !important;
    }
    
    
    
    
    
}



.popover_list {
    display: flex;
    &_item {
        cursor: pointer;
        &:hover {
            color: @preview_center_popover_ColorA;
        }
        &_active {
            color: @preview_center_popover_ColorA;
        }
    }
    &_separator {
        margin: 0 5 / @px-unit;
        color: @preview_center_separator_ColorN;
    }
}
.popover_icon {
    cursor: pointer;
    &:hover {
        .svgHover(@current);
    }
}

._ChannelGroupModal_ {}
.ChannelGroupModal_textlabel{
    user-select: none
}



.ChannelHubPartitionModal-wrap{
    width: 100%;
    display: flex;
    .left{
        width: 30%;
    }
    .right{
        width: 70%;
    }
    .armedStatus-icon{
        .svgOut(@successIcon) !important;
    }
}


.subtitle {
    margin: 0;
    font-weight: bold;
    color: @subtitleColor;
    width: 100%;
}

._ChannelGroup_ {
    display: flex;
    .ant-space{
        gap:0 !important;
        .ant-space-item {
            .label-normal-wrapper {
                
                line-height: 0 !important;
            }
        }
    }
    .checkbox {
        display: inline-block;
    }
    .all-checkbox {
        display: flex;
        align-items: center;
    }
    .label {
        display: inline-block;
        height: 40/@px-unit;
        line-height: 40/@px-unit;
    }
    .btn-link{
        padding-top: 10/@px-unit;
    }
    .chn_btn {
        color: @buttonNormalTextN;
        background-color: transparent;
        width: 35/@px-unit;
        height: 25/@px-unit;
        padding: 0;
        margin: 5/@px-unit;
        text-align: center;

        &.selected {
            color: @buttonNormalTextA;
            border-color: @formInputBgA;
            &:focus {
                color: @buttonActiveTextN;
                border-color: @formInputBgA;
            }
        }
        &.allbtn {
            width: 40/@px-unit !important;
            font-size: 10/@px-unit;
        }
        &[disabled] {
            opacity: .5;
            background-color: @buttonNormalBgN !important;
            color: @buttonNormalTextN !important;
            border: 1px solid @buttonNormalBorderN !important;

            &:hover,
            &:active,
            &.active{
                opacity: .5;
            }

        }
    }
}


@keyframes arcSlideUpIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.8;
    }
}
.iconDropBtn {
    background-color:@navBg;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: @navMenuLineHeight;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;

    &:hover{
        color:@navMenuTextA;
    }
    .cus_icons{
        margin: 0 5/@px-unit;
    }
    span{
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}
.iconDropMenu {
    
    min-width: 200/@px-unit !important;
    border: 1px solid @dropMenuBorder;
    pointer-events:auto !important;
    .cus_icons{
        font-size: 30/@px-unit;
        vertical-align:middle;
        margin-right: 15/@px-unit;
    }
    .ant-dropdown-menu-item{
        padding:5/@px-unit 15/@px-unit;
    }
    .iconDropitem_name {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}
.iconDropitem {
    display: flex;
    align-items: center;
}
.centerItem{
    justify-content: center;
}

.label-date-picker {
    .ant-picker {
        width: 100%;
    }
}

.pageLine {
    display: flex;
    float: left;
    margin-top: 10 / @px-unit;
    width: 100%;
    min-width: 600 / @px-unit;
    justify-content: space-between;
    align-items: center;
    
    .pageLineLeft {
        .ant-pagination-simple .ant-pagination-prev .ant-pagination-item-link,
        .ant-pagination-simple .ant-pagination-next .ant-pagination-item-link{
            height: 100%;
        }
        button,
        & span.anticon {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .ant-btn-default{
            width: 46 / @px-unit;
            height: 32 / @px-unit;
        }
        display: flex;
        .ant-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            .ant-pagination-prev,
            .ant-pagination-next,
            .ant-pagination-disabled {
                padding: 4 / @px-unit 4 / @px-unit;
                border: 1 / @px-unit solid @buttonNormalBorderN;
                width: 32 / @px-unit;
                height: 32 / @px-unit;
                margin: 0 10 / @px-unit;
            }
            .ant-pagination-disabled {
                border: 1 / @px-unit solid @buttonNormalBorderD;
                background-color: @buttonNormalBgD;
                svg {
                    & + {
                        path:first-child {
                            fill: @buttonNormalBorderD; 
                        }
                    }
                }
            }
        }
        .anticon-left,
        .ant-pagination-simple-pager,
        .anticon-right {
            color: @pageTextA;
        }
        .ant-pagination-simple-pager input {
            background-color: @pageBodyBg;
            border-color: @pageBorderN;
        }
        .ant-pagination-simple-pager {
            height: 32 / @px-unit;
        }
    }
    .pageLineRight {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}



.virtual-table {
    .ant-table-header {
        th{
            border-right: 1/@px-unit solid;
        }
    }
    .ant-empty-normal {
        height: 180/@px-unit;
        margin: 0 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .ant-table-tbody {
        height: 180/@px-unit;
    }
    .ZD-showZebraPattern-even {
        background-color: @tableOddBgN;
    }
    .ZD-showZebraPattern-odd {
        background-color: @tableEvenBgN;
    }
    .ZD-selected-row {
        background-color: @tableBgA;
    }
    .virtual-table-cell {
        display: flex;
        align-items: center;
        justify-content: center;
        color: @tableTextN;
        &.ZD-selected-row {
            
            color: .color_A(@tableBgA)[];
            .cus_icons{
                &:not(.noHover):not(:hover){
                    .svgOut(.color_N(@tableBgA)[])
                }
            }
            .cus_icons.disabled_icons{
                .svgDisabled(.color_D(@tableBgA)[]);
            }
        }
    }
    .center {
        text-align: center;
    }
}



.autoComplete {
    .ant-select-selector {
        &:hover {
            border-color: @current !important;
        }
    }
}

.autoComplete-error {
    .ant-select-selector {
        border: 1px solid @errorColor;
    }
}

.error-text {
    color: @errorColor;
}



._IntelliAreaRuleBtn_ivs-color{
    svg path:first-child {
                    fill: @current !important; 
                }   
}
._operation_smd_ .ant-checkbox-disabled + span {
  color: inherit;
}


@modalFooterHeight_Exp: 60 / @px-unit; 
@preEmptyHeight_Exp: 50 / @px-unit; 
@modalContentHeight_Exp: calc(
    100vh - @navMenuHeight - @modalFooterHeight_Exp - @preEmptyHeight_Exp
); 
@stepHeight_Exp: 75 / @px-unit; 
@stepMainHeight_Exp: calc(@modalContentHeight_Exp - @stepHeight_Exp); 

.ImportModal {
    position: absolute !important;
    margin: 0;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;

    .ant-modal-header {
        width: 100%;
    }
    .ant-modal-body {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .ant-modal-content {
        border: none !important;
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        overflow-y: auto !important;
        overflow-x: auto !important;
        .ant-modal-footer {
            position: absolute;
            overflow: hidden;
            height: @modalFooterHeight_Exp;
            width: 100%;
            bottom: 0 / @px-unit;
            right: 0 / @px-unit;
        }
    }
    ._ExperienceBaseImport_ {
        height: @modalContentHeight_Exp;

        .stepListContainer {
            padding: 20 / @px-unit 100 / @px-unit;
            height: @stepHeight_Exp;
            border-bottom: 1 / @px-unit solid @pageBorderN;

            .ant-steps-item-title {
                color: @pageTextN !important;
            }
            .ant-steps-item-active .ant-steps-item-title {
                color: @pageTextA !important;
            }

            .ant-steps-item-finish .ant-steps-item-icon {
                background-color: transparent !important;
            }
            .ant-steps-item-wait .ant-steps-item-icon {
                background-color: transparent !important;
                border-color: @pageBorderN !important;

                .ant-steps-icon {
                    color: @pageTextN !important;
                }
            }
        }

        .stepMain {
            position: relative;
            margin: 25 / @px-unit;
            height: @stepMainHeight_Exp;
            border: 1 / @px-unit solid @pageBorderN;
        }

        .ImportModalFooter {
            display: flex;
            justify-content: flex-end;
        }
    }
}



._WinSecAuth_ {
    width: 600/@px-unit !important;
    .ant-modal-footer {
        padding: 5/@px-unit 16/@px-unit 50/@px-unit 16/@px-unit;
        .label-normal-container {
            float: right;
            margin-left: 30/@px-unit;
        }
    }
    .pd-active > svg path:first-child{
        fill:@pdEyeIconA !important; 
    }

    .pd-default > svg path:first-child{
        fill:none !important; 
    }
}

._AlarmController_ {
    margin-top: 20 / @px-unit;
    .mode {
        display: flex;
        align-items: center;

        .label {
            width: 150 / @px-unit;
            height: 30 / @px-unit;
            line-height: 30 / @px-unit;
        }

        .textItem {
            width: 30 / @px-unit;
            height: 30 / @px-unit;
            margin: 0 6 / @px-unit;
            line-height: 30 / @px-unit;
        }

        .radioItem {
            width: 30 / @px-unit;
            height: 30 / @px-unit;
            line-height: 16 / @px-unit;
            margin: 0 7 / @px-unit 0 5 / @px-unit;
            padding: 0 !important;
        }
    }

    .status {
        display: flex;
        align-items: center;

        .label {
            width: 150 / @px-unit;
            height: 30 / @px-unit;
            line-height: 30 / @px-unit;
        }

        .checkboxItem {
            width: 30 / @px-unit;
            height: 30 / @px-unit;
            margin: 0 7 / @px-unit 0 5 / @px-unit;
            padding: 0 !important;
        }
    }
}



._Eptz_ {
    position: relative;
    margin-bottom: 0 / @px-unit;
    .eptz_switch{
        padding: 10/@px-unit;
        .label-normal-container {
            display: flex;
        }
    }
    &title{
        padding: 0 10/@px-unit;
        line-height: 40/@px-unit;
        color: @pageTextN;
        font-size: 14/@px-unit;
        background-color: @fisheye_title;
        -webkit-touch-callout: none; 
        -webkit-user-select: none; 
        -khtml-user-select: none; 
        -moz-user-select: none; 
        -ms-user-select: none; 
        user-select: none;
    }
    &wrap{
        width: 100%;
        padding: 10/@px-unit;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        .label-div-Container{
            width: 100%;
            .label-normal-container {
                width: 100%;
                .select{
                    width: 100% !important;
                }
            }
        }
      
    }
    &item{
        height:40/@px-unit;
        width:40/@px-unit;
        margin:10/@px-unit;
        font-size:40/@px-unit!important;
    }
    .item-disabled{
        cursor:not-allowed;
    }
    &active{
        svg path:first-child{
            fill:@fisheye_actColor!important;
        }
    }  

    .range-content {
        display: flex;
        align-items: center;
        justify-content: space-around;
        width: 100%;

        .ant-input-number-handler-wrap{
            display: none;
        }

        input {
            padding: 0 5px;
        }
    }
}


.Finder {
  width: 280 / @px-unit;

  .ant-select-selector {
    .ant-select-selection-search {
      left: 30/ @px-unit !important;
    }
  }

  .hightlight {
    color: @current
  }
}
  
.Finder_icon {
  cursor: pointer;

  svg {
    width: 22/ @px-unit;
    margin: 0 4/ @px-unit;
    height: 22/ @px-unit;
  }

  &.close-icon:hover svg g path {
    fill: @--primary-6;
  }

  &.close-icon {
    position: relative;
    left: 30/ @px-unit;
    z-index: 1;
  }
}

.finder-popup {
  width: 532 / @px-unit;
  height: 234 / @px-unit;
  right: 48/ @px-unit;
  left: unset !important;

  .dropdown-content {
    height: 192/ @px-unit;

    .finder-search-item {
      font-weight: normal;
      cursor: pointer;
      height: 32/ @px-unit;
      line-height: 32/ @px-unit;
      display: flex;
      padding: 0 2/ @px-unit;
      color: .color_N(@--component-bg)[];

      svg {
        width: 22/ @px-unit;
        margin: 4 / @px-unit 4/ @px-unit 0;
        height: 22/ @px-unit;

        &+ {
          path:first-child {
            fill: .color_N(@--component-bg)[];
          }
        }
      }

      &:hover {
        color: @formInputDropDownTextSelectN;
        background-color: @formInputDropDownBgSel;
      }
    }

    .ant-cascader-menus {
      height: 100%;

      .ant-cascader-menu {
        height: 100%;
        width: 133 / @px-unit;
        min-width: 133 / @px-unit;
      }
    }

    .ant-cascader-menu-empty {
      .ant-cascader-menu-item {
        height: 180 / @px-unit;
        color: .color_N(@--component-bg)[];
      }
    }
  }

  .inSearch .ant-cascader-menus .ant-cascader-menu {
    flex-grow: 1;
  }

  .footer {
    display: flex;
    align-items: center;
    height: 32/ @px-unit;
    padding: 0 4/ @px-unit;

    .hightlight {
      color: @current;
      cursor: pointer;
      display: flex;
      align-items: center;
      margin-top: 2/ @px-unit;
      line-height: 30/ @px-unit;

      .back-text {
        margin-left: 2/ @px-unit;
      }

      svg {
        width: 22/ @px-unit;
        height: 22/ @px-unit;
        margin: 0 2 / @px-unit;
        position: relative;
        top: -2 / @px-unit;

        &+ {
          path:first-child {
            fill: @current;
          }
        }
      }
    }

  }

  .footer-mid {
    justify-content: center;
  }

  .footer-left {
    justify-content: start;
  }
}




.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}

.leaflet-tile::selection {
	background: transparent;
}

.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}

.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}


.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}

.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}




.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; 
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}




.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}




.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}


.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; 
	pointer-events: auto;
	}



.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}



.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}




.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}



.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}




.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}




.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}




.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}




.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}




.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}



.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}



@media print {
	
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

._ElectMap_ {
    margin: auto;
}
.mapPointSvg {
    display: none !important;
}
.cus_icons:not(.disabled_icons) svg {
    [data-name=point_start] path:first-child {
        fill: @markerNomal;
    }
    [data-name=point_end] path:first-child {
        fill: @markerNomal;
    }
}
.cus_icons:not(.disabled_icons) svg path[data-name=point_default] {
    fill:@markerNomal;
}

.finish.cus_icons:not(.disabled_icons) svg {
    [data-name=point_start] path:first-child {
        fill: @markerFinishi;
    }
    [data-name=point_end] path:first-child {
        fill: @markerFinishi;
    }
    path[data-name=point_default] {
        fill: @markerFinishi;
    }
}
.cus_icons:not(.disabled_icons):not(.noHover):hover svg path[data-name=point_disable] {
    fill:@markerNoTraHover;
}
.map-popup {
    background-color: @modalBg;
    color: @modalContentText;
	.map-popup-trac {
		max-width: 300 / @px-unit;
		min-width: 150 / @px-unit;
		word-break: break-all;