body{
    /* background-color: #000911; */
    background-color: cornflowerblue;
    background-image: url("https://bing.img.run/1920x1080.php");
    background-attachment:fixed;
    background-size: cover;
    height: 100vh;
    width: 100vw;
}
.desktop{
    height: 100%;
    width: 100%;
    background-color:rgba(0, 8, 9,0);
}


.window{
    position: absolute;
    display: flex;
    position:fixed;
    flex-flow: column;
    top: 10%;
    left: 20%;
    height: 80%;
    width: 60%;
    border-radius: 12px;
    border-width: 2px;
    border-color: aliceblue;
    overflow: hidden;
    
    /* background-color: rgba(255, 255, 255, 0.6); */
    backdrop-filter: blur(30px);
    box-shadow: 4px 2px 15px 3px #555555bb;

}

.window .title_bar{
    display: flex;
    background-color: #f9f9f999;
    width: 100%;
    height: 28px;
    user-select: none;
}
.window .title_bar:active{
    cursor: move;
}
.window .title_bar .buttons{
    position:absolute;
    display: flex;
    left: 6px;
    width: 100px;
    padding-left: 0px;
} 

/* 虚拟按钮 */
.window .title_bar .buttons .virbut {
    background-color: aqua;
    width: 15px;
    height: 15px;
    margin-top: 8px;
    margin-left: 8px;
    border-radius: 50%;
    border-width: 2px;
    cursor: not-allowed;
}
.window .title_bar .window_title{
    text-align: center;
    flex: 1;
} 
.window .text{
    width: 100%;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 15px;
    flex: 1;
    color: #fff;
    /* background-color: #000911; */
    background-color: rgba(0, 8, 9,0.85);
    /* overflow: scroll; */
    overflow-y: scroll;
    cursor: text;
}

.text::selection{
    color: black;
    background-color: #ffffff;
}
.text pre{
    margin: 0px;
    padding: 0px;

}

.text .INFO{
    color: #34ff34;
}
.text .INFO::selection{
    background-color: #34ff34;
    color: #000;
}

.text .LINK:link{
    color: #fff;
}
.text .LINK:visited{
    color: #fff;
}

.window .bottom{
    height: 16px;
    background-color: #f9f9f9bb;
}
