2025-04-05 22:17:52 +08:00
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.main-layout {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2025-04-20 17:24:21 +08:00
|
|
|
#fullscreen-button {
|
|
|
|
padding-right: 10px;
|
|
|
|
padding-top: 10px;
|
2025-04-05 22:17:52 +08:00
|
|
|
}
|
|
|
|
|
2025-04-20 17:24:21 +08:00
|
|
|
.left-panel {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2025-04-05 22:17:52 +08:00
|
|
|
}
|
|
|
|
|
2025-04-20 17:24:21 +08:00
|
|
|
.right-panel {
|
|
|
|
width: 100%;
|
|
|
|
display: none;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2025-04-05 22:17:52 +08:00
|
|
|
}
|
|
|
|
|
2025-04-20 17:24:21 +08:00
|
|
|
.switch_button {
|
|
|
|
position: fixed;
|
|
|
|
left: 50%;
|
|
|
|
right: auto;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
bottom: 120px;
|
|
|
|
z-index: 1;
|
2025-04-22 20:37:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.swbutton {
|
2025-04-22 20:50:19 +08:00
|
|
|
color: black;
|
|
|
|
background-color: rgba(200, 200, 200, 0.2);
|
2025-04-22 20:37:03 +08:00
|
|
|
backdrop-filter: blur(8px);
|
|
|
|
-webkit-backdrop-filter: blur(8px);
|
|
|
|
transition: background-color 1s ease, transform 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.swbutton:hover {
|
|
|
|
background-color: rgba(200, 200, 200, 0.3);
|
|
|
|
transform: scale(1.02); /* 可选的小缩放效果 */
|
|
|
|
}
|
2025-04-05 22:17:52 +08:00
|
|
|
}
|