@charset "UTF-8";

body {
    background-color: #f4f4f4;
    background-image: url(../images/news/bg.png);
    background-position: top;
    background-repeat: no-repeat;
}

.unit_title .title b {
    background: none;
}


.Area:before {
    content: '';
    width: 50%;
    height: 100%;

    position: absolute;
    right: 0;
    top: 10%;
    opacity: 50%;
    background-color: #f1f1f1;

    /* background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
    background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);*/

}

.NewsList .item {
    background-color: #fff;
    padding: 0 5%;
    align-items: center;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15%;
}

.NewsList .item:nth-child(even) {
    flex-direction: row-reverse;
}


.NewsList .item .title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.NewsList .item .Img {
    transform: translateY(-10%);
}

.NewsList .item .Img .innerImg {
    padding-top: 100%;
}


.NewsList .item .Img:before {
    content: '';

}


@media(max-width: 991px){
    .NewsList .item{
        padding-top: 10%;
    }
}