goodsItem_1.less 1.14 KB
@charset "UTF-8";

.goods-item-1-box {
	background-color: transparent;
	width: 200px;
	height: auto;
	.img-box {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 200px;
		height: 200px;
		.simg {
			display: block;
            width: 200px;
            height: 200px;
		}
	}
	.title {
		display: -webkit-box;
		margin-top: 20px;
		color: #666666;
		font-size: 28px;
		min-height: 64px;
        -webkit-line-clamp: 2;
        /*! autoprefixer: off */
        -webkit-box-orient: vertical;
        /*! autoprefixer: on */
		text-overflow: ellipsis;
		overflow: hidden;
	}
	.price-box {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-top: 20px;
		.price {
			color: #FF725C;
			font-size: 35px;
		}
		.add-cart {
			width: 50px;
			height: 50px;
			.add-img {
				display: block;
				width: 50px;
				height: 50px;
			}
		}
	}
	&.pid-2, &.pid-4 {	// 小号样式
		width: 170px;
		.img-box {
			width: 170px;
			height: 170px;
			.simg {
				display: block;
                width: 170px;
                height: 170px;
			}
		}
		.title {
			font-size: 24px;
		}
		.price-box {
			margin-top: 10px;
		}
	}
}