body {
    opacity: 1 !important;
}

.case-detail-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.case-detail-header {
    margin-bottom: 10px;
}
.c_floor_guide {
    width: 100%;
    padding: 10px 5%;
    box-sizing: border-box;
    background: linear-gradient(180deg, #f8faf8 0%, #f0f7f0 100%);
}

.c_floor_guide .fg_title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 1px;
    position: relative;
}

.c_floor_guide .fg_title::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #4ec548, #087a01);
    margin: 16px auto 0;
    border-radius: 2px;
}

.c_floor_guide .fg_subtitle {
    text-align: center;
    font-size: 15px;
    color: #888;
    margin-bottom: 50px;
}

.c_floor_guide .fg_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.c_floor_guide .fg_item {
    width: 100%;
    padding: 24px 20px;
    margin-bottom: 0;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    border-radius: 12px;
    border: 1px solid #e8f0e8;
    background: #fff;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.c_floor_guide .fg_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(10, 153, 2, 0.1);
    border-color: #4ec548;
}

.c_floor_guide .fg_icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4ec548, #087a01);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(10, 153, 2, 0.2);
}

.c_floor_guide .fg_icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.c_floor_guide .fg_content {
    flex: 1;
    min-width: 0;
}

.c_floor_guide .fg_content .fg_name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.c_floor_guide .fg_item:hover .fg_name {
    color: #4ec548;
}

.c_floor_guide .fg_content .fg_name .fg_num {
    display: inline-block;
    margin-right: 6px;
    color: #4ec548;
    font-weight: 700;
}

.c_floor_guide .fg_content .fg_desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

@media screen and (max-width: 1200px) {
    .sol_grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .c_floor_guide .fg_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.case-detail-title {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.case-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #888;
}

.case-detail-meta span {
    display: inline-flex;
    align-items: center;
}

.case-detail-meta a {
    color: #888;
    text-decoration: none;
    margin-left: 4px;
}

.case-detail-meta a:hover {
    color: #4ec548;
}

.case-image-slider {
    width: 100%;
    height: 500px;
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.case-image-slider .case-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-image-slider .case-prev,
.case-image-slider .case-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.case-image-slider .case-prev:hover,
.case-image-slider .case-next:hover {
    background: rgba(0,0,0,0.7);
}

.case-image-slider .case-prev {
    left: 20px;
}

.case-image-slider .case-next {
    right: 20px;
}

.case-image-slider .case-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
}

.case-thumbnails {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.case-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.case-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.case-thumbnails::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.case-thumbnails .case-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border: 3px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
}

.case-thumbnails .case-thumb.active {
    border-color: #4ec548;
}

.case-thumbnails .case-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content-row {
    display: flex;
    gap: 30px;
}

.case-content-left {
    flex: 1;
}

.case-content {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

.case-content p {
    margin: 0 0 15px 0;
}

.case-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 4px;
}

.case-content h2,
.case-content h3,
.case-content h4 {
    margin: 20px 0 10px 0;
    color: #333;
}

.case-content-right {
    width: 280px;
    flex-shrink: 0;
}

.case-recommend {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    padding: 24px;
}

.case-recommend h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #4ec548;
}

.case-recommend-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-recommend-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.case-recommend-item:last-child {
    border-bottom: none;
}

.case-recommend-item a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: #555;
    transition: color 0.3s;
}

.case-recommend-item a:hover {
    color: #4ec548;
}

.case-recommend-thumb {
    width: 70px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.case-recommend-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-recommend-info {
    flex: 1;
    min-width: 0;
}

.case-recommend-title {
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-recommend-location {
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.case-tag-share {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.case-tags a {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f5;
    color: #666;
    border-radius: 4px;
    text-decoration: none;
    margin: 0 4px 4px 0;
    font-size: 12px;
}

.case-tags a:hover {
    background: #4ec548;
    color: #fff;
}

.case-share-area {
    font-size: 13px;
    color: #666;
}

.case-share-area a {
    color: #666;
    text-decoration: none;
    margin-left: 10px;
    font-size: 16px;
}

.case-share-area a:hover {
    color: #4ec548;
}

.case-prev-next {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    margin-top: 20px;
}

.case-pn-item {
    flex: 1;
    padding: 15px 20px;
    background: #f8f8f8;
    border-radius: 4px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: all 0.25s;
}

.case-pn-item:hover {
    background: #4ec548;
    color: #fff;
}

.case-pn-label {
    font-size: 12px;
    opacity: 0.7;
    display: block;
    margin-bottom: 6px;
}

@media (max-width: 992px) {
    .case-image-slider {
        height: 350px;
    }

    .case-content-row {
        flex-direction: column;
    }

    .case-content-right {
        width: 100%;
    }

    .case-detail-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .case-image-slider {
        height: 280px;
    }

    .case-detail-wrap {
        padding: 15px 15px;
    }

    .case-detail-title {
        font-size: 20px;
    }

    .case-detail-meta {
        gap: 10px;
        font-size: 12px;
    }

    .case-thumbnails .case-thumb {
        width: 100px;
        height: 70px;
    }

    .case-pn-item {
        padding: 12px 15px;
        font-size: 13px;
    }
}