/*文本输入框*/
.w-form-input {
    width: 100%;
    border-radius: 0px;
    background-color: #fff;
    border: 1px solid #dedede;
    color: #333;
    min-width: 88px;
    padding: 0 8px;
    font-size: 12px;
    font-family: PingFangSC-Regular;
    height: 32px;
    line-height: 31px;
}

/*按钮样式-蓝色*/
.w-form-btn-default {
    background-color: #0070cc;
    border: 1px solid #2e6da4;
    color: #fff;
    /*display: inline-block;*/
    min-width: 88px;
    padding: 0 12px;
    font-size: 12px;
    font-family: PingFangSC-Regular;
    height: 32px;
    padding: 0 24px;
    cursor: pointer;
}

.w-form-btn-primary {
    background-color: #fafafa;
    border: 1px solid #dedede;
    color: #333;
    /*display: inline-block;*/
    min-width: 88px;
    padding: 0 12px;
    font-size: 12px;
    font-family: PingFangSC-Regular;
    height: 32px;
    padding: 0 24px;
    cursor: pointer;
}

.w-form-btn-del {
    background-color: #e7505a;
    border: 1px solid #e7505a;
    color: #fff;
    display: inline-block;
    min-width: 88px;
    padding: 0 12px;
    font-size: 12px;
    font-family: PingFangSC-Regular;
    height: 32px;
    padding: 0 24px;
    cursor: pointer;
}

/*记录中的小图标*/
.w-form-btn-min {
    text-align:center;
    background-color: #0070cc;
    border: 1px solid #2e6da4;
    color: #fff;
    display: inline-block;
    min-width: 40px;
    font-size: 11px;
    font-family: PingFangSC-Regular;
    line-height: 24px;
    padding: 0 10px;
    cursor: pointer;
}

.w-form-btn-min:hover {
    background-color: #2e6da4;
}

input[type="button"] {
    cursor: pointer;
}

.w-form-btn > a {
    color: #fff;
}

/*show file*/
.w-form-file-list {
}
.w-form-file-box {
    padding: 0px 8px;
    margin: 6px 6px 0px 0px;
    line-height: 36px;
    float: left;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    background-color:#f4f4f4;
    position:relative;
}
    .w-form-file-box > span {
        cursor: pointer;
        position: absolute;
        top: 1px;
        right: 1px;
        color: #fff;
        display: block;
        width: 12px;
        height: 12px;
        line-height: 12px;
        font-size:11px;
        text-align: center;
        border-radius: 6px;
        background-color: brown;
    }

/*show image*/
.w-form-image-list {
}

.w-form-image-box {
    margin: 6px 6px 0px 0px;
    float: left;
    border: 1px solid #e3e3e3;
    border-radius:3px;
    position:relative;
    line-height:0px;
}

.w-form-image-box > a >img {
    width:100px;
}

    .w-form-image-box > span {
        cursor: pointer;
        position: absolute;
        top: 3px;
        right: 3px;
        color: #fff;
        display: block;
        width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 11px;
        text-align: center;
        border-radius: 8px;
        background-color: brown;
    }