/* 主题颜色 */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --accent-color: #17a2b8;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* 卡片悬停效果 */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 按钮样式增强 */
.btn {
    border-radius: 4px;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
}

/* 页面区块间距 */
section {
    padding: 4rem 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
} 