/* ====================================首页伙伴 */
        .slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 0px;
            border: 0px solid #ecf0f1;
            box-shadow-: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .slider-wrapper {
            display: flex;
            transition: transform 0.6s ease;
        }
        
        .slider-item {
            flex: 0 0 calc(100% / 7);
            aspect-ratio: 5/;
			height: 100px;
            border: 1px solid #ecf0f1;
            position: relative;
            overflow: hidden;
            background---: linear-gradient(45deg, #2c3e50, #4a6491);
        }
        
        .slider-item img {
            width: 100%;
            height: 100%;
            object-fit-: cover;
            display: block;
            transition: transform 0.4s ease;
        }
        
        .slider-item:hover img {
            transform: scale(1.05);
        }
        
        .slider-item .number {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(44, 62, 80, 0.85);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
            z-index: 2;
        }
        
        .dots-container {
            display: flex;
            justify-content: center;
            margin-top: 5px;
			margin-bottom: 5px;
            gap: 12px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #cccccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background-color: #195d34;
            transform: scale(1.2);
        }
        
        .controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
        }
        
        .control-btn {
            background: linear-gradient(90deg, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }
        
        .control-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        }
        
        .control-btn:active {
            transform: translateY(1px);
        }
        
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .slider-item {
                flex: 0 0 calc(100% / 4);
            }
            
        }
        
        @media (max-width: 768px) {
            .slider-item {
                flex: 0 0 calc(100% / 3);
            }
            
            .container {
                padding: 0px;
            }
            
            .control-btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 576px) {
            .slider-item {
                flex: 0 0 calc(100% / 2);
				height: 70px;
            }
            
        }



/* =================================================================================case */
.Case {
    background-: #fff;
    margin-top:5px;
}

.Case .crumb {
    margin-top: 0;
    padding: 0 0;
}

.Case .Tit {
    margin-bottom: 48px;
}

.CaseBox {
    padding: 0 5%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}


.CaseItem {
    display: block;
    width: 25%;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgb(227 230 233 / 52%);
}

.CaseItem::after {
    content: '';
    width: 1px;
    height: 100%;
    background: rgb(227 230 233 / 52%);
    position: absolute;
    right: 0;
    top: 0;
}

.CaseItem:nth-child(4n):after {
    display: none;
}

.CaseImg {
    position: relative;
    padding-top: 56%;
    overflow: hidden;
}

.CaseImg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .48s;
}

.CaseText {
    padding: 20px 0 30px;
    position: relative;
    text-align: center;
}

.CaseText span {
    display: block;
    font-size: 18px;
    position: relative;
    color: #116cbe;
}

.CaseText .More {
    margin-top: 10px;
}

.CaseText .More i {
    padding: 2px 20px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    border-color: #116cbe;
    background: #116cbe;
    text-transform: uppercase;
}

.CaseText .More i img {
    width: 10px;
    margin-left: 5px;
    vertical-align: top;
}


.CaseItem:hover .CaseImg img {
    transform: scale(1.01);
    transition: all .48s;
}


--
.CaseItem {
    display: block;
    width: 25%;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgb(227 230 233 / 52%);
}

.CaseItem::after {
    content: '';
    width: 1px;
    height: 100%;
    background: rgb(227 230 233 / 52%);
    position: absolute;
    right: 0;
    top: 0;
}

.CaseItem:nth-child(4n):after {
    display: none;
}


/*  手机端显示 */

@media (max-width: 767px) {

    .CaseBox {
        padding: 0 3%;
    }
    .Case .indProChange {
        width: 100%;
        margin-bottom: 0 !important;
    }
    .Case .indProChange form{
        width: 100%;
    }

    .CaseItem {
        display: block;
    width: 50%;
    padding: 20px;
    position: relative;
    border-bottom: 1px solid rgb(227 230 233 / 52%);
    }

    .CaseItem::after {
        display: none;
    }
}
