
/* 左侧 */
.case-left{
    width: 63%;
    background: #fafafa;
    float: left;
    margin-bottom: 90px;
    padding: 4% 3%;
    overflow: hidden;
}
.case-left>div{

}
.case-left>div h3{
    font-size: 26px;
    margin: 0 0 30px 0;
}
.case-left>div ul {
    font-size: 14px;
    color: #666;
    line-height: 28px;
    font-weight: normal;
    clear: both;
    overflow: hidden;
}
.case-left>div ul li {
    float: left;
    margin: 5px 20px 5px 0;
    width: 25%;
}
.case-left>div ul li img{
    height: 21px;
    display: inline-block;
}
.case-left>div p{
    font-size: 14px;
    margin: 30px 0 40px 0;
    color: #666666;
    line-height: 30px;
    clear: both;
    text-align: justify;
}

/* 施工进度 */
.process-tree{
    padding-left:30px;
    position: relative;
}
.tree-line{
    width: 1px;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: -10px;
    left: 4px;
}
.tree-line div{
    width: 1px;
    height: 72%;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}
.process-li{
    position: relative;
}
.process-li::after{
    content: "";
    width: 6px;
    height: 6px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;    
    border-radius: 100%;
    background-color: #000;
    position: absolute;
    left: -29px;
    top: 10px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    transition: all  .3s;
}
.process-title{
    font-size: 18px;
    font-weight: normal;
    margin: 30px 0 20px 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    transition: all  .3s;
}
.process-img{
    overflow: hidden;
    width: 100%;
}
.process-img li{
    width: 31%;
    margin-right: 2%;
    overflow: hidden;
    float: left;
    margin: 10px 19px 10px 0;
    cursor: pointer;
    height: 178px;
}
.process-img li img{
   width: 100%;
}
.process-li p{
    font-size: 16px;
    color: #666666;
}

/* 相似案例 */
.case-right{
    float: right;
    width: 27%;
}
.case-right h3{
    font-size: 30px;
    font-weight: normal;
    margin-top: 50px;
}
/* 列表 */
.list-ul{
    overflow: hidden;
    margin-top: 30px;
}
.list-li{
    width: 100%;
    margin: 0 0 20px 0;
}
.list-img{
    width: 100%;
    /* height: 339px; */
    position: relative;
    overflow: hidden;
}
.list-img>img{
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}
.list-img div{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}
.list-img div img{
    width: 45px;
    margin:  0 10px;
}
.list-text{
    padding: 20px 0 0 0;
}
.list-text div{
    width: 50px;
    height: 2px;
    background-color: #fff;
    float: left;
    margin: 10px 15px 0 0;
    position: relative;
}
.list-text div::after{
    content: "";
    width: 50px;
    height: 2px;
    background-color: #333;
    margin: 0 15px 0 0;
    position: absolute;
    top: 0;
    left: 0;
}
.list-text h3{
    font-size: 18px;
    margin: 0 0 5px 0;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    float: left;
}
.list-text ul{
    font-size: 14px;
    color: #666;
    line-height: 28px;
    font-weight: normal;
    clear: both;
    overflow: hidden;
}
.list-text ul li{
    float: left;
    margin: 5px 20px 5px 0;
}
.list-text ul li:last-child{
   margin-right: 0;
}

.list-li:hover .list-img div{
    opacity: 1;
}
.list-li:hover .list-text div::after{
    animation: width  linear .5s;
    -webkit-animation: width linear .5s;
}
.list-li:hover .list-img>img{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
@keyframes width {
    0% {
        width: 0px;
    }
    100% {
        width: 50px;
    }
}
@-webkit-keyframes width {
    0% {
        width: 0px;
    }
    100% {
        width: 50px;
    }
}

.design-img{
    width: 100%;
    margin: 0 10px 20px 0;
    position: relative;
}
.design-img>img{
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}
.design-img .design-icon{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
    z-index: 2;
    cursor: pointer;
}
.design-text{
    font-size: 16px;
    color: #666666;
    line-height: 30px;
}
.design-text h3{
    font-size: 30px;
    font-weight: normal;
    color: #333;
    margin: 50px 0 30px 0;
}
.design-text h3 span{
    font-size: 18px;
}
.design-number{
    background: url(../images/bg07.png) no-repeat;
    color: #fff;
    position: absolute;
    bottom : 0;
    left: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 30px 0 20px 0;
    font-size: 16px;
}
.design-number b{
    font-size: 24px;
}

/* 弹窗 */
.wrap{
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
}
.wrap-concent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: transparent;
    position: relative;
    top: 0;
    left: 0;
}
.wrap-inner {
    padding: 85px 53px 0 53px;
    width: 344px;
    height: 500px;
    position: relative;
    float: right;
    background-color: #fff;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,.5);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}
.wrap-inner>img{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}
.wrap-logo{
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap-logo img{
    width: 450px;
}
.wrap-inner h2{
    font-size: 22px;
    font-weight: normal;
}
.wrap-inner h4{
    font-size: 14px;
    font-weight: normal;
    line-height: 25px;
    margin-bottom: 50px;
}

.wrap-inner input{
    width: 330px;
    height: 44px;
    border: 0;
    border-bottom: 1px solid #ddd;
    padding-left: 10px;
    margin-top: 20px;
   
}
.wrap-inner .button{
    width: 340px;
    height: 50px;
    margin-top: 50px;
    background-color: #d7261d;
    color: #fff;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    letter-spacing: 2px;
    border: 0;
}
.wrap-inner .button h3{
    line-height: 50px;
    text-align: center;
    /* position: absolute; */
    width:100%;
    font-weight: normal;
    font-size: 16px;
}
.wrap-inner .icon{
    float: right;
    margin-right: 15px;
    position: relative;
    margin-top: 10px;
}
.wrap-inner .icon div{
    width: 30px;
    height: 30px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    border-radius: 25px;
    background-color: #d7261d;
}
.wrap-inner .icon img{
    position: absolute;
    top: 12px;
    left: -20px;
}
.wrap-inner p{
    text-align: center;
    margin-top: 10px;
}
.wrap-inner p i{
    color: #d7261d;
    font-weight: bold;
    font-size: 16px;
}
.wrap-inner>img:hover{
    transform: rotate(90deg)
}

@media screen and (min-width: 1200px) and (max-width: 1410px) {
    .box {
        width: 1200px;
    }
    .detail-text {
        width: 72%;
    }
}

