/* 验证页面样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微软雅黑", "SimHei", "黑体", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.verify-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

p {
    margin-bottom: 20px;
    color: #666;
}

.file-name {
    font-weight: bold;
    color: #4a89dc;
}

.status-message {
    margin: 15px 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    min-height: 24px;
}

.status-message.success {
    background-color: #dff0d8;
    color: #3c763d;
}

.status-message.error {
    background-color: #f2dede;
    color: #a94442;
}

.download-btn {
    background-color: #4a89dc;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.download-btn:hover {
    background-color: #3a79c9;
}

.download-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* 响应式设计 */
@media (max-width: 576px) {
    .verify-box {
        padding: 20px;
    }
    
    h2 {
        font-size: 20px;
    }
} 