   .fy-image-container {
            width: 100%;
            max-width: 100%;
            height: 800px; /* 电脑端高度增加一倍 */
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            margin-top: 50px;
        }
        
        .fy-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }
        
        /* 半透明黑色覆盖层 */
        .fy-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.664); /* 半透明黑色 */
            z-index: 1; /* 确保覆盖在图片上方 */
        }
        
        /* 左上角小图片容器 */
        .fy-corner-image-container {
            position: absolute;
            top: 110px; /* 顶部外边距 */
            left: 110px; /* 左边外边距 */
            z-index: 2; /* 确保显示在最上层 */
            max-width: 600px; /* 尺寸放大一倍 */
            max-height: 500px; /* 尺寸放大一倍 */
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
           
        }
        
        /* 左上角小图片 */
        .fy-corner-image {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain; /* 确保图片完整显示 */
        }
        
        /* 左下角文本区域 */
        .fy-text-container {
            position: absolute;
            bottom: 100px; /* 底部外边距增加40px (60+40) */
            left: 100px; /* 左边外边距增加40px (60+40) */
            z-index: 2; /* 确保显示在覆盖层上方 */
            color: white;
            text-align: left; /* 文字左对齐 */
            max-width: 1000px;
         
        }
        
        .fy-text-line {
            font-size: 24px;
            line-height: 1.4;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
            font-weight: 300; /* 细体 */
    font-family: "Microsoft YaHei Light", "Microsoft YaHei", sans-serif; /* 确保使用细体字体 */
        }
        
        .fy-text-line:last-child {
            margin-bottom: 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .fy-image-container {
                height: 390px; /* 加大移动端整体长度 */
            }
            .fy-corner-image-container {
                top: 80px;
                left: 50%; /* 改为横向居中 */
                transform: translateX(-50%); /* 居中定位 */
                max-width: 650px; /* 缩小尺寸 */
                max-height: 650px; /* 缩小尺寸 */
            }
            .fy-text-container {
                position: absolute;
                bottom: 30px;
                left: 50%; /* 改为横向居中 */
                right: auto;
                transform: translateX(-50%); /* 居中定位 */
                width: 80%; /* 设置宽度 */
                max-width: 100%; /* 最大宽度为100% */
               
            }
            .fy-text-line {
                font-size: 15px;
                margin-bottom: 10px;
                font-weight: 300; /* 细体 */
    font-family: "Microsoft YaHei Light", "Microsoft YaHei", sans-serif; /* 确保使用细体字体 */
            }
        }
        
        @media (max-width: 480px) {
            .fy-image-container {
                height: 300px; /* 加大移动端整体长度 */
            }
            .fy-corner-image-container {
                top: 70px;
                left: 50%; /* 改为横向居中 */
                transform: translateX(-50%); /* 居中定位 */
                max-width: 300px; /* 缩小尺寸 */
                max-height: 200px; /* 缩小尺寸 */
            }
            .fy-text-container {
                bottom: 30px;
                width: 90%; /* 增加宽度 */
            }
            .fy-text-line {
                font-size: 16px;
                margin-bottom: 8px;
            }
        }