
        .product-section {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 50px 80px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .image-wrapper {
            width: 40%;
            position: relative;
        }
        .logo {
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            z-index: 10;
        }
        .product-img {
            width: 100%;
            height: auto;
            margin-top: 50px;
        }
        .text-wrapper {
            width: 60%;
            font-family: Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            font-size: 15px;
        }
        /* 响应式适配：小屏幕自动切换为上下布局 */
        @media (max-width: 768px) {
            .product-section {
                flex-direction: column;
                display: flex; 
               
                padding: 0px 35px;
                gap: 30px;
            
                
            }}
            .image-wrapper, .text-wrapper {
                width: 100%;
            }
            .logo {
                position: static;
                margin-bottom: 10px;
            }
            .product-img {
                margin-top: 0;
            }
        }
    