/*轮播图*/
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

/*我们的客户*/
.tabbar{
    display: flex;
    justify-content: center; 
    border-bottom: 1px solid #E9E3E3;
}
.taBox{
    margin: 10px 6px 14px;
    padding: 8px 20px;
    border: 1px solid #E9E3E3;
    border-radius: 4px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    cursor: pointer;
    color: #4B4947;
}
.taBactive{
    margin: 10px 6px 14px;
    padding: 8px 20px;
    border: 1px solid #E5301B;
    border-radius: 4px;
    cursor: pointer;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #E53030;
    position: relative;
}
.taBox p{
    display: none;
}

.taBactive p{
    display: block;
    position: absolute;
    bottom: -24px;
    left: 36px;
}
.imgInfo{
    width: 15px;
    height: 15px;
}
.lfs{
    width: 385px;
    /*height: 194px;*/
    margin: 0 7px 20px;
    box-shadow: 0 0 10px #d3d3d3;
    text-align: center;
    float: left;
    background: #fff;
    cursor: pointer;
}
.imgs{
    width: 100%;
    height: 239px;
    padding: 10px;
}
.tabtitle{
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 26px;
    font-size: 18px;
    padding: 0 10px;
    margin: 0 1px 10px;
} 
.tabtitleative{
    color: #E53030;
    font-weight: bold;
}
.tabcont{
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #919191;
    font-size: 16px;
    line-height: 26px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 10px 1px;
    padding: 0 10px;
}
.tabcontactive{
    color: #333333;
}
.tabflex{
    display: flex;
    justify-content: space-between;
    background: #F9F9F9;
    height: 45px;
    align-items: center;
    padding: 10px;
    color: #B3B4B4;
    border-top: 1px solid #B2B5BA;
}
.tabflex .rig{
    font-size: 20px;
}
.tabflexative{
    display: flex;
    justify-content: space-between;
    background: #E5301B;
    height: 45px;
    align-items: center;
    padding: 10px;
    color: #fff;
}
.tabflexative .rig{
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 18px;
}
        
/*2022/1/22新增我们的客户列表*/
.case-list{
    width: 1200px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    align-items: center;
    margin-top: 50px;
}

.case-list li{
    width: 372px !important;
    height: 374px !important;
    margin-bottom: 20px;
    margin-right: 40px;
}

.case-list li:nth-child(3n){
    margin-right: 0;
}

.case-list li a{
    display: block;
    width: inherit;
    height: inherit;
    background: #F9F9F9;
    border: 1px solid #EAEAF4;
    border-radius: 5px;
    box-sizing: border-box;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.case-list li a:hover .zz-img img{
    transform: scale(1.5);   
}

.case-list li a:hover > p:nth-child(2){
    color: #333333;
}

.case-list li a:hover > p:nth-child(3){
    color: #333333;
}

.case-list li a:hover .item-tools{
    background: #E5301B;
    color: white;
}

.case-list li a:hover .item-tools .default-img{
    display: none;
}
.case-list li a:hover .item-tools .active-img{
    display: block;
}

.case-list li a .zz-img{
    width: 100%;
    height: 211px;
    border-radius: 5px;
    overflow: hidden;
}

.case-list li a .zz-img img{
    width: 100%;
    height: 211px;
    transition: all 1s;
}

.case-list li a > p:nth-child(2){
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #333333;
    line-height: 40px;
    
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.case-list li a > p:nth-child(3){
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #919191;
    line-height: 40px;
    
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.case-list .item-tools{
    height: 58px;
    background: #F9F9F9;
    border-top: 1px solid rgba(178, 181, 186, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #B3B4B4;
    
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0;
    box-sizing: border-box;
    padding: 0 10px;
    transition: all 1s;
}

.item-tools p{
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
}

.item-tools img{
    width: 28px;
    height: 28px;
}
 
.item-tools .active-img{
    display: none;
}