.search-box {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.search-box .search-input {
    flex:1;
    padding: 0.5rem;
    border: 1px solid #eee;
    outline: none;
}

.search-box a {
    border: 1px solid #eee;
    border-radius: 5px;
    background-color: #f5f5f5;
}
.search-box a:hover {
    background-color: #eee;
    color: #333;
}

.col3-wrapper {
    color:#7f8c8d;
}

.tags {
    display: flex;
    flex-direction: row;
    
    gap: 1rem;
}

.tags .tags-list {
    flex:1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.tags .tags-list a {
    color: #333;
}

.tags .tags-list a:hover {
    color: #0a8be1;
}

.tags .tags-list a.active {
    color: #0a8be1;
    font-weight: bold;
}


table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;

}
table th {
    color: #000;
    text-align: left;
    font-weight: bold;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
table tbody td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    
}
table tbody td a {
    color: #333;  
}
table tbody td a:hover {
    color: #0a8be1;
}

span.level {
    font-size: 15px;
    padding: 2px 8px;
    border-radius: 5px;
    background-color: #f0f0f0;
    margin-right: 10px;
    color:#7f8c8d;
}
/* 鼠标悬停在表格行上时改变背景颜色 */
table tbody tr {
    transition: background-color 0.3s ease;
    
}

table tbody tr:hover {
    background-color: #f5f5f5;
    
}

table span.status {
    font-size: 14px;
    padding: 2px 8px;
    text-align: center;
    line-height: 20px;
}
table span.status.ac {
    display: inline-block;
    width: 45px;
    text-align: center;
}
table span.status.wa {
    display: inline-block;
    width: 45px;
    text-align: center;
}   
span.status.not-submit {
    font-weight: bold;
    color:#333;
}





