.cookie-banner-box {
    display: flex;
    width: 100%;
    padding: 20px 20px;
    background-color: #C0C4CC;

}


.cookie-banner-box .cookies-summary p {
    margin: 0;
    padding: 0;
}
.cookie-banner-box .cookie-bt-box {
    display: flex;
    /* width: 30%; */
    justify-content: space-evenly;
}

.cookie-banner-box .cookie-bt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
}

.cookie-banner-box .cookie-bt-reject {
    background-color: #909399;
    cursor: pointer;
}

.cookie-banner-box .cookie-bt-ok {
    background-color: var(--blue);
    color: var(--white);
    cursor: pointer;
}

.cookie-banner-box .cookie-bt-ok:hover {
    background-color: var(--corporate-dark-blue);
    color: var(--white);
}

.cookie-icon {}

.cookie-icon-row {
    display: flex;
    justify-content: flex-end;
    /* width: 100%; */
    margin-bottom: 10px;
}

.cookie-icon-box {
    width: 44px;
    height: 44px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;

    border-radius: 50%;
    color: var(--yn-form-submit-color);
    background-color: var(--blue);
    border: none;
    /* 无边框 */

}

.cookie-footer {
    position: fixed;
    right: 0;
    bottom: -54px;
    z-index: 999;
}

@media (max-width: 768px) {
    .cookie-banner-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-box .cookies-summary {
        width: 100%;
    }

    .cookie-banner-box .cookie-bt-box {
        display: flex;
        width: 100%;
        justify-content: space-evenly;
        padding: 10px 0;
    }

    .cookie-footer .cookie-icon {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .cookie-banner-box {
        display: flex;
    }

    .cookie-banner-box .cookies-summary {
        width: 70%;
    }

    .cookie-banner-box .cookie-bt-box {
        display: flex;
        width: 30%;
        justify-content: space-evenly;
    }
}
