17 lines
355 B
CSS
Raw Permalink Normal View History

2025-03-03 18:59:57 +08:00
/* 页脚样式 - 默认 (电脑设备) */
footer {
background-color: rgba(51, 51, 51, 0.5); /* 半透明背景 */
color: white;
2025-03-26 13:52:39 +08:00
display: flex;
justify-content: center;
align-items: center;
2025-03-26 21:08:26 +08:00
padding: 0px;
2025-03-03 18:59:57 +08:00
position: fixed;
2025-03-26 14:09:25 +08:00
left: 0;
right: 0;
bottom: 0;
2025-03-03 18:59:57 +08:00
font-size: 14px;
max-height: 30px;
2025-03-26 13:52:39 +08:00
z-index: 2000;
2025-03-03 18:59:57 +08:00
}