.amcDialog-cover {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.amcDialog-white-cover {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.amcDialog-confirm {
    width: 80%;
    background-color: #fff;
    border-radius: 2px;
    -webkit-animation: zoomIn .15s ease forwards;
    animation: zoomIn .15s ease forwards;
    max-width: 350px;
}

.amcDialog-title {
    text-align: center;
    padding: 15px 20px 5px;
    color: #444;
    word-break: break-all;
    font-size: 14px;
}

.amcDialog-content {
    text-align: left;
    padding: 0 20px;
    font-size: 14px;
    color: #888;
    line-height: 20px;
    word-break: break-all;
}

.amcDialog-footer {
    position: relative;
    line-height: 40px;
    margin-top: 14px;
    display: flex;
}

.amcDialog-footer:after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid #D9D9D9;
}

.amcDialog-btn {
    position: relative;
    text-align: center;
    font-size: 16px;
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 2px;
}

.amcDialog-footer>.amcDialog-btn:not(:last-child):after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    height: 100%;
    border-right: 1px solid #D9D9D9;
}

.amcDialog-primary {
    color: #f03456;
}

.amcDialog-cancel {
    color: #353535;
}

.amcDialog-checkbox {
    display: block;
    text-align: left;
    padding: 10px 20px 0;
    font-size: 14px;
    line-height: 30px;
    word-break: break-all;
}


.amcDialog-checkbox > input[type='checkbox']{
    vertical-align: text-bottom;
    width: 14px;
    height: 14px;
}

.amcDialog-checkbox a,
.amcDialog-checkbox a:visited,
.amcDialog-checkbox a:active {
    color: #586C94;
    text-decoration: none;
}

.amcDialog-toast {
    min-width: 130px;
    max-width: 80%;
    padding-top: 20px;
    background: rgba(40, 40, 40, 0.8);
    text-align: center;
    border-radius: 3px;
    color: #FFF;
    z-index: 1501;
    -webkit-animation: zoomIn .06s ease forwards;
    animation: zoomIn .06s ease forwards;
    font-size: 14px;
    padding: 10px 15px 10px 15px;
    line-height: 1.6;
    word-break: break-all;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
