/******nav********/
.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 37px 0 33px 0;
}

.nav-left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 1176px;
}

.left-nav,
.left-nav a {
    font-size: 22px;
    color: #3586da;
}

.left-post-add button {
    width: 120px;
    height: 36px;
    font-size: 20px;
    border-radius: 5px;
    background-image: url('/themes/images/post-add.png');
}

.nav-right {
    width: 215px;
}

/******nav********/
/******content****/
.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 805px;
    background-color: #FFFFFF;
}

.content-title {
    font-size: 64px;
    color: #333333;
    padding: 60px 0;
}

.content-form {
    width: 626px;
    height: 555px;
}

.layui-form-item {
    padding-top: 25px;
}

.layui-form-label {
    font-size: 24px;
    color: #333333;
    width: 100px;
    padding: 0 15px;
    padding-top: 20px;
    text-align: justify;
    /*文字占满宽度*/
}

/*文字占满宽度*/
.layui-form-label:after {
    content: "";
    display: inline-block;
    width: 100%;
}

.layui-input-inline input {
    width: 499px;
    height: 60px;
    border: solid 1px #cdcdcd;
}

.submit {
    width: 616px;
    height: 60px;
    background-color: #3586da;
    font-size: 26px;
    color: #ffffff;
    margin-left:15px;
    margin-top:50px;
}

/******content****/