<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* è®¾ç½®é®ç½©å’Œæç¤ºæ¡†çš„æ&nbsp;·å¼ */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#notification {
    position: fixed;
    top: 50%;
    left: 59%;
    transform: translate(-50%, -50%);
    background-color: #333;
    color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* è®¾ç½®æŒ‰é’®çš„æ&nbsp;·å¼ */
#notification button {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 10px 20px;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 18px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

#notification button:hover {
    background-color: #333;
    color: #fff;
}

#notification button:active {
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

#notification button.link {
    background-color: transparent;
    color: #f9f9f9;
    text-decoration: underline;
    cursor: pointer;
    box-shadow: none;
}

#notification button.link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media screen and (max-width:1100px) {
    #notification {
        width: 95%;
        left: 50%;
    }

}</pre></body></html>