/*---案例精选----*/
.content-box{
    padding-top: 80px;
    min-height: calc(100vh - 134px);
    padding-bottom: 80px;
}
.change-tabs{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}
.tab-button{
    width: 220px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #777;
    color: #fff;
    cursor: pointer;
}
.tab-active{
    background-color: #A87953;
}
.case-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 40px;
}
.case-card{
    width: 580px;
    height: 642px;
    background-color: #F3F1EF;
    margin-bottom: 40px;
}
.case-img{
    width: 100%;
    height: 326px;
}
.case-content{
    padding: 40px 40px 0;
}
.case-title{
    font-size: 34px;
    color: #0C0C0B;
    margin-bottom: 40px;
}
.case-text{
    font-size: 16px;
    line-height: 24px;
    font-family: SourceHanSansCN-Light, SourceHanSansCN;
    font-weight: 300;
    color: #0C0C0B;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}
.swiper-change-box{
    width: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.swiper-container{
    width: 170px;
    height: 32px;
    /* padding: 0 6px; */
}
.swiper-container .swiper-slide{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 50%;
    margin-right: 12px;
}
.swiper-container .page-active{
    border: 1px solid #0C0C0B;
}
.swiper-button-prev, .swiper-button-next {
    position: static;
    margin: 0;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: url('/assets/img/index/product/icon_arrw.png') no-repeat;
    background-position: center;
}

.swiper-button-next {
    transform: rotate(180deg);
}

div:focus {
    outline: none !important;
}

.swiper-button-prev::after, .swiper-button-next::after {
    content: "";
}

.swiper-button-disabled {
    opacity: 1 !important;
}