.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.column {
    width: 18%;
    padding: 1rem;
    box-sizing: border-box;
    font-size: 1rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    margin: 8px 4px;
}

.column a {
    width: 100%;
}

.column .game-img {
    height: 200px;
}

.column .info {
    display: flex;
    justify-content: space-between;
}

.column .game-basic {
    width: 60%;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-all;
}

.column .info .game-name {
    font-size: 1.4rem;
}

.column .info .game-desc {
    font-size: 1rem;
    color: #585858;
    /* 婧㈠嚭涓夎鏄剧ず灏忓渾鐐� */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /* 鏄剧ず鐨勮鏁� */
    overflow: hidden;
    text-overflow: ellipsis;
}

.rating {
    display: flex;
    justify-content: space-between;
    padding: 20px 10px;
}

.rating-count {
    font-size: 1.6rem;
    padding-right: 15px;
}

.rating-stars img {
    width: 20px;
    height: 20px;
}

.play {
    margin: auto;
    position: relative;
    z-index: 1;
    text-transform: capitalize;
    font-weight: 700;
    line-height: 32px;
    color: #fff !important;
    background: #0dc7f9;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
}

/* .play:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    background: var(--primary);
} */

@media (max-width: 990px) {
    .columns {
        padding: 0;
    }

    .column {
        width: 46%;
    }

    .column .info {
        display: block;
    }

    .column .info>div {
        width: 100%;
    }

    .rating {
        display: flex;
        justify-content: space-between;
        /* padding: 10px; */
    }

    .game-other {
        display: flex;
    }
}