33 lines
555 B
CSS
33 lines
555 B
CSS
.footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
background: #fff;
|
|
height: 2.45rem;
|
|
box-shadow: 0rem -0.1rem 0.2rem 0rem
|
|
rgba(217, 217, 217, 0.5);
|
|
font-size: 0;
|
|
}
|
|
.footer ul {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
padding-top: 0.3rem;
|
|
}
|
|
.footer ul li {
|
|
text-align: center;
|
|
}
|
|
.footer ul li img {
|
|
width: 0.975rem;
|
|
height: 0.975rem;
|
|
margin-bottom: 0.175rem;
|
|
}
|
|
.footer ul li p{
|
|
font-size: 0.5rem;
|
|
color: #4d4d4d;
|
|
}
|
|
.footer ul li:nth-child(3) img{
|
|
width: 1.9rem;
|
|
height: 1.9rem;
|
|
} |