/* 行业详情页面样式 */
.industry-detail-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #0a1929 0%, #1a2b3f 50%, #0d47a1 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.industry-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/industry/01.png');
    background-position: center;
    background-size: cover;
    opacity: 1;
    z-index: 1;
}

.industry-detail-hero .container {
    position: relative;
    z-index: 2;
}

.industry-detail-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    display: none;
}

.industry-detail-main {
    padding: 100px 0;
    background: #f5f5f5;
}

.industry-detail-header {
    text-align: center;
    margin-bottom: 80px;
}

.industry-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.industry-detail-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.industry-detail-content {
    max-width: 1400px;
    margin: 0 auto;
}

.industry-detail-section {
    background: #fff;
    border-radius: 12px;
    padding: 50px 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.section-item {
    margin-bottom: 50px;
}

.section-item:last-child {
    margin-bottom: 0;
}

.industry-detail-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    position: relative;
    display: inline-block;
}

.industry-detail-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e60012;
}

.industry-detail-section-content {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .industry-detail-section {
        padding: 40px 45px;
    }
    
    .section-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .industry-detail-hero {
        height: 150px;
    }
    
    .industry-detail-hero h1 {
        font-size: 32px;
    }
    
    .industry-detail-main {
        padding: 60px 0;
    }
    
    .industry-detail-header {
        margin-bottom: 50px;
    }
    
    .industry-detail-title {
        font-size: 28px;
    }
    
    .industry-detail-subtitle {
        font-size: 16px;
    }
    
    .industry-detail-section {
        padding: 30px 25px;
    }
    
    .section-item {
        margin-bottom: 35px;
    }
    
    .industry-detail-section-title {
        font-size: 20px;
    }
    
    .industry-detail-section-content {
        font-size: 15px;
    }
}
