.case {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.case li .zoomwrap {
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.case li img {
    width: 100%;
    object-fit: cover;
    transition: all 2s;
}

.case li:hover img {
    transform: scale(1.2);
}

.case li h1 {
    text-align: center;
    font-size: 16px;
    line-height: 2;
    overflow: hidden;
    height: 36px;
}


.case li .p1 {
    font-size: 16px;
    line-height: 2;
}

.case li .p2 {
    line-height: 2;
}


/**
 * 面包屑
 *
 */
.crumbs {
    line-height: 60px;
    font-size: 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.crumbs img {
    width: 20px;
}

.crumbs a {
    padding: 0 5px;
}

/**
 * 其他
 *
 */
.nav {
    text-align: center;
}

.index-title1 {
    width: 200px;
    text-align: center;
    margin: 0 auto;
    padding: 5px 10px;
    border: 1px solid #ddd;
    font-size: 24px;
}

.index-title2 {
    width: 300px;
    line-height: 50px;
    text-align: center;
    margin: 0 auto;
}


/*
 * 分页样式
 *
 */
.fenye {
    text-align: center;
    margin-bottom: 20px;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 0;
    border-radius: 4px;
    margin-top: 10px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: white;
    text-decoration: none;
    background-color: #C72027;
    border: 1px solid #ddd;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover,
.pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: black;
    cursor: default;
    background-color: white;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}