@media screen and (max-width: 768px) {
    /* 动画关键帧定义 */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    /* 元素初始状态 */
    .Two_t1_3bSfRpw,
    .Five_lay_2n4VYR,
    .Three_lay_qTFZuQ,
    .Three_lay_qTFZuQ2,
    .vrhouse_w dl,
    .vrhouse_hw dl,
    .cwrap dl,
    .casewc a dl {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    /* 动画触发类 */
    .Two_t1_3bSfRpw.animate {
        animation: fadeInUp 0.8s ease-out forwards;
    }
    
    .Five_lay_2n4VYR.animate {
        animation: fadeInUp 0.8s ease-out forwards 0.1s;
    }
    
    .Three_lay_qTFZuQ.animate {
        animation: fadeInUp 0.8s ease-out forwards 0.2s;
    }
    
    .Three_lay_qTFZuQ2.animate {
        animation: fadeInUp 0.8s ease-out forwards 0.3s;
    }
    
    .vrhouse_w dl.animate {
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .vrhouse_w dl:nth-child(1).animate {
        animation-delay: 0.4s;
    }
    
    .vrhouse_w dl:nth-child(2).animate {
        animation-delay: 0.5s;
    }
    
    .vrhouse_w dl:nth-child(3).animate {
        animation-delay: 0.6s;
    }
    
    .vrhouse_w dl:nth-child(4).animate {
        animation-delay: 0.7s;
    }
    
    .vrhouse_hw dl.animate {
        animation: fadeInUp 0.7s ease-out forwards;
    }
    
    .cwrap dl.animate {
        animation: fadeInUp 0.7s ease-out forwards;
    }
    
    .cwrap dl:nth-child(1).animate {
        animation-delay: 0.4s;
    }
    
    .cwrap dl:nth-child(2).animate {
        animation-delay: 0.5s;
    }
    
    .cwrap dl:nth-child(3).animate {
        animation-delay: 0.6s;
    }
    
    .cwrap dl:nth-child(4).animate {
        animation-delay: 0.7s;
    }
    
    .casewc a dl.animate {
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .One_lay_2EV2va{
        background: url(../images/demohousebanner_02.jpg) center center no-repeat;
    }
    .One_font2_17fnzl{
        font-size: 22px;
        margin-top: 100px;
        margin-left: 30px;
    }
    .One_font1_35JEc_{
        font-size: 24px;
        text-align: left;
        margin-left: 30px;
    }
    
    .hbox{
        display: none !important;
    }
    .Two_t1_3bSfRpw{
        padding:0 20px;
        padding-bottom: 100px;
    }
    .Two_font1_LuOtDO{
        margin-bottom: 20px;
    }
    .Five_lay_2n4VYR{
        height: auto;
    }
    .vrhouse_w{
        width: calc(100% - 40px);
        margin: 20px 20px 0 20px;
    }
    .vrhouse_w dl{
        height: auto;
        width: 100%;
        margin-bottom: 40px;
    }
    .Three_lay_qTFZuQ{
        width: 100%;
    }
    .vrhouse_hw{
        width: 100%;
        margin-top: 40px;
    }
    .vrhouse_hw dl{
        float: none;
        width: calc(100% - 40px);
        margin: 20px;
        /* margin-right: 0; */
        height: auto;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .cwrap{
        width: calc(100% - 40px);
        margin: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .cwrap dl{
        float: none;
        margin-right: 0;
        overflow: hidden;
        margin-top: 20px;
    }
    .casew{
        width: 100%;
    }
    .casewc{
        width: calc(100% - 40px);
        margin: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .casewc dl{
        float: none;
        margin-right: 0;
        border-bottom: 1px solid #ccc;
    }
}