body {
    padding: 0;
    margin: 0;
}

#skeleton {
    padding: 16px;

}

#skeleton .skeleton-header {
    display: flex;
    justify-content: space-between;
}

#skeleton .skeleton-header .header-left,
#skeleton .skeleton-header .header-right,
#skeleton .skeleton-header .header-center {
    width: 30px;
    height: 30px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}

#skeleton .skeleton-header .header-center {
    width: 100px;
}

#skeleton .skeleton-banner {
    margin-top: 10px;
    padding: 1em;
    border-radius: 6px;
    background-color: #f6f6f6;
    animation: pulse 1.5s infinite ease-in-out;
}
#skeleton .skeleton-banner .banner-logo{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
#skeleton .skeleton-banner .banner-logo .logo-img{
    width: 50px;
    height: 50px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
    border-radius: 50px;
}
#skeleton .skeleton-banner .banner-logo .logo-addr{
    width: 50%;
    height: 1.2em;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}

#skeleton .skeleton-banner .banner-name{
    width: 50%;
    height: 1.4em;
    margin-top: 15px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}
#skeleton .skeleton-banner .banner-phone{
    width: 35%;
    height: 1.2em;
    margin-top: 15px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}


#skeleton .skeleton-banner .banner-hours{
    width: 35%;
    height: 1.2em;
    margin-top: 15px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}
#skeleton .skeleton-banner .banner-sign{
    width: 35%;
    height: 1.2em;

    margin: 15px auto 0 auto;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}
#skeleton .skeleton-now {
    margin: 0 auto;
    width: 40%;
    height: 1.2em;
    margin-top: 10px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}

#skeleton .skeleton-pickup {
    height: 2.5em;
    border-radius: 100px;
    margin-top: 10px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;

}

#skeleton .skeleton-pickTime {
    height: 1.5em;
    width: 20%;
    margin: 0 auto;
    margin-top: 10px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;

}

#skeleton .skeleton-menu {
    width: 10%;
    height: 1.5em;
    margin-top: 10px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}

#skeleton .skeleton-special {
    width: 50%;
    height: 1.2em;
    margin-top: 20px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}

#skeleton .skeleton-available {
    width: 50%;
    height: 1.2em;
    margin-top: 14px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}
#skeleton .skeleton-item{
    margin-top: 14px;
    background-color: #f6f6f6;
    padding: 0.5em 0.7em;
    animation: pulse 1.5s infinite ease-in-out;
    
}
#skeleton .skeleton-item .item-title{
    height: 1.2em;
    width: 20%;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}
#skeleton .skeleton-item .item-desc{
    height: 1.2em;
    width: 80%;
    margin-top: 10px;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}
#skeleton .skeleton-item .item-price{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
#skeleton .skeleton-item .item-price .price-right{
    height: 1.2em;
    width: 16%;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}
#skeleton .skeleton-item .item-price .price-add{
    height: 1.2em;
    width: 8%;
    background-color: #e2e2e2;
    animation: pulse 1.5s infinite ease-in-out;
}



/* 脉冲动画效果 */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}