_dialog.css 2.29 KB
.yoho-dialog {
    position: fixed;
    padding: 20px;
    top: 50%;
    left: 50%;
    min-height: 130px;
    min-width: 350px;
    background: #f8f8f8;
    z-index: 1001;
    border: 5px solid #5b5c5c;

    .close {
        position: absolute;
        top: 5px;
        right: 5px;
        cursor: pointer;
    }

    .content {
        text-align: center;
    }

    .btns {
        text-align: center;
    }

    .alert-sure {
        background: #000;
        color: #fff;
    }

    .confirm-sure {
        background: #000;
        color: #fff;
    }

    .btn {
        display: inline-block;
        padding: 0 15px;
        height: 26px;
        line-height: 26px;
        text-align: center;
        border: 1px solid #000;
        cursor: pointer;
        margin-left: 10px;

        &:first-child {
            margin-left: 0;
        }
    }

    &.alert-dialog .content,
    &.confirm-dialog .content {
        width: 350px;
        height: auto;
        min-height: 90px;
        overflow: hidden;
        line-height: 20px;
        position: relative;
        padding-top: 40px;
        padding-bottom: 20px;

        p {
            bottom: 25px;
            width: 100%;
            color: #444;
            line-height: 25px;
        }

        div {
            position: absolute;
            top: 0;
            left: 100px;
            padding-top: 30px;
            font-size: 22px;
            font-weight: bold;
            width: 150px;
            height: 30px;
            line-height: 30px;
            margin: 0 auto;

            span {
                background: url(/cart/del.png);
                float: left;
                width: 27px;
                height: 30px;
            }
        }
    }

    &.subcontent-dialog {
        padding: 30px 0;

        .content {
            font-weight: bold;
            margin: 0 auto 30px;
        }

        .sub-content {
            text-align: center;
            font-size: 12px;
            color: #555;
            margin-left: 5px;
            margin-bottom: 5px;
        }

        .btn {
            margin-top: 25px;
            width: 100px;
            font-size: 13px;
            margin-left: 0;
            margin-right: 0;

            &.black {
                background-color: #000;
                color: #fff;
            }
        }
    }
}