.lh-condition-side {
    width: 100%;
    border-radius: 3px;
    cursor: pointer;

    //头部内容区
    .lh-condition-side-head {
        height: 32px;
        width: 100%;
        position: relative;
        .lh-condition-side-head-right {
            float: right;
            .lh-condition-more {
                float: left;
                display: inline-block;
                background-color: white;
                color: @color_b1;
                font-size: 14px;
                cursor: pointer;
                border: 1px solid @color_b5;
                height: 32px;
                line-height: 30px;
                width: 32px;
                margin-left: 8px;
                text-align: center;
                border-radius: 2px;
                i {
                    font-size: 20px;
                }
                &:hover {
                    border-color:@color_theme5;
                    color:@color_theme5;
                }
            }
            .lh-button {
                float: left;
                margin-left: 16px;
            }
        }
        //lh-condition-head里包含的item
        .lh-condition-item {
            height: 32px;
            padding-top: 0;
            & + .lh-condition-item{
                margin-left: 8px;
            }
            .lh-condition-text {
                margin-right: 11px;
                float: left;
                margin-top: 5px;
                color: #858585;
            }
        }
    }
    .lh-condition-side-wapper {
        position: fixed;
        z-index: 2009;
        top: 0;
        right: -600px;
        transition: 0.6s right ease;
        background-color: white;
        width: 600px;
        height: 100vh;
        overflow: hidden;
        padding: 46px 0 32px 40px;
        .lh-condition-title {
            height: 40px;
            line-height: 32px;
            font-size: 18px;
            color:@color_b1;
            font-weight: bold;
            margin-bottom: 27px;
            position: relative;
            padding-left: 48px;
            .title-img-wapper {
                position: absolute;
                left: 0;
                top: 0;
                vertical-align: middle;
                display: inline-block;
                width: 32px;
                height: 32px;
                img {
                    height: 100%;
                    width: 100%;
                }
            }
        }
        //大内容区
        .lh-condition-content {
            height: -moz-calc(~"100% - 100px");
            height: -webkit-calc(~"100% - 100px");
            height: calc(~"100% - 100px");
            overflow-y:auto;
            overflow-x: hidden;
            width: 100%;
            //条件选择器中放置其他组件
            .lh-select {
                position: static;
            }

            .lh-tree {
                position: static;
            }
            .lh-select-ul{
                padding-top: 0;
                margin-left: -8px;
                li{
                    margin-top: 2px !important;
                    margin-bottom: 6px !important;
                }
            }

            //lh-condition-content 里包含的item
            .lh-condition-item {
                width: 100%;
                min-height: 40px;
                height: auto;
                position: relative;
                padding-top: 4px;
                padding-bottom: 0px;
                margin-bottom: 0px;
                padding-left: 100px;
                .lh-condition-text {
                    position: absolute;
                    left: 0;
                    margin-top: 4px;
                    width: 80px;
                    display: inline-block;
                    word-wrap:break-word;
                    font-weight: 400;
                    line-height: 19px;
                }
                .lh-input {
                    width: 100%;
                    input {
                        border: none;
                        float: left;
                        margin-top: 5px;
                        color: #353535;
                        height: 17px;
                        line-height: 17px;
                        padding: 0;
                    }
                }

                .lh-input .lh-input__prefix {
                    left: 0;
                    line-height: 28px;
                }

                .lh-select-tile .lh-select-ul li {
                    margin-top: 3px;
                    margin-bottom: 0;
                }

                & .lh-input.lh-input--prefix .lh-input__prefix {
                    display: none;
                }
                & .lh-date-picker .lh-date-picker__suffix {
                    display: none !important;
                }
                & .lh-date-picker .lh-input .lh-input-cornInput {
                    height:30px;
                    line-height: 30px;
                    padding-left: 0;
                    padding-right: 0;
                    margin-top: 0;
                }
                .lh-input.is-prefix .lh-input-cornInput{
                    padding-left: 20px;
                }

            }
        }
        //下部内容区
        .lh-condition-footer {
            width: 100%;
            position: absolute;
            bottom:32px;
        }
    }
    .lh-condition-side-background {
        display: none;
        background-color: @color_b4;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }
    &.active {
        border-radius: 0;
        background-color: rgba(57, 64, 76, 0);
        cursor: auto;
        .lh-condition-side-wapper {
            right: 0;
        }
        .lh-condition-side-background {
            display: block;
            z-index: 2008;
        }
    }
}