44 lines
629 B
Plaintext
44 lines
629 B
Plaintext
|
|
page {
|
|
background-color: #f4f8fb;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 20rpx;
|
|
}
|
|
.food-list {
|
|
width: 100%;
|
|
}
|
|
.food-item {
|
|
background-color: #fff;
|
|
display: flex;
|
|
margin-bottom: 20rpx;
|
|
padding: 10px;
|
|
}
|
|
.food-img {
|
|
width: 250rpx;
|
|
height: 200rpx;
|
|
margin-right: 20rpx;
|
|
border-radius: 10px;
|
|
}
|
|
.food-info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
.food-title {
|
|
font-size: 38rpx;
|
|
font-weight: 700;
|
|
}
|
|
.food-sale {
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
}
|
|
.food-lifting,
|
|
.food-favorable{
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
}
|