goodsItem_6.less 1.72 KB
@charset "UTF-8";

.goods-item-6-box {
	background-color: transparent;
	width: 100%;
	height: auto;
	.main-box {
		display: flex;
		justify-content: space-between;
		margin: 0 auto;
		width: 690px;
		height: auto;
		.img-box {
			display: flex;
			justify-content: center;
			align-items: center;
			background-color: transparent;
			// margin: 0 auto;
			width: 160px;
			height: 160px;
			border-radius: 8px;
			overflow: hidden;
			.simg {
				display: block;
                width: 160px;
				height: 160px;
			}
		}
		.content-box {
			display: flex;
			flex-direction: column;
			justify-content: space-between;
			align-items: center;
			width: 500px;
			height: auto;
			.top-box {
				width: 500px;
				.title {
					color: #4A4A4A;
					font-size: 28px;
					font-weight: 400;
					white-space: nowrap;
					text-overflow: ellipsis;
					overflow: hidden;
					/deep/ .k {
						color: #FC1541;
					}
				}
			}
			.bottom-box {
				width: 500px;
				.price-box {
					display: flex;
					justify-content: flex-start;
					align-items: baseline;
					// margin-top: 20px;
					.symbol {
						color: #FC1541;
						font-size: 26px;
					}
					.integer {
						color: #FC1541;
						font-size: 34px;
					}
					.decimal {
						color: #FC1541;
						font-size: 26px;
					}
				}
				.shop-box {
					display: flex;
					justify-content: flex-start;
					align-items: center;
					margin-top: 10px;
					.shop-name {
						color: #9B9B9B;
						font-size: 24px;
						max-width: 400px;
						white-space: nowrap;
						text-overflow: ellipsis;
						overflow: hidden;
					}
					.buttons-box {
						.btn {
							&.btn-primary {
								margin-left: 20px;
								color: #4A4A4A;
								font-size: 24px;
							}
						}
					}
				}
			}
		}
	}
}