@charset "utf-8";

[id*='form'] .form-line {
    margin-bottom: 10px;
}

[id*='form'] .form-option {
    display: inline-block;
}

[id*='form'] .form-line:after {
    content: ' ';
    clear: both;
    display: block;
    height: 0;
    float: none;
}

[id*='form'] .form-label {
    float: left;
    width: 100px;
    text-align: right;
    line-height: 35px;
    font-size: 13px;
}

[id*='form'] .form-elem {
    float: left;
    width: 385px;
    padding-left: 15px;
    line-height: 35px;
}

[id*='form'] .form-elem input,
[id*='form'] .form-elem select,
[id*='form'] .form-elem textarea {
    display: block;
    box-sizing: border-box;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    font-size: 13px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 3px;
}

[id*='form'] .form-elem textarea {
    font-family: "Courier New";
    min-width: 100%;
    max-width: 100%;
    line-height: 25px;
    height: 100px;
}

[id*='form'] .form-elem [type='checkbox'],
[id*='form'] .form-elem [type='radio'],
[id*='form'] .form-elem label {
    width: auto;
    float: left;
    height: 35px;
    margin-right: 5px;
    cursor: pointer;
}

[id*='form'] .form-elem label {
    line-height: 35px;
    margin-right: 15px;
    font-size: 13px;
}

[id*='form'] .form-elem img {
    float: left;
    width: 60px;
    height: 35px;
    line-height: 35px;
    padding: 1px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    font-size: 13px;
    overflow: hidden;
    cursor: pointer;
    margin-right: 5px;
    text-align: center;
}

[id*='form'] .form-elem a {
    float: left;
    width: auto;
    height: 35px;
    line-height: 35px;
    box-sizing: border-box;
    border: 1px solid #1e9fff;
    color: #1e9fff;
    text-align: center;
    padding: 0 10px;
    border-radius: 3px;
    font-size: 13px;
}

[id*='form'] .form-elem .upload-type {
    clear: both;
    display: block;
    line-height: 16px;
    text-align: left;
    font-size: 13px;
    color: #aaa;
    padding-top: 10px;
}

[id*='form'] .form-tips {
    float: left;
    width: 185px;
    padding-left: 15px;
    line-height: 35px;
    font-size: 13px;
    text-align: left;
    color: #f00;
}

[id*='form'] .form-line:last-child {
    padding-left: 115px;
}

[id*='form'] button {
    height: 35px;
    line-height: 33px;
    box-sizing: border-box;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 13px;
    margin-right: 10px;
    cursor: pointer;
}

[id*='form'] #submit {
    border: 1px solid #1e9fff;
    color: #fff;
    background-color: #1e9fff;
}

[id*='form'] #reset {
    border: 1px solid #1e9fff;
    color: #1e9fff;
    background-color: #fff;
}

[id*='form'] #cancel {
    border: 1px solid #ddd;
    color: #666;
}

[id*='form'] input.layui-upload-file {
    display: none;
}