.news {
    max-width: 1296px;
    margin: 30px auto;

    li {
        padding: 80px 36px 0;
        height: 440px;
        border-top: solid 1px #e2e2e2;
        display: flex;
        /*align-items: center;*/
        justify-content: space-between;
        cursor: pointer;

        div:first-child{
            width: 90px;
            height: 90px;
            background: #F8F9FB;
            font-weight: bold;
            color: #333333;
            font-size: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            p:last-child {
                font-size: 16px;
            }
        }

        div:nth-child(2) {
            width: 682px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: start;
           /* justify-content: center;*/

            p:first-child {
                font-weight: bold;
                font-size: 18px;
            }
            p:nth-child(2) {
                font-weight: 400;
                font-size: 14px;
                color: #5B5B5B;
                margin: 27px 0 39px;
                line-height: 24px;
            }
            a:last-child {
                width: 146px;
                height: 50px;
                background: url('../images/more.png') left top/146px 50px no-repeat;
                text-decoration: none;
            }
        }

        img:last-child {
            width: 394px;
            height: 280px;
            background: #AEAEAE;
            border-radius: 10px;
            transition: all 0.5s;
        }
	img:last-child:hover {
		transform: scale(1.02);
	    }
    }
    li:first-child {
        border: none;
    }
    li:hover {
        box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
        border-radius: 10px;
        border: none;
    }
}