/* 优秀案例 */
.excellent-wrap{
    width: 100%;
    height: auto;
    padding-top: 40px;
    background-color: #f7f7f7;
}
.excellent-box{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    display: flex;
}
.swiper-container {
    width: 880px;
    height: 100%;
    background-color: white;
}
.swiper-slide {
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.swiper-slide .slideImg{
    width: 100%;
    height: 556px;
    overflow: hidden;
}
.slideImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-slide .slideText{
    width: 100%;
    padding: 30px;
}
.slideText-title{
    color: #333333;
    font-size: 22px;
}
.slideText-text{
    margin: 12px 0;
    color: #666666;
    font-size: 14px;
}
/* 轮播页数 */
.swiper-pagination{
    left: 30px;
    text-align: left;
}
/* 设计师列表 */
.person-list{
    width: 280px;
    height: auto;
    background: white;
    margin-left: 40px;
}
.person-item{
    width: 100%;
}
.personMessage{
    padding: 60px 0 35px;
    border-bottom: 1px solid #CCCCCC;
}
.messageImg{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.messageImg img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.messageName{
    width: 100%;
    font-size: 22px;
    color: #333333;
    margin-top: 10px;
    text-align: center;
}
.messagePosition{
    display: flex;
    margin-top: 5px;
    align-items: center;
    justify-content: center;
}
.positonName{
    color: #666666;
    font-size: 14px;
}
.positonIcon{
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 5px;
    background: url(../image/brand/case/authenticat.png) no-repeat;
    background-size: 100% 100%;
}
.personText{
    width: 100%;
    padding: 31px 30px 0 36px;
}
.personText p{
    color: #999999;
    font-size: 12px;
    margin-top: 8px;
    line-height: 24px;
    position: relative;
}
.personText p::after{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #0E69B3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
    left: -18px;
    top: 8px;
}
/* 推荐案例 */
.recommend-wrap{
    width: 100%;
    height: auto;
    padding: 50px 0;
    background-color: #f7f7f7;
}
.recommend-box{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}
.recommendTitle{
    color: #333333;
    font-size: 20px;
}
.recommend-list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.recommend-item a{
    display: inline-block;
    width: 280px;
    height: auto;
    margin-top: 20px;
    background-color: white;
}
.recommend-item .recommend-img{
    width: 100%;
    font-size: 0;
    overflow: hidden;
}
.recommend-img img{
    width: 100%;
    transition: transform 1s;
    -webkit-transition: transform 1s;
    -moz-transition: transform 1s;
    -ms-transition: transform 1s;
    -o-transition: transform 1s;
}
.recommend-img img:hover{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.recommend-text{
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
@media screen and (max-width:768px){
    /* 优秀案例 */
    .excellent-box{
        flex-direction: column-reverse;
    }
    .swiper-container{
        width: 100%;
        margin-top: 20px;
    }
    .person-list{
        width: 100%;
        margin-left: 0;
    }
    .person-item{
        width: 100%;
        display: flex;
    }
    .personMessage{
        padding-left: 36px;
        border-bottom: 0;
    }
    .personText{
        padding: 31px 30px 30px 36px;
    }
    /* 推荐案例 */
    .recommend-item{
        width: calc((100% - 20px) / 2);
        /* width: 100%; */
    }
    .recommend-item a{ 
        width: 100%;
    }
    .recommend-text{
        width: 100%;
        height: 36px;
        line-height: 36px;
        padding: 0 10px;
    }
}