Files
2024-09-27 02:06:13 +08:00

42 lines
655 B
CSS

.clear_size {
font-size: 0;
}
/* footer */
.footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 1rem;
background-color: #000000;
display: flex;
align-items: center;
justify-content: space-around;
}
.footer ul li{
}
.footer li a{
font-size: 0.24rem;
color: #ffffff;
}
.footer .active{
position: relative;
}
.footer .active a{
font-size: 0.3rem;
}
.footer .active::after{
content: "";
position: absolute;
width: 0.51rem;
height: 0.03rem;
background-color: #ffffff;
border-radius: 0.015rem;
bottom: -0.26rem;
left: 50%;
transform: translateX(-50%);
}
/* footer结束 */