12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .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 {
- width: 100%;
- height: 72rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #333333;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .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;
- }
- }
- .price {
- display: flex;
- width: 100%;
- height: 40rpx;
- align-items: center;
- justify-content: space-between;
- margin-top: 14rpx;
- view {
- font-size: 28rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 550;
- color: #3874F6;
- }
- text {
- font-size: 24rpx;
- color: #888888;
- }
- }
- }
- }
|