goodsItem_4.less 1.37 KB
@charset "UTF-8";

.goods-item-4-box {
	background-color: #F6F6F6;
	padding: 20px 0;
	width: 690px;
	height: 100px;
	border-radius: 12px;
	.main-box {
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
		width: 650px;
		height: 100%;
		.left-box {
			display: flex;
			justify-content: flex-start;
			align-items: center;
			.img-box {
				display: flex;
				justify-content: center;
				align-items: center;
				width: 100px;
				height: 100px;
				border-radius: 8px;
				overflow: hidden;
				.img {
					display: block;
					width: 100px;
				}
			}
			.content-box {
				display: flex;
				flex-direction: column;
				justify-content: space-around;
				margin-left: 30px;
				width: 430px;
				height: 100%;
				.title {
					color: #333333;
					font-size: 32px;
					white-space: nowrap;
					text-overflow: ellipsis;
					overflow: hidden;
				}
				.price {
					color: #FC1541;
					font-size: 30px;
					white-space: nowrap;
					text-overflow: ellipsis;
					overflow: hidden;
				}
			}
		}
		.right-box {
			display: flex;
			justify-content: center;
			align-items: center;
			.buttons-box {
				.btn {
					width: 80px;
					height: 80px;
					&.btn-primary {
						display: flex;
						justify-content: center;
						align-items: center;
						background-color: #F5A623;
						color: #FFFFFF;
						font-size: 26px;
						border-radius: 50%;
					}
				}
			}
		}
	}
}