﻿

/* Start 未订阅 提示框 */
.unsubscribed_promptBox {
    display: block;
    z-index: 99;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.unsubscribed_promptBox_div {
    position: fixed;
    left: 50%;
    top: 50%;
    max-width: 350px;
    width: 90%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%) scale;
    background-color: #fff;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 10px 25px 10px;
}

    .unsubscribed_promptBox_div h1 {
        color: #b33633;
        text-decoration: underline;
        font-size: 24px;
        font-weight: 600;
        padding: 15px 0;
        cursor: pointer;
        margin: 0;
    }

    .unsubscribed_promptBox_div h2 {
        font-size: 18px;
        color: #681e1e;
        text-decoration: underline;
        font-weight: 600;
        cursor: pointer;
        padding-top: 10px;
        margin: 0;
    }

    .unsubscribed_promptBox_div ul {
        width: 100%;
        text-align: center;
        padding-top: 15px;
    }

        .unsubscribed_promptBox_div ul span {
            width: 100%;
            font-size: 15px;
            display: block;
        }
/* End 提示框 */
