/* 页面底部样式 */
.app-footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
    opacity: 0.9;
}

.footer-info .icp-info {
    margin-top: 10px;
}

.footer-info .icp-info a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer-info .icp-info a:hover {
    opacity: 0.8;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .app-footer {
        padding: 15px 0;
    }
    
    .footer-info p {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* 确保页面有footer的情况下，主内容区域正确显示 */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}
