.tag-clound-title {
    height: 3.2rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 1rem;
    background: #10151d;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.tag-clound-title span {
    color: #00ffac;
}

.tag-clound-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-clound-list a {
    height: 1.7rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 0.8rem;
    color: #fff;
    border-radius: 0.85rem;
    border: 1px solid #535353;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

@media (max-width:959px) {
    .tag-clound-title {
        height: 4.25rem;
        padding: 0;
        margin: 0 -1.25rem 2rem -1.25rem;
        border-radius: 0;
        justify-content: center;
        font-size: 1.4rem;
    }

    .tag-clound-list {
        gap: 1rem;
    }

    .tag-clound-list a {
        height: 2.5rem;
        padding: 0 1.3rem;
        font-size: 1.2rem;
        color: #fff;
        border-radius: 1.25rem;
        border: 1px solid #535353;
    }
}