62 lines
1.1 KiB
CSS
62 lines
1.1 KiB
CSS
|
|
/* 客户端下载页面样式 */
|
||
|
|
.client-download-page {
|
||
|
|
min-height: 100vh;
|
||
|
|
background: #f8fafc;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.download-page-header {
|
||
|
|
background: white;
|
||
|
|
border-bottom: 1px solid #e2e8f0;
|
||
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||
|
|
}
|
||
|
|
|
||
|
|
.download-page-header .header-content {
|
||
|
|
max-width: 1400px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 1rem 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.download-page-header .logo {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
gap: 0.75rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.download-page-header .logo-icon {
|
||
|
|
width: 32px;
|
||
|
|
height: 32px;
|
||
|
|
color: #667eea;
|
||
|
|
}
|
||
|
|
|
||
|
|
.download-page-header .logo-text {
|
||
|
|
font-size: 1.5rem;
|
||
|
|
font-weight: 700;
|
||
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
-webkit-text-fill-color: transparent;
|
||
|
|
background-clip: text;
|
||
|
|
}
|
||
|
|
|
||
|
|
.download-page-content {
|
||
|
|
flex: 1;
|
||
|
|
max-width: 1400px;
|
||
|
|
margin: 0 auto;
|
||
|
|
width: 100%;
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.download-page-footer {
|
||
|
|
background: white;
|
||
|
|
border-top: 1px solid #e2e8f0;
|
||
|
|
padding: 2rem;
|
||
|
|
text-align: center;
|
||
|
|
color: #64748b;
|
||
|
|
font-size: 0.875rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.download-page-footer p {
|
||
|
|
margin: 0.25rem 0;
|
||
|
|
}
|