/* 镜像服务横幅样式 */
.mirror-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-top: 1px solid #90caf9;
    padding: 10px 20px;
    font-size: 16px;
    color: #1565c0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.mirror-banner a {
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
}

.mirror-banner a:hover {
    text-decoration: underline;
    color: #0d47a1;
}

/* 为页面内容添加底部边距，避免被横幅遮挡 */
body {
    padding-bottom: 40px;
}

#root {
    padding-bottom: 0;
}
