1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- page {
- background-color: #FCB2A8;
- }
- .bg {
- width: 100%;
- }
- .list {
- width: calc(100% - 48rpx);
- margin: 0 auto 20rpx;
- display: flex;
- flex-direction: column;
- background-color: #fff;
- border-radius: 16rpx;
- padding: 20rpx 18rpx;
- box-sizing: border-box;
- }
- .product-item {
- width: 100%;
- display: flex;
- align-items: center;
- margin-bottom: 20rpx;
- padding-right: 12rpx;
- box-sizing: border-box;
- }
- .product-item:last-child {
- margin-bottom: 0;
- }
- .product-item-img {
- width: 174rpx;
- height: 174rpx;
- border-radius: 12rpx;
- margin-right: 18rpx;
- }
- .product-item-column {
- flex: 1;
- height: 174rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- .product-name {
- width: 100%;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- color: #202020;
- font-weight: bold;
- font-size: 26rpx;
- }
- .product-item-row-between {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .product-item-btn {
- width: 40rpx;
- height: 40rpx;
- line-height: 40rpx;
- border-radius: initial;
- }
- .product-item-btn image {
- width: 100%;
- height: 100%;
- }
- .product-item-price {
- color: #F2501A;
- font-size: 28rpx;
- }
- .product-item-price>text {
- color: #919191;
- font-size: 24rpx;
- margin-left: 6rpx;
- text-decoration: line-through;
- }
|