/*
Author: 酷乐网络
Author QQ：7206876
Author 微信：uumitu
Author URL: http://www.kuleu.com
*/
@charset "utf-8";
/*==========css reset==========*/
.category-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.category-button {
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #00aaff;
    background-color: #ffffff;
    color: #00aaff;
    margin: 0 5px;
}
.category-button.active {
    background-color: #00aaff;
    color: #ffffff;
}
.results-container {
    width: 100%;
    margin: auto;
}
.result-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #ccc;
}
.result-rank {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-right: 15px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
}
.result-link {
    flex: 1;
    font-size: 14px;
    text-decoration: none;
    color: #333;
}
.result-link:hover {
    text-decoration: none;
}
.view-button {
    padding: 5px 10px;
    background-color: #00aaff;
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
}