    /* 开放原子相关样式 */
    .ok_openatom > div {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .ok_openatom > a > img {
        height: 32px;
        margin-bottom: 30px;
    }

    /* 下面是cookies用户隐私协议的样式 */
    #question_feedback {
        position: fixed;
        right: 20px;
        bottom: 110px;
        width: 140px;
        height: 140px;
        cursor: pointer;
        z-index: 999;
        transition: all .3s;
        display: flex;
    }

    .cookie-notice {
        position: fixed;
        bottom: 0;
        z-index: 100;
        width: 100%;
    }

    .cookie-notice-content {
        background-color: rgba(255, 255, 255, .9);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        box-shadow: #fdfdfe;
    }

    .cookie-notice-close {
        position: absolute;
        top: 12px;
        cursor: pointer;
        right: 12px
    }

    .cookie-notice-wrap {
        padding: 24px;
        display: flex;
        justify-content: space-around;
        position: relative;
        flex-wrap: wrap;
    }

    .cookie-notice-left {
        width: 58%;
    }

    .cookie-notice-right {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        padding-top: 15px;
    }

    .cookie-notice-right>button {
        /* margin-top: 15px; */
        border-radius: 12px;
        padding: 5px 20px;
        background-color: #fff;
        border: 1px solid #103dad;
        color: #103dad;
        font-size: 13px;
        white-space: nowrap;

    }

    .cookie-notice-right>button:hover {
        background-color: #103dad;
        color: #fff;
    }

    .cookie-notice-right>button:focus {
        outline: none;
    }

    /* CSS 样式 */
    .dialog-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 101
    }

    .cookie-modal {
        width: 800px;
        background-color: #fff;
        border: 2px solid #fff;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        position: relative;
    }

    .cookie-modal-title {
        font-size: 24px;
        text-align: center;
    }

    .cookie-modal-title-2 {
        font-size: 21px;
        line-height: 22px;
        display: flex;
        align-items: flex-end;
        margin: 15px 0;
    }

    .cookie-modal-title-2-tip {
        font-size: 14px;
        color: rgba(0, 0, 0, .6);
        padding-left: 24px;
        line-height: 22px;
    }

    .switch {
        position: relative;
        width: 50px;
        height: 24px;
        background-color: #ccc;
        border-radius: 12px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .switch::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background-color: #fff;
        border-radius: 50%;
        transition: transform 0.3s;
    }

    .switch.active {
        background-color: #4caf50;
    }

    .switch.active::after {
        transform: translateX(26px);
    }

    .switch-label {
        margin-left: 10px;
        font-size: 14px;
        vertical-align: middle;
    }

    .cookie-modal p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #333;
    }

    .cookie-modal .toggle-section {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .cookie-modal .toggle-section span {
        font-weight: bold;
    }

    .cookie-modal-button {
        display: flex;
        justify-content: center;
    }

    .cookie-modal-button button {
        padding: 5px 20px;
        font-size: 14px;
        border: none;
        border-radius: 100vh;
        cursor: pointer;
        margin: 0 10px;
        background-color: #fff;
        border: 1px solid #103dad;
        color: #103dad;
        outline: none;
        white-space: nowrap;
    }

    .cookie-modal-button button:hover {
        background-color: #103dad;
        color: #fff;
    }

    .cookie-modal .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        cursor: pointer;
        color: #999;
    }


    /* 分辨率小于1500的时候改变大小 */
    @media screen and (max-width: 1500px) {
        #question_feedback {
            right: 10px;
            bottom: 97px;
            width: 80px;
            height: 80px;
        }
    }

    /* 分辨率小于800的时候隐藏 */
    @media screen and (max-width: 800px) {
        
        .ok_openatom > div {
            font-size: 12px;
        }

        #question_feedback,
        #contact_xk {
            display: none;
        }

        .cookie-notice-left {
            width: 100%;
        }
    }