/* 全局样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* 应用版本卡片样式 */
.version-card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
    margin-bottom: 1rem;
}

.version-header {
    border-bottom: none;
    background-color: #f8f9fa;
}

.version-badge {
    font-size: 0.9rem;
}

.version-date {
    color: #6c757d;
    font-size: 0.875rem;
}

.version-description {
    white-space: pre-line;
    font-size: 0.95rem;
}

/* 应用图标样式 */
.app-icon-large {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.app-title-large {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.app-info {
    color: #666;
    margin-bottom: 1.5rem;
}

/* 响应式布局 */
@media (max-width: 768px) {
    .app-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .app-title-large {
        font-size: 1.5rem;
    }
} 