 body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
    }

    .project-section {
        min-height: auto !important; /* 移除强制100vh高度 */
        margin-top: -30px !important; /* 上移消除间隙 */
        padding: 30px 0 !important;
        margin-bottom: -60px !important;  /* 新增：消除底部外边距 */
        background: white;
    }

    .project-content {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        overflow: hidden;
        margin: 10px 0!important;
    }

    .text-section {
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 500px;
    }

    .project-title {
        color:  #f8a056;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        
        padding-bottom: 10px;
    }

    .project-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

    .project-highlights {
        margin-top: 30px;
    }

    .highlight-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .highlight-item:hover {
        background: #ed6436;
        color: white;
        transform: translateX(10px);
    }

    .highlight-icon {
        width: 20px;
        height: 20px;
        background: #ed6436;
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .highlight-item:hover .highlight-icon {
        background: white;
    }

    /* Image Slider Styles */
    .slider-section {
        position: relative;
        height: 450px;
        overflow: hidden;
        margin-top: 110px;  /* 新增上边距实现下移 */
        margin-right: 40px;
        margin-left: 20px;
    }

    .image-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .slide-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.7));
        color: white;
        padding: 30px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .slide.active .slide-overlay {
        transform: translateY(0);
    }

    .slide-title {
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .slide-description {
        font-size: 0.9rem;
        opacity: 0.9;
    }

    /* Progress Indicators */
    .slider-indicators {
        position: absolute;
        bottom: 20px;
        right: 20px;
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .indicator.active {
        background: #ed6436;
        transform: scale(1.2);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .project-title {
            font-size: 2rem;
        }
        
        .text-section {
            padding: 30px 20px;
            min-height: auto;
        }
        
        .slider-section {
            height: 400px;
            margin-top: 15px;  /* 移动端对应间距调整 */
        }
        
        .project-content {
            margin: 10px;
        }
    }

    /* Animation for content loading */
    .fade-in {
        animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

