#slide_mofei {
    position: relative;
    overflow: hidden;
    background-color: #1a1a1a;
    height: 100vh;
}

#slide_mofei .image-stack {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1;
}

#slide_mofei .image-container {
    position: absolute;
    height: 90vh;
    width: 40vw;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
    cursor: pointer;
}

/* 图片位置分布 */
#slide_mofei .image-container:nth-child(1) { left: 0; z-index: 5; }
#slide_mofei .image-container:nth-child(2) { left: 15%; z-index: 4; }
#slide_mofei .image-container:nth-child(3) { left: 30%; z-index: 3; }
#slide_mofei .image-container:nth-child(4) { left: 45%; z-index: 2; }
#slide_mofei .image-container:nth-child(5) { left: 60%; z-index: 1; }

/* 鼠标悬停效果 */
#slide_mofei .image-container:hover {
    transform: translateX(-5%) scale(1.05);
    z-index: 10;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

#slide_mofei .image-container:hover ~ .image-container {
    transform: translateX(5%);
}

#slide_mofei .section-content {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    padding: 20px;
    text-align: center;
    pointer-events: none;
    max-width: 650px;
}

#slide_mofei h2 {
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    color: #ffffff;
    font-size: 4em;
}

#slide_mofei p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    word-wrap: break-word;
    pointer-events: auto;
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1.6;
} 