        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.57;
        }

        .containera {
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .text-content {
            flex: 1;
            min-width: 300px;
        }

        .image-content {
            flex: 1;
            min-width: 300px;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .stat-item {
            flex: 1 1 160px;
            text-align: center;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .stat-label {
            color: #7f8c8d;
            font-size: 0.9em;
        }

        .featured-image {
            width: 100%;
            object-fit: cover;
        }

        h1 {
            color: #000;
            margin-bottom: 20px;
        }

        p {
            color: #333;
            margin-bottom: 20px;
        }
 .stat-number {
            font-size: 2.5rem;  /* 调小字号 */
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
            }

            .featured-image {
                height: 400px;
            }

            .stat-item {
                flex: 1 1 100%;
            }
        }

 .stats-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
        }

        .stat-item {
            flex: 1 1 160px;
            text-align: center;
            padding: 15px;
            background: #f9f9fa;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
            }

            .featured-image {
                height: 400px;
            }

            /* 修改手机端排列方式 */
            .stat-item {
                flex: 1 1 calc(50% - 15px); 
                min-width: calc(50% - 15px);
                padding: 12px;
            }

            .stat-number {
                font-size: 2rem;  /* 手机端更小字号 */
            }
        }

        @media (max-width: 480px) {
            .stat-item {
                flex: 1 1 calc(50% - 10px);
                min-width: calc(50% - 10px);
                padding: 10px;
            }

            .stat-number {
                font-size: 1.8rem;  /* 小屏幕再减小字号 */
            }

            .stat-label {
                font-size: 0.8em;
            }
        }