/* 主容器样式 */
.new-container {
    padding: 50px 0;
    background-color: transparent;
}

/* 内容容器 */
.content-wrapper {
    width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
}

/* 左右子容器 */
.image-container, .text-container {
    width: 50%;
    min-height: 540px;
}

/* 图片容器 */
.image-container {
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 文字容器 */
.text-container {
    background-color: #f5f5f5;
    padding: 40px;
    box-sizing: border-box;
}

/* 蓝色横杠 */
.blue-bar {
    width: 60px;
    height: 4px;
    background-color: #007bff;
    margin-bottom: 10px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .new-container {
        padding: 30px 0;
    }
    
    .content-wrapper {
        width: 100%;
        height: auto;
        flex-direction: column;
    }
    
    .image-container, .text-container {
        width: 100%;
    }
    
    .image-container {
        height: 300px;
    }
    
    .text-container {
        height: auto;
    }
}