.block{
    background-color: #fff;
    margin:10px;
    border-radius: 5px;
    overflow: auto;
}
.block .title{
    font-size:16px;
    padding:10px 15px 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:#666;
}
.block .title .tip{
    color:red;
    font-size:14px;
}
.block .content{
    padding:5px 15px 15px 15px;
}
.block .content .input{
    display: flex;
    align-items: center;
}
.block .content .input.horizontal{
    flex-direction: column;
    align-items: flex-start;
}
.block .content .input input{
    display: block;
    width:100%;
    padding:6px;
    box-sizing: border-box;
    border:1px solid #eee;
    border-radius: 5px;
    height: 36px;
    line-height: 36px;
}
.block .content .input .lable{
    flex-shrink: 0;
    margin-right: 5px;
    color:#666;
    margin-bottom: 3px;
    width:60px;
    text-align: right;
    flex-shrink: 0;
}
.block .content .input .value{
    width:100%;
}
.block .content .row{
    margin-bottom: 10px;
}
.block .content .row:last-child{
    margin-bottom: 0;
}
.block .content .textarea{
    border:1px solid #eee;
    width:100%;
    padding:5px;
    border-radius: 5px;
    box-sizing: border-box;
}

.info .content{
    display: flex;
    align-items: center;
}
.info .content .cover{
    width: 60px;
    height: 60px;
    background-color: #eee;
    margin-right: 5px;
}
.info .content .cover .img{
    width:100%;
    height: 100%;
}
.info .content .name{
    margin-bottom: 2px;
    font-size:15px;
}
.info .content .company{
    color:#666;
}


.submit{
    padding:10px;
}
.submit .btn{
    width:100%;
    height: 45px;
    line-height:30px;
    border-radius: 40px;
}
.save-btn {
    width: 100% !important;
    background-color: #07c160;
    color: #fff;
    font-size: 15px;
    padding: 10px 0;
    border-radius: 25px;
    margin: 15px 0;
}
.save-btn.disabled{
    opacity: 0.7;
    pointer-events: none;
}

.error-message{
    color:red;
    font-size:14px;
    margin-top:2px;
}

.message{
    display: flex;
    justify-content: center;
}
.message .iconfont{
    font-size:24px;
    margin-right: 5px;
}
.message-content{
    font-size:15px;
}
.message .warning{
    color:#f60;
}
.message .success{
    color:#07c160;
}