.cookie-banner-box {
    display: flex;
    width: 100%;
    padding: 10px 20px;

    background-color: #C0C4CC;

}

.cookie-banner-box .cookies-summary {
    font-size: 14px;
    /* width: 70%; */
}

.cookie-banner-box .cookies-summary p {
    margin: 0;
    padding: 0;
}

.cookie-banner-box .cookies-summary .more-btn {
    font-size: 12px;
    margin-left: 10px;
}

.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(--yn-form-submit-bg-color);
    color: var(--yn-form-submit-color);
    cursor: pointer;
}

.cookie-banner-box .cookie-bt-ok:hover {
    background-color: var(--yn-form-submit-hover-bg-color);
    color: var(--yn-form-submit-hover-color);
}

.cookie-icon {}

.cookie-icon-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 10px;
}

.cookie-icon-box {
    margin-right: 40px;

    width: 44px;
    height: 44px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;

    border-radius: 50%;
    /* 圆形按钮 */
    background-color: var(--yn-red-main);
    /* 背景颜色 */
    color: white;
    /* 字体颜色 */
    border: none;
    /* 无边框 */

}

.cookie-footer {
    position: fixed;
    /* 使用固定定位 */
    right: 0;
    bottom: 0;
    /* 固定在底部 */
    width: 100%;



    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;
    }
}