/* 桌面端样式（默认） */
#desktop-content {
    display: block;
    background-image: none !important;
}

#mobile-content {
    display: none;
}

/* 移动端样式 */
@media (max-width: 768px) {
    body{
        padding-bottom:2.5rem;
    }
    #desktop-content {
        display: none;
    }
    .mobile-bg{
            min-height: 100vh !important;
            padding-bottom:3.5rem;
            overflow: auto !important;
            background-image:linear-gradient(to bottom, #ef3333 0%, #f57675 10%,#fcc9c7 20%,#ffe1e0 80%)
    }

    #mobile-content {
        display: block;
    }
}