﻿
/* 案例 */
.cases-container{
    margin-top: 70px;
    margin-bottom: 70px;
}

    .cases-list ul{
        width: 1100px;
        margin: 0 auto;
    }
    .cases-list ul li{
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .cases-list ul li:nth-child(even){
        flex-direction: row-reverse;
    }
    .cases-list ul li .list-left{
        display: inline-block;
        width: 35.71%;
    }
    .cases-list ul li .list-left a{
        display: block;
        width: 100%;
        padding-bottom: 60%;
        position: relative;
        overflow: hidden;
    }
    .cases-list ul li .list-left a img{
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
    }
    .cases-list ul li .list-left a img:hover{
        transform: scale(1.08);
        -webkit-transform: scale(1.08);
        -moz-transform: scale(1.08);
        -ms-transform: scale(1.08);
        -o-transform: scale(1.08);
}   
    .cases-list ul li .list-right{
        display: inline-block;
        width: 64.28%;
    }
    .cases-list ul li .list-right>div{
        padding: 0 15% 0 10%;
    }
    .cases-list ul li .list-right>div h1 a{
        display: block;
        font-size: 18px;
        color: #28a9d6;
        padding-bottom: 55px;
        position: relative;
    }
    .cases-list ul li .list-right>div h1 a:after{
        position: absolute;
        content: "";
        left: 0;
        bottom: 25px;
        height: 3px;
        width: 30px;
        background: #28a9d6;
    }
    .cases-list ul li .list-right>div p a{
        display: block;
        font-size: 12px;
        line-height: 22px;
        color: #666;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }





/* 案例详情 */
.casesd-container{
    margin-top: 70px;
    margin-bottom: 70px;
}
.casesd-top{
    width: 1100px;
    margin: 0 auto;
}

    .casesd-title{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 30px;
        border-bottom: 1px solid #b5b5b5;
    }
    .casesd-title h1{
        font-size: 26px;
        font-weight: normal;
        color: #28a9d6;
    }
    .casesd-title a{
        display: inline-block;
        padding-left: 25px;
        background: url(../img/back.png) no-repeat left center;
        color: #000;
        font-size: 16px;
    }
    .casesd-title a:hover{
        color: #28a9d6;
    }
    .casesd-edit{
        padding: 30px 80px;
        border-bottom: 1px solid #b5b5b5;
    }
.casesd-edit p img{
	display: inline-block;
	width: auto !important;
	height: auto !important;
	max-width: 100%;
}

/* 相关案例 */
.casesd-other{
    width: 1100px;
    margin: 0 auto;
}
    .casesd-other-title p{
        text-align: center;
        padding-bottom: 20px;
        padding-top: 20px;
        border-bottom: 1px solid #b5b5b5;
        font-size: 26px;
        font-weight: normal;
        color: #28a9d6;
        margin-bottom: 55px;
    }
    .casesd-lbt .item{
        position: relative;
    }
    .casesd-lbt .item .item-img {
        display: inline-block;
        width: 100%;
        padding-bottom: 88.235%;
        position: relative;
    }
    .casesd-lbt .item .item-img a{
        position: absolute;
        top: 0;
        left: 0;
        display: inline-block;
        width: 100%;
        height: 100%;
        overflow: hidden;
display: flex;
    align-items: center;
    justify-content: center;
    }
    .casesd-lbt .item .item-img a img{
        display: inline-block;
        width: auto;
        height: 100%;
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
    }    
    
    .casesd-lbt .item:hover .item-img a img{
        transform: scale(1.08);
        -webkit-transform: scale(1.08);
        -moz-transform: scale(1.08);
        -ms-transform: scale(1.08);
        -o-transform: scale(1.08);
    }
    .casesd-lbt .item .item-name{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .7);
        opacity: 0;
        transition: 0.8s;
        -webkit-transition: 0.8s;
        -moz-transition: 0.8s;
        -ms-transition: 0.8s;
        -o-transition: 0.8s;
}
    .casesd-lbt .item .item-name a{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .casesd-lbt .item .item-name a p{
        display: block;
        color: #fff;
        font-size: 22px;
        font-weight: normal;
        padding: 0 30px;
        text-align: center;
    }
    .casesd-lbt .item:hover .item-name{
        opacity: 1;
    }

