.section-title {
    /*background-image: url("../../image/media-bg/banner-mtzx.png");*/
}

.gayg-content {
    width: 1200px;
    margin: 0 auto;
    padding: 150px;
}

.list-item {
    display: flex;
    align-items: stretch;
    margin-bottom: 50px;
}

.list-item-image {
    flex: none;
    width: 344px;
    height: 288px;
    position: relative;
    overflow: hidden;
}

.list-item-image::after {
    content: '';
    position: absolute;
    left: -150%;
    bottom: 50%;
    width: 200%;
    height: 50px;
    transform-origin: center;
    transform: rotate(-45deg);
    background-color: rgba(255, 255, 255, .8);
    transition: all .3s;
}

.list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-item-text {
    flex: auto;
    padding: 10px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .3s;
}

.list-item-text::after {
    position: absolute;
    content: '';
    width: 0;
    height: 4px;
    left: 0;
    bottom: 0;
    transition: all .3s;
}

.list-item-text__title {
    font-size: 26px;
    color: #595757;
    line-height: 38px;
    padding: 10px 0;
    transition: all .3s;
}

.list-item-text__brief {
    font-size: 16px;
    color: #595757;
}
.list-item-text__brief p{
    margin-block-start: .5em;
    margin-block-end: .5em;
}

.list-item:hover .list-item-image::after {
    left: 100%
}

.list-item:hover .list-item-text {
    background-color: #efefef;
}

.list-item:hover .list-item-text::after {
    background-color: #0078c5;
    width: 100%;
}

.list-item:hover > .list-item-text > .list-item-text__title {
    padding-left: 15px;
}

.list-item:hover > .list-item-text > .list-item-text__title {
    transform: translateX(10px);
}
