:root {
    --primary: #dc2626;
    --primary-dark: #b50505;
    --primary-light: #dc2626;
    --header-nar-bg: #b50505;
    --accent: #d97706;
    --accent-light: #f59e0b;
    --bg: #faf8f5;
    --bg-card: #ffffff;
    --fg: #1f2937;
    --fg-muted: #6b7280;
    --border: #e5e7eb;
    --header-bg: #b50505;
    --footer-bg: #eeeeee;
    --footer: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    font-size: 16px;
}


.header {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--header-bg) 0%, #7f1d1d 100%);
    position: relative;
    background: url('/images/headbgs.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='%23ffffff' stroke-width='0.5' opacity='0.05'/%3E%3C/svg%3E");
        pointer-events: none;
    }

.header-inner {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.bodycontainer {
    min-width: 1200px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo img {
        width: 125px;
        height: 125px;
    }

.site-title {
    margin-top: -10px;
    color: white;
}

    .site-title h1 {
        font-size: 4.7rem;
        font-weight: 900;
        font-family: 'Microsoft YaHei', SimHei;
        letter-spacing: 4px;
        text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9), -2px -2px 8px rgba(255, 255, 255, 0.9), 2px -2px 8px rgba(255, 255, 255, 0.9), -2px 2px 8px rgba(255, 255, 255, 0.9), 4px 4px 1px rgba(0, 0, 0, 0.4);
        color: var(--primary-light);
    }

    .site-title p {
        font-size: 24px;
        font-family: SimSun,'Arial Narrow', Arial, sans-serif;
        font-weight: 700;
        font-style: italic;
        letter-spacing: 0px;
        margin-top: -18px;
        color: red;
        text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.6), 1px -1px 0 rgba(255, 255, 255, 0.6), -1px 1px 0 rgba(255, 255, 255, 0.6), 1px 1px 0 rgba(255, 255, 255, 0.6);
    }

.search-area {
    width: 200px;
    position: relative;
    margin-right: 20px;
}

.search-input {
    width: 100%;
    height: 32px;
    padding: 0 40px 0 14px;
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.55);
    color: black;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .search-input::placeholder {
        color: rgba(0, 0, 0, 0.6);
    }

    .search-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
    }

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .search-btn:hover {
        background: var(--accent-light);
        transform: translateY(-50%) scale(1.05);
    }


.nav-wrapper {
    min-width: 1200px;
    width: 100%;
    background: var(--header-nar-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
}

.nav-inner {
    width: 1200px;
    margin: 0 auto;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 16px;
    padding-left: 48px;
    padding-right: 48px;
    color: white;
    text-decoration: none;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

    .nav-item:hover .nav-link,
    .nav-link.active {
        background: rgba(0, 0, 0, 0.10);
        border-bottom-color: var(--accent);
    }

.nav-arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.3s ease;
    display: none;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}


.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--fg);
    text-decoration: none;
    font-size: 22px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

    .dropdown-link:hover {
        background: #fef2f2;
        color: var(--primary);
        border-left-color: var(--primary);
    }


.news-showcase {
    width: 100%;
    padding: 1px 0;
    margin-bottom: 7px;
}

.news-showcase-inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
}

.news-showcase-left {
    flex: 1;
    position: relative;
}

.news-showcase-right {
    width: 380px;
    flex: 1;
}

.news-showcase-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue-200);
}

.news-category-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0px;
}

.category-tab {
    padding: 10px 20px;
    background: var(--blue-10);
    border: 1px solid var(--border);
    border-bottom: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: var(--fg-muted);
    position: relative;
}

    .category-tab:first-child {
        border-top-left-radius: 8px;
    }

    .category-tab:last-child {
        border-top-right-radius: 8px;
    }

    .category-tab.active {
        background: white;
        color: var(--primary);
        border-color: gainsboro;
        border-bottom: 1px solid var(--blue-300);
    }

.news-list-container {
    background: white;
    border-radius: 0 0 8px 8px;
    padding-left: 16px;
    padding-top: 9px;
    padding-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    border-top: none;
}

.news-list {
    list-style: none;
}

.news-item {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
}

    .news-item:last-child {
        border-bottom: none;
    }

    .news-item:hover {
        padding-left: 8px;
    }

.news-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--blue-400), var(--blue-500));
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px var(--blue-100);
}

.newslr-dot {
    color: var(--primary-light);
    margin-top: -2px;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-link {
    color: var(--fg);
    text-decoration: none;
    font-size: 18px !important;
    line-height: 1.5;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

    .news-link:hover {
        color: var(--primary);
    }

.news-date {
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.showcase-banner {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(14, 165, 233, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
}

.showcase-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.showcase-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

    .showcase-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .showcase-slide::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70%;
        background: linear-gradient(to top, rgba(15, 39, 68, 0.85) 0%, rgba(30, 58, 95, 0.4) 50%, transparent 100%);
    }

.showcase-caption {
    position: absolute;
    bottom: 24px;
    left: 28px;
    right: 80px;
    color: white;
    z-index: 2;
}

    .showcase-caption h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 6px;
    }

.showcase-dots {
    position: absolute;
    bottom: 20px;
    right: 28px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

showcase-dots img {
    height: 600px;
}

.showcase-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.showcase-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: var(--primary);
}

.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

    .showcase-arrow:hover {
        background: white;
        box-shadow: 0 6px 24px rgba(14, 165, 233, 0.3);
        transform: translateY(-50%) scale(1.05);
    }

    .showcase-arrow.prev {
        left: 20px;
    }

    .showcase-arrow.next {
        right: 20px;
    }


.banner-wrapper {
    width: 100%;
    background: linear-gradient(to bottom, var(--bg), #f3f4f6);
    padding: 7px 0;
}

.banner-inner {
    width: 1200px;
    margin: 0 auto;
}

.banner {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

    .banner-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .banner-slide::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    }

.banner-caption {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    color: white;
    z-index: 2;
}

    .banner-caption h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .banner-caption p {
        font-size: 15px;
        opacity: 0.85;
    }

.banner-dots {
    position: absolute;
    bottom: 16px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .banner-dot.active {
        background: var(--accent);
        transform: scale(1.2);
    }

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    color: var(--fg);
}

.banner:hover .banner-arrow {
    opacity: 1;
}

.banner-arrow:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-arrow.prev {
    left: 16px;
}

.banner-arrow.next {
    right: 16px;
}


.main-content {
    width: 1200px;
    margin: 0 auto;
    padding: 7px 0;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.section-grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 11px;
}

.section-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sectionlr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
    margin-top: 24px;
    font-size: 18px !important;
}

.sectionone-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
    margin-top: 24px;
    font-size: 18px !important;
}

.section-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

    .section-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(to right, #fef2f2, white);
}

.sectionlr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(to right, #fef2f2, white);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

    .section-title a {
        text-decoration: none;
        color: var(--primary);
    }

.section-icon {
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .section-icon svg {
        width: 14px;
        height: 14px;
        stroke: white;
    }

.section-more {
    font-size: 18px;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

    .section-more:hover {
        color: var(--primary);
    }

.section-body {
    padding: 12px 18px;
}

.sectionone-body {
    padding: 30px 5px;
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

    .sectionone-body a {
        text-decoration: none;
        font-size: 20px;
        color: var(--fg);
    }


        .sectionone-body a:hover {
            color: var(--primary);
        }


.sectionlr-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

    .sectionlr-title a {
        text-decoration: none;
        color: var(--primary);
    }

.news-list {
    list-style: none;
}

.news-item {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.2s ease;
}

    .news-item:last-child {
        border-bottom: none;
    }

    .news-item:hover {
        padding-left: 6px;
    }

.news-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-link {
    color: var(--fg);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

    .news-link:hover {
        color: var(--primary);
    }

.newslr-link {
    color: var(--fg);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.5;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
}

    .newslr-link:hover {
        color: var(--primary);
    }

.newstitlelr-link {
    color: var(--fg);
    text-decoration: none;
    font-size: 18px;
}

    .newstitlelr-link:hover {
        color: var(--primary);
    }

.news-date {
    font-size: 16px;
    color: var(--fg-muted);
    flex-shrink: 0;
}


.notice-bar {
    background: linear-gradient(90deg, var(--header-nar-bg), var(--header-nar-bg));
    border-radius: 8px;
    padding: 14px 20px;
    margin-top: 11px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
}

.img-bar {
    margin-top: 21px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    color: white;
}

    .img-bar img {
        width: 100%;
    }

.notice-label {
    background: var(--accent);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
}

.notice-text {
    flex: 1;
    overflow: hidden;
}

.notice-scroll {
    display: flex;
    animation: scroll-left 20s linear infinite;
}

    .notice-scroll:hover {
        animation-play-state: paused;
    }

.notice-item {
    white-space: nowrap;
    padding-right: 32px;
    font-size: 18px;
}

    .notice-item a {
        color: white;
        text-decoration: none;
    }

        .notice-item a:hover {
            text-decoration: underline;
        }


.totiao-bar {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 14px 20px;
    margin-top: 15px;
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100px;
    background-color: #eeeeee;
}

.totiao-text {
    overflow: hidden;
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    margin: 0 auto;
}

    .totiao-text a {
        text-decoration: none;
        color: black;
    }

        .totiao-text a:hover {
            color: var(--primary);
        }

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.quick-links {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 11px;
    margin-bottom: 17px;
}

.quick-link {
    background: white;
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--fg);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

    .quick-link:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-light);
    }

        .quick-link:hover .quick-icon {
            background: var(--primary-dark);
        }

.quick-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .quick-icon svg {
        width: 24px;
        height: 24px;
        stroke: white;
    }

.quick-text {
    font-size: 24px;
    font-weight: 500;
}


.footer {
    min-width: 1200px;
    width: 100%;
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 40px;
}

.footer-inner {
    color: var(--footer);
    width: 1200px;
    margin: 0 auto;
    padding: 40px 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h4 {
    color: var(--footer);
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-info p {
    font-size: 16px;
    line-height: 2;
}


.footer-links {
    color: var(--footer);
    display: flex;
    gap: 60px;
}

.footer-col h5 {
    color: var(--footer);
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-col ul {
    color: var(--footer);
    list-style: none;
}

.footer-col li {
    color: var(--footer);
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--footer);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

    .footer-col a:hover {
        color: var(--primary);
    }

.footer-bottom {
    color: var(--footer);
    padding-top: 20px;
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

    .footer-bottom p {
        color: var(--footer);
        margin-bottom: 6px;
    }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

.news-title {
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
}

.news-fromtxt {
    font-size: 14px;
    color: gray;
    text-align: center;
}

.news-txt {
    padding: 30px 30px;
    font-size: 1.2rem;
}

    .news-txt img {
        width: auto;
        max-width: 900px;
    }

.news-authtxt {
    padding: 17px 70px;
    text-align: right;
}

.pages {
    margin-top: 20px;
    margin-left: 10px;
    list-style-type: none;
    font-size: 12px;
}

    .pages a {
        border: 1px solid #ccc;
        padding: 2px 10px;
        cursor: pointer;
        color: #333;
        text-decoration: none;
        vertical-align: middle;
        display: inline-block;
        font-size: 15px;
    }

    .pages .current {
        color: #fff;
        background: #cc0001;
        border: none;
        border: 1px solid #cc0001;
        padding: 2px 10px;
    }

    .pages input {
        width: 43px;
        line-height: 23px;
        color: #333;
        border: 1px solid #b2b2b2;
        margin: 0 5px;
        background: none;
        padding: 0 2px;
    }

.query-body {
    background: white;
    width: 100%;
    padding: 12px 28px;
}

    .query-body a {
        color: var(--fg);
        text-decoration: none;
        font-size: 17px;
        display: block;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color 0.2s ease;
    }

    .query-body .title {
        font-size: 1.3rem;
        font-weight: bold;
    }

    .query-body a:hover {
        color: rgba(185, 28, 28, 0.7);
    }

.text-start {
    background: linear-gradient(to right, #fef2f2, white, #fef2f2);
    justify-content: center;
}


/* 滚动轨道 */
.scroll-track {
    display: flex;
    width: calc(200% + 40px); /* 两倍宽度加上间隔 */
    animation: scrollLeft 40s linear infinite;
}

    .scroll-track:hover {
        animation-play-state: paused;
    }

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px)); /* 移动一半宽度加上间隔的一半 */
    }
}

/* 图片卡片样式 */
.image-card {
    flex: 0 0 auto;
    width: 210px;
    margin-right: 20px;
}

    .image-card img {
        width: 100%;
        height: 130px;
        object-fit: cover;
        display: block;
        border-radius: 4px;
    }

    .image-card h3 {
        color: #333;
        font-size: 18px;
        margin-top: 10px;
        line-height: 1.4;
        text-align: center;
        font-weight: normal;
    }
