@charset "utf-8";

.page_case .main {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 400px;
    padding: 20px;
}


@media (max-width: 992px) {
    .page_case .main {
        padding: 0;
    }
}

/*
 * case_list
 * */
.case_list .items {
    display: flex;
    flex-wrap: wrap;
}

.case_list .item {
    width: 33.333%;
}

.case_list .dl {
    margin: 20px;
    padding-bottom: 10px;
}


.case_list .pic {
    position: relative;
    overflow: hidden;

    width: 100%;
    padding-bottom: 60%;

    border-radius: 5px;
}

.case_list .pic_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case_list .dl:hover .pic img {
    transform: scale(1.1);
}

.case_list .dl .pic img {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    transition: transform .5s ease-in-out;
}

.case_list .pic .ico_tag {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.case_list .pic .hot_tag {
    color: #fff;
    padding: 3px 5px;
    margin: 5px 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    text-align: center;

    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.case_list .pic .hot_tag {
    background-color: rgba(245, 108, 108, 0.8);
}

.case_list .tit {
    margin: 10px 0;
    font-size: 16px;
    text-align: center;
}

@media (max-width: 992px) {
    .case_list .dl {
        margin: 10px;
    }

    .case_list .item {
        width: 50%;
    }

    .case_list .tit {
        margin: 5px 0;
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    .case_list .items {
        display: block;
    }

    .case_list .item {
        width: 100%;
    }
}
