@import "mixins/utils";
.aos-form {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    .aos-form-item {
        display: block;
        margin: 0px;
        margin-bottom: 14px;
        padding: 0px;
        position: relative;
        // float: left;
        // label {
        //     overflow: hidden;
        //     text-overflow: ellipsis;
        //     white-space: nowrap;
        // }
        .el-form-item__label {
            font-size: 12px;
            color: #666666;
        }
        .el-input--small {
            width: 250px;
        }
        .aos-form-input-append {
            display: inline;
        }
        .aos-uploader{
            .el-upload-dragger{
                width: 250px;
                display: flex;
                justify-content: center;
                align-items: center;
                >img{
                    width: 100%;
                    height: 100%;
                }
            }
        }
        .aos-uploader-img {
            width: 250px;
            height: 180px;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px dashed #d9d9d9;
            border-radius: 4px;
            > img{
                width: 100%;
                height: 100%;
            }
        }
        .el-input-number--small {
            width: auto;
        }
        .el-input-number {
            .el-input__inner {
                text-align: left;
            }
        }
        .aos-upload {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            .el-upload-list {
                width: 100%;
                .el-upload-list__item:first-child {
                    margin-top: 5px;
                }
            }
        }
        &__description{
            color: #BBBBBB;
            font-size: 11px;
            cursor: pointer;
            position: absolute;
            top: -5px;
            z-index: 10;
            left: 115px;
            line-height: 1;
        }
        .el-form-item__content {
            .el-input-group__append {
                padding: 0 8px;
            }
        }
    }
    
    .aos-form-input-text {
        font-size: 12px;
        color: #000000;
    }
    .el-checkbox__label {
        font-size: 12px;
    }
    .el-radio__label {
        font-size: 12px;
    }
}

.clearfix {
    @include utils-clearfix;
}

.is-success {
    border-color: #DCDFE6;
}

.aos-form-footer {
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
}
.aos-form-footer-center {
    width: 100%;
    margin-top: 16px;
    display: flex;
    justify-content: center;
}
@media only screen and (min-width: 1200px) {
    .aos-form-item {
        width: 33.33%;
    }
}


/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {
    .aos-form-item {
        width: 50%;
    }
}


/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
    .aos-form-item {
        width: 100%;
    }
}


/* Small Devices, Tablets */

@media only screen and (max-width: 768px) {
    .aos-form-item {
        width: 100%;
    }
}


/* Extra Small Devices, Phones */

@media only screen and (max-width: 480px) {
    .aos-form-item {
        width: 100%;
    }
}


/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {
    .aos-form-item {
        width: 100%;
    }
}

// 暂时不用
.aos-form-item-hlg {
    width: 20%;
}

.aos-form-item-lg {
    width: 25%;
}
.aos-form-item-xl {
    width: 33.33%;
}

.aos-form-item-md {
    width: 50%;
}

.aos-form-item-sm {
    width: 100%;
}
