| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 | .product {	display: flex;	width: 100vw;	padding: 20rpx 30rpx;	background: #fff;	border-bottom: 1rpx solid #ddd;	box-sizing: border-box;	overflow: hidden;	.image-box {		font-size: 0;		width: 176rpx;		height: 176rpx;		border-radius: 16rpx;		overflow: hidden;		margin-right: 30rpx;		flex-shrink: 0;		.text {			display: inline-block;			width: 176rpx;			height: 176rpx;			line-height: 172rpx;			font-size: 24rpx;			text-align: center;			color: #666;			border: 1rpx solid #ddd;			border-radius: 16rpx;			box-sizing: border-box;		}	}	.right-box {		width: 480rpx;		.title {			height: 40rpx;			line-height: 40rpx;			font-size: 28rpx;			font-weight: 600;			color: #333333;		}		.type {			height: 34rpx;			line-height: 34rpx;			font-size: 24rpx;			color: #888888;			margin-top: 8rpx;		}		.tags {			display: flex;			height: 32rpx;			margin-top: 8rpx;			width: 100%;			>view {				flex-shrink: 0;				height: 32rpx;				line-height: 32rpx;				padding: 0 10rpx;				font-size: 20rpx;				color: #FFFFFF;				margin-right: 8rpx;				border-radius: 6rpx;			}		}	}}.line-1 {	overflow: hidden;	white-space: nowrap;	text-overflow: ellipsis;	word-break: break-all;}
 |