.SearchView {
    background: #FFF;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: calc(~'100% - 100px');

    .search {
        display: flex;
        height: 45px;
        background: #FFF;
        align-items: center;
        border-bottom: 1PX solid #DDD;

        .am-search {
            background: #FFF;

            .am-search-synthetic-ph-icon {
                display: none;
            }
            .am-search-input {
                background: #F0F0F5;
                font-size: 14px;
                color: #CCCCCC;

                input {
                    background: #F0F0F5;
                    line-height: 28px;
                    padding-left: 5px;
                }
            }
        }

        .leftBtn {
            margin: auto;
            font-size: 16px;
        }

        .SearchBar {
            width: calc(~'100% - 32px');
            margin: 0 auto;
            background: #F0F0F5;
            border-radius: 28px;
            display: flex;

            :nth-child(2) {
                flex: 1;
            }

            .guanbi-icon {
                margin-top: 5px;
                margin-right: 10px;
                margin-right: 20px;
            }

            .customer-filter {
                text-align: center;
                font-size: 14px;
                display: flex;
                align-items: center;
                color: #333333;
                margin-left: 13px;
            }
            
            .date-input {
                height: 28px;
                line-height: 28px;
                font-size: 15px;
          
            }
            .date-input-placeholder {
                color: #CCC;
            }
            .CusSearchBar_search {
                flex: 1;

                >form {
                    height: 100%;
                    .am-search-input .am-search-synthetic-ph {
                        text-align: left;
                    }
                }

                

                .am-search {
                    background: transparent;
                }
                
            }
        }

    }

    .search-filter-group {
        height: 43px;
        display: flex;

        .filter-item {
            width: 33.3%;
            text-align: center;
            line-height: 43px;
            font-size: 14px;
            color: #333333;
            flex: 1;
        }
        .disabled {
            color: #C8C8CD;
        }
    }

    .search-filter-content {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        background: rgba(0, 0, 0, .6);

        .content {
            background: #FFF;

            .header {
                display: flex;
                flex-wrap: wrap;
                justify-content: space-around;
                padding-top: 10px;

                .content-title {
                    font-size: 13px;
                    color: #999999;
                    height: 43px;
                    line-height: 43px;
                }

                .content-item {
                    width: 77px;
                    height: 28px;
                    font-size: 13px;
                    color: #2D2D2D;
                    background: #F5F5F5;
                    border-radius: 4px;
                    margin-bottom: 10px;
                    display: inline-block;
                    text-align: center;
                    line-height: 28px;
                }

                .other-item {
                    height: 0;
                }

                .content-item-actived {
                    background: rgba(54, 136, 255, 0.06);
                    border: 1px solid #3688FF;
                    border-radius: 4px;
                    color: #3688FF;
                }
            }
        }
    }

    .dateRangeBar {
        display: flex;
        padding: 11px 16px;
        height: 26px;
        border-top: 2PX solid #E6E6EB;
        .dateRangeBar-date {
            width: 147px;
            border-bottom: 1PX solid #C8C8CD;
            font-size: 12px;
            color: #C8C8CD;
            flex: 1;
            line-height: 26px;
        }
        
        .dateRangeBar-text {
            line-height: 26px;
            font-size: 13px;
            color: #2D2D2D;
            width: 49px;
            text-align: center;
        }
        .dateValuable {
            color: #000;
        }
    }

    .search-listView {
        // position: absolute;
        // top: 88px;
        // bottom: 0;
        // left: 0;
        // right: 0;
        flex: 1;
        overflow: hidden;
        height: calc(~'100% - 88px');
    }

}