59 lines
892 B
CSS
59 lines
892 B
CSS
|
|
.relative {
|
|
position: relative;
|
|
}
|
|
.absolute {
|
|
position: absolute;
|
|
}
|
|
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
font-size: 0;
|
|
background: #fff;
|
|
border-top: 1px solid #fff;
|
|
z-index: 999;
|
|
}
|
|
.footer li {
|
|
text-align: center;
|
|
}
|
|
.footer img {
|
|
width: 0.6rem;
|
|
height: 0.6rem;
|
|
}
|
|
.footer p {
|
|
width: 0.6rem;
|
|
height: 0.6rem;
|
|
font-size: 0.2rem;
|
|
zoom: 0.9;
|
|
margin-left: 0.06rem;
|
|
}
|
|
.footer_active p{
|
|
color: #f15a4f;
|
|
}
|
|
.title {
|
|
font-size: 0.6rem;
|
|
font-weight: 600;
|
|
color: #333;
|
|
line-height: 0.72rem;
|
|
margin-bottom: 0.32rem;
|
|
}
|
|
.padding_16 {
|
|
padding-left: 0.32rem;
|
|
padding-right: 0.32rem;
|
|
}
|
|
|
|
.margin_16 {
|
|
margin-left: 0.32rem;
|
|
margin-right: 0.32rem;
|
|
}
|
|
|
|
.clear_size {
|
|
font-size: 0;
|
|
} |