.info-banner {
    padding: 10px 20px 40px 20px;
    text-align: center;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow-x: auto;
    white-space: nowrap;
}


.animated-icon {
    margin-right: 6px;
    width: 12px;
    height: 12px;
}

/* 分隔符美化 */
.sep {
    color: #888;
    font-weight: bold;
}

/* 动画效果 */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
[data-anim="rotate"] {
    animation: rotate 2s linear infinite;
}

@keyframes scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
[data-anim="scale"] {
    animation: scale 1.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
[data-anim="bounce"] {
    animation: bounce 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.85; }
}
[data-anim="pulse"] {
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}
[data-anim="shake"] {
    animation: shake 0.8s ease-in-out infinite;
}
