html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/*顶部导航栏*/
.top-bar {
    padding: 10px 40px;
}
.time{
    font-size: 28px;
    font-weight: bold;
}
.week{
    font-size: 14px;
    font-weight: normal;
}
.date{
    font-size: 19px;
    font-weight: normal;
}
.setting{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}
.setting img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.search-img{
    height: 40px;
}
.search-img img{
    height: 100%;
    background: #ffffff;
    border-radius: 5px 0 0 5px;
}
.search-img-item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.search-img-item img{
    width: 32px;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* 定义滚动条滑块的样式 */
::-webkit-scrollbar-thumb {
    background: #ff7d00; /* 滑块颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

/* 定义滚动条滑块的hover效果 */
::-webkit-scrollbar-thumb:hover {
    background: #f40; /* 鼠标移入滑块变红 */
}

/* 定义滚动条轨道的样式 */
::-webkit-scrollbar-track {
    border-radius: 10px; /* 轨道圆角 */
    background-color: #e3e3e3; /* 轨道颜色 */
}
.glass{
    background-color: rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    -webkit-box-shadow: rgba(142, 142, 142, 0.19) 0px 6px 15px 0px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    color: rgba(255, 255, 255, 0.75);
}
.pinned{
    height: 350px;
    width: 95%;
    margin: 20px auto 0;
    padding: 10px 40px;

}
#pinned i{
    margin-right: 10px;
}

.content{
    width: 95%;
    margin: 20px auto 0;
    height: 60vh;
}
.content-left{
    width: 49%;
    height: 100%;
    float: left;
}
.content-right{
    width: 49%;
    height: 100%;
    float: right;
}
.link-list{
    font-size: 20px;
    color: #ffffff !important;
}
.link-list:hover{
    background-color: #ffffff!important;
    color: #000000!important;
}
.link-list img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.link-list small{
    font-size: 12px;
    margin-left: 10px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.menu-list-a{
    display: block;
    overflow-y: scroll;
    max-height: 450px;

}