/* 按钮基础样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

/* 主要按钮 */
.btn.primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 66, 138, 0.2);
}

/* 次要按钮 */
.btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 文字按钮 */
.btn.text {
    background: none;
    color: var(--primary-color);
    padding: 8px 16px;
}

.btn.text:hover {
    background: rgba(43, 104, 178, 0.1);
}

/* 按钮组 */
.btn-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
} 