/* 错误页面全局样式 */
a {
    color:  #1e88e5;
    text-decoration: none;
}
header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1rem;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.brand-logo {
    font-size: 1.5rem;
    color: #8a3ffb;
    text-decoration: none;
    font-weight: 500;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    text-align: center;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
}

.error-container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    margin-top: 4rem;
}

.status-code {
    font-size: 4rem;
    margin: 0;
    font-weight: 300;
}

.main-description {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.sub-description {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

html,
body {
    overflow-x: hidden;
}