/*--------------------------------------------------
    猜你喜欢
----------------------------------------------------*/
.guess-like-cars-new {
    width: 100%;
}

.guess-like-cars-new .section-title {
    font-size: 24px;
    color: black;
    line-height: 36px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.guess-like-cars-new .section-title .iconfont{
    margin-left: 5px;
    font-size: 12px;
}

.guess-like-cars-new .section-title .refresh-btn {
    display: flex;
    align-items: center;
    height: 100%;
    color: #888888;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    transition: color 250ms;
}

.guess-like-cars-new .section-title .refresh-btn:hover {
    color: #444444;
}

.guess-like-cars-new .guess-car-list{
    display: flex;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
}

.guess-like-cars-new .guess-car-item {
    position: relative;
    flex: 1;
    background: #FFFFFF;
    box-shadow: 0 1px 15px -6px rgba(218, 218, 218, .52);
    border-radius: 12px;
    border: 1px solid #efefef;
    overflow: hidden;
    min-width: 143px;
}

.guess-like-cars-new .guess-car-item:hover .car-item-image img {
    transform: scale(1.15);
}

.guess-car-item + .guess-car-item {
    margin-left: 16px;
}

.guess-like-cars-new .car-item-image {
    width: 100%;
    height: 0;
    padding-bottom: 66.67%;
    position: relative;
    overflow: hidden;
}

.guess-like-cars-new .car-brand {
    color: black;
    font-size: 18px;
    text-align: center;
    padding: 20px 15px 10px 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.guess-like-cars-new .car-price {
    color: #FF5F1D;
    font-size: 16px;
    text-align: center;
}

.guess-like-cars-new .c-btn {
    padding: 20px 0 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guess-like-cars-new .c-btn .btn-click {
    background: rgba(0, 76, 255, 0.1);
    width: 160px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    border-radius: 100px;
    color: #004CFF;
    cursor: pointer;
    transition: background 250ms, color 250ms;
}

.guess-like-cars-new .c-btn .btn-click:hover {
    background: linear-gradient(134deg, #0083FF 0%, #004CFF 100%);
    color: white;
}

.guess-like-cars-new .car-item-image img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-in-out;
}

@media screen and (max-width: 991px) {
    .guess-like-cars-new .section-title {
        font-size: 18px;
        color: black;
        line-height: 28px;
        margin-bottom: 10px;
    }

    .guess-like-cars-new .section-title .iconfont{
        font-size: 12px;
        transform: scale(.8);
    }

    .guess-like-cars-new .section-title .refresh-btn {
        font-size: 12px;
    }

    .guess-like-cars-new .car-brand {
        padding: 10px 10px 5px 10px;
        font-size: 14px;
    }

    .guess-like-cars-new .car-price {
        font-size: 14px;
    }

    .guess-like-cars-new .c-btn {
        padding: 10px 0 15px 0;
    }

    .guess-like-cars-new .c-btn .btn-click {
        width: 83px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }
}