/* 搜索热词列表样式 */
.hot-search-keywords {
    display: flex;
    gap: 20px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 10px;
    margin: 20px auto;
    width: 1242px;
    box-sizing: border-box;
    flex-direction: column;
    flex-wrap: wrap;
    border: 1px solid rgba(190, 218, 255, 1);
    height:154px;
    position: relative;
}

.hot-search-keywords .hot-search-close{
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}
.hot-search-keywords .hot-search-close img {
    width: 100%;
    height: 100%;
    display: block;
}
.hot-search-keywords .hot-search-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(29, 33, 41, 1);
    cursor: pointer;
    flex: 0 0 calc(20% - 16px);
}

.hot-search-keywords .hot-search-item:hover .search-text {
    color: rgba(78, 110, 242, 1);
    text-decoration: underline;
}

.hot-search-keywords .search-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
    margin-right:4px;
}

.hot-search-keywords .search-number.orange {
    background: linear-gradient(180deg, #FFCC6C 0%, #FFDC9A 100%);
    color:#fff;
}

.hot-search-keywords .search-number.blue {
    background: linear-gradient(180deg, #6CA7FF 0%, #C0DEFF 100%);
    color:#fff;
}

.hot-search-keywords .search-number.green {
    background: linear-gradient(180deg, #FFAE6C 0%, #FFD9C1 100%);

    color:#fff;
}

.hot-search-keywords .search-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width:100px;
}
