        .newest-title {
            width: 100%;
            min-height: 400px;
            /* 使用min-height确保内容能完整显示 */
            background-image: url(../img/why.png);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            padding: 20px 0;
            /* 添加内边距避免内容贴边 */
        }

        .newest-title-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            width: 100%;
            max-width: 1200px;
            /* 限制最大宽度 */
            margin: 0 auto;
            padding: 0 20px;
            /* 容器内边距，避免内容贴边 */
            box-sizing: border-box;
        }

        .newest-title-left {
            width: 50%;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .newest-title-left-auto {
            width: 100%;
        }

        .newest-title-right {
            width: 50%;
            height: 100%;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .newest-title-right img {
            max-width: 300px;
            max-height: 300px;
            width: 100%;
            height: auto;
            /* 保持图片比例 */
            object-fit: contain;
            /* 确保图片完整显示 */
        }

        /* 文字通用样式：描边 + 字体 + 颜色 */
        .text-stroke {
            font-family: "Microsoft Yahei", sans-serif;
            font-size: 24px;
            color: #fff;
            text-shadow:
                -3px -3px 0 #4169e1,
                1px -1px 0 #4169e1,
                -1px 1px 0 #4169e1,
                1px 1px 0 #4169e1,
                0 0 5px #4169e1;
            margin: 20px 0;
            font-weight: bold;
        }

        /* 平板设备适配 */
        @media (max-width: 992px) {
            .text-stroke {
                font-size: 20px;
            }

            .newest-title-right img {
                max-width: 250px;
                max-height: 250px;
            }
        }

        /* 手机端适配 */
        @media (max-width: 768px) {
            .newest-title {
                min-height: auto;
                /* 自动适应内容高度 */
                padding: 40px 0;
            }

            .newest-title-container {
                flex-direction: column;
                /* 垂直排列 */
            }

            .newest-title-left,
            .newest-title-right {
                width: 100%;
                /* 占满宽度 */
                text-align: center;
            }

            .newest-title-left {
                margin-bottom: 30px;
                justify-content: center;
            }

            .text-stroke {
                font-size: 18px;
                padding-left: 0 !important;
                /* 取消左侧内边距 */
            }

            .newest-title-right {
                justify-content: center;
            }

            .newest-title-right img {
                max-width: 200px;
                max-height: 200px;
            }
        }

        /* 小屏手机适配 */
        @media (max-width: 576px) {
            .text-stroke {
                font-size: 16px;
                margin: 15px 0;
            }

            .newest-title-right img {
                max-width: 160px;
                max-height: 160px;
            }
        }


/* 内容样式 */
          /* 图片容器样式 */
        .image-box {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px; /* 水平居中，底部间距 */
            display: flex;
            align-items: center;
            justify-content: center;
            /* 如果图片需要边框可添加以下样式 */
            /* border: 2px solid #007bff;
            border-radius: 50%; */
        }
        
        /* 图片自适应 */
        .feature-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain; /* 保持图片比例，完整显示 */
        }
        
        /* 标题样式 */
        .feature-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        /* 描述文字样式 */
        .feature-desc {
            font-size: 14px;
            line-height: 1.6;
        }

        .animated-item {
    opacity: 0;
    transform: translateY(50px);
    /* 初始位置低于其正常位置 */
    transition: all 1s ease-out;
    /* 动画持续时间和缓动函数 */
}

.animated-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.why-background{
    background-image: url(../img/why//background.png);
    color: white;
}