
        .Introduction_area {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        .product-banner {
            width: 86%;
            padding: 30px 30px;
            background-color: #f7f8fa;
        }

        .banner-card {
            width: 90%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            /* gap: 48px; */
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            padding: 56px;
            align-items: center;
        }

        .text-area {
            margin: 1rem 1rem;
        }

        .text-area h2 {
           font-size: 56px;
            font-weight: 700;
            color: #1a2436;
            margin-bottom: 32px;
            line-height: 1.1;
        }

        .text-area p {
            font-size: 18px;
            color: #495468;
            line-height: 1.8;

        }

        .photo-area {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
        }

        .photo-area img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 移动端适配 */
        @media(max-width:992px) {
            .banner-card {
                grid-template-columns: 1fr;
                padding: 32px 24px;
                width:86%
            }

            .text-area h2 {
                font-size: 36px;
            }

            .product-banner {
                padding: 30px 16px;
            }
        }
    