.guide_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 20px;
        margin-top: 80px;
    }

    .guide_title {
        font-size: 42px;
        font-weight: 700;
        color: #2c3e50;
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        padding-bottom: 20px;
    }

    .guide_title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, #3498db, #2980b9);
        border-radius: 2px;
    }

    .gallery_swiper {
        width: 100%;
        padding: 60px 0 80px;
        overflow: visible;
    }

    .swiper-slide {
        width: 900px;
        transform: scale(0.8);
        transition: all 0.3s ease;
        opacity: 0.5;
    }

    .swiper-slide-active {
        transform: scale(1.1);
        opacity: 1;
        z-index: 2;
    }

    .swiper-slide-prev,
    .swiper-slide-next {
        opacity: 0.8;
        z-index: 1;
    }

    .gallery_item {
        background: #fff;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0,0,0,0.18);
        transition: all 0.3s ease;
        height: 420px;
        display: flex;
        flex-direction: column;
        position: relative;
        cursor: pointer;
    }

    .gallery_image {
        height: 220px;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .gallery_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery_overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--icon-color-1, rgba(52, 152, 219, 0.9)), var(--icon-color-2, rgba(41, 128, 185, 0.9)));
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery_overlay i {
        font-size: 45px;
        color: rgba(255, 255, 255, 0.9);
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .gallery_item:hover .gallery_overlay {
        opacity: 1;
    }

    .gallery_item:hover .gallery_overlay i {
        transform: scale(1);
    }

    .gallery_item:hover .gallery_image img {
        transform: scale(1.1);
    }

    .gallery_tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: auto;
        flex-grow: 0;
    }

    .tag {
        display: inline-flex;
        align-items: center;
        padding: 3px 10px;
        background: rgba(var(--icon-color-1-rgb), 0.08);
        color: var(--icon-color-1);
        border-radius: 10px;
        font-size: 13px;
        font-weight: 500;
        white-space: nowrap;
        height: 24px;
        line-height: 1;
    }

    .gallery_content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
        position: relative;
    }

    .gallery_content h3 {
        font-size: 24px;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 8px 0;
    }

    .gallery_content p {
        color: #666;
        line-height: 1.4;
        font-size: 15px;
        margin: 0 0 12px 0;
    }

    .swiper-slide:nth-child(1) .gallery_item {
        --icon-color-1: #FF6B6B;
        --icon-color-2: #EE5253;
        --icon-color-1-rgb: 255, 107, 107;
    }

    .swiper-slide:nth-child(2) .gallery_item {
        --icon-color-1: #4ECDC4;
        --icon-color-2: #45B7AF;
        --icon-color-1-rgb: 78, 205, 196;
    }

    .swiper-slide:nth-child(3) .gallery_item {
        --icon-color-1: #FF9F43;
        --icon-color-2: #F19066;
        --icon-color-1-rgb: 255, 159, 67;
    }

    .swiper-slide:nth-child(4) .gallery_item {
        --icon-color-1: #A55EEA;
        --icon-color-2: #8854D0;
        --icon-color-1-rgb: 165, 94, 234;
    }

    .swiper-slide:nth-child(5) .gallery_item {
        --icon-color-1: #20BF6B;
        --icon-color-2: #26DE81;
        --icon-color-1-rgb: 32, 191, 107;
    }

    .swiper-slide:nth-child(6) .gallery_item {
        --icon-color-1: #45AAF2;
        --icon-color-2: #2D98DA;
        --icon-color-1-rgb: 69, 170, 242;
    }

    .swiper-slide:nth-child(7) .gallery_item {
        --icon-color-1: #FFA502;
        --icon-color-2: #ECCC68;
        --icon-color-1-rgb: 255, 165, 2;
    }

    .swiper-slide:nth-child(8) .gallery_item {
        --icon-color-1: #FC5C65;
        --icon-color-2: #EB3B5A;
        --icon-color-1-rgb: 252, 92, 101;
    }

    .swiper-slide:nth-child(9) .gallery_item {
        --icon-color-1: #45AAF2;
        --icon-color-2: #4B7BEC;
        --icon-color-1-rgb: 69, 170, 242;
    }

    .swiper-slide:nth-child(10) .gallery_item {
        --icon-color-1: #2BCB96;
        --icon-color-2: #26A69A;
        --icon-color-1-rgb: 43, 203, 150;
    }

    .swiper-slide:nth-child(11) .gallery_item {
        --icon-color-1: #FF6B81;
        --icon-color-2: #FF4757;
        --icon-color-1-rgb: 255, 107, 129;
    }

    .swiper-slide:nth-child(12) .gallery_item {
        --icon-color-1: #5352ED;
        --icon-color-2: #3742FA;
        --icon-color-1-rgb: 83, 82, 237;
    }

    .icon_thumbnail {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--icon-color-1, #3498db), var(--icon-color-2, #2980b9));
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .icon_thumbnail i {
        font-size: 60px;
        color: rgba(255, 255, 255, 0.9);
        filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
        transition: all 0.3s ease;
    }

    .gallery_item:hover .icon_thumbnail i {
        transform: scale(1.1) rotate(5deg);
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: #2c3e50;
        background: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: #2c3e50;
        color: white;
    }

    .swiper-pagination {
        position: relative;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #cbd5e0;
        opacity: 1;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0 !important;
    }

    .swiper-pagination-bullet:hover {
        background: #2c3e50;
        transform: scale(1.2);
    }

    .swiper-pagination-bullet-active {
        background: #2c3e50;
        transform: scale(1.2);
    }

    .swiper-pagination-bullet-active:hover {
        transform: scale(1.3);
    }

    .gallery_notice {
        text-align: center;
        padding: 40px;
        background: linear-gradient(135deg, #f6f9fc, #eef2f7);
        border-radius: 20px;
        margin-top: 60px;
    }

    .gallery_notice i {
        font-size: 32px;
        color: #3498db;
        margin-bottom: 15px;
    }

    .gallery_notice p {
        font-size: 18px;
        color: #2c3e50;
        line-height: 1.6;
        margin: 0;
    }

    @media (max-width: 1024px) {
        .guide_container {
            padding: 30px 20px;
        }

        .guide_title {
            font-size: 36px;
            margin-bottom: 40px;
        }

        .gallery_notice {
            padding: 30px 20px;
            margin-top: 40px;
        }

        .swiper-slide {
            width: 750px;
        }

        .gallery_item {
            height: 450px;
        }

        .gallery_image {
            height: 240px;
        }
    }

    @media (max-width: 768px) {
        .guide_container {
            padding: 20px 10px;
            overflow-x: hidden;
        }

        .gallery_swiper {
            padding: 20px 0 40px;
            overflow: hidden;
        }

        .swiper-slide {
            width: 600px;
        }

        .gallery_item {
            height: auto;
            min-height: 480px;
        }

        .gallery_image {
            height: 260px;
        }

        .gallery_content {
            padding: 20px;
        }

        .gallery_content h3 {
            font-size: 22px;
            margin: 0 0 8px 0;
        }

        .gallery_content p {
            font-size: 16px;
            line-height: 1.5;
            margin: 0 0 15px 0;
            color: #444;
        }

        .gallery_tags {
            order: -1;
            margin-bottom: 12px;
        }

        .tag {
            font-size: 13px;
            padding: 4px 12px;
            height: 26px;
        }

        .icon_thumbnail i {
            font-size: 65px;
        }
        
        .gallery_overlay i {
            font-size: 50px;
        }
    }

    @media (max-width: 480px) {
        .guide_container {
            padding: 0 10px;
        }

        .swiper-slide {
            width: 450px;
        }

        .swiper-slide-active {
            transform: scale(1);
        }

        .gallery_item {
            min-height: 460px;
        }

        .gallery_image {
            height: 240px;
        }

        .gallery_content {
            padding: 18px;
        }

        .gallery_content h3 {
            font-size: 20px;
            margin: 0 0 8px 0;
        }

        .gallery_content p {
            font-size: 15px;
            line-height: 1.4;
            margin: 0 0 12px 0;
        }

        .gallery_tags {
            margin-bottom: 10px;
        }

        .tag {
            font-size: 12px;
            padding: 4px 10px;
            height: 24px;
        }

        .icon_thumbnail i {
            font-size: 55px;
        }
        
        .gallery_overlay i {
            font-size: 45px;
        }

        .gallery_notice p {
            font-size: 14px;
        }

        .gallery_notice br {
            display: none;
        }
    }