/* 仅让导航栏整体居中 + Logo居中 */
.navbar {
    justify-content: center !important;
}
.navbar-collapse {
    justify-content: center !important;
    flex-grow: unset !important;
}

/* 修复无缝滚动必须样式 */
.image-container {
    display: flex;
    overflow: hidden;
    width: 100%;
}
.image-list {
    display: flex;
    flex-shrink: 0;
    animation: scroll-left 40s linear infinite;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}