    position: relative;
    display: block;
    transition: color @effect-duration @easing-in-out;
    padding: 8/@px-unit 20/@px-unit;
    font-weight: 500;
    cursor: pointer;

    &:hover {
      color: #23c0fa;
    }
  }

  &-tab-active {
    &, &:hover {
      color: #108ee9;
      cursor: default;
      // fix chrome render
      transform: translateZ(0);
    }
  }

  &-tab-disabled {
    cursor: default;
    color: #ccc;
    &:hover {
      color: #ccc;
    }
  }

  &-content {
    zoom: 1;

    .@{tabs-prefix-cls}-tabpane {
      overflow: hidden;
    }

    &-animated {
      transition: transform @effect-duration @easing-in-out,
                  margin-left @effect-duration @easing-in-out,
                  margin-top @effect-duration @easing-in-out;
      display: flex;
      will-change: transform;

      .@{tabs-prefix-cls}-tabpane {
        flex-shrink: 0;
      }
    }
  }

  .no-flexbox &-content {
    transform: none !important;
    overflow: auto;
  }

  .no-csstransitions &-tabpane-inactive,
  .no-flexbox &-tabpane-inactive,
  &-content-no-animated &-tabpane-inactive {
    display: none;
  }
}

.@{tabs-prefix-cls} {
  &-left {
    border-right: 2/@px-unit solid #f3f3f3;
  }

  &-left &-bar {
    float: left;
    height:100%;
    margin-right: 10/@px-unit;
    border-right: 1/@px-unit solid #f3f3f3;
  }
  &-left &-nav-container {
    height:100%;
  }
  &-left &-nav-container-scrolling {
    padding-top: 32/@px-unit;
    padding-bottom: 32/@px-unit;
  }

  &-left &-nav-wrap {
    height: 100%;
  }

  &-left &-content-animated {
    flex-direction: column;

    .@{tabs-prefix-cls}-tabpane {
      height: 100%;
    }
  }

  &-left &-nav-scroll {
    height: 99999/@px-unit;
  }

  &-left &-nav-swipe {
    position: relative;
    top: 0;
    .@{tabs-prefix-cls}-nav {
      display: flex;
      flex: 1;
      flex-direction: column;
      height: 100%;
      .@{tabs-prefix-cls}-tab {
        display: flex;
        flex-shrink: 0;
        justify-content: center;
      }
    }
  }

  &-left &-tab-prev, &-left &-tab-next {
    margin-top: -2/@px-unit;
    height: 0;
    line-height: 32/@px-unit;
    width: 0;
    display: block;
    text-align: center;
    opacity: 0;
    transition: width .3s, height .3s, opacity .3s;
  }

  &-top &-tab-arrow-show,
  &-left &-tab-arrow-show,
  &-bottom &-tab-arrow-show,
  &-right &-tab-arrow-show {
    opacity: 1;
    width: 100%;
    height: 32/@px-unit;
  }

  &-left &-tab-next {
    bottom: 0;
    &-icon {
      transform: rotate(90deg);
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    }
    &-icon:before {
      content: ">";
    }
  }

  &-left &-tab-prev {
    top: 2/@px-unit;
    &-icon {
      transform: rotate(270deg);
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    }
    &-icon:before {
      content: ">";
    }
  }

  &-left &-ink-bar {
    width: 2/@px-unit;
    right: 0;
    top: 0;
  }

  &-left &-tab {
    padding: 16/@px-unit 24/@px-unit;
  }
}

.@{tabs-prefix-cls} {
  &-right {
    border-left: 2/@px-unit solid #f3f3f3;
  }

  &-right &-bar {
    float: right;
    height: 100%;
    margin-left: 10/@px-unit;
    border-left: 1/@px-unit solid #f3f3f3;
  }
  &-right &-nav-container {
    height:100%;
  }
  &-right &-nav-container-scrolling {
    padding-top: 32/@px-unit;
    padding-bottom: 32/@px-unit;
  }

  &-right &-nav-wrap {
    height: 100%;
  }

  &-right &-nav-scroll {
    height: 99999/@px-unit;
  }

  &-right &-nav-swipe {
    position: relative;
    .@{tabs-prefix-cls}-nav {
      display: flex;
      flex: 1;
      flex-direction: column;
      height: 100%;
      .@{tabs-prefix-cls}-tab {
        display: flex;
        flex-shrink: 0;
        justify-content: center;
      }
    }
  }

  &-right &-tab-prev, &-right &-tab-next {
    margin-top: -2/@px-unit;
    height: 0;
    width: 0;
    display: block;
    text-align: center;
    line-height: 32/@px-unit;
    opacity: 0;
    transition: width .3s, height .3s, opacity .3s;
  }


  &-top &-tab-arrow-show {
    opacity: 1;
    width: 100%;
    height: 32/@px-unit;
  }

  &-right &-tab-next {
    bottom: 0;
    &-icon {
      transform: rotate(90deg);
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    }
    &-icon:before {
      content: ">";
    }
  }

  &-right &-tab-prev {
    top: 2/@px-unit;
    &-icon {
      transform: rotate(270deg);
      filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    }
    &-icon:before {
      content: ">";
    }
  }

  &-right &-content-animated {
    flex-direction: column;

    .@{tabs-prefix-cls}-tabpane {
      height: 100%;
    }
  }

  &-right &-ink-bar {
    width: 2/@px-unit;
    left: 0;
    top: 0;
  }

  &-right &-tab {
    padding: 16/@px-unit 24/@px-unit;
  }
}

.@{tabs-prefix-cls} {
  &-top {
    border-bottom: 2/@px-unit solid #f3f3f3;
  }

  &-top &-content {
    width: 100%;
  }

  &-top &-bar {
    border-bottom: 1/@px-unit solid #f3f3f3;
  }

  &-top &-nav-container-scrolling {
    padding-left: 32/@px-unit;
    padding-right: 32/@px-unit;
  }

  &-top &-nav-scroll {
    width: 99999/@px-unit;
  }

  &-top &-nav-swipe {
    position: relative;
    left: 0;
    .@{tabs-prefix-cls}-nav {
      display: flex;
      flex: 1;
      width: 100%;
      .@{tabs-prefix-cls}-tab {
        display: flex;
        flex-shrink: 0;
        margin-right: 0;
        padding: 8/@px-unit 0;
        justify-content: center;
      }
    }
  }

  &-top &-nav-wrap {
    width: 100%;
  }

  &-top &-content-animated {
    flex-direction: row;
    .@{tabs-prefix-cls}-tabpane {
      width: 100%;
    }
  }

  &-top &-tab-next {
    right: 2/@px-unit;

    &-icon:before {
      content: ">";
    }
  }

  &-top &-tab-prev {
    left: 0;
    &-icon:before {
      content: "<";
    }
  }

  &-top &-tab-prev, &-top &-tab-next {
    margin-right: -2/@px-unit;
    width: 0;
    height: 0;
    top: 0;
    text-align: center;
    opacity: 0;
    transition: width .3s, height .3s, opacity .3s;
  }

  &-top &-tab-arrow-show {
    opacity: 1;
    width: 32/@px-unit;
    height: 100%;
  }

  &-top &-ink-bar {
    height: 2/@px-unit;
    bottom: 0;
    left: 0;
  }

  &-top &-tab {
    float: left;
    height: 100%;
    margin-right: 30/@px-unit;
  }

  &-top &-tabpane-inactive {
    height: 0;
    overflow: hidden;
  }
}

@tabs-prefix-cls: rc-tabs;

@easing-in-out: cubic-bezier(0.35, 0, 0.25, 1);

@effect-duration: .3s;










.colorMenu_box {
    float: left;
    margin-top: 4px;
    border-radius: 2px;
    width: 14px;
    height: 14px;

    &.black {
        background: @skin-black;
    }

    &.blue {
        background: @skin-blue;
    }
}


.homeside-enter, .homeside-appear {
    opacity: 0;
}
.homeside-enter-active, .homeside-appear-active { 
    opacity: 1;
    transition: opacity 200ms ease-in;
}
// .homeside-enter-done {
//     opacity: 1;
// }
.homeside-exit {
    opacity: 1;
}

.homeside-exit-active {
    opacity: 0;
    // transition: opacity 200ms ease-in;
}

// .homeside-exit-done {
//     opacity: 0;
// }
.clearfix {
    &::after {
      content: ".";            
      display: block;        
      height: 0;
      visibility: hidden;  
      clear: both;   
    }
}
.tab-menu-button {
    .myicon:hover {
        color: unset;
    }
    .ant-badge-count {
        min-width: 14px;
        width: auto;
        height: 14px;
        line-height: 14px;
        border-radius: 10px;
        padding: 0 3px;
    }
}
.systemSet {
    width: auto;
    background: transparent;
}
.menu-content{
    padding: 16px;
    background: #ffffff;
    border: 1px solid #D5D5D5;
    display: flex;
    flex-direction: column;
    align-items: center;
    &>div:nth-child(1){
        font-weight: bold;
        margin-bottom: 8px;
    }
}

.TabMenu{
    line-height: 64px;
    width: 100%;
    .ant-tabs-tab {
        background-color: transparent;
        border: none;
        height: 64px;
        color: @topMenuTabColor;
    }
    .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab-active > div,
    .ant-tabs-tab-btn:focus {
        color: @topMenuTabActiveColor;
    }
    .ant-tabs-nav-more {
        display: none;
    }
    .ant-tabs-top > .ant-tabs-nav::before,
    .ant-tabs-bottom > .ant-tabs-nav::before,
    .ant-tabs-top > div > .ant-tabs-nav::before,
    .ant-tabs-bottom > div > .ant-tabs-nav::before {
        border: none;
    }
    .tabMenu-icon {
        color: @topMenuTabColor;
    }
    .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab {
        background-color: transparent;
        border: none;
        text-align: center;
        line-height: 64px;
        width: unset;
        // margin-right: 10 / @px-unit;
    }
    .ant-tabs-bar {
        margin: 0;
        border: none;
        color: @topMenuTabColor;
    }
    .ant-tabs .ant-tabs-card .ant-tabs-card-bar .ant-tabs-nav-container {
        height: 64px;
    }
    .ant-tabs-nav-container {
        line-height: 64px;
    }
    .ant-tabs-tab-next {
        height: 64px;
        color: @tabArrowColor;
        &:hover {
            color: @tabArrowHoverColor;
        }
    }
    .ant-tabs-tab-prev {
        height: 64px;
        color: @tabArrowColor;
        &:hover {
            color: @tabArrowHoverColor;
        }
    }
    .anticon-close {
        opacity: 0;
        color: @tabCloseColor;
    }
    .ant-tabs-tab {
        &:hover .anticon-close {
            opacity: 1;
        }
    }
    .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab .ant-tabs-close-x {
        color: @tabCloseColor;
    }
    .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
    .ant-tabs-card.ant-tabs-bottom > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
    .ant-tabs-card.ant-tabs-top > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab,
    .ant-tabs-card.ant-tabs-bottom > div > .ant-tabs-nav .ant-tabs-tab + .ant-tabs-tab {
        margin-left: 0px;
    }
    .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab,
    .ant-tabs-card > div > .ant-tabs-nav .ant-tabs-tab {
        padding: 8px;
    }
    .tabs-ie > .ant-tabs-nav > .ant-tabs-nav-wrap > .ant-tabs-nav-list {
        min-width: 1080px;
    }
}
.tab-menu{
    width: 100%;
    background-color:rgba(0,21,41,.8);
    // background-color:@tabBackGroundColor;
    color:@topMenuTabColor;
    line-height: 64px;
    height:64px;
    z-index: 1000;
    position: fixed;
    min-width: 800px;
    width: 100%;
    padding: 0 20px;
    .tab-menu-right{
        float: right;
        height: 64px;
        overflow: hidden;
        text-align:right;
    }
    .ant-tabs-nav .ant-tabs-tab:hover {
        color: @tabMenuTabHoverColor;
    }
    .ant-divider {
        height: 16px;
        background: @tabDividerColor;
    }
    .ant-divider, .ant-divider-vertical{
        margin: 0 14px;
    }
    i:hover{
        color:@tabMenuTabHoverColor;
    }
}
.tab-menu-button{
    border: none;
    padding: 0;
    // background-color:@tabBackGroundColor;
    background-color: transparent;
    outline: none;
    line-height: 64px;
    cursor: pointer;
    &:hover{
        color:@tabMenuTabHoverColor;
    }
    &:last-child {
        text-align: center;
        display: inline-block;
        margin-right: 0;
        
    }
}

.tab-menu-button-admin{
    border: none;
    padding: 0;
    // background-color:@tabBackGroundColor;
    background-color: transparent;
    outline: none;
    line-height: 19px;
    cursor: pointer;
    &:hover{
        color:@tabMenuTabHoverColor;
    }
}
.tab-menu-button-language{
    font-size: 20px;
    vertical-align: -3px;
    &:hover{
        color:@tabMenuTabHoverColor !important;
    }
}
.tab-menu-home{
    text-align: center;
    float: left;
    cursor: pointer;
    line-height: 64px;
    &:hover {
        color: @tabMenuTabHoverColor;
    }
}
.tab-menu-homeIconLine{
    float: left;
    line-height: 64px;
    margin-left: 10px;
}

.tab-menu-homeIcon{
    text-align: center;
    cursor: pointer;
    float: left;
    margin-left: 10px;
    margin-right:40px;
    line-height: 64px;
    &:hover {
        color: @tabMenuTabHoverColor;
    }
}

@keyframes arcSlideUpIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.8;
    }
  }

.MenuView_item{
    width: 33%;
    display: inline-block;
    cursor: pointer;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 3px;
    transition:  background-color 1500ms;
    -moz-transition: background-color 1500ms;
    -o-transition: background-color 1500ms;
    -webkit-transition: background-color 1500ms;
}
.MenuView_item:hover{
    background-color: @MenuViewItemHoverColor;
    transition:  background-color 1500ms;
    -moz-transition: background-color 1500ms;
    -o-transition: background-color 1500ms;
    -webkit-transition: background-color 1500ms;
}
.MenuView_ViewItem{
    text-align: center;
    margin-bottom: 18px;
    justify-content: center;
    .icon{
      display: inline-block !important;
    }

}
._MenuView_ {
    padding: 20px;
    padding-bottom: 0;
    position: relative;
    .pagination {
        position: absolute;
        z-index: 20;
        bottom: 10px;
        width: 100%;
        text-align: center;
      }
      .swiper-pagination-switch {
        display: inline-block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: @MenuViewPageSwitch;
        margin: 0 10px;
        opacity: 0.8;
        border: transparent;
        cursor: pointer;
      }
      .swiper-active-switch {
        background: @MenuViewActivePageSwitch;
      }
    .modal {
        position: fixed;
        top: 0;
        left: 4vw;
        z-index: 2;
        display: block;
    }
}

._MenuView_Carousel{
    background-color: @MenuViewBackGroundColor;
    padding: 30px 30px 5px 0px;
    width: 80%;
    margin: 0 auto;
    margin-top: 110px;
    z-index: 100;
    position: absolute;
    left: 50%;
    height: 710px;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}
.MenuView_ViewItem_title{
    font-size: 20px;
    font-weight: bold;
}
.MenuView_ViewItem_underLine {
    height: 2px;
    width: 35px;
    background-color: @MenuViewItemLineColor;
    border-radius: 5px;
    margin: 0 auto;
}
.MenuView_ViewItem_message{
    word-wrap:break-word;
    word-break:break-all;
    overflow: hidden;
    height: 80px;
    color:@MenuViewItemMessageColor;
}
.ant-carousel .slick-slider {
  z-index: 3;
  margin-top: 8vh;
}
._MenuView_ .ant-carousel .slick-dots li.slick-active button {
    background-color: @MenuViewItemHoverColor;
}
._MenuView_ .ant-carousel .slick-dots li button {
    background-color: @MenuViewCarouselColor;
}

.swiper-container {
	overflow:hidden;
	direction:ltr;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	/* Fix of Webkit flickering */
	z-index:1;
}
.swiper-wrapper {
    position:relative;
    margin-top: -10px;
	width:100%;
	-webkit-transition-property:-webkit-transform, left, top;
	-webkit-transition-duration:0s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;
	
	-moz-transition-property:-moz-transform, left, top;
	-moz-transition-duration:0s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;
	
	-o-transition-property:-o-transform, left, top;
	-o-transition-duration:0s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);
	
	-ms-transition-property:-ms-transform, left, top;
	-ms-transition-duration:0s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;
	
	transition-property:transform, left, top;
	transition-duration:0s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.swiper-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.swiper-slide {
	float: left;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
	-ms-touch-action: pan-y;
}
.swiper-wp8-vertical {
	-ms-touch-action: pan-x;
}


.side-button{
    background-color:transparent;
    border:none;
    outline: none;
}

.sideMenu {
    height:100%;
    background-color:@sideMenuBackGroundColor;
    padding: 10px 0;
    .ant-menu-item {
        a {
            display: inline-block!important;
        }
    }
}
.sideMenu .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected{
    background-color: @sideMenuSelectedColor;
    color:@primary-color;
}
.sideMenu .ant-menu-item:hover, .ant-menu-item-active, .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open, .ant-menu-submenu-active, .ant-menu-submenu-title:hover{
    color:@primary-color;
}
// .sideMenu .ant-menu-submenu-arrow::before{
//     background-color:@sideMenuSelectedColor
// }
.sideMenu .sideMenuBody{
    height:100%;
    border-right:none;
    background-color:@sideMenuBackGroundColor;
    // svg{
    //     width:14px !important;
    //     height:14px !important;
    // }
}


.m-main-page {
    min-height: 100%;
    height: auto;
    padding: 16px;
    background: @bodyBgColorNo16;
}
.m-main-page > div {
    padding: 16px;
    min-height: calc(100vh - 100px);
    background: @contentBgColorNo15;
}
._SideView_ {
    min-width:1400px;
    height:100%;
    // @spaceheight: 64px;
    @spaceheight: 96px;
    .sideView-menu {
        width: 240px;
        .anticon {
            vertical-align: text-top;
            margin-right: 10px;
        }
    }
    .sideView-menu-page {
        min-height: calc(~'100vh - @{spaceheight}');
        flex: 1;
        // @space: 240px;
        // width: calc(~'100% - @{space}');
        // background: @bodyBgColorNo16;
        // padding: 16px;
        margin: 16px;
        background-color: @contentBgColorNo15;
        overflow: hidden;
    }
    .sideView-menu-page > div {
        min-height: 100%;
        padding: 16px;
        // margin-bottom: 16px;
        // background-color: @contentBgColorNo15;

        & > div > div.ant-tabs {
            margin-top: -16px;
        }
    }
}

.bottom-pagination{
    position: absolute;
    bottom: 0px;
    width:100%;
    div:nth-child(2){
        text-align: right;
        // padding-right: 20px;
    }
    height: 50px;
    line-height: 50px;
    padding:0 10px;
    .ant-table-pagination.ant-pagination {
        float: right;
        margin: 9px 0;
    }
}
.alarm-custom-card {
    .ant-card-head {
        background: #e3e3e3;
        min-height: 30px;

        .ant-card-head-title {
            padding: 5px 0;
        }
    }
    .area  {
        height: 280px;
        overflow: auto;
        .check-box {
            display: inline-block;
            width: calc(12.5% + 25px);
            .half-check {
                margin-right: 24px;
            }
        }
        > .ant-checkbox-wrapper {
            width: calc(12.5% - 6px);
            margin-bottom: 15px;
            + .ant-checkbox-wrapper {
                margin-left: 0;
            }
            // &:nth-child(8n + 1) {
            //     width: 48px;
            // }
        }
    }
    .ant-card-body {
        padding: 10px 24px;
    }
    .global-event {
        .global-event-item {
            min-width: 18.5%;
            margin-bottom: 10px;
        }
    }
    .voice-global-box {
        .global-event-select {
            width: 170px;
        }
        .global-event-item {
            min-width: 50%;
            margin-bottom: 15px;
        } 
    }
    .fn-left {
        float: left;
    }
    .fn-lh32 {
        line-height: 32px;
    }
    .audioSelect {
        width: calc(100% - 80px);
    }
    .childSys.VoiceEnable .ant-checkbox-wrapper {
        line-height: 32px;
    }
    
}
._import_or_export_modal_ {
    @-webkit-keyframes fadeInDownBig {
        from {
          opacity: 0;
          -webkit-transform: translate3d(0, -2000px, 0);
          transform: translate3d(0, -2000px, 0);
        }
      
        to {
          opacity: 1;
          -webkit-transform: none;
          transform: none;
        }
      }
      
      @keyframes fadeInDownBig {
        from {
          opacity: 0;
          -webkit-transform: translate3d(0, -2000px, 0);
          transform: translate3d(0, -2000px, 0);
        }
      
        to {
          opacity: 1;
          -webkit-transform: none;
          transform: none;
        }
      }
      
      .fadeInDownBig {
        -webkit-animation-name: fadeInDownBig;
        animation-name: fadeInDownBig;
      }
    .flexcenter {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.fileInput{
    margin: 20px 0;
    .fileLabel{
        text-align: center;
        label{
            vertical-align: middle;
            display:inline-block;
            line-height: 32px;
        }
    }
    input[type="file"]{
        position: absolute;
        top:0;
        right: 0;
        opacity: 0;
        height: 32px;
        font-size: 100px;
        cursor: pointer;
    }
    .fn-hidden {
        overflow: hidden;
    }
    .uploadBtn{
        margin-left: 20px;
        position: relative;
        .ant-btn{
            min-width: 85px
        }
        form {
            display: inline-block;
        }
    }
    .fn-relative {
        position: relative;
        overflow: hidden;
    }
    .upload-input {
        width: 100%;
        z-index: 20;
    }
}
.fileUpdate{
    .updateBtn {
        position: relative;
        margin: 0 0 0 70px;
        .ant-btn {
            min-width: 85px
        }
        .ant-input {
            margin-top: -32px;
            display:none;
        }
    }
}


.fixed-button {
    margin-top: 10px;
    margin-bottom: 10px;
    &.halfwidth {
        width: 87.5%;
    }
    &.fullwidth {
        width: 100%;
    }
    button {
        display: inline-block;
        margin-right: 10px;
    }
    // .left {
    //     float: left;
    // }
    // .right {
    //     float: right;
    // }
}
._forgetPassword_ .ant-modal-footer {
    height: 55px;
    .ant-btn {
        float: right;
        margin-left: 10px;

    }
    
}

.myicon {
    // color: @titleColorNo4;
    &:hover {
        color: @btnNormalColorNo1;
    }
}
.myicon[disabled] {
    color: @disableColorNo7;
    &:hover {
        color: @disableColorNo7;
    }
}

._ImgCheckBox_ {
    .imgCheckBox-outer{
        display:inline-block
      }
      .imgCheckBox-innner{
        width:120px;
        height:120px;
        background-color: #33333c;
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center;
        border: 1px solid #C0C0C0;
        border-radius: 2px;
        box-sizing: border-box;
        vertical-align: top;
        display: inline-block;
        text-align: center;
        cursor: pointer;
        outline: none;
        position:relative;
        margin-right:10px;
        &:hover{
          border: 1px solid #0c8ada;
        }
        margin-bottom: 10px;
      }
      .imgCheckBox-checkbox{
          position:absolute;
          top:2px;
          left:5px;
      }

      .imgCheckBox-file{
        width: 113px;
        height: 113px;
      }

}
._ImgSelect_ {
    .imgSelect-outer{
        display:inline-block;
        margin-right:5px;
      }
      .imgSelect-innner{
        display: inline-block;
        position:relative;
        background-image: url("/static/media/theme.png");
        background-repeat: no-repeat;
        background-position: center;
        border: 1px solid #C0C0C0;
        border-radius: 2px;
        box-sizing: border-box;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
        outline: none;
        &:hover{
          border: 1px solid #0c8ada;
          
        }
        .imgSelect-text{
          position: absolute;
          bottom:0;
          width:100%;
          left:0;
          right:0;
          height:24px;
          line-height:24px;
          font-size: 12px;
          color:#fff;
          z-index:10;
          background-color: #0c8ada;
        }
      }
      .imgSelect-title{
        width:100%;
        text-align: center;
      }
      .imgSelect-custom- {
        &theme1{
          background-position: 0 0;
        }
        &theme3{
          background-position: -100px 0;
        }
        &theme2{
          background-position: -200px 0;
        }
        &theme4doNotDistub{
          background-position: -300px 0;
        }
        &theme4exit{
          background-position: -400px 0;
        }
        &theme4duty{
          background-position: -500px 0;
        }
        &template1{
          background-position: 0 -140px;
        }
        &template2{
          background-position: -100px -140px;
        }
        &template3{
          background-position: -200px -140px;
        }
        &template4{
          background-position: -300px -140px;
        }
      }

}
// 

.passwordCheck-light{
    width: 30%;
    display: inline-block;
    height: 5px;
    margin: 0;
    border-radius: 5px;
    margin-left: 3px;
    // background-color:@listBorderColorNo8;
    transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
}
.passwordCheck-tip{
    transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    color:#F5222D;
    margin: 0;
} 
.passwordCheck-label{
    line-height: 32px;
    text-align: right;
    padding-right:10px; 
    // color:@label-dark-Color;
}
.passwordCheck-vlight{
    width: 12%;
    display: inline-block;
    height: 5px;
    margin: 0;
    margin-bottom: 6px;
    // background-color:@listBorderColorNo8;
    transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
}

.passwordCheck-v-left{
    border-radius: 5px 0 0 5px
}
.passwordCheck-v-right{
    border-radius: 0 5px 5px 0
}

.Ocx_download{
    position: fixed;
    text-align: center;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid @dividerColorNo9;
    background: @homePageNo1;
    z-index: 10000;
    span{
        padding-top: 6px;
        display: inline-block;
    }
    a {
        text-decoration: underline;
    }
    .closeBtn{
        float: right;
        margin-right: 20px;
        border: 1px solid @dividerColorNo9;
        border-radius: 4px;
        padding: 4px 10px;
        cursor: pointer;
    }
}


.passwordCheck-light{
    width: 30%;
    display: inline-block;
    height: 5px;
    margin: 0;
    border-radius: 5px;
    margin-left: 3px;
    background-color:@listBorderColorNo8;
    transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
}
.passwordCheck-tip{
    transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    color:#F5222D;
    margin: 0;
} 
.passwordCheck-label{
    line-height: 32px;
    text-align: right;
    padding-right:10px; 
    // color:@label-dark-Color;
}
.passwordCheck-vlight{
    width: 12%;
    display: inline-block;
    height: 5px;
    margin: 0;
    margin-bottom: 6px;
    background-color:@listBorderColorNo8;
    transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
}

.passwordCheck-v-left{
    border-radius: 5px 0 0 5px
}
.passwordCheck-v-right{
    border-radius: 0 5px 5px 0
}
.passwordInput-security {
    -webkit-text-security:disc;
    -moz-text-security:disc;
    -ms-text-security:disc;
}
._PureFileInput_ {
    // UI组件特有的CSS，
}


.FireWall-tab{
    .ant-table-header-column{
        font-weight: bold;
    }
    .padding15{
        padding: 14px;
        padding-top: 0;
    }
    .paddingLeft15{
        padding-left:15px;
    }
    .divider{
        padding:0 15px;    
    }
    .marginRight10{
        margin-right:10px;
    }
    .firewallTable{
        border: 1px solid #e8e8e8;
    }
    a {
        color:@text-color;
        &:hover{
            color:@primary-color;
        }
    }
    padding: 14px 14px 14px 29px;
    > .ant-row {
        > .ant-col {
            padding-bottom: 14px;
        }
    }
    .ant-popover-buttons .ant-btn:first-child{
        float: right;
    }
    .ant-modal-confirm-btns .ant-btn:first-child{
        float: right;
        margin-left: 10px;
    }
    .Firewall-radio-label{
        width:100px;
    }
}
.Firewall-modal{
    .ant-modal-body{
        padding-left: 60px;
    }
    .LabelIP-label-Col{
        text-align: left;
    }
    .LabelIP-container{
        margin: 0;
    }
    .ant-input.LabelIPinput {
        width:53px;
    }
    .ant-row{
        margin-bottom: 6px;
    }
    .mac-box .mac-input {
        width: 34.5px; 
        min-width: 34.5px; 
        padding: 0; 
    }
    .macInput-label {
        padding: 0;
        text-align: left;
    }
    .ant-input-number{
        width:100%;
    }
    
}
._publicAccountLock_{
    .labelText{
        line-height: 32px;
        font-weight: bold;
    }
    .padding15{
        padding: 15px;
    }
    .marginRight10{
        margin-right:10px;
    }
    .divider{
        padding:0 15px;    
    }
    padding: 14px 14px 14px 29px;
    > .ant-row {
        > .ant-col {
            padding-bottom: 14px;
        }
    }
    .ant-input-number{
        width:100%;
    }
}
._DOSAttack_{
   .alert{
       padding: 0px 20px 20px 20px;
   } 
}
.Cert-form .ant-form-item {
    margin-bottom: 8px !important;
}
.Cert{
    word-break: break-all;
    padding: 14px 14px 14px 29px;
    > .ant-row {
        > .ant-col {
            padding-bottom: 14px;
        }
    }
    // .ant-table-thead > tr:first-child > th:first-child {
    //     border-left: 1px solid #e8e8e8;
    // }
    // .ant-table-thead > tr:first-child > th:last-child {
    //     border-right: 1px solid #e8e8e8;
    // }
    .ant-table-tbody .ant-table-row{
        border-left: 1px solid #e8e8e8;
        border-right: 1px solid #e8e8e8;
    }
    .ant-table-placeholder{
        border-left: 1px solid #e8e8e8;
        border-right: 1px solid #e8e8e8;
    }
    .ant-table-header-column{
        font-weight: bold;
    }
    .ant-form-explain{
        margin-left:0px;
    }
    // .ant-modal-body{
    //     .Cert-form{
    //         .ant-form-item{
    //             position: relative;
    //             .ant-form-item-label{
    //                 text-align: left;
    //                 margin-left: 6%;
    //             }
    //             .ant-form-item-control-wrapper{
    //                 width: 50%;
    //             }
    //         }
    //     }
    // }

    .m-content {
        height: calc(100% - 53px);
        border-top: 1px solid #e8e8ee;
        border-right: 1px solid #e8e8ee;
        border-left: 1px solid #e8e8ee;
    }
}
.Cert_btn_disabled {
    color: #e8e8e8;
    cursor: not-allowed !important;
}
.selectGetCert-radio-group {
    .ant-radio-wrapper {
        display: flex;
    }
    .info {
        padding: 10px 0;
        margin-left: 24px;
        color: #FF9900;
    }
}
.import-other-from {
    .ant-form-item {
        padding-bottom: 8px;
        .label-normal-container {
            padding-top:0 !important;
            padding-bottom: 0 !important;
            .label-normal-wrapper {
                line-height: 22px;
            }
            .key-password{
                width:200px;
            }
        }
    }
}


._SAFEIdentityAuth_ {
    padding: 14px 14px 14px 29px;
    > .ant-row {
        > .ant-col {
            padding-bottom: 14px;
        }
    }
    .ant-table-body {
        border-left: 1px solid @border-color;
        border-right: 1px solid @border-color;
    }
    .ant-table-title {
        padding: 0 10px;
        border:1px solid #e8e8e8;
    }
}

@error-color: #f5222d; // 错误色
._SAFEKMSServices_{
    > .ant-row {
        padding-bottom: 14px;
    }
    .switchTab{
        border-bottom: 1px solid @border-color;
    }
    .paddingTop14{
        padding-top: 14px;
    }
    .info{
        padding-top: 14px;
    }
    .handleBar{
        button{
            margin-right: 10px;
        }
    }
    .LabelIPinput{
        width: 52px !important;
    }
    .LabelIP-label-Col{
        text-align: left !important;
    }
    .table-border{
        border-left: 1px solid @border-color;
        border-bottom: 1px solid @border-color;
        border-right: 1px solid @border-color;
    }
    .table-title{
        height: 40px;
        line-height: 40px;
        border-left: 1px solid @border-color;
        border-top: 1px solid @border-color;
        border-right: 1px solid @border-color;
        .table-title-name{
            padding-left: 30px;    
        }
        .table-cert-manage{
            float: right;
            padding-right:30px;    
            color: @export-color;
            cursor: pointer;
        }
    }
    .ant-table-tbody .CertSefialNum {
        word-break: break-all;
    }
    .row-list{
        margin: 10px 0 10px 0;
    }
    .LabelIP-container{
        margin: 0 !important;
    }
    ._SAFEKMSServices_Alert{
        margin:10px 0 10px 0;
    }
    ._SAFEKMSServices_Revoked{
        color:@error-color;
    }
    .ant-col-5{
        width:221px;
    }
    .ant-table-header-column{
        font-weight:bold;
    }
    .ant-input-number{
        width:100%
    }
}
._CoSignServer_{
    padding: 14px 14px 14px 29px;
    .paddingTop14{
        padding-top: 14px;
    }
    .handleBar{
        button {
            margin-right: 10px;
        }
    }
}
._SAFESafetyWarning_{
    padding:14px;
    overflow:'auto';
    height:'100%';
    .event-list{
        line-height: 30px;
       
    }
    ._SAFESafetyWarning_Alert{
        margin:14px 0;
    }
    .handleBar{
        button {
            margin-right: 10px;
        }
    }
    .alertMessage{
        display: inline-block;
        white-space: nowrap;
        width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-all;
        -ms-word-break: break-all; 
        line-height: 30px;
    }
}
._SAFESafetyWarning_Pop{
    .ant-popover-inner-content{
        overflow: hidden;
        .event-list{
            width:250px;
        }
    }
    .ant-popover-content{
        width:800px;
    }
}
._SAFESecurityStatus_{
    ._SAFESecurityStatus_title{
        background-color:#e6f7ff;
        padding:15px;
        position: relative;
    }
    ._SAFESecurityStatus_titleText{
        font-size:24px;
        margin-bottom:10px !important;
    }
    ._SAFESecurityStatus_titleTip{
        color:#a7adaf;
        margin-left:5%;
    }
    ._SAFESecurityStatus_detect{
        min-width: 116px;
        height: 40px;
        max-height: 40px;
        margin-top: 14px;
        position:absolute;
        transform: translateY(-240%);
        -ms-transform: translateY(-240%);
        -webkit-transform: translateY(-240%);
        -o-transform: translateY(-240%);
        -moz-transform: translateY(-240%);
        right:20px;
    }
    .icon_pr10{
        padding-right: 10px;
    }
    ._SAFESecurityStatus_list{
        border-top:1px solid #e8e8e8;
    }
    ._SAFESecurityStatus_listTitle{
        border-bottom:1px solid #e8e8e8;
        padding:15px 5px 10px 25px;
        // font-weight: bold;
    }
    ._SAFESecurityStatus_content{
        min-height:180px;
        padding:15px 60px;
    }
    ._SAFESecurityStatus_titleIcon{
        width: 45px;
        height: 45px;
        position: relative;
        top: 6px;
    }
    .securityStateBtn{
        width: 64px;
        height: 24px;
        margin: 6px 0 0 11px;
        line-height: 24px;
    }
    .cuttitle {
        overflow: hidden !important;
        white-space: nowrap;
        word-wrap: normal;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }
    .button_black {
        text-align: center;
        cursor: pointer;
        border: 1px solid #e8e8e8 !important;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -o-border-radius: 2px;
        border-radius: 2px;
    }
    .ant-modal-body{
        padding: 0px;
    }
    .detail-modal{
        .title{
            padding: 20px;
            border-bottom: 1px solid #e8e8e8;
            .detail-opz-btn{
                margin-left: 10px;
                float: right;
            }
            button{
                margin-top: -3px;
            }
        }
        .container{
            
        }
    }
    .detail-title-warning {
        display: inline-block;
            width: calc(100% - 135px);
            vertical-align: middle;
    }
    .ant-progress-bg{
        background-color: #8fc6f8;
        background-image: linear-gradient(to right, rgb(16, 142, 233) 0%, rgb(135, 208, 104) 100%);
        background-size: 40px 40px;
        background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
        background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
        background-image: -ms-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
        -webkit-background-size: 40px 40px;
        background-size: 40px 40px;
    }
}
.item-icon-list{
    width: 64px;
    height: 64px;
    margin: 0 auto;
    display: block;
    font-size:64px;
}
.item-icon-loading{
    position: relative;
    top:-20px;
}
.item-list-name{
    text-align: center;
    height:30px;
    line-height:30px;
    margin-top: 5px;
}
.item-list-name-users {
    text-align: center;
    line-height:30px;
    margin-top: 5px;
}
.item-list-btn{
    display: inline-block;
    padding: 2px 5px;
    border: .5px solid #e8e8e8;
    margin: 0 auto;
    cursor: pointer;
    border-radius: 4px;
    min-width: 60px;
}
.detail-title-warning{
    margin-left: 6px;
    font-weight: bold;
}
.detail-optimize-btn{
    float: right;
    margin: 0 10px;
}
.detail-ignore-btn{
    float: right;
}
.detail-optimize-list{
    position: relative;
    padding: 20px 40px;
    padding-right: 30px;
    border-bottom: 1px solid #e8e8e8;
}
.detail-optimize-btn{
    position: absolute;
    right: 10px;
    top: 10px;
    text-align:right;
    color:#6699FF;
    cursor: pointer;
}
.icon-desc-popover{
    max-width: 500px;
    .icon-desc-title{
        font-weight: bold;
        margin: 10px 0;
    }
}
.icon-status-success{
    svg path{
        fill:#52c41a;
    }
}
.icon-status-fail{
    svg path{
        fill:#fcac15;
    }
}
.icon-status-ignore{
    svg path{
        fill:#8f8f8f;
    }
}
.item-list-name-fail{
    color: #fcac15;
}
// .ant-progress-bg{
//     background-color: #8fc6f8;
//     background-image: linear-gradient(to right, rgb(16, 142, 233) 0%, rgb(135, 208, 104) 100%);
//     background-size: 40px 40px;
//     background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
//     background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
//     background-image: -ms-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
//     -webkit-background-size: 40px 40px;
//     background-size: 40px 40px;
// }
.marginTop20{
    margin-top: 20px;
}

.padding20{
    padding: 20px;
}
._BaseServe_ .ant-divider-horizontal{
    min-width: 95%;
    width: 95%;
}
._WlanAgree_ .ant-table-bordered .ant-table-thead > tr > th, 
._WlanAgree_ .ant-table-bordered .ant-table-tbody > tr > td,
._publicHttps_ .ant-table-bordered .ant-table-thead > tr > th, 
._publicHttps_ .ant-table-bordered .ant-table-tbody > tr > td  {
    border-right:none;
}

._WlanAgree_ .ant-table-bordered .ant-table-thead > tr, 
._WlanAgree_ .ant-table-bordered .ant-table-tbody > tr,
._publicHttps_ .ant-table-bordered .ant-table-thead > tr, 
._publicHttps_ .ant-table-bordered .ant-table-tbody > tr {
    border:1px solid #e8e8e8;
}
._WlanAgree_ .ant-table-bordered .ant-table-thead> tr > th,
._publicHttps_ .ant-table-bordered .ant-table-thead> tr > th{
    font-weight: bold;
}
._WlanAgree_ .ant-table-title,
._publicHttps_ .ant-table-title {
    padding: 5px 0;
}
.marginTop20{
    margin-top: 20px;
}

.padding20{
    padding: 20px;
}
._BaseServe_ .ant-divider-horizontal{
    min-width: 95%;
    width: 95%;
}
._WlanAgree_ .ant-table-bordered .ant-table-thead > tr > th, 
._WlanAgree_ .ant-table-bordered .ant-table-tbody > tr > td,
._publicHttps_ .ant-table-bordered .ant-table-thead > tr > th, 
._publicHttps_ .ant-table-bordered .ant-table-tbody > tr > td  {
    border-right:none;
}

._WlanAgree_ .ant-table-bordered .ant-table-thead > tr, 
._WlanAgree_ .ant-table-bordered .ant-table-tbody > tr,
._publicHttps_ .ant-table-bordered .ant-table-thead > tr, 
._publicHttps_ .ant-table-bordered .ant-table-tbody > tr {
    border:1px solid #e8e8e8;
}
._WlanAgree_ .ant-table-bordered .ant-table-thead> tr > th,
._publicHttps_ .ant-table-bordered .ant-table-thead> tr > th{
    font-weight: bold;
}
._WlanAgree_ .ant-table-title,
._publicHttps_ .ant-table-title {
    padding: 5px 0;
}
._WlanAgree_{
    padding: 14px 14px 14px 29px;
    .title{
        > .ant-col {
            padding-bottom: 14px;
        }
    }
    .netName{
        padding-bottom: 14px;
        border-bottom: 1px solid #e8e8e8;
    }
    .container{
        padding-top: 14px;
        >.ant-col{
            margin-bottom: 14px;
        }
    }
    .table{
        padding: 14px 0;
    }
    .handleBar{
        padding-top: 14px;
    }
    .ant-row{
        .ant-form-item{
            margin-bottom: 0px;
            .ant-form-explain{
                margin-left: 17%;
            }
        }
    }
}
._publicHttps_{
    padding: 14px 14px 14px 29px;
    .title{
        > .ant-col {
            padding-bottom: 14px;
        }
    }
    .padding14{
        padding-bottom: 14px;
    }

    .ant-popover-buttons .ant-btn:first-child{
        float: right;
    }
    ._publicHttps_row{
        width:100%;