@charset "utf-8";

.page_case .main {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
    padding: 20px;
}

/*
 * case_list
 * */
.case_list .items {
    display: flex;
    flex-wrap: wrap;
}

.case_list .item {
    width: 25%;
}

.case_list .item .pic {
    overflow: hidden;
}

.case_list .item img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    transition: all .3s;
}

.case_list .item:hover img {
    transform: scale(1.2);
}

.case_list .dl {
    margin: 20px 10px;
    /*border: 1px solid #eee;*/
}

.case_list .dt {
    margin: 10px 0;
    font-size: 15px;
    text-align: center;
}

@media (max-width: 1200px) {
    .case_list .item {
        width: 33.3333%;
    }
}


@media (max-width: 768px) {
    .case_list .item {
        width: 50%;
    }
}


@media (max-width: 400px) {
    .case_list .item {
        width: 100%;
    }
}

/*
case_info
*/
.info_title {
    margin: 0 auto 40px;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
}

.case_info .base_info_wrapper {
    max-width: 800px;
    margin: 0 auto;
}