.number-ico {
    width: 55px;
    height: 55px;
}

.stat-card {
    transition: all 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 3px 5px rgba(0, 0, 0, 0.02);
}

.stat-icon-wrapper {
    transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.stat-card:hover .stat-icon-wrapper {
    transform: translateY(-6px);
}

.stat-label-text {
    transition: transform 0.55s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.stat-card:hover .stat-label-text {
    transform: translateY(3px);
}

.stat-number {
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.4, 1.1), color 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.02);
}


.logo-display {
    width: 100%;
    height: 90px;
    padding: 20px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-partners .logo-display {
    height: 120px;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .logo-image {
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .stat-card:hover .stat-icon-wrapper {
        transform: translateY(-10px);
    }

    .stat-card:hover .stat-label-text {
        transform: translateY(8px);
    }
}


@media (max-width: 767.98px) {
    .stats-row .rounded-3.border.p-lg-5 {
        padding: 1.5rem !important;
    }
}

.section-winner .accordion-body a {
    color: #999 !important;
}

.section-winner .accordion-body a:hover {
    color: #d7052c !important;
}


.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid #edf2f7;
    padding-top: 2rem;
}

.page-btn {
    background: white;
    border: 1px solid var(--border);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #334155;
    background: #f9fafb;
    user-select: none;
}

.page-btn:hover:not(:disabled) {
    background: #eef2ff;
    border-color: #a5b4fc;
    color: #1e3a8a;
}

.page-btn:active:not(:disabled) {
    transform: scale(0.97);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.page-indicator {
    background: white;
    padding: 0.5rem 1.6rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    background: #eef2ff;
    color: #333;
    letter-spacing: 0.4px;
}

.event-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16, 72, 207, 0.1);
}

.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.event-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, #1048cf, #99195d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.event-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #1a1e2b;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.event-desc {
    color: #6c757d;
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.event-meta {
    font-size: 1rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.section-title {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, #1048cf, #99195d);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .news-header h2 {
        font-size: 1.8rem;
    }

    .event-image {
        height: 180px;
    }
}

.why-exhibit-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-row {
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #1048cf, #99195d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label {
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.reason-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16, 72, 207, 0.1);
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #1048cf, #99195d);
    border-radius: 0 2px 2px 0;
}

.reason-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, #1048cf, #99195d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.reason-icon {

    margin-bottom: 1rem;
    display: block;
}

.reason-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1e2b;
    margin-bottom: 0.75rem;
    padding-right: 3rem;
}

.reason-desc {
    color: #4a4f5c;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.breadcrumb-nav {
    background: transparent;
    padding: 1rem 0;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #1048cf;
}


.article-container {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}


.category-badge {
    background: linear-gradient(to right, #1048cf, #99195d);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    display: inline-block;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}


.article-title {
    font-weight: 800;
    font-size: 2rem;
    color: #1a1e2b;
    line-height: 1.3;
    margin-bottom: 1rem;
}


.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    color: #6c757d;
    font-size: 0.9rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


.featured-image-wrapper {
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
}

.article-content {
    color: #4a4f5c;
    font-size: 1.05rem;
    line-height: 1.9;
}

.article-content h3 {
    font-weight: 700;
    color: #1a1e2b;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}


.highlight-card {
    background: linear-gradient(135deg, rgba(16, 72, 207, 0.04), rgba(153, 25, 93, 0.04));
    border-left: 4px solid #1048cf;
    border-radius: 0.5rem;
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}

.highlight-card h5 {
    font-weight: 700;
    color: #1a1e2b;
}

.highlight-card ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.highlight-card li {
    margin-bottom: 0.4rem;
    color: #4a4f5c;
}


.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.back-link {
    color: #1048cf;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.back-link:hover {
    color: #99195d;
}

.share-btns {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f3f5;
    color: #495057;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.share-btn:hover {
    background: linear-gradient(to right, #1048cf, #99195d);
    color: #fff;
}

@media (max-width: 768px) {
    .article-container {
        padding: 1.5rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-content {
        font-size: 1rem;
    }
}

.ufi-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 72, 207, 0.06);
    border: 1px solid rgba(16, 72, 207, 0.15);
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1048cf;
    margin-top: 0.75rem;
}

.section-title {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(to bottom, #1048cf, #99195d);
    border-radius: 2px;
}

@media (max-width: 768px) {

    .reason-card {
        padding: 1.5rem 1.25rem;
    }

    .reason-number {
        font-size: 2.5rem;
        top: 0.5rem;
        right: 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

.section-title-decor {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #1a1a1a;
}

.section-title-decor::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: #c00;
    border-radius: 2px;
}

.advantage-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(192, 0, 0, 0.1);
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(192, 0, 0, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #b00;
    font-size: 1.8rem;
}

.stat-highlight {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    color: #b00;
}

.bg-soft-red {
    background-color: #fef5f5;
}

.service-pillar {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border-left: 5px solid #b00;
}

.list-check li {
    list-style: none;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: baseline;
}

.list-check li::before {
    content: "✓";
    color: #b00;
    font-weight: bold;
    margin-right: 0.6rem;
    font-size: 1.2rem;
}

@media (max-width: 767px) {
    .stat-highlight {
        font-size: 2rem;
    }
}





.category-card {
    background: #F8F8F8;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    min-height: auto;
}

.category-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.category-number {
    width: 48px;
    height: 48px;

    padding: 0 2rem;
    min-width: 48px;
    text-align: center;
    background: var(--bs-primary-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 2.2rem;
    background: var(--bs-primary-bg);
}

.category-icon {
    font-size: 68px;
    color: #333;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.category-card.active .category-icon {
    color: var(--bs-primary);
}

.category-title {
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
}

.category-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: left;
}

.category-card:hover .category-description {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover .category-description h4 {
    color: var(--bs-primary);
}

.active-underline {
    width: 20px;
    height: 3px;
    margin-top: 8px;
    background-color: var(--bs-primary);
}

.section-referral .swiper-slide .arrow-icon {
    opacity: 1;
}

.section-referral .card-hoverable:hover .ciaaf-arrow {
    stroke: var(--bs-primary);
}

.section-referral .card-hoverable:hover .ciaaf-arrow path {
    opacity: 1 !important;
}

.accordion {
    --bs-accordion-btn-icon-width: 1rem;
}

.filter-btn {

    font-size: 20px;
    transition: all 0.3s ease;
    border: none;
    border-bottom: 1px solid #efefef;
    background-color: transparent;

}

.filter-btn.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.dropdown-toggle::after {
    margin-left: auto;
}

.dropdown-menu {
    --bs-dropdown-min-width: 100%;
    --bs-dropdown-padding-x: 1rem;
}

.dropdown-menu li {
    display: inline-block;
    width: auto;
}

.dropdown-menu .dropdown-item {
    white-space: nowrap;
    /* padding: 0.5rem 1rem; */
    display: block;
}

.filter-btn.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.filter-btn.dropdown-toggle:after {
    display: inline-block;
    margin-left: auto;
    vertical-align: middle;
    content: "";
    border: none;
    width: 13px;
    height: 13px;
    border-right: 2px solid #BFBFBF;
    border-bottom: 2px solid #BFBFBF;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.filter-btn.dropdown-toggle[aria-expanded="true"]:after {
    transform: rotate(-135deg);
}

.filter-btn.dropdown-toggle:empty:after {
    margin-left: auto;
}




.filter-option {
    display: block;
    /*padding: 2px 0px;   */
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #999;
    margin-right: 5px;
    margin-bottom: 5px;
    outline: none;
    user-select: none;
}

.filter-option:hover,
.filter-option:focus,
.filter-option.default-active:focus {
    color: var(--bs-primary);
}


.category-tag {
    display: inline-block;
    padding: 10px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
    margin-right: 8px;
    background-color: #F5F5F5;
}

.glass-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    transition: all 0.3s ease;
}

.exhibition-header {
    background: var(--bs-primary-bg);
    padding: 3rem 1.5rem;
    border-radius: 0.75rem;
    color: #fff;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 20px rgba(16, 72, 207, 0.15);
}

.exhibition-header h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.exhibition-header .lead {
    opacity: 0.9;
    font-weight: 400;
    font-size: 1.2rem;
}

.new-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 2rem;
    padding: 0.25rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-left: 0.75rem;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.category-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.75rem 1.5rem;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(16, 72, 207, 0.08);
    border-color: rgba(16, 72, 207, 0.2);
}


.category-title {
    font-weight: 650;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1e2b;
    letter-spacing: -0.2px;
}

.category-items {
    color: #4a4f5c;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    padding-left: 1.2rem;
    flex-grow: 1;
}

.category-items li {
    margin-bottom: 0.25rem;
}

.featured-douyin {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-top: 2.5rem;
    border: 1px solid rgba(153, 25, 93, 0.15);
    box-shadow: 0 8px 18px rgba(153, 25, 93, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}


@media (max-width: 768px) {
    .exhibition-header h2 {
        font-size: 2rem;
    }

    .category-card {
        padding: 1.5rem 1rem;
    }
}

.news-item {
    padding: 35px 30px;
    background-color: #F6F6F6;
    transition: background-color 0.2s ease;
    transition: border-left-color 0.3s ease, background-color 0.3s ease;
    border-left: 10px solid transparent;

}


.news-item:hover {
    background-color: #fafafa;
    border-left-color: #8FC31F;

}

.news-item:hover .news-arrow-btn {
    background-color: var(--bs-primary);
}

.news-item:hover .news-arrow-btn i {
    color: #fff;
}

.news-content {
    flex: 1;
    padding-right: 20px;
}

.news-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-date {
    font-size: 16px;
    color: #999;
}

.news-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.news-arrow-btn i {
    color: #ccc;
    font-size: 18px;
    transition: color 0.2s ease;
}


.display-area {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.image-container {
    width: 100%;
    position: relative;
    padding-top: 36%;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.image-container .ratio {
    transition: opacity 0.3s ease;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-container .ratio.active {
    opacity: 1;
    position: relative;
}

.image-container {
    position: relative;
    min-height: 300px;
}


.image-container img.active {
    opacity: 1;
    transform: scale(1);
}

.image-container img:not(.active) {
    opacity: 0;
    transform: scale(1.05);
}




.info-left {
    flex: 1;
    transition: opacity 0.4s ease;
    padding-right: 15px;
}

.info-title {
    transition: all 0.4s ease;
}

.info-description {
    transition: all 0.4s ease;
}


.nav-buttons {
    display: flex;

    align-items: center;
}

.benefits-nav-btn {
    border-left: 1px #efefef solid;
    border-right: 1px #efefef solid;
    background-color: transparent;
    border-top: none;
    border-bottom: none;
    border-left: none;
    outline: none;
    color: #999;
    cursor: pointer;

    transition: all 0.3s ease;
    position: relative;

    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    line-height: 1.3;
}

.benefits-nav-btn:hover,
.benefits-nav-btn.active {
    color: var(--bs-primary);
    border-left: 1px #333 solid;
    border-right: 1px #333 solid;
}


.category-description h4::after {
    content: '';
    width: 20px;
    height: 3px;
    margin-top: 10px;
    background-color: var(--bs-primary);
    display: block;
    transition: all 0.3s ease;
}


.download a {
    border: 1px solid #D9D9D9;
    transition: all 0.3s ease;
}


.download a svg path {
    stroke: #cccccc;
    transition: stroke 0.3s ease;
}


.download a:hover svg path {
    stroke: var(--bs-primary);
}

.accordion-button:not(.collapsed):after {
    transform: rotate(0deg);
}

.accordion-button {
    --bs-accordion-active-bg: var(--bs-primary);
    --bs-accordion-active-color: var(--bs-white);
    --bs-accordion-btn-padding-y: 2rem;
    font-size: 22px;
    --bs-accordion-btn-bg: #F4F4F4;
    --bs-accordion-btn-icon: url("../images/+.svg");
    --bs-accordion-btn-active-icon: url("../images/-.svg");
}


.section-winner .accordion-button {
    --bs-accordion-btn-bg: var(--bs-white);
    --bs-accordion-active-bg: var(--bs-white);
    --bs-accordion-active-color: #222222;

}

.section-notice .g-lg-5 {
    --bs-gutter-x: 5rem;
}


.section-inner img {
    max-width: 100%;
    width: 100%;
}

.section-inner {
    min-height: 500px;
}

div.pages {
    height: auto;
    overflow: hidden;
    text-align: center;
    margin: 40px auto 20px;
    font-size: 0;
}

div.pages li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    /*background: #fff;*/
    font-size: 15px;
    margin: 0 5px;
    height: 48px;
    line-height: 48px;
    border: none;
    border-radius: 0;
    overflow: hidden;
    color: #dfdfdf;
    width: 48px;
    border: 1px solid #fff;
}

div.pages li a,
div.pages li span {
    display: block;
    padding: 0 4px;
    height: 100%;
    color: #888;
    font-size: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

div.pages li.active,
div.pages li:not(.disabled):hover {
    color: #fff;

    background-color: #8FC31F;
}

div.pages li.active a,
div.pages li.active span,
div.pages li:not(.disabled):hover a {
    color: #fff;
}

div.pages li.disabled span {
    color: #dbdbdb;
}




.year-filter {
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.year-filter:hover {
    color: #8FC31F !important;
}

.section-news-list .year-filter.active,
.section-news-list .year-filter.active a,
.section-news-list .year-filter.default-active,
.section-judges .year-filter.active,
.section-judges .year-filter.active a,
.section-judges .year-filter.default-active {

    color: #8FC31F;
}

.empty-year-message {
    width: 100%;
}


.faq-accordion .accordion-body p,
.faq-accordion .accordion-body span {
    word-break: keep-all !important;
    margin-bottom: 0;
}

.faq-accordion .accordion-body span {
    display: inline !important;
    text-wrap-mode: initial !important;
    white-space: normal !important;
    word-break: normal !important;
}


:root {
    --primary-start: #1048cf;
    --primary-end: #99195d;
}

.register-header {
    background: linear-gradient(to right, #1048cf, #99195d);
    padding: 2.5rem 2rem;
    border-radius: 0.75rem;
    color: #fff;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px rgba(16, 72, 207, 0.12);
}

.register-header h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.register-header .badge-free {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 步骤条 */
.steps-bar {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #adb5bd;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.step-item.active {
    color: #1048cf;
}

.step-item.completed {
    color: #198754;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    border: 2px solid currentColor;
    flex-shrink: 0;
}

.step-item.active .step-number {
    background: #dc0f33;
    border-color: transparent;
    color: #fff;
}

.step-item.completed .step-number {
    background: #dc0f33;
    border-color: #dc0f33;
    color: #fff;
}

.step-divider {
    width: 60px;
    height: 2px;
    background: #dee2e6;
    margin: 0 0.75rem;
}

.step-item.completed+.step-divider {
    background: #dc0f33;
}

.form-card-list {
    background: #fff;
    border-radius:  0 0 1rem 1rem;
    padding: 2.5rem 5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-card-list .form-section-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1e2b;
    margin-bottom: 0.25rem;
}

.form-card-list .form-section-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-card-list .form-label {
    font-weight: 600;
    font-size: 1.2rem;
    color: #1a1e2b;
    margin-bottom: 0.4rem;
}

.form-card-list .form-label .required-star {
    color: #dc3545;
}

.form-card-list .form-control,
.form-card-list .form-select {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-card-list .form-control:focus,
.form-card-list .form-select:focus {
    border-color: #1048cf;
    box-shadow: 0 0 0 0.2rem rgba(16, 72, 207, 0.15);
}

.rules-list {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #495057;
}

.rules-list li {
    margin-bottom: 0.4rem;
}

.rules-list li:last-child {
    margin-bottom: 0;
}

.btn-gradient {
    background: linear-gradient(to right, #1048cf, #99195d);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 0.85rem 2.5rem;
    border-radius: 2.5rem;
    font-size: 1.05rem;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-gradient:hover {
    transform: translateY(-6px);
    color: #fff;
}

@media (max-width: 768px) {
    .register-header h2 {
        font-size: 1.5rem;
    }

    .form-card-list {
        padding: 1.5rem;
    }

    .step-divider {
        width: 30px;
    }

    .step-item {
        font-size: 0.75rem;
    }

    .step-number {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
}

.scale-in {
    animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 992px) {
    .section-money .col:nth-of-type(3) {
        width: 100%;
    }

    .section-judges .dropdown-menu {
        --bs-dropdown-padding-y: 1rem !important;
    }

    .section-judges .filter-option {
        padding: 0;
    }

    .section-judges .filter-btn {
        padding-bottom: 10px;
    }

    .section-money .card-money {
        min-height: 330px;
    }

    .info-left {
        max-width: 100%;
    }

    .benefits-nav-btn {
        width: 80px;
        padding: 20px 20px;
    }

    .category-title {
        font-size: 20px;
    }

    .category-icon .bi {
        font-size: 54px;
        margin-bottom: 18px;
    }

    .category-card {
        min-height: 200px;
    }

    .category-description {
        font-size: 14px;
    }

    .section-judges .filter-btn {
        min-width: 150px;
    }
}

@media (min-width: 1400px) {
    .section-money .col:nth-of-type(3) {
        width: 33.3%;
    }

    .section-money .card-money {
        min-height: 530px;
    }

    .info-left {
        max-width: 460px;
    }

    .benefits-nav-btn {
        width: 100px;
        padding: 30px 25px;
    }

    .category-title {
        font-size: 22px;
    }

    .category-description {
        font-size: 16px;
    }

    .fs-lg-25 {
        font-size: 25px;
    }
}

@media (min-width: 1600px) {
    .info-left {
        max-width: 560px;
    }

    .lh-1 {
        line-height: 0.8 !important
    }
    .section-register .container {
        max-width: 1500px;
    }
}



@media (max-width:991.98px) {

    .faq-accordion .accordion-body p,
    .faq-accordion .accordion-body span {
        font-size: 14px;
    }

    .ciaaf-inner-content .fs-xl {
        font-size: 14px !important;
    }

    .ciaaf-left-border::before {
        height: calc(100% - 30px);
        width: 8px;
    }

    .year-filter-container,
    .ciaaf-filter-container {
        gap: 0 !important;
    }

    .accordion-button {
        --bs-accordion-btn-padding-y: 1.5rem;
        font-size: 18px;
    }

    .section-judges .filter-btn {
        min-width: 150px;
    }

    .section-judges .dropdown-menu li {
        padding: 0 2px;
    }

    .category-tag {
        font-size: 14px;
        margin-bottom: 8px;
        padding: 8px 20px;
    }

    .filter-option {
        font-size: 14px;
        margin-right: 4px;
        margin-bottom: 4px;
    }

    .filter-btn {
        font-size: 16px;
        padding: 8px 0px;
    }

    .year-filter,
    .ciaaf-filter {
        display: inline-block !important;
    }

    .glass-title .fs-h4 {
        font-size: 15px;
    }

    .info-section {
        flex-direction: column;

    }

    .info-left {
        padding-right: 0;
        text-align: center;
        max-width: 560px;
    }

    .divider {
        width: 60px;
        height: 2px;
        margin: 10px 0;
    }

    .nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .info-title {
        font-size: 18px;
    }

    .info-description {
        font-size: 14px;
    }

    .benefits-nav-btn {
        padding: 10px 20px;
    }

    .notice-item {
        border-bottom: 1px solid #efefef;
    }

    .section-notice .row .col {

        padding-bottom: 0.5rem;
    }
}

@media (max-width: 768.98px) {
    .news-item {
        padding: 15px;
        display: block;
    }

    .news-title {
        font-size: 15px;
    }

    .news-date {
        font-size: 12px;
    }

    .news-arrow-btn {
        display: none;
    }

}

@media (max-width:567.98px) {
    .category-tag {
        font-size: 12px;
        margin-bottom: 6px;
        padding: 6px 10px;
        margin-right: 0;
    }

    .info-title {
        font-size: 16px;
    }



    .benefits-nav-btn {
        font-size: 12px;
        padding: 5px;
        margin-bottom: 8px;
    }
}





.hero-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.bg-image-section {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}


.glass-panel {
    position: relative;
    z-index: 10;
    margin: 5% -10% 5% 0;
    padding: 50px 40px;
    width: 60%;
    max-width: 850px;
    background: rgba(239, 239, 239, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .glass-panel {
        width: 70%;
        margin-right: -5%;
        padding: 40px 40px 20px 30px;
    }

    .glass-panel img {
        max-width: 100%;
    }

    .glass-panel p {
        font-size: 16px !important;
    }

    .bg-image-section {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        min-height: auto;
    }

    .bg-image-section {
        position: relative;
        width: 100%;
        height: 50vh;
    }

    .glass-panel {
        width: 90%;
        margin: -60px auto 40px;

    }

    .contact-icon .bi {
        font-size: 2.5rem;
    }

}

@media (max-width: 480px) {
    .glass-panel {
        width: 95%;

        margin-top: -40px;
    }

}






.stats-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 0.75rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(to right, #1048cf, #99195d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 0.2rem;
}


.exhibit-block {
    margin-bottom: 4.5rem;
    position: relative;
}

.exhibit-block .row .col-lg-6 {
    margin-top: 0;
}


.exhibit-image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    position: relative;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.exhibit-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(16, 72, 207, 0.15);
}

.exhibit-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;

}

.exhibit-image-wrapper:hover img {
    transform: scale(1.03);
}


.image-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    color: #1048cf;
    font-weight: 800;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.exhibit-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 1rem 0;
}

.exhibit-title {
    font-weight: 700;
    font-size: 1.6rem;
    color: #1a1e2b;
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 1rem;
}

.exhibit-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    /* max-width: 550px; */
}

.exhibit-items li {
    background: #f8f9fc;
    padding: 0.5rem 1.4rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    color: #4a4f5c;
    line-height: 1.2;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.exhibit-items li:hover {
    background: linear-gradient(135deg, rgba(16, 72, 207, 0.08), rgba(153, 25, 93, 0.08));
    border-color: rgba(16, 72, 207, 0.2);
    color: #1048cf;
}

.flex-lg-row-reverse .exhibit-title::after {
    left: auto;
    right: 0;
}

.douyin-section {
    background: linear-gradient(135deg, rgba(16, 72, 207, 0.04), rgba(153, 25, 93, 0.04));
    border-radius: 1rem;
    padding: 2.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(153, 25, 93, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.douyin-section::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(16, 72, 207, 0.04);
    border-radius: 50%;
}

.douyin-icon-wrapper {
    font-size: 2.8rem;
    background: linear-gradient(135deg, rgba(16, 72, 207, 0.1), rgba(153, 25, 93, 0.1));
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.douyin-content {
    position: relative;
    z-index: 1;
}

.inner-gradient {

    font-weight: 700;
}

@media (max-width: 1200px) {
    .exhibit-items li {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .exhibit-block .row {
        flex-direction: column-reverse;
    }
    .exhibit-block {
        margin-bottom: 1rem;
    }
    .theme-page-header h2 {
        font-size: 1.8rem;
    }
    .exhibit-block .row .col-lg-6 {
    margin-top: 0.8rem;
   }

    .exhibit-title {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .exhibit-image-wrapper {
        min-height: 240px;
        margin-top: 1rem;
    }

    .exhibit-content {
        padding: 0;
    }

    .stats-strip {
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .exhibit-items li {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

.w-30 {
    width: 30%;
}

.exhibition-header {
    background: linear-gradient(to right, #1048cf, #99195d);
    padding: 3rem 2rem;
    border-radius: 1rem 1rem 0 0;
    color: #fff;
    margin-bottom: 0rem;
    box-shadow: 0 8px 20px rgba(16, 72, 207, 0.15);
}

.exhibition-header h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
    font-size: 2.5rem;
}

.schedule-page-header {
    background: linear-gradient(135deg, #1048cf 0%, #99195d 100%);
    padding: 3rem 2.5rem;
    border-radius: 1rem 1rem 0 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(16, 72, 207, 0.2);
}
/* 
.schedule-page-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
} */

.schedule-page-header h2 {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.schedule-page-header .subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

/* 表格卡片 */
.schedule-table-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.schedule-table-card .card-header {
    background: linear-gradient(to right, #1048cf, #99195d);
    color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 700;
    
    letter-spacing: 0.5px;
    border: none;
}

.schedule-table-card .card-header.phase-build {
    background: linear-gradient(to right, #1048cf, #6b21a8);
}

.schedule-table-card .card-header.phase-show {
    background: linear-gradient(to right, #99195d, #e11d48);
}

.schedule-table-card .card-header.phase-moveout {
    background: linear-gradient(to right, #374151, #111827);
}

.schedule-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

.schedule-table thead th {
    background: #f8fafc;
    font-weight: 700;
    font-size: 0.85rem;
    color: #334155;
    padding: 0.85rem 0.75rem;
    text-align: center;
    border-bottom: 2px solid #e2e8f0;
}

.schedule-table tbody td {
    padding: 0.8rem 0.75rem;
    text-align: center;
    vertical-align: middle;
    color: #1e293b;
    font-size: 1rem;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
}

.schedule-table tbody tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover td {
    background: #fafbfc;
}

.schedule-table .date-col {
    font-weight: 700;
    color: #1a1e2b;
    font-size: 0.95rem;
    white-space: nowrap;
}

.schedule-table .time-highlight {
    background: linear-gradient(to right, #1048cf, #99195d);
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 0.35rem;
    padding: 0.3rem 0.5rem;
    display: inline-block;
    font-size: 0.85rem;
    white-space: nowrap;
}

.schedule-table .time-highlight-dark {
    background: #1e293b;
    color: #fff !important;
    font-weight: 700 !important;
    border-radius: 0.35rem;
    padding: 0.3rem 0.5rem;
    display: inline-block;
    font-size: 0.85rem;
    white-space: nowrap;
}

.schedule-table .note-text {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: left;
    line-height: 1.5;
}

/* 注意事项卡片 */
.notice-card {
    background: #fffdf4;
    border-left: 4px solid #f59e0b;
    border-radius: 0.5rem;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.7;
}

.notice-card h6 {
    color: #92400e;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.notice-card ul {
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.notice-card li {
    margin-bottom: 0.3rem;
}

.notice-card li:last-child {
    margin-bottom: 0;
}

/* 阶段标签 */
.phase-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.phase-badge.build {
    background: rgba(16, 72, 207, 0.1);
    color: #1048cf;
}

.phase-badge.show {
    background: rgba(153, 25, 93, 0.1);
    color: #99195d;
}

.phase-badge.moveout {
    background: rgba(55, 65, 81, 0.1);
    color: #374151;
}

/* 底部操作区 */
.action-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

@media (max-width: 768px) {
    .schedule-page-header h2 {
    font-size: 1.6rem;
    }
    .schedule-table thead th,
    .schedule-table tbody td {
    padding: 0.6rem 0.4rem;
    font-size: 0.78rem;
    }
    .schedule-table .time-highlight,
    .schedule-table .time-highlight-dark {
    font-size: 0.75rem;
    padding: 0.25rem 0.4rem;
    }
    .schedule-table .note-text {
    font-size: 0.7rem;
    }
}