.mc-cascader {
    position: relative;
    height: 36px;
    font-size: 14px;
    width: 200px;
    &:hover {
        .mc-cascader_inner {
            border-color: $blue;
        }
    }
    &:after {
        position: absolute;
        top: 11px;
        right: 10px;
        font-family: "icon" !important;
        font-size: 14px;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\E74D";
        color: $icon;
    }
    .close {
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 10;
        background-color: #fff;
    }
    .mc-cascader_inner {
        @extend %transition-all;
        border-radius: 2px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: #fff;
        background-image: none;
        border: 1px solid $line;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        color: $gray;
        display: block;
        height: 36px;
        line-height: 1;
        outline: none;
        padding: 3px 35px 3px 10px;
        width: 100%;
    }
    .mc-cascader_box {
        background-color: #fff;
        position: absolute;
        margin: 0 -1px;
        top: auto;
        left: 1px;
        z-index: 10;
        border: 1px solid $line;
        .mc-cascader_menu {
            @include float;
            font-size: 14px;
            overflow: auto;
            height: 181px;
            margin-left: -1px;
            li {
                line-height: 30px;
                cursor: pointer;
                position: relative;
                text-indent: 10px;
                &.active {
                    background-color: $blue;
                    color: #fff;
                    &.submenu:after {
                        color: #fff;
                    }
                }
                &.submenu:after {
                    position: absolute;
                    top: 0;
                    right: 10px;
                    font-family: "icon" !important;
                    font-size: 12px;
                    font-style: normal;
                    -webkit-font-smoothing: antialiased;
                    -moz-osx-font-smoothing: grayscale;
                    content: "\e74f";
                    color: $icon;
                }
            }
            &:first-child {
                margin-left: 0;
            }
        }
        .mc-cascader_menu+.mc-cascader_menu {
            border-left: 1px solid $line;
        }
    }
}