VehicleList.less 1.9 KB
.container {
    border-top: 1rpx solid #f5f5f5;

    .car_title {
        padding: 32rpx;
        box-sizing: border-box;
        width: 100%;
        display: flex;
        align-items: center;

        image {
            width: 80rpx;
            height: 80rpx;
        }

        .baoma {
            margin-left: 20rpx;
            font-size: 36rpx;
            line-height: 50rpx;
            color: #06121E
        }
    }

    .bm_cate {
        width: 100%;

        .cate_1 {
            width: 100%;
            height: 60rpx;
            background-color: #f5f5f5;
            padding: 0 30rpx;

            .cate_1_name {
                font-size: 28rpx;
                line-height: 60rpx;
                color: #06121E;
            }
        }

        .car_list {
            padding: 32rpx;
            box-sizing: border-box;
            display: flex;
            align-items: center;

            .left_img {
                width: 270rpx;
                height: 208rpx;

                image {
                    width: 100%;
                }
            }

            .car_right {
                flex: 1;
                padding-left: 20rpx;
                height: 208rpx;
                display: flex;
                justify-content: space-between;
                flex-direction: column;


                .car_text {
                    font-size: 32rpx;
                    line-height: 44rpx;
                }

                .car_price {
                    .to_price {
                        color: #E8370F;
                        font-size: 28rpx;
                        line-height: 40rpx;
                    }
                }
            }

        }
    }

    .noCar {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 384rpx;
        height: 200rpx;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ccc;
    }
}