
         .project-case-card .inquiry-btn{
    background-color: #bc8a5f;
    color: #fff;float: left;
font-size:16px;
margin-left:10px;
    /* font-size: 7rem; */
}
 
        .project-case-card {
            display: flex;
            flex-direction: row;
            background: #fff;
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid #eee;
            margin: 20px auto;
        }

        /* 左侧文本内容 */
        .project-info {
            width: 40%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .project-info h1 {
            font-size: 1.8rem;
            margin: 0 0 15px;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .location {
            color: #888;
            font-size: 0.95rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
        }

        .details {
            line-height: 1.8;
            color: #555;
            margin-bottom: 35px;
            font-size: 1rem;
            border-top: 1px solid #f0f0f0;
            padding-top: 20px;
        }

        .inquiry-btn {
            background-color: var(--primary-color);
            color: #fff;
            text-decoration: none;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s;
            align-self: flex-start;
        }

        .inquiry-btn:hover {
            background-color: #bc8a5f;
            transform: translateY(-2px);
        }

        /* 右侧滑块区域 */
        .project-visual {
            width: 65%;
            position: relative;
            background: #f4f4f4;
            /* 设定高度，或者使用 aspect-ratio */
            height: 500px; 
            overflow: hidden;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            will-change: clip-path;
        }

        .before-image {
            z-index: 1;
        }

        .after-image {
            z-index: 2;
            /* 关键修改：初始剪裁掉左侧 50% */
            clip-path: inset(0 0 0 50%); 
        }

        /* 滑块手柄 */
        .handle {
            position: absolute;
            top: 0;
            left: 50%;
            bottom: 0;
            width: 2px;
            background: #fff;
            z-index: 3;
            transform: translateX(-50%);
            pointer-events: none;
        }

        .handle::after {
            content: "◀ ▶";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            font-size: 12px;
        }

        /* 隐藏的原生 Input */
        .input-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 4;
            cursor: ew-resize;
            margin: 0;
        }

        @media (max-width: 850px) {
            .project-case-card { flex-direction: column; }
            .project-info, .project-visual { width: 100%; }
            .project-visual { height: 350px; }

 .project-case-card .inquiry-btn{
margin-top:10px;
margin-left:0px;
}
        }
    