﻿/* 核心布局：左右分栏（桌面端）/上下堆叠（移动端） */
        .main-layout {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            min-height: 100vh;
        }
        /* 左侧大图区域 - 占比约2/3 */
        .left-image {
            flex: 2 1 600px;
            background: url("/Data/stzhid/template/cn/images/pic37.jpg") no-repeat center center;
            background-size: cover;
            min-height: 600px;
        }
        /* 右侧内容区域 - 占比约1/3 */
        .right-content {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
        }
        /* 右侧上半部分：文字+背景图 */
        .text-section {
            flex: 1;
            padding: 40px 30px;
            background: url("/Data/stzhid/template/cn/images/pic888.jpg") no-repeat center center;
            background-size: cover;
            color: #fff; /* 白色文字更清晰 */
            /* 半透明遮罩提升文字可读性 */
            position: relative;
        }
        .text-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* 黑色半透明遮罩 */
            z-index: 1;
        }
        .text-content {
            position: relative;
            z-index: 2; /* 让文字在遮罩上层 */
        }
        .text-section h2 {
            margin-bottom: 25px;
            font-size: 22px;
            border-bottom: 1px solid #fff;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        .text-section p {
            margin-bottom: 15px;
            font-size: 15px;
            text-align: justify;
        }
        /* 右侧下半部分：产品图片 */
        .product-section {
            flex: 1;
            min-height: 300px;
        }
        .product-section img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 保持图片比例，填满容器 */
            display: block;
        }
        /* 响应式适配 - 移动端（768px以下） */
        @media (max-width: 768px) {
            .main-layout {
                flex-direction: column;
            }
            .left-image {
                min-height: 400px;
            }
            .text-section {
                padding: 20px 20px;
            }
            .text-section h2 {
                font-size: 20px;
            }
            .text-section p {
                font-size: 14px;
            }
            .product-section {
                min-height: 250px;
            }
        }
        /* 小屏手机适配 */
        @media (max-width: 480px) {
            .left-image {
                min-height: 300px;
            }
            .text-section {
                padding: 15px 15px;
            }
        }