
    &:after {
      clear: both;
    }
  }

  &-tab {
    box-sizing: border-box;
    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: @textColorSecondary;
    }
    .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:@btnNormalColorNo1;
    // background-color:@tabBackGroundColor;
    color:@textColorNo5;
    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;
        .anticon{
            line-height: 64px;
            vertical-align: middle;
        }
        .ant-divider-vertical{
            vertical-align: middle;
        }
        .qrcodeStatus{
            vertical-align: -9px;
            //cursor: pointer;
        }
    }
    .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;
    }
    .anticon{
        line-height: 64px;
        vertical-align: middle;
    }
}

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

.MenuView_item{
    width: 33%;
    display: inline-block;
    cursor: pointer;
    padding: 20px;
    //margin-bottom: 60px;
    border-radius: 3px;
    transition:  background-color 1500ms;
    -moz-transition: background-color 1500ms;
    -o-transition: background-color 1500ms;
    -webkit-transition: background-color 1500ms;
    >.ant-row{
        flex-wrap: nowrap;
        overflow: hidden;
    }
}
.MenuView_item:hover{
    //background-color: @MenuViewItemHoverColor;
    border:1px solid #00a335;
    // transition:  border 1500ms;
    // -moz-transition: border 1500ms;
    // -o-transition: border 1500ms;
    // -webkit-transition:border 1500ms;
}
.MenuView_ViewItem{
    text-align: left;
    margin-bottom: 18px;
    margin-right:10px;
    justify-content: flex-start;
    .icon{
      display: inline-block !important;
    }

}

._MenuView_ {
    padding: 20px;
    padding-bottom: 0;
    position: relative;
    height:800px;
    .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;
    }
    .headMenu-container{
        position: absolute;
        top:630px;
        width:calc(100% - 40px);
        padding:0 100px;
        z-index:300;
        .ant-divider{
            background-color: #fff !important;
        }
        .headMenu-row{
            width:100%;
            display: flex;
            justify-content: space-around;
            padding:0 50px;
            .lineViews{
                width:20%;
                cursor: pointer;
                display: flex;
                align-items: center;
                .lineViews-span{
                    font-size:24px;
                    margin-left: 20px;
                }
            }
        }
    }
}

._MenuView_Carousel{
    // background-color: @MenuViewBackGroundColor;
    padding: 30px 30px 5px 0px;
    width: 88%;
    margin: 0 auto;
    //margin-top: 110px;
    z-index: 100;
    position: absolute;
    left: 50%;
    height: 650px;
    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;
    margin-top: 16px;
}
.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-word;
    //overflow: hidden;
    height: 100px;
    color:@MenuViewItemMessageColor;
    font-size:14px;
}
@media only screen and (min-width: 1400px) {
    .MenuView_ViewItem_title{
        font-size: 24px;
    }
    .MenuView_ViewItem_message{
        font-size:16px;
    }
}

.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;
            overflow: hidden;
            width: 170px;
            height: 30px;
            text-overflow: ellipsis;
            vertical-align: top;
        }
    }
}
.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-header {
    height: 52px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding-left: 16px;

    .title {
        line-height: 26px;
        color: #1f1f1f;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        line-height: 0;

        .text {
            margin-left: 12px;
        }
    }

    & + ._SideView_ {
        margin: 16px;

        .sideView-menu-page {
            height: calc(100vh - 64px - 52px - 16px * 2);
            margin: 0;
            border-left: 1px solid #e1e1e1;
            overflow: hidden;
            min-height: unset;

            & > div {
                padding: 24px 32px;
                min-height: unset;
                height: 100%;
            }
            .ant-spin-nested-loading,.ant-spin-container {
                height: 100%;
            }
        }
    }
}
._SideView_ {
    min-width:1400px;
    height:100%;
    // @spaceheight: 64px;
    @spaceheight: 96px;
    .sideView-menu {
        width: 240px;
        .anticon {
            vertical-align: top;
            margin-right: 10px;
            display: inline-block !important;
            height: 20px;
            margin-top: 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: @bodyBgColorNo16;
        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;
    }
}
@px-unit: 14rem;

@schedule-dividerColor: rgba(0,0,0,0.06); //分割线颜色
@schedule-inputBorderColor: #d9d9d9; // 输入框边框
@schedule-listBorderColor: #e8e8e8; // 计划表边框颜色
@schedule-successColor: #52c41a; // 时间条颜色
@schedule-warnColor: #fcac15; // 警告条颜色
@schedule-errorColor: #f5222d; // 报警条颜色
@schedule-textColor: #272727; // 文本颜色
@transform-height: 2/@px-unit;
@transform-height1: 1/@px-unit;
@font-color: #000000BF;
._new_schedule_public_component_{
    color: @font-color;
    padding: 16/@px-unit;
    padding-bottom: 32/@px-unit;
    user-select: none;
    .align-center {
        text-align: center
    }
    .ant-card-body{
        padding: 15/@px-unit 24/@px-unit 15/@px-unit 24/@px-unit;
    }
    .slider-container{
        position: relative;
    }
    .btnContainer{
        float: right;
        button:nth-child(1) {
            margin-right: 10/@px-unit;
        }
    }
    .time-ruler-wrapper {
        // height: 64/@px-unit;
        padding-top: 50/@px-unit;
        background-color: #F0F2F5;
        // 时间尺的样式
        .timeplan-ruler {
            display: flex;
            align-items: flex-end;
            height: 14/@px-unit;
            position: relative;
            font-size: 12/@px-unit;
            .ruler-section {
                flex: 1;
            }
            div{
                display: inline-block;
                height: 5/@px-unit;
                border-left: 1/@px-unit solid #555;
            }
            div:last-child {
                border-right: 1/@px-unit solid #555;
                .ruler-text{
                    margin-left: 0/@px-unit;
                }
                
            }
            .ruler-text{
                position: absolute;
                bottom: 15/@px-unit;
                margin-left: -5/@px-unit;
                white-space: nowrap;
                font: 11/@px-unit/1 sans-serif; 
            }
            .hour{
                height: 10/@px-unit;
            }
        }
    }

    .main-container {
        box-sizing: border-box;
        margin: 0;
        overflow: hidden;
        height: 60/@px-unit;
        &:not(:last-of-type) {
            border-bottom: none;
            .label {
                border-bottom: 1/@px-unit solid #e8e8e8;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .behind-operator-area {
                border-bottom: 1/@px-unit solid #e8e8e8;
            }
        }
        .label{
            float: left;
            height: 100%;
            line-height: 59/@px-unit;
            padding-left: 10/@px-unit;
            padding-right: 10/@px-unit;
            text-align: right;
        }
        .slider-container {
            display: flex;
            flex-wrap: wrap;
            float: left;
            height: 100%;
        }
        .behind-operator-area {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            height: 100%;
        }
        .copyBtn{
            >span{
                width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                word-wrap: normal;
            }
            display: inline-block;
            width: 100%;
            overflow: hidden;
            flex-shrink: 1;
            text-overflow: ellipsis;
            white-space: nowrap;
            word-wrap: normal;
            vertical-align: middle;
        }
    .dayplan {
        position: relative;
        width: 100%;
        border: 1/@px-unit solid #484C55; 
        //background-color: #fff;
        cursor: pointer;
        box-sizing: border-box;
        // &:first-of-type {
        //     border-top: none;
        // }
        &:last-of-type {
            border-bottom: none;
        }
        &:not(:last-of-type) {
            border-bottom: none;
        }
        .handle{
            position: absolute;
            width: 4/@px-unit;
            height: 80%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 999;
            // margin-top: -3/@px-unit;
            // margin-left: -7/@px-unit;
            background-color: #00A335;
            border: solid 1/@px-unit #00A335;
            // border-radius: 50%;
            -webkit-box-shadow: 0;
            box-shadow: 0;
            cursor: w-resize;
            -webkit-transition: border-color .3s,-webkit-box-shadow .6s,-webkit-transform .3s cubic-bezier(.18, .89, .32, 1.28);
            transition: border-color .3s,-webkit-box-shadow .6s,-webkit-transform .3s cubic-bezier(.18, .89, .32, 1.28);
            transition: border-color .3s,box-shadow .6s,transform .3s cubic-bezier(.18, .89, .32, 1.28);
            transition: border-color .3s,box-shadow .6s,transform .3s cubic-bezier(.18, .89, .32, 1.28),-webkit-box-shadow .6s,-webkit-transform .3s cubic-bezier(.18, .89, .32, 1.28);
            &:hover {
                border-color: #24B553;
            }
        }
        .track-wrapper {
            position: absolute;
            height: 100%;
            min-width: 2px;
        }
        .track{
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
            &.green  {
                background:@schedule-successColor;
            }
            &.yellow  {
                background:@schedule-warnColor;
            }
            &.red {
                background:@schedule-errorColor;
            }
			&.red-1 {
                background-color: #f54117;
            }
            &.green-2 {
                background-color: rgba(24,144,255,0.3);
            }
            &.green-3 {
                background-color: #03aeac;
            }
            &.orange-1 {
                background-color: #ff7e16;
            }
            &.orange-2 {
                background-color: #fcac15;
            }
            &.orange-3 {
                background-color: #bc7c00;
            }
            &.blue-1 {
                background-color: rgba(24,144,255,0.3);
            }
            &.blue-2 {
                background-color: #2238c7;
            }
            &.purple-1 {
                background-color: #ac0dce;
            }
            &.purple-2 {
                background-color: #6e52fe;
            }
            &.customcolor {
                z-index: 5;
            }
        }
        .track-selected {
            z-index: 2;
            &.customcolor {
                z-index: 5;
            }
        }

        .handler-wrapper {
            position: absolute;
            pointer-events: none;
            border: 1/@px-unit solid #00A335;
            width: 100%;
            height: 100%;
            z-index: 998;
        }
        :focus {
            outline: none;
        }
    }
    .grid-wrapper {
        display: flex;
        flex-wrap: nowrap;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        z-index: 2;
        pointer-events: none;
        .slider-grid {
            height: 100%;
            flex: 1;
            border-right: 1/@px-unit solid #484C55;
            &:last-of-type {
                border-right: none;
            }
        }
    }
}
    .day-component-wrapper {
        position: relative;
        border: 1/@px-unit solid @schedule-dividerColor;
        .draw-rectangle {
            position: absolute;
            pointer-events: none;
            background-color: transparent;
            box-sizing: border-box;
            border: 1/@px-unit dashed #1890ff;
            z-index: 9999;
            width: 0;
            height: 0;
            left: 0;
            top: 0;
        }
        .vertical-ruler-mask {
            position: absolute;
            pointer-events: none;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            .mask-main-container {
                height: 100%;
            }
            .mask-main-content {
                position: relative;
                height: 100%;
                .cursor-icon {
                    position: absolute;
                    top: 0;
                    transform: translate(-48%, -100%);
                }
                .vertical-ruler {
                    height: 100%;
                    position: absolute;
                    border-left: 1/@px-unit solid #f7772c;
                }
                .ruler-time-string {
                    height: 32/@px-unit;
                    line-height: 32/@px-unit;
                    position: absolute;
                    font-size: 12/@px-unit;
                    color: #8c8c8c;
                    bottom: 0;
                    transform: translate(-50%, 100%);
                }
            }
        }
    }
    //事件类型头部的样式
    .header{
        // height: 50/@px-unit;
        line-height: 50/@px-unit;
        margin-bottom: 16/@px-unit;
        overflow: hidden;
        // margin-bottom: 20/@px-unit;
        // width: 880/@px-unit;
        .status-container{
            // margin-bottom: 20/@px-unit;
            // display: flex;
            float: left;
            .status-header {
                float: left;
                padding-right: 8/@px-unit;
            }
            .status-wrapper {
                float: left;
                padding-right: 10/@px-unit;
            }
            .compact-status-wrapper {
                float: left;
                cursor: pointer;
                padding-right: 10/@px-unit;
            }
            .compact-status-wrapper-selected {
                background-color: rgb(238, 238, 238);
            }
            .circle {
                content: '';
                height: 10/@px-unit;
                width: 10/@px-unit;
                display: inline-block;
                border-radius: 5/@px-unit;
                margin:0 10/@px-unit;
                &.green  {
                    background:@schedule-successColor;
                }
                &.yellow  {
                    background:@schedule-warnColor;
                }
                &.red {
                    background:@schedule-errorColor;
                }
            }
            p {
                display: inline;
            }
        }
        .button-container{
            float: right
        }
    }
    .customcolor {
        background-color: rgba(24,144,255,0.3);
        text-align: center;
        line-height: 59px;
    }
}

.timeSchedule-drawer{
    button:nth-child(1) {
        margin-right: 20/@px-unit;
    }
    .ant-drawer-body{
        .btnContainer{
            margin-top: 40/@px-unit;
            // text-align: right;
        }
    }
}
.timeSchedule-modal {
    .ant-modal-body {
        max-width: 100%;
    }
    .timeSchedule-checkboxGroup-wrapper {
        .ant-checkbox-wrapper {
            height: 32/@px-unit;
            padding: 4/@px-unit 4/@px-unit 4/@px-unit 0;
        }
        .ant-checkbox-wrapper + .ant-checkbox-wrapper {
            margin-left: 0;
        }
    }
}

.red-1-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #f54117;
}
.green-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: @schedule-successColor;
}
.green-2-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #0a9c02;
}
.green-3-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #03aeac;
}

.orange-1-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #ff7e16;
}
.orange-2-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #fcac15;
}
.orange-3-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #bc7c00;
}

.blue-1-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #1890ff;
}

.blue-2-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #2238c7;
}

.purple-1-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #ac0dce;
}

.purple-2-options {
    display: inline-block;
    width: 12/@px-unit;
    height: 12/@px-unit;
    margin-right: 5/@px-unit;
    border-radius: 2/@px-unit;
    background-color: #6e52fe;
}
.modalOptions-header {
    margin-bottom: 10/@px-unit;
}
.modalOptions-badge-container {
    float: left;
    margin-left: 3/@px-unit;
    margin-right: 3/@px-unit;
}
.schedule-copy-popover {
    .ant-popover-content {
        width: 324/@px-unit;
        .ant-checkbox-wrapper {
            margin-left: 0;
            margin-top: 6/@px-unit;
            margin-bottom: 6/@px-unit;
        }
    }
    .timeSchedule-checkboxGroup-wrapper{
        .check-all {
            margin-bottom: 6/@px-unit;
        }
    }
    .popover-footer {
        display: flex;
        flex-direction: row-reverse;
        margin-top: 18/@px-unit;
        .apply-button {
            margin-left: 8/@px-unit;
        }
    }
}
.track-time-hover-popover {
    .ant-popover-inner-content {
        padding: 0;
        color:  #fff;
    }
    .time-hover-content {
        box-sizing: border-box;
        padding: 12/@px-unit 16/@px-unit 12/@px-unit 16/@px-unit;
    }
    
}
.track-time-popover {
    color: @font-color;
    .ant-time-picker ~ a {
        color: inherit;
        cursor: initial;
    }
    .ant-popover-inner-content {
        padding: 0/@px-unit;
    }
    .ant-time-picker-panel-addon {
        display: flex;
        flex-direction: row-reverse;
    }
    a {
        margin-left: 8/@px-unit;
        margin-right: 8/@px-unit;
    }
    .time-popover-content {
        display: flex;
        align-items: center;
        padding: 0;
        .confirm-icon {
            color: @font-color;
            margin-left: 14/@px-unit;
            font-size: 24/@px-unit;
            cursor: pointer;
        }
        .delete-icon {
            color: @font-color;
            margin-left: 8/@px-unit;
            font-size: 24/@px-unit;
            cursor: pointer;
        }
        .confirm-icon, .delete-icon {
            &:hover {
                color: #40A9FF;
            }
            &:active {
                color: #096DD9;
            }
        }
    }
    .start-timer-picker, .end-timer-picker {
        .ant-time-picker-panel-combobox {
            display: flex;
        }
    }
    .ant-popover-content .ant-popover-inner-content {
        overflow: visible;
        padding: 10px;
    }
    .methodLabel {
        display: inline-block;
        width: 108px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: middle;
    }
    .time-popover-actions {
        display: flex;
        justify-content: flex-end;
    }
    .labelText-wrapper {
        overflow: visible;
    }
}
._CardGroup_ {
    height: 475px;
    .add-group, .delete-group {
        cursor: pointer;
        .icons{
            &:nth-child(1){
               vertical-align: -4px !important;
            }
        }
    }
    .add-group {
        margin-right: 20px;
        .icons{
            &:nth-child(1):hover{
                color: #1890ff
            }
        }
    }
    .delete-group {
        .icons{
            &:nth-child(1):hover{
                color: #D9001B
            }
        }
    }
    .add-group:hover {
        color:#1890ff
    }
    .delete-group:hover {
        color:#D9001B
    }
    .reader_name{
        width: 80%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .delete-text {
        cursor: pointer;
        color: #1890ff;
    }
}
.custom-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    .ant-empty-footer {
        margin-top: 0;
        color: #e1e1e1;
    }
}
.empty-add-wrap {
    width: 100%;
    margin-top: 8px;
    text-align: center;
}
.custom-menu-box {
    max-height: 280px;
    overflow-y: auto;
    .custom-menu {
        width: auto;
        max-width: 240px;
        .ant-menu-submenu, .ant-menu-item, .ant-menu-submenu-title {
            height: 32px;
            line-height: 32px;
        }
       
    }

}
.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.ec808195.png");
        background-repeat: no-repeat;
        background-position: center;
        border: 1px solid #484C55;
        border-radius: 2px;
        box-sizing: border-box;
        vertical-align: top;
        text-align: center;
        cursor: pointer;
        outline: none;
        &:hover{
          border: 1px solid #24B553;
          
        }
        .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: #00A335;
        }
      }
      .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{