.detail {
    max-width: 1296px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;

    >div:first-child {
        width: 919px;

        .title {
            font-weight: bold;
            font-size: 40px;
            color: #2D2D2D;
            line-height: 56px;
        }
        .time {
            font-weight: 400;
            font-size: 14px;
            color: #777777;
            height: 70px;
            line-height: 50px;
        }
        .content {
            text-indent: 28px;
            font-weight: 400;
            font-size: 14px;
            color: #2D2D2D;
            line-height: 30px;
            padding: 44px 0;
            border-top: solid 2px #e2e2e2;
        }
        .content img {
            display: block;
            width: 100%;
	    margin: 30px auto;
        }
        .lnk {
            height: 60px;
            line-height: 60px;
            padding: 0 56px;
            background: #F3F6F9;
            font-weight: 400;
            font-size: 14px;
            color: #2D2D2D;
            display: flex;
            justify-content: space-between;
        }
    }
    >div:last-child{
        width: 272px;

        >p:first-child {
            font-weight: bold;
            font-size: 22px;
            color: #2D2D2D;
        }
        >ul >li {
            margin-top: 25px;
            display: flex;
            flex-direction: column;

            img {
                width: 280px;
                height: 198px;
                background: #AEAEAE;
                border-radius: 10px;
            }
            p:nth-child(2) {
                font-weight: bold;
                font-size: 16px;
                color: #2D2D2D;
                line-height: 22px;
                margin: 20px 0 14px;
            }
            p:last-child {
                font-weight: 400;
                font-size: 14px;
                color: #777777;
                line-height: 30px;
            }
        }
    }
}