13 lines
295 B
CSS
13 lines
295 B
CSS
/* 页脚样式 - 默认 (电脑设备) */
|
|
footer {
|
|
background-color: rgba(51, 51, 51, 0.5); /* 半透明背景 */
|
|
color: white;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: fixed;
|
|
font-size: 14px;
|
|
max-height: 30px;
|
|
z-index: 2000;
|
|
}
|