.article-bottom-tabs {
    margin-top: 40px;
    padding-top: 20px;
}

.article-bottom-tabs-header {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
    padding-bottom: 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: #666;
    transition: color 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden;
}

.tab-btn .tab-text {
    position: relative;
    z-index: 2;
    display: inline-block;
}

.tab-btn .tab-underline {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    z-index: 1;
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active .tab-underline {
    width: 100%;
}

.tab-btn:hover:not(.active) {
    color: var(--primary-color);
}

.tab-btn:hover:not(.active) .tab-underline {
    width: 100%;
}

.article-bottom-tabs-content {
    position: relative;
    min-height: 200px;
    transition: height 0.3s ease;
    overflow: visible;
    padding-bottom: 20px;
}

.tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tab-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.tab-pane h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.tab-pane p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #333;
}

.tab-pane strong,
.tab-pane .footer-module-content strong,
.tab-pane .prose strong {
    color: inherit !important;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 3px solid rgba(var(--primary-color-rgb, 51, 105, 227), 0.2);
    padding-bottom: 3px;
    display: inline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-bottom-tabs-header {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
}

