82 lines
1.4 KiB
Plaintext
82 lines
1.4 KiB
Plaintext
@import "../_";
|
|
.food_list{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 11px;
|
|
flex-wrap:wrap;
|
|
margin-bottom: 15px;
|
|
}
|
|
.food{
|
|
margin-top: 15px;
|
|
box-shadow: 1px 1px 9px #888888;
|
|
border-radius: 7px;
|
|
width: 170px;
|
|
}
|
|
.food_img{
|
|
position: relative;
|
|
image{
|
|
width: 100%;
|
|
border-top-left-radius: 7px;
|
|
border-top-right-radius: 7px;
|
|
|
|
}
|
|
.content_img_play{
|
|
background: url("../../../static/img/i.png");
|
|
position: absolute;
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
top: 9px;
|
|
right: 8px;
|
|
background-size: 20px 40px;
|
|
}
|
|
|
|
}
|
|
.food_text{
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
padding-bottom: 12px;
|
|
p{
|
|
.ellipsis();
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
padding: 10px 0px 0px 0px;
|
|
}
|
|
}
|
|
.food_icon{
|
|
margin-top: 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.food_icon_lift{
|
|
display: flex;
|
|
align-items: center;
|
|
image{
|
|
width: 18px;
|
|
height: 18px;
|
|
border-radius: 100%;
|
|
}
|
|
span{
|
|
|
|
font-size: 11px;
|
|
color: #666;
|
|
padding-left: 5px;
|
|
}
|
|
}
|
|
.food_icon_right{
|
|
display: flex;
|
|
align-items: center;
|
|
i{
|
|
background: url("../../../static/img/i.png");
|
|
width: 13px;
|
|
height: 10px;
|
|
display: inline-block;
|
|
background-position: -4px -20px;
|
|
background-size: 20px 40px;
|
|
}
|
|
span{
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
} |