You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.2 KiB
64 lines
1.2 KiB
#mealList {
|
|
.item {
|
|
display: flex;
|
|
/*align-items: center;*/
|
|
padding: 10px 15px;
|
|
margin-bottom: 5px;
|
|
background: #ffffff;
|
|
overflow: hidden;
|
|
.left {
|
|
width: 85px;
|
|
image {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
.img-box {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 10px;
|
|
box-sizing: border-box;
|
|
justify-content: space-between;
|
|
image {
|
|
width: 47%;
|
|
}
|
|
}
|
|
}
|
|
.right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
font-size: 14px;
|
|
margin-left: 12px;
|
|
flex: 1;
|
|
|
|
.price-box {
|
|
.old-price {
|
|
font-size: 12px;
|
|
color: #9B9B9B;
|
|
text-decoration: line-through;
|
|
}
|
|
.meal-price {
|
|
display: flex;
|
|
align-items: flex-end;
|
|
.price {
|
|
flex: 1;
|
|
color: #FF2741;
|
|
span {
|
|
color: #4A4A4A;
|
|
|
|
}
|
|
}
|
|
.btn {
|
|
color: #ffffff;
|
|
background: #EA4448;
|
|
padding: 5px 10px;
|
|
border-radius: 4px;
|
|
i {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|