2025-04-05 22:17:52 +08:00
|
|
|
body {
|
2025-03-27 15:45:47 +08:00
|
|
|
margin: 0;
|
2025-04-05 22:17:52 +08:00
|
|
|
font-family: "Arial", sans-serif;
|
|
|
|
}
|
2025-03-29 21:58:38 +08:00
|
|
|
|
2025-04-05 22:17:52 +08:00
|
|
|
.main-layout {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
height: calc(100vh - 100px);
|
|
|
|
padding-bottom: 100px;
|
2025-03-29 21:58:38 +08:00
|
|
|
}
|
|
|
|
|
2025-04-05 22:17:52 +08:00
|
|
|
.left-panel, .right-panel {
|
|
|
|
width: 50%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center; /* 水平居中 */
|
|
|
|
align-items: center; /* 垂直居中 */
|
|
|
|
flex-direction: column; /* 内容垂直排列 */
|
|
|
|
padding: 20px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 100%;
|
2025-03-29 21:58:38 +08:00
|
|
|
}
|
|
|
|
|
2025-04-05 22:17:52 +08:00
|
|
|
.logo {
|
|
|
|
margin-top: 40px;
|
|
|
|
font-size: 32px;
|
|
|
|
}
|
2025-03-29 21:58:38 +08:00
|
|
|
|
2025-04-05 22:17:52 +08:00
|
|
|
.intro a {
|
|
|
|
display: block;
|
|
|
|
margin: 5px 0;
|
2025-04-05 21:06:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
font-family: 'Pacifico', cursive;
|
2025-04-05 22:17:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 默认隐藏 */
|
|
|
|
.mobile-toggle {
|
|
|
|
display: none;
|
|
|
|
margin: 10px;
|
|
|
|
text-align: center;
|
|
|
|
}
|