| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .product-item {
- background-color: #fff;
- box-sizing: border-box;
- border-bottom: 1rpx solid #DDDDDD;
- margin-bottom: 20rpx;
- .product {
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- .mian {
- position: relative;
- display: flex;
- width: 100%;
- box-sizing: border-box;
- .img {
- flex-shrink: 0;
- width: 112rpx;
- height: 112rpx;
- border-radius: 16rpx;
- margin-right: 20rpx;
- overflow: hidden;
- }
- .dec {
- flex: 1;
- width: 0;
- min-height: 128rpx;
- height: 100%;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- .title {
- width: 90%;
- height: 40rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #333333;
- }
- .subfield {
- display: flex;
- margin-top: 8rpx;
- height: 34rpx;
- line-height: 34rpx;
- text {
- display: inline-block;
- width: 48%;
- }
- }
- }
- .delete {
- position: absolute;
- width: 68rpx;
- height: 68rpx;
- line-height: 68rpx;
- right: -30rpx;
- top: -20rpx;
- text-align: center;
- font-size: 32rpx;
- color: #999;
- }
- }
- }
- }
|