
/* 主容器样式 */
.tab-container {
    max-width: 1200px;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
	margin: 0 auto;
}

/* 侧边栏样式 */
.tab-sidebar {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
}

.tab-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.tab-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
}

.tab-title i {
    color: #3b82f6;
}

/* 按钮样式 */
.tab-buttons {
    display: flex;
    flex-direction: column;
}

.tab-button {
    padding: 1.25rem 1.5rem;
    text-align: center;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
	    background: url(/images/pzam.png);
	    background-size: 100% 100%;
		    margin: 23px auto;
}

.tab-button:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.tab-button.tab-active {
    background: url(/images/pzan.png);
        background-size: 100% 100%;
    color: #ffffff;
	text-align: center;
	    display: block;

}

/* 内容区域样式 */
.tab-content-area {
    flex: 1;
    min-height: 300px;
}

.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

.tab-content.hidden {
    display: none;
}

.content-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.content-wrapper img {
    width: 97%;
    height: 100%;
    object-fit: cover;
	padding-left: 14px;
}

.content-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1.5rem;
    color: #ffffff;
}

.content-caption h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.content-caption p {
    color: rgba(255, 255, 255, 0.8);
}

/* 响应式设计 */
@media (min-width: 768px) {
    .tab-container {
        flex-direction: row;
    }
    
    .tab-sidebar {
        width: 200px;
        border-bottom: none;
    }
    
    .content-wrapper {
        min-height: 600px;
    }
}
    