
.mation-main{
    width: 100%;
    min-height: calc(100vh - 250px);
    display: flex;
    padding:20px 60px;
    box-sizing: border-box  ;
    .title{
        font-size: 24px;
        color: #000;
        margin-bottom:24px;
    }
    .mation-wrap{
        flex: 1;
        .mation-ul{
            margin: 24px 0;
            .mation-item{
                margin-bottom: 24px;
                &:last-child{
                    margin-bottom: 0;
                }
                .item-title{
                    font-size: 24px;
                    color: #000000;
                    /* text-indent: 2em; */
                }
                .item-userInfo{
                    display: flex;
                    align-items: center;
                    margin: 10px 0;
                    justify-content: flex-end;
                    >div{
                        color: #A0A3A3;
                        font-size: 14px;
                        margin-right: 10px;
                    }
                }
                .item-content{
                    font-size: 16px;
                    color: #535555;
                    text-indent:2em
                }
            }
        }
    }
    .mation-publish{
        width: 25%;
        margin-left: 24px;
        .publish-wrap{
           position: relative;
            .publish-header{
                font-size: 14px;
                color: #000;
                margin: 20px 0 ;
            }
            .publish-title{
                margin-bottom: 15px;
                input{
                    width: 100%;
                    height: 46px;
                    padding: 0 10px;
                    color: #000000;
                    font-size: 16px;
                    border:1px solid #ccc;
                    background: transparent;
                    box-sizing: border-box;
                    border-radius: 5px;
          
                }
                input::placeholder {
                    color: #B3B7BF;
                    font-size: 14px;
                }
                input:focus {
                    outline: none;
                }
            }
            .publish-txt{
                margin-bottom: 35px;
           
                textarea{
                    width: 100%;
                    height: 246px;
                    padding: 24px 10px ;
                    color: #000000;
                    font-size: 16px;
                    border:1px solid #ccc;
                    background: transparent;
                    box-sizing: border-box;
                    display: block;
                    resize:none;
                    border-radius: 5px;
                }
                textarea::placeholder {
                    color: #B3B7BF;
                    font-size: 14px;
                }
                textarea:focus {
                    outline: none;
                }
    
            }
            #publish-warn{
                position: absolute;
                bottom: 60px;
                left:10px;
                color: #f64242;
                font-size: 12px;
                display: none;
                
            }
            .publish-btn{
                width: 60%;
                background: #376F28;
                height: 50px;
                line-height: 50px;
                text-align: center;
                border-radius: 25px;
                color: #fff;
                cursor: pointer;
                margin: 0 auto;
            }
        }
    }
}
