.base-install-notice-inner {
    -webkit-animation: base-show .3s;
    animation: base-show .3s;
}
.base-install-notice-outer,
.base-install-notice-inner {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.base-install-notice-outer {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    font-size: 1rem;
}
.base-install-notice-inner {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1050px;
    min-height: 377px;
    padding: 50px 0 0;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
}
.base-install-content {
    font-size: 15px;
    margin-bottom: 25px;
}
.base-install-notice-inner .base-install-prompt {
    max-width: 550px;
}
.base-install-content .base-install-title {
    margin: 0 0 20px;
    color: #595959;
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}
.base-install-content p {
    color: #545454;
    font-size: 1.125em;
    font-weight: 300;
    margin-bottom: 25px;
    margin-top: 0;
}
.base-install-notice-inner .base-go-pro-bosa-prompt {
    margin-top: 40px;
    background-color: #f2f2f2;
    display: grid;
    color: #454545;
    grid-template-columns: auto 122px;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}
@media only screen and (max-width: 768px) {
    .base-install-notice-inner .base-go-pro-bosa-prompt {
        grid-template-columns: auto;
        text-align: center;
    }
}
.base-install-notice-inner .base-go-pro-bosa-prompt .bosa-notice-title {
    font-size: 22px;
    font-weight: 500;
    color: #595959;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 5px;
}
.base-install-notice-inner .base-go-pro-bosa-prompt p {
    margin: 0;
    font-size: 15px;
}
.base-install-notice-inner .base-go-pro-bosa-prompt .bosa-title {
    color: #F66C5E;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    box-shadow: none;
}
.base-install-notice-inner .base-go-pro-bosa-prompt .bosa-title:hover {
    background-color: transparent;
    color: #CE4334;
}
.base-install-notice-inner .base-go-pro-bosa-prompt .btn-primary {
    text-decoration: none;
    border-radius: 30px;
    background-color: #F66C5E;
    color: #FFFFFF;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    margin: 0px;
    text-align: center;
    line-height: 1.4;
    box-shadow: none;
    -webkit-transition: background-color 0.4s;
    -ms-transition: background-color 0.4s;
    transition: background-color 0.4s;
}
.base-install-notice-inner .base-go-pro-bosa-prompt .btn-primary:hover {
    background-color: #CE4334;
}
.swal2-content ol li,
.swal2-content ol label {
    font-size: 16px;
}
.swal2-content ol #installBase {
    margin-top: 3px;
}
.base-install-notice-inner .base-install-success {
    display: none;
    margin: auto;
}
.base-install-btn .button {
    background-color: #5530af;
    border: 0;
    border-radius: 30px;
    color: #fff;
    font-size: 1.0625em;
    margin: 0;
    padding: .625em 2em;
    box-shadow: none;
    font-weight: 500;
    line-height: 1.4em;
}
.base-install-btn .close-base-button {
    color: #b1b1b1;
    text-decoration: underline;
    font-size: 13px;
    margin-top: 10px;
    display: inline-block;
    cursor: pointer;
}
.base-install-btn .button:hover {
    background: #C72E2E;
    color: #ffffff;
    box-shadow: none;
}
.base-install-btn .close-base-button:hover {
    color: #C72E2E;
}
@keyframes base-show {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7);
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}