12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- page {
- background: #f6f6f6;
- }
- .top {
- background: #ffffff;
- }
- .list {
- margin: 30rpx;
- padding: 30rpx;
- background: #ffffff;
- border-radius: 20rpx;
- }
- .list .list-box {
- display: flex;
- }
- .list .list-box .list-image {
- width: 240rpx;
- height: 180rpx;
- margin-right: 20rpx;
- }
- .list .list-box .meal {
- width: 58%;
- }
- .list .list-box .meal .meal-name {
- height: 90rpx;
- width: 100%;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .list .list-box .meal .meal-price {
- color: red;
- font-size: 28rpx;
- margin-top: 10rpx;
- }
- .list .list-box .meal .meal-time {
- font-size: 30rpx;
- margin-top: 10rpx;
- }
- .list .operation {
- display: flex;
- justify-content: flex-end;
- margin-top: 20rpx;
- }
- .list .operation .operation-delete {
- border-radius: 20rpx;
- border: 1rpx solid #BBBBBB;
- padding: 20rpx 50rpx;
- margin-left: 20rpx;
- }
|