/* 全局样式 */
body {
    background-color: #f8f9fa;
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
}

/* 导航栏样式 */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.nav-link {
    font-weight: 500;
}

/* 卡片样式 */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
}

.card-header {
    border-bottom: none;
    font-weight: bold;
}

/* 按钮样式 */
.btn {
    font-weight: 500;
    border-radius: 4px;
}

/* 首页考试卡片 */
.card h5.card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

/* 考试题目样式 */
.form-check {
    margin-bottom: 10px;
}

.form-check-label {
    font-size: 1rem;
    cursor: pointer;
}

/* 计时器样式 */
#timer {
    font-weight: bold;
    font-size: 1.2rem;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
} 