/*客户案例*/
.case-container{
    position: relative;
    background-size: cover;
}
.case-list{
    margin: 35px 0;
    padding: 70px 120px;
    background: rgba(0,0,0,0.6);
    border-top: 4px solid var(--orange);
}

.case-list ul{
    display: flex;
    justify-content: space-between;
}
.case-list ul li{
    width: calc(50% - 38px);
}
.case-item{
    position: relative;
    color: #FFF;
}
.case-item a{
    color: #FFF;
}
.case-item .title{
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    font-size: var(--font-size-24);
}
.case-item .mask-black,
.case-item .hover{
    display: none;
}
.case-item .text{
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0 80px;
    font-size: 16px;
}
.case-item .text p:first-child{
    font-size: var(--font-size-24);
    font-weight: bold;
}
.case-item .text p:last-child{
    margin-top: 10px;
}
.case-item:hover .title{
    display: none;
}
.case-item:hover .mask-black,
.case-item:hover .hover{
    display: block;
}

