#ebookAddOrEditForm{

    width:800px;

    /* 标题 */
    .title{
        width:100%;
        input{
            display:'block';
            width:100%;
            margin-bottom:10px;
        }
    }


    .field-row{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 5px;

        .field{
            label{
                display: inline-block;
                width:20%
            }
            input{
                display: inline-block;
                width:80%;
            }
        }

    }


    /*右列*/
    .feature-image{
        height: 170px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        >div{
            flex:0 1 30%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        img{
            width:100%;
        }
    }
}