.right-list {
    width: 70%;
}

.image-list {
    width: 100%;
    margin-bottom: 120px;
    min-height: 300px;
}

.image-list>.image {
    width: 100%;
    line-height: 55px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    flex-wrap: wrap;

}

.image-list .title {
    height: 60px;
    background: #ffffff;
    width: 100%;
    color: #090909;
    text-align: center;
    box-shadow: 0px 5px 10px 5px rgb(87 87 87 / 15%);
    -webkit-box-shadow: 0px 5px 10px 5px rgb(87 87 87 / 15%);
    -moz-box-shadow: 0px 5px 10px 5px rgba(87, 87, 87, 0.15);
}

.image-list .title span {
    margin: 10px;
}

.image li {
    width: 31%;
    margin: 20px 1%;
    height: 250px;
}

.image .list-img-box {
    width: 100%;
    overflow: hidden;
}

.image .list-img-box img {
    width: 100%;
    height: 170px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.image a {
    width: 100%;
    position: relative;
    height: 255px;
}

.image a:hover .list-img-box img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -o-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
    width: 100%;
}

.image a:hover .title {
    background: #1c52b3;
    color: #ffffff;
}

