75 lines
1021 B
CSS
75 lines
1021 B
CSS
.swiper-slide {
|
|
display: flex;
|
|
}
|
|
|
|
.banner img {
|
|
width: 100%;
|
|
}
|
|
|
|
.food_title {
|
|
padding-top: 16px;
|
|
|
|
padding-left: 16px;
|
|
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #999;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.food_list {
|
|
padding-top: 16px;
|
|
padding-left: 16px;
|
|
display: flex;
|
|
margin-bottom: 10px;
|
|
height: 42px;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.food_list li {
|
|
position: relative;
|
|
font-size: 16px;
|
|
margin-right: 20px;
|
|
color: #666;
|
|
}
|
|
|
|
.active {
|
|
font-size: 30px !important;
|
|
font-weight: 600 !important;
|
|
color: #333 !important;
|
|
line-height: 36px !important;
|
|
}
|
|
|
|
.active:after {
|
|
content: " ";
|
|
height: 6px;
|
|
border-radius: 3px;
|
|
width: 100%;
|
|
left: 0px;
|
|
bottom: -7px;
|
|
background: #ff9d9b;
|
|
position: absolute;
|
|
z-index: 50;
|
|
display: block;
|
|
}
|
|
|
|
|
|
.menu {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
flex-wrap: wrap;
|
|
}
|
|
.menu li {
|
|
width: 20%;
|
|
text-align: center;
|
|
}
|
|
.menu img {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
.menu p {
|
|
font-size:12px;
|
|
color: #666;
|
|
}
|