.floating-window {
    position: fixed;
    z-index: 9999;
    width: 35%;
    height: 20%;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50px;
    left: 50px;
    background-color: #fff;
    display: block; /* 默认显示 */
    transition: opacity 0.3s ease;
    background-color: white;
    border-radius:10px;
    overflow-y: auto;
}
.floating-window.hidden {
    display: none; /* 隐藏时使用 */
}
.title-content {
    position: relative;
    display: flex;
    justify-content: center;
    background-color: deepskyblue;
    border-radius:10px 10px 0px 0px;
    height: 25px;
    align-items: center;
    font-weight: bold;
    font-size: 20px;

}

.floating-window .title-content {
    flex-grow: 1; /* 让.title-content扩展以填满可用空间 */
}

.title-content .close-button {
    position: absolute;
    top: 0px;
    right: 5px;
    cursor: pointer;
    color: #444444;
    font-size: 1.0em;
}

.window-content {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px ;
    padding-right: 15px;
    gap: 15px;
    overflow-y: auto;


}
a:hover {
    color: #00B83F;
}