.app-share-page {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #EEF6FF;
    .content-container {
        width: 360px;
        height: 320px;
        background-color: #fff;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        img {
            width: 55px;
        }
        span.apply {
            height: 98px;
            padding-top: 30px;
            padding-bottom: 40px;
            font-size: 20px;
            font-weight: 500;
            color: #333333;
            line-height: 28px;
        }
    }
    button {
        background-color: #fff;
        color: #55A0FE;
        width: 240px;
        height: 31px;
        border: 1px solid #f3eeee;
        margin: 6px;
        border-radius: 3px;
        font-weight: 400;
        font-size: 12px;
        color: #666666;
        &:hover {
            cursor: pointer;
        }
    }
    button.apply-button {
        background-color: #57A3FD;
        color: #fff;
    }
}