.project {
    max-width: 1296px;
    margin: 30px auto;

    ul {
        width: 100%;
    }

    li {
        padding: 70px 36px 0;
        height: 440px;
        border-top: solid 1px #e2e2e2;
        display: flex;
        /*align-items: center;*/
        justify-content: space-between;
        cursor: pointer;


        div:first-child {
            width: 500px;
            height: 302px;
            overflow: hidde;


            img {
                width: 100%;
                height: 100%;
                background: #AEAEAE;
                border-radius: 10px;
                transition: all 0.5s;

            }

            img:hover {
                transform: scale(1.02);

            }
        }

        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: 22px;
            }

            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;
            }
        }
    }

    li:first-child {
        border: none;
    }

    li:hover {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        border: none;
    }
}