/* 搜索框 */
.search-box {
    padding: 10px;
    border-bottom: 1px solid #262626;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.search-box .seach-ipt {
    flex: 1;
    background-color: #26262a;
    height: 42px;
    border-radius: 4px;
    padding: 0 10px;
    border: none;
    outline: none;
    color: #fff;
}

.search-box .search-btn {
    padding: 0 20px;
    background-color: #f79003;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
    height: 42px;
    line-height: 42px;
    border-radius: 4px;
}

/* 热门 */
.page-title {
    margin: 10px 10px 20px 10px;
    font-size: 20px;
    font-weight: bold;
}

.words {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.words .word {
    width: 50%;
    color: #c9c9c9;
    font-size: 15px;
    margin-bottom: 15px;
}

.tags {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}

.tags .tag {
    background-color: #1b1b1b;
    border-radius: 4px;
    padding: 4px 6px;
    color: #f79003;
    font-size: 14px;
    margin: 0 10px 10px 0;
}