Refine APlayer page styling and responsiveness

Updated background colors, border radii, and box shadows for a cleaner look. Improved header and footer styles, adjusted padding, and enhanced mobile responsiveness for better user experience.
This commit is contained in:
Sora 2026-01-20 12:49:40 +08:00
parent f3d88eb977
commit 1c1299d9dd

View File

@ -18,7 +18,7 @@
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background: #ffffff; background: #f5f5f5;
min-height: 100vh; min-height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -31,65 +31,55 @@
width: 100%; width: 100%;
max-width: 800px; max-width: 800px;
background: white; background: white;
border-radius: 12px; border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
overflow: hidden; overflow: hidden;
} }
.header { .header {
background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%); background: #ffffff;
color: #333; color: #333;
padding: 30px; padding: 40px 30px;
text-align: center; text-align: center;
border-bottom: 1px solid #e9ecef;
} }
.header h1 { .header h1 {
font-size: 24px; font-size: 28px;
margin-bottom: 10px; margin-bottom: 10px;
font-weight: 600; font-weight: 600;
color: #2c3e50;
} }
.header p { .header p {
font-size: 14px; font-size: 14px;
opacity: 0.9; color: #7f8c8d;
} }
.player-wrapper { .player-wrapper {
padding: 20px; padding: 30px;
min-height: 400px; background: #ffffff;
display: flex;
align-items: center;
justify-content: center;
background: #f9f9f9;
border-radius: 8px;
margin: 20px 0;
} }
#aplayer { #aplayer {
margin: 0; margin: 0 auto;
width: 100% !important; box-shadow: none !important;
height: 300px !important; border-radius: 0 !important;
min-height: 300px !important;
visibility: visible !important;
display: block !important;
opacity: 1 !important;
z-index: 10 !important;
background: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} }
.footer { .footer {
padding: 20px; padding: 20px;
text-align: center; text-align: center;
font-size: 12px; font-size: 12px;
color: #666; color: #999;
border-top: 1px solid #eee; background: #f8f9fa;
border-top: 1px solid #e9ecef;
} }
.footer a { .footer a {
color: #667eea; color: #667eea;
text-decoration: none; text-decoration: none;
font-weight: 500;
} }
.footer a:hover { .footer a:hover {
@ -98,13 +88,26 @@
/* Make APlayer responsive */ /* Make APlayer responsive */
@media (max-width: 600px) { @media (max-width: 600px) {
.header h1 { body {
font-size: 20px; padding: 0;
background: #ffffff;
} }
.container { .container {
margin: 0;
border-radius: 0; border-radius: 0;
box-shadow: none;
}
.header {
padding: 30px 20px;
}
.header h1 {
font-size: 22px;
}
.player-wrapper {
padding: 20px;
} }
} }
</style> </style>