.list-box{
    width:660px;
}

/*侧边栏样式*/
.menu-bar{
    width:330px;
}

.menu{
    position: sticky;
    top: 20px;
    padding: 1.5em;
    border-radius:1em;
    width: 100%;
    background: var(--bs-white);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

ol p{
    margin-right: 8px;
    margin-bottom: 0;
}

.search-box{
    border: none;
    outline: none;
    text-decoration: none;
    width: 100%;
    height: 2.75em;
    border-bottom: 3px solid #0060e1;
    border-radius: 1em;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.search-box:focus{
    border-bottom: 3px solid #dc3545;
}

/*卡片*/
.article-list {
    width: 90%;
    margin: auto;
}

.article-card{
    background: white top repeat;
    -moz-background-size:100%;
    background-size:100%;
    box-shadow: 0 0 0.75em rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #0060e1;
    border-radius: 1em;
    margin-bottom: 1em;
}

.article-title-column{
    display: flex;
    align-items: center;
    margin-bottom: 0.75em;
}

.article-card-text{
    border-radius: 0 0 1em 1em;
    padding: 0.75em;
}

.article-card-title-picture{
    overflow: hidden;
}

.article-card-title-picture img{
    border-radius: 1em;
}

.article-card-column{
    font-size: 0.8em;
    border-radius: 0.5em;
    background: #0060e1;
    color:var(--bs-white);
    margin-left: 1em;
    padding: 0.3em 0.75em;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
}

.article-card-column:hover{
    background: #dc3545;
    color: var(--bs-white);
}

.article-title{
    color:var(--bs-dark);
}

.article-title:hover{
    color:#0060e1;
}

.article-abstract{
    color: gray;
}

.tags{
    color:var(--bs-white);
    font-size: 0.5em;
    background: #0060e1;
    padding: 0.5em 1em;
    margin-right: 0;
    border-radius: 0.75em;
    box-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
}

.tags:hover{
    color: var(--bs-white);
    background: #dc3545;
}

.article-info{
    font-size: 0.8em;
    margin-bottom: 0;
}
/*页码样式*/
.my-btn{
    padding: 0.2em 0.6em 0.3em;
    font-weight: 650;
    border-radius: 0.5em;
    color: var(--bs-white);
    background: #0060e1;
    margin-left: 0.2em;
    margin-right: 0.2em;
}

.my-btn:hover{
    color: var(--bs-white);
}

.this-page{
    background: #0060e1;
}

.next-page-btn{
    background: grey;
}