/* 表单标题加虚线 */
.form-item-title {
    text-align: center;
    position: relative;
}

.form-item-title:before {
    content: "";
    position: absolute;
    border-top: 1px dashed #ccc;
    left: 40px;
    right: 40px;
    top: 8px;
    z-index: -1;
}

.form-item-title > span {
    background-color: white;
    padding: 0 10px;
    font-size: 13px;
    color: #666;
}

/*上传图片删除效果展示*/
.uploader-list {
    margin-left: -15px;
}

.uploader-list .info {
    position: relative;
    margin-top: -25px;
    background-color: black;
    color: white;
    filter: alpha(Opacity=80);
    -moz-opacity: 0.5;
    opacity: 0.5;
    width: 92px;
    height: 25px;
    text-align: center;
    display: none;
}

.uploader-list .handle {
    position: relative;
    background-color: black;
    color: white;
    filter: alpha(Opacity=80);
    -moz-opacity: 0.5;
    opacity: 0.5;
    width: 92px;
    text-align: right;
    height: 18px;
    margin-bottom: -18px;
    display: none;
}

.uploader-list .handle i {
    margin-right: 5px;
}

.uploader-list .handle i:hover {
    cursor: pointer;
}

.uploader-list .file-iteme {
    margin: 12px 0 0 15px;
    padding: 1px;
    float: left;
}