::-webkit-scrollbar {
    /* 不显示滚动条 */
    display: none;
}

body {
    /* 去除浏览器默认的边距和内边距。 */
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    background-size: cover;
    background-repeat: no-repeat;
}

.background {
    /* position: fixed; */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    height: 100%;
    width: 100%;
    z-index: 1;
}

.Search {
    padding-top: 10%;
    height: 100%;
    width: 100%;
    z-index: 5;
    border: none;
    position: relative;
    animation: fadeIn 0.7s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.Chats {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    border: none;
    border-radius: 8px;
    width: 30%;
    border: none;
    left: 20px;
    top: 20px;
    bottom: 75px;
    overflow-y: auto;
    z-index: 999;
    padding: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
}

.Apps-Container {
    position: fixed;
    bottom: 75px;
    left: 0;
    right: 0;
    display: flex;
    z-index: 999;
    justify-content: center;
}

.Apps {
    display: flex;
    width: fit-content;
    /* flexbox布局 */
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
    backdrop-filter: blur(6px);
    background: rgba(232, 255, 255, 0.6);
    border: none;
    border-radius: 8px;
    padding: 10px;
    overflow-y: auto;
    height: 45px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
    /* animation: shadow-pulse 12s infinite; */
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.Marks {
    backdrop-filter: blur(6px);
    background: rgba(232, 255, 255, 0.8);
    position: absolute;
    border: none;
    border-radius: 8px;
    /* top: 50%; */
    left: 3.5px;
    right: 3.5px;
    bottom: 58px;
    padding: 20px;
    overflow-y: auto;
    z-index: 999;
    height: 350px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
    /* animation: slideUp 0.3s ease-out forwards; */
}

.winbox {
    backdrop-filter: blur(8px);
    /* background: rgba(232, 255, 255, 0.85); */
    background: transparent;
    border-radius: 8px;
}

.wb-control {
    filter: invert(0.7);
}

.wb-header {
    height: 10px;
    background-color: transparent;
}

.wb-body {
    top: 0px;
    border-radius: 8px;
    background: transparent;
}

.wb-title {
    color: rgb(65, 65, 65);
}

.center {
    display: flex;
    /* flexbox布局 */
    align-items: center;
    /* 垂直居中 */
    justify-content: center;
    /* 水平居中 */
}

.taskbar {
    position: absolute;
    bottom: 1.5px;
    backdrop-filter: blur(6px);
    background: rgba(232, 255, 255, 0.6);
    margin: 2px;
    left: 1.5px;
    right: 1.5px;
    height: 50px;
    border-radius: 8px;
    z-index: 999;
    animation: slideUp 0.7s ease-out forwards;
    opacity: 0;
    /* 初始状态 */
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.shortcut {
    float: left;
    width: 35px;
    height: 35px;
    margin: 3px;
    padding: 3px;
    border-radius: 8px;
}

.shortcut:hover {
    background: rgba(255, 255, 255, 0.2);
}

.shortcut_active {
    background: rgba(255, 255, 255, 0.4);
}

.shortcut_active:hover {
    background: rgba(255, 255, 255, 0.4);
}

.shortcut_focus {
    background: rgba(255, 255, 255, 0.7);
}

.shortcut_focus:hover {
    background: rgba(255, 255, 255, 0.7);
}

.icon_out {
    width: 35px;
    height: 35px;
}

.icon {
    border-radius: 5px;
    width: 35px;
    height: 35px;
    /* margin-top: 8px;
    margin-left: 7px;
    margin-bottom: 2px; */
    background-size: contain;
    background-repeat: no-repeat;
}

.name {
    text-align: center;
    width: 100px;
    height: 33px;
    font-size: 15px;
    overflow: hidden;
    color: rgba(4, 22, 0, 0.925);
}