/* 科技成果转化页面样式 */

/* 栏目图区域响应式适配 */
.zhuanhua-banner-section {
    width: 100%;
}

.zhuanhua-banner-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.zhuanhua-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 标题区域 */
.zhuanhua-title-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.zhuanhua-title-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.zhuanhua-title-section .title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.zhuanhua-title-section .title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 2px;
}

.zhuanhua-title-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1e3c72;
    margin: 0;
}

.zhuanhua-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 模块通用样式 */
.zhuanhua-module {
    padding: 60px 0;
    background-color: #fff;
}

.zhuanhua-module.reverse {
    background-color: #f8f9fa;
}

.zhuanhua-module .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.module-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.module-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.module-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.module-image:hover img {
    transform: scale(1.05);
}

.module-text {
    flex: 1;
}

.module-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e3c72;
    margin: 0 0 20px 0;
}

.module-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.module-details {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.module-details h3 {
    font-size: 18px;
    color: #1e3c72;
    /* margin: 20px 0 10px 0; */
}

.subtitle-item {
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-bottom: 20px; */
}

.subtitle-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.subtitle-content {
    flex: 1;
}

.module-details ul {
    padding-left: 20px;
    margin: 0 0 15px 0;
}

.module-details ul li {
    margin-bottom: 8px;
}

/* 反转模块布局 */
.zhuanhua-module.reverse .module-content {
    flex-direction: row-reverse;
}

/* 结尾标语 */
.zhuanhua-footer {
    padding: 60px 0;
    background-color: #1e3c72;
    color: #fff;
    text-align: center;
}

.zhuanhua-slogan {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

/* 平板端适配 (768px - 1024px) */
@media (max-width: 1024px) {
    /* 栏目图区域平板适配 */
    .zhuanhua-banner-image {
        height: 300px;
    }
    
    .zhuanhua-title-section {
        padding: 50px 0;
    }
    
    .zhuanhua-title-section h1 {
        font-size: 32px;
    }
    
    .module-content {
        gap: 30px;
    }
    
    .module-text h2 {
        font-size: 24px;
    }
    
    .zhuanhua-slogan {
        font-size: 22px;
    }
}

/* 手机端适配 (最大768px) */
@media (max-width: 768px) {
    /* 栏目图区域手机端适配 */
    .zhuanhua-banner-image {
        height: 250px;
    }
    
    .zhuanhua-title-section {
        padding: 40px 0;
    }
    
    .zhuanhua-title-section h1 {
        font-size: 28px;
    }
    
    .zhuanhua-subtitle {
        font-size: 15px;
    }
    
    .zhuanhua-module {
        padding: 40px 0;
    }
    
    .module-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .zhuanhua-module.reverse .module-content {
        flex-direction: column;
    }
    
    .module-text h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .module-description {
        font-size: 15px;
    }
    
    .module-details {
        font-size: 14px;
    }
    
    .module-details h3 {
        font-size: 16px;
    }
    
    .zhuanhua-slogan {
        font-size: 20px;
        padding: 0 20px;
    }
}

/* 小屏手机端适配 (最大480px) */
@media (max-width: 480px) {
    /* 栏目图区域小屏手机适配 */
    .zhuanhua-banner-image {
        height: 200px;
    }
    
    .zhuanhua-title-section {
        padding: 30px 0;
    }
    
    .zhuanhua-title-section h1 {
        font-size: 24px;
    }
    
    .zhuanhua-title-section .title-bar {
        width: 40px;
        height: 3px;
    }
    
    .zhuanhua-subtitle {
        font-size: 14px;
    }
    
    .zhuanhua-module {
        padding: 30px 0;
    }
    
    .module-text h2 {
        font-size: 20px;
    }
    
    .module-description {
        font-size: 14px;
    }
    
    .module-details {
        font-size: 13px;
    }
    
    .zhuanhua-slogan {
        font-size: 18px;
    }
}