/* 操作成功弹出层 */
.tooltip-success {
    padding: 20px 20px;
    width: 300px;
    background: #000;
    border-radius: 4px;
    position: fixed;
    top: 360px;
    left: 50%;
    margin-left: -70px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    opacity: 0.6;
    z-index: 3;
}

/* 操作失败弹出层 */
.tooltip-error {
    padding: 20px 20px;
    width: 300px;
    background: #fd0902;
    border-radius: 4px;
    position: fixed;
    top: 360px;
    left: 50%;
    margin-left: -70px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    opacity: 0.6;
    z-index: 3;
}

.has-error {
    border: 1px solid #a94442;
}

.has-success {
    border: 1px solid #3c763d;
}

label.error {
    position: absolute;
    text-align: left !important;;
    margin-top: 30px;
    color: red;
    width: auto !important;
}