/* 工厂环境部分样式 */
.factory_environment_section {
    padding: 7rem 0;
    /* background-color: #f8f9fa; */
}

.factory_environment_header {
    text-align: center;
    margin-bottom: 40px;
}

.factory_environment_title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-transform: uppercase;
}

.factory_environment_subtitle {
    /* font-size: 18px; */
    /* color: #666; */
    /* max-width: 700px; */
    margin: 0 auto 6rem;
}

.factory_environment_gallery {
    /* width: 100%; */
    /* overflow: hidden; */
    /* border-radius: 8px; */
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.factory_environment_image {
    width: auto;
    height: auto;
    display: block;
    max-width: 100%;
}

/* 响应式样式 */
@media (max-width: 992px) {
    .factory_environment_section {
        padding: 60px 0;
    }
    
    .factory_environment_title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .factory_environment_section {
        padding: 10px 0;
    }
    
    .factory_environment_title {
        font-size: 26px;
    }
    
    .factory_environment_subtitle {
        font-size: 16px;
    }
}