     body, html {  
        height: 100%;  
        margin: 0;  
        padding: 0;  
        background: #EEF6FF
    }  

   .background-image {  
        /* 通用样式 */  
        height: auto; 
        position: relative; 
        
    }
    
    .background-image img {  
        width: 100%; 
        height: auto; 
    }
    
    .button-image { 
        position: absolute; /* 设置绝对定位 */
        bottom: 0%; /* 距离容器底部20% */
        left: 50%; /* 水平居中 */
        transform: translateX(-50%); /* 让按钮自身中心对齐 */
        z-index: 100; /* 确保按钮显示在背景之上 */

     }

    .text-container {
        position: absolute;
        bottom: 23%; /* 距离容器底部25% */
        left: 50%;
        transform: translateX(-50%);
        z-index: 99; /* 确保文本显示在背景之上 */
        display: flex;
        justify-content: space-between;
        width: 80%;
        padding: 0 20px;
    }

    .text-column {
        text-align: center;
    }

    .text-line {
        font-size: 16px;
        line-height: 2; /* 控制行间距 */
    }

    .text-left .text-line {
        color: #9F5900;
    }

    .text-center .text-line, .text-right .text-line {
        color: #5131C5;
    }

    @media (min-width: 768px) {  
        .background-image {
            width: 750px; 
            height: auto; 
            padding-top: 0; 
            margin: 0 auto;
        }
        .background-image img {  
            width: 100%; 
            height: auto; 
        }
        .button-image { 
            transform: translateX(-50%); 
        }
        
        .text-container {
            max-width: 750px; 
            bottom: 24%; 
            transform: translateX(-50%); 
            font-size: 24px;
            line-height: 1.5;
            padding: 0 20px; 
        }
    }