/* 许可办理页面专用样式 */

/* Banner区域样式 */
.zizhi-banner {
    background-image: url('../images/zizhibanner.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
}

.zizhi-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.zizhi-banner-content {
    position: relative;
    z-index: 1;
}

.zizhi-banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.zizhi-banner-subtitle {
    font-size: 20px;
    color: #fff;
    opacity: 0.9;
}

/* 资质类型栏目样式 */
.zizhi-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #191919;
    font-weight: 600;
    margin-bottom: 40px;
}

/* 选项卡样式 */
.tabs-container {
    background-color: #fafafa;
    border-radius: 20px;
    overflow: hidden;
}

.tabs-wrapper {
    display: flex;
    border-radius: 20px;
    padding: 10px;
}

.tabs-menu {
    width: 280px;
    background-color: #fff;
    border-radius: 20px;
    padding: 0;
    margin-right: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-menu-item {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tab-menu-button {
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.tab-menu-button:last-child {
    border-bottom: none;
}

.tab-menu-button:hover {
    background-color: #f8f9fa;
}

.tab-menu-button.active {
    background: linear-gradient(90deg, #7355b0, #6975dd);
    color: #fff;
    font-weight: 500;
}

.tabs-content {
    flex: 1;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tabs-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 16px;
    background: linear-gradient(90deg, #ff654c, #657dfe);
    border-radius: 0 0 20px 20px;
}

.tab-content {
    display: none;
}

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

.content-title {
    font-size: 24px;
    color: #191919;
    font-weight: 600;
    margin-bottom: 10px;
}

.content-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
    margin-left: 10px;
}

.content-desc {
    font-size: 14px;
    color: #595959;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.content-info {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-flow {
    display: flex;
    align-items: center;
    justify-content: normal;
    margin: 25px 0;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-type {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.arrow {
    color: #666;
    font-size: 20px;
}

.need-title {
    font-size: 18px;
    color: #191919;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.need-content {
    font-size: 14px;
    color: #595959;
    line-height: 1.8;
    margin-bottom: 15px;
}

.industry-example {
    font-size: 14px;
    color: #595959;
    line-height: 1.8;
}

.industry-example strong {
    font-weight: 600;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .tabs-wrapper {
        flex-direction: column;
    }
    
    .tabs-menu {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        display: flex;
        overflow-x: auto;
        border-radius: 12px;
    }
    
    .tab-menu-item {
        flex-shrink: 0;
    }
    
    .tab-menu-button {
        border-bottom: none;
        border-right: 1px solid #f0f0f0;
        white-space: nowrap;
    }
    
    .tab-menu-button:last-child {
        border-right: none;
    }
    
    .tabs-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .zizhi-banner {
        padding: 80px 0;
    }
    
    .zizhi-banner-title {
        font-size: 36px;
    }
    
    .zizhi-banner-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tabs-content {
        padding: 20px;
    }
    
    .content-title {
        font-size: 20px;
    }
    
    .content-subtitle {
        font-size: 16px;
        margin-left: 0;
        display: block;
        margin-top: 5px;
    }
    
    .service-flow {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-flow > div {
        margin-bottom: 10px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 480px) {
    .zizhi-banner {
        padding: 60px 0;
    }
    
    .zizhi-banner-title {
        font-size: 28px;
    }
    
    .zizhi-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .tab-menu-button {
        padding: 12px 15px;
        font-size: 14px;
    }
}



/* 办理须知栏目样式 */
.zizhi-notice-section {
    padding: 60px 0;
}

.notice-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.notice-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.notice-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.notice-card {
    flex: 1;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.notice-card-left {
    background: linear-gradient(135deg, #fdfdff, #f5f8ff);
}

.notice-card-right {
    background: linear-gradient(135deg, #f8fafc, #c1dbf9);
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.card-content {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.card-content li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #6975dd;
}

/* 底部服务特点区域 */
.service-features {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-top: 60px;
}

.service-feature-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-feature-item {
    text-align: center;
    flex: 0 0 22%;
    margin-bottom: 20px;
}

.service-feature-icon {
    margin-bottom: 20px;
}

.service-feature-icon img {
    max-width: 60px;
    height: auto;
}

.service-feature-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-feature-item {
        flex: 0 0 45%;
    }
    
    .notice-cards {
        flex-direction: column;
    }
    
    .notice-card {
        margin-bottom: 20px;
    }
}

/* 滚动条样式优化 */
.tabs-menu::-webkit-scrollbar {
    height: 6px;
}

.tabs-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.tabs-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.tabs-menu::-webkit-scrollbar-thumb:hover {
    background: #999;
}