.height-padding{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.tab-style {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.tab-style .bg-white\/80 {
    background: #f5f5f5;
    padding: 0.25rem;
    border-radius: 0.75rem;
    display: inline-flex;
    gap: 0.25rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.625rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: transparent;
    color: #4b5563;
    border: none;
    cursor: pointer;
}

.tab-btn.active {
    background: #6366f1 !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.tab-btn:not(.active):hover {
    color: #1f2937;
}
#bases .text-gray-600{
    text-align: center;
}

/* 卡片样式 */
.achievement-card,
.plan-card,
.vision-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.achievement-card:hover,
.plan-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.card-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

/* 长期愿景专用样式 */
.vision-card {
    padding: 2.5rem;
    min-height: 200px;
}

.vision-card .card-icon {
    width: 4.5rem;
    height: 4.5rem;
}

.vision-card .card-title {
    font-size: 1.375rem;
    margin-top: 1rem;
}

.vision-card .card-description {
    font-size: 1rem;
    margin-top: 1rem;
}

/* Tab切换时的上浮动画 */
.achievement-card.tab-animate,
.plan-card.tab-animate,
.vision-card.tab-animate {
    animation: tabLiftUp 1.8s ease-out forwards;
}

@keyframes tabLiftUp {
    from {
        transform: translateY(0);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }
    to {
        transform: translateY(-10px);
        box-shadow: 0 12px 32px rgba(99, 102, 241, 0.25), 0 4px 12px rgba(0, 0, 0, 0.1);
    }
}