@charset "utf-8";

/*
*
 *
 *
 *
 * Style - Common
 *
 */

/* ---------- Reset ---------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    padding: 0px;
    margin: 0px;
    border: 0px;
    outline: 0px;
}

html {
    _width: 100%;
    _height: 100%;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    _filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

body {
    _width: 100%;
    _height: 100%;
    min-width: 1000px;
    _width: expression(document.body.clientWidth <= 1000 ? "1000px": "auto");
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: #666666;
    background-color: #ffffff;
    _background-attachment: fixed;
    padding-bottom: 40px;
}

a {
    color: #666666;
    text-decoration: none;
}

a:hover {
    color: #0080FF;
    text-decoration: none;
}

img {
    vertical-align: middle;
    image-rendering: optimizeQuality;
    -ms-interpolation-mode: bicubic;
}

table {
    border-collapse: collapse;
    border-spacing: 0px;
}

ul {
    list-style-type: none;
}

input {
    vertical-align: middle;
    outline: none;
}

textarea {
    outline: 0px;
    resize: none;
}

/* ---------- Base ---------- */

.black {
    color: black;
}

.white {
    color: white;
}

.gray {
    color: #95A5A6;
}

.red {
    color: #E74C3C;
}

.green {
    color: #2ECC71;
}

.blue {
    color: #3498DB;
}

.orange {
    color: #F39C12;
}

.turquoise {
    color: #1ABC9C;
}

.hidden {
    display: none;
}

.clearfix {
    *zoom: 1;
}

.clearfix:after {
    height: 0px;
    display: block;
    clear: both;
    visibility: hidden;
    overflow: hidden;
    content: "\0020";
}

.dialogOverlay {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    _position: absolute;
    top: 0px;
    _top: expression(documentElement.scrollTop + documentElement.clientHeight - this.offsetHeight);
    left: 0px;
    z-index: 99;
    filter: alpha(opacity=30);
    -moz-opacity: 0.30;
    opacity: 0.30;
    zoom: 1;
}

/* ---------- Form ---------- */

input.text {
    width: 280px;
    height: 36px;
    line-height: 30px;
    padding: 0px 10px;
    color: #3d5159;
    /*-webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*-moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*-webkit-border-radius: 2px;*/
    /*-moz-border-radius: 2px;*/
    border-radius: 3px;
    border: 1px solid #d7d7d7;
}

select {
    padding: 5px;
    border-radius: 2px;
}

input.long-text {
    width: 1500px;
    height: 24px;
    line-height: 24px;
    padding: 0px 4px;
    color: #3d5159;
    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #BEBEBE;
}

input.text[type=file] {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

input.text:hover {
    -webkit-transition: box-shadow linear 0.2s;
    -moz-transition: box-shadow linear 0.2s;
    -ms-transition: box-shadow linear 0.2s;
    -o-transition: box-shadow linear 0.2s;
    transition: box-shadow linear 0.2s;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #F0F0F0;
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #F0F0F0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #F0F0F0;
    border: 1px solid #c7c9cb;
}

input.text:disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #f6f6f6;
}

input.text:disabled:hover {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    /*border-top: 1px solid #999999;*/
    /*border-right: 1px solid #e1e1e1;*/
    /*border-bottom: 1px solid #e1e1e1;*/
    /*border-left: 1px solid #999999;*/
    background-color: #f6f6f6;
    border: 1px solid #BEBEBE;
}

textarea.text {
    width: 350px;
    height: 120px;
    padding: 4px;
    color: #3d5159;
    font-size: 12px;
    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border-top: 1px solid #999999;
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    border-left: 1px solid #999999;
}

textarea.text-caipin {
    width: 800px;
    height: 120px;
    padding: 4px;
    color: #3d5159;
    font-size: 12px;
    -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border-top: 1px solid #999999;
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    border-left: 1px solid #999999;
}

textarea.text:hover {
    -webkit-transition: box-shadow linear 0.2s;
    -moz-transition: box-shadow linear 0.2s;
    -ms-transition: box-shadow linear 0.2s;
    -o-transition: box-shadow linear 0.2s;
    transition: box-shadow linear 0.2s;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #F0F0F0;
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #F0F0F0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 8px #F0F0F0;
    border: 1px solid #74b9ef;
}

textarea.text:disabled {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: #f6f6f6;
}

textarea.text:disabled:hover {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-top: 1px solid #999999;
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    border-left: 1px solid #999999;
    background-color: #f6f6f6;
}

a.button {
    height: 26px;
    line-height: 26px;
    display: inline-block;
    display: -moz-inline-stack;
    float: left;
    padding: 0px 16px;
    margin-right: 10px;
    color: #444444;
    /*text-shadow: 1px 1px #ffffff;*/
    /*-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);*/
    outline: none;
    blr: expression(this.hideFocus = true);
    border: 1px solid #c8c8c8;
    background: #fff;
}

a.button:hover {
    color: #222222;
    background-position: 0px -30px;
}

a.button:active {
    background-position: 0px -60px;
}

a.button:disabled {
    color: #bbbbbb;
}

a.button:disabled:hover, a.button:disabled:active {
    color: #bbbbbb;
    background-position: 0px 0px;
}

a.button .arrow {
    width: 6px;
    height: 3px;
    position: absolute;
    top: 12px;
    right: 4px;
    overflow: hidden;
}

a.iconButton {
    height: 26px;
    line-height: 26px;
    display: inline-block;
    display: -moz-inline-stack;
    float: left;
    position: relative;
    padding: 0px 16px 0px 6px;
    margin-right: 10px;
    color: #444444;
    /*-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);*/
    outline: none;
    blr: expression(this.hideFocus = true);
    border: 1px solid #e2e2e2;
    background: #fff;
}

a.iconButton:hover {
    color: #222222;
    background-position: 0px -30px;
}

a.iconButton:active {
    background-position: 0px -60px;
}

a.iconButton:disabled {
    color: #bbbbbb;
}

a.iconButton:disabled:hover, a.iconButton:disabled:active {
    color: #bbbbbb;
    background-position: 0px 0px;
}

a.iconButton i {
    font-size: 14px;
}

#addButton i {
    color: #0080FF;
}

#refreshButton i {
    color: #00BB00;
}

#deleteButton i {
    color: #CE0000;
}

#pageSizeSelect i{
    font-size: 14px;
    color: #979797;
}
div.buttonWrap {
    float: left;
    padding-left: 5px;
    margin-right: 10px;
}

div.buttonWrap .button, div.buttonWrap .iconButton {
    position: relative;
    margin: 0px 0px 0px -1px;
    overflow: hidden;
    white-space: nowrap;
}

div.buttonWrap .button.disabled, div.buttonWrap .button.disabled:hover, div.buttonWrap .button.disabled:active {
    color: #bababa;
    cursor: default;
    background: #ffffff;
}

div.buttonWrap .iconButton.disabled, div.buttonWrap .iconButton.disabled:hover, div.buttonWrap .iconButton.disabled:active {
    color: #bababa;
    cursor: default;
    background: #ffffff;
}

div.buttonWrap .search-bar{
    float: left;
    padding-left: 10px;
    line-height: 20px;
}

div.buttonWrap .search-bar input.text{
    width: 80px;
    height: 24px;
    line-height: 24px;
    border-radius: 2px;
    border: 1px solid #c3c3c3;
    padding: 0 5px;
    margin-right: 5px;
}

div.buttonWrap .search-bar select{
    padding: 3px;
    vertical-align: middle;
    margin-right: 5px;
}

input.button {
    height: 30px;
    *line-height: 30px;
    display: inline-block;
    display: -moz-inline-stack;
    padding: 0px 20px;
    margin-right: 10px;
    color: #3d5159;
    cursor: pointer;
    *overflow: visible;
    /*text-shadow: 1px 1px #ffffff;*/
    /*-webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);*/
    /*box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);*/
    outline: none;
    blr: expression(this.hideFocus = true);
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    background: #ffffff;
    font-size: 12px;
}

@-moz-document url-prefix() {
    input.button {
        padding: 0px 10px;
    }
}

input.button:hover {
    color: #565656;
    background: #edf0f2;
}

input.button:active {
    background-position: 0px -60px;
}

input.button:disabled {
    color: #bbbbbb;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

input.button:disabled:hover, input.button:disabled:active {
    color: #bbbbbb;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-position: 0px 0px;
}

div.menuWrap {
    display: inline;
}

div.popupMenu {
    width: 125px;
    display: none;
    position: absolute;
    z-index: 10;
    /*-webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);*/
    /*-moz-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);*/
    /*box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);*/
    border: 1px solid #dddddd;
    background-color: #ffffff;
}

div.popupMenu ul {
    z-index: 100;
    padding: 1px;
}

div.popupMenu li {
    height: 24px;
    vertical-align: middle;
}

div.popupMenu li.separator {
    border-top: 1px dotted #b8d3ee;
}

div.popupMenu a {
    height: 24px;
    line-height: 24px;
    *line-height: 25px;
    display: block;
    padding: 0px 5px;
    overflow: hidden;
    color: #333333;
    outline: none;
    blr: expression(this.hideFocus = true);
}

div.popupMenu a:hover {
    color: #565656;
    background: #dddddd;
}

div.popupMenu a.current {
    color: #565656;
    font-weight: bold;
    background: #dddddd;
}

div.popupMenu .check a {
    padding-left: 20px;
}

div.popupMenu .check a.checked {
    color: #2b2b2b;
    font-weight: bold;
}

span.requiredField {
    padding-right: 3px;
    color: #ff6d6d;
    font-size: 10px;
}

input.fieldError {
    border: 1px solid #ffb042;
    background-color: #fffbf5;
}

select.fieldError {
    border: 1px solid #ffb042;
    background-color: #fffbf5;
}

label.fieldError {
    line-height: 23px;
    color: #ffb042;
    padding-left: 6px;
}

label{
    padding: 5px;
}

/* ---------- Dialog ---------- */

.xxDialog {
    display: none;
    position: fixed;
    _position: absolute;
    top: 5%;
    _top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(25 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + "px");
    left: 50%;
    z-index: 100;
    overflow: hidden;
    -webkit-box-shadow: 1px 1px 6px #999999;
    -moz-box-shadow: 1px 1px 6px #999999;
    box-shadow: 1px 1px 6px #999999;
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color=#e5e5e5,direction=0,strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#d4d4d4,direction=90,strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#d4d4d4,direction=180,strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#e5e5e5,direction=270,strength=3)";
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#e5e5e5, direction=0, strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#d4d4d4, direction=90, strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#d4d4d4, direction=180, strength=3) progid:DXImageTransform.Microsoft.Shadow(color=#e5e5e5, direction=270, strength=3);
    *filter: none;
    border: 1px solid #779cb0;
    background: #fff;
}

.xxDialog .dialogTitle {
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    color: #FFF;
    font-weight: bold;
    cursor: move;
    background: #0080FF;
}

.xxDialog .dialogClose {
    width: 25px;
    height: 19px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #CE0000;
    text-align: center;
}

.xxDialog .dialogClose i {
    font-size: 20px;
    color: #ffffff;
}

.xxDialog .dialogClose:hover {
    background-position: -30px -330px;
}

.xxDialog .dialogwarnIcon {
    line-height: 24px;
    padding-left: 30px;
    margin: 50px 0px 40px 60px;
}

.xxDialog .dialogsuccessIcon {
    line-height: 24px;
    padding-left: 30px;
    margin: 50px 0px 40px 60px;
}

.xxDialog .dialogerrorIcon {
    line-height: 24px;
    padding-left: 30px;
    margin: 50px 0px 40px 60px;
}

.xxDialog .dialogBottom {
    height: 34px;
    padding-top: 12px;
    text-align: center;
    background: #fff;
}

.xxDialog .dialogIframe {
    width: 2000px;
    height: 2000px;
    position: absolute;
    left: -100px;
    top: -100px;
    z-index: -1;
}

/* ---------- Message ---------- */

.messageContent{
    padding: 10px;
}

.imageContent{
    text-align: center;
}

/* ---------- Browser ---------- */

div.xxBrowser {
    padding: 6px;
}

div.xxBrowser .browserBar {
    height: 40px;
    line-height: 30px;
    margin-bottom: 4px;
    border-bottom: 1px solid #E0E0E0;
}

div.xxBrowser .browserUploadButton {
    position: relative;
    overflow: hidden;
    filter: alpha(opacity=100);
    *filter: none;
}

div.xxBrowser .browserUploadButton input {
    height: 25px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 100;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    opacity: 0;
    outline: none;
    blr: expression(this.hideFocus = true);
    cursor: pointer;
    border: none;
}

div.xxBrowser .browserOrderType {
    margin: 0 6px 4px 5px;
    padding: 0px;
}

div.xxBrowser .browserList {
    height: 500px;
    overflow-y: scroll;
    border: 1px solid #FFF;
}

div.xxBrowser .browserItem {
    width: 100px;
    height: 90px;
    float: left;
    margin: 20px 5px;
    text-align: center;
}

div.xxBrowser .browserItem img {
    width: 70px;
    height: 70px;
    clear: both;
    padding: 4px;
    cursor: pointer;
    border: 1px solid #fff;
}

div.xxBrowser .browserItem span {
    cursor: pointer;
    font-size: 30px;
}

div.xxBrowser .browserItem img:hover {
    border: 1px solid #5690d2;
    background-color: #e9eff6;
}

div.xxBrowser .browserItem div {
    width: 100px;
    height: 40px;
    line-height: 20px;
    clear: both;
    text-align: center;
    color: #565656;
    overflow: hidden;
    font-size: 10px;
}

/* ---------- Loading ---------- */

span.loadingIcon {
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    display: -moz-inline-stack;
    zoom: 1;
    *display: inline;
}

span.loadingBar {
    width: 208px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    display: -moz-inline-stack;
    zoom: 1;
    *display: inline;
}

/* ---------- Admin ---------- */

div.path {
    height: 36px;
    line-height: 36px;
    padding-left: 6px;
    overflow: hidden;
    border-bottom: 1px solid #F0F0F0;
    background-color: #f9f9f9;
}

div.path span {
    color: #999999;
}

div.path a.login-url{
    color: #0269d3;
    margin-left: 20px;
    border-radius: 20px;
    border: 1px dashed #9d9d9d;
    padding: 3px 10px;
}

div.bar {
    height:auto;
    min-height: 28px;
    padding: 8px;
}

div.bar .search {
    width: 180px;
    height: 22px;
    position: relative;
    float: right;
    padding: 2px 0px;
    border: 1px solid;
    border-color: #bfbfbf #d7d7d7 #d7d7d7 #bfbfbf;
}

div.bar .search .arrow {
    width: 22px;
    height: 22px;
    position: absolute;
    cursor: pointer;
    padding: 5px;
}

div.bar .search input {
    width: 120px;
    height: 22px;
    line-height: 22px;
    margin: 0px;
    position: absolute;
    left: 24px;
    outline: none;
    border: none;
    background: none;
}

div.bar .search button {
    width: 20px;
    height: 22px;
    float: right;
    margin: 0px;
    position: relative;
    left: -4px;
    cursor: pointer;
    outline: none;
    border: none;
    background: #ffffff;
    color: #565656;
}

ul.tab {
    height: 30px;
    padding-left: 160px;
    margin: 10px 0px 5px 0px;
}

ul.tab li {
    float: left;
    margin-right: 5px;
}

ul.tab input {
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #3d5159;
    cursor: pointer;
    outline: none;
    blr: expression(this.hideFocus = true);
    border: none;
    background: #f9f9f9;
}

ul.tab input:hover {
    color: #3d5159;
}

ul.tab input.current {
    color: #3d5159;
    background: #edf0f2;
    font-weight: bold;
}

span.tips {
    line-height: 30px;
    padding: 5px 6px;
    color: #6a6a6a;
    border: 1px solid #f2c56d;
    background-color: #FFF;
}

table.list {
    width: 100%;
}

table.list tr:hover {
    background-color: #f6fafd;
}

table.list .selected {
    background-color: #fff8e4;
}

table.list th {
    height: 34px;
    line-height: 34px;
    color: #3d5159;
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
    border-top: solid 1px #dddddd;
    border-right: solid 1px #dddddd;
    border-bottom: solid 1px #dddddd;
    background: -webkit-linear-gradient(#f7f7f7, #ffffff , #f7f7f7); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(#f7f7f7, #ffffff , #f7f7f7); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(#f7f7f7, #ffffff , #f7f7f7); /* Firefox 3.6 - 15 */
    background: linear-gradient(#f7f7f7, #ffffff , #f7f7f7); /* 标准的语法 */
}

table.list th a, table.list th span {
    padding: 0px 8px;
}

table.list .check {
    width: 21px;
    padding: 0px 5px;
}

table.list .sort {
    height: 34px;
    line-height: 34px;
    display: block;
    outline: none;
    blr: expression(this.hideFocus = true);
}

table.list .sort:hover {
    color: #3d5159;
    background: #f1f4f6;

}

table.list .desc, table.list .desc:hover {
    background: #edf0f2;
    color: #3d5159;
}

table.list .asc, table.list .asc:hover {
    background: #edf0f2;
    color: #3d5159;
}

table.list td {
    line-height: 16px;
    padding: 15px 5px;
    border-bottom: 1px solid #ededed;
}

table.list td .autoLogin{
    color: #eb0000;
}

table.list td .tag {
    background: #8E8E8E;
    color: #ffffff;
    padding: 2px 4px;
    margin: 0px 3px;
    border-radius: 5px;
}

table .hid {
    display: none;
}

table.list td b {
    font-size: 14px;
}

table.list td a {
    color: #0080FF;
}

table.list td a i {
    font-size: 16px;
    font-weight: 100;
}

table.list td a:hover {
    color: #0080FF;
}

.preImage {
    width: 40px;
    height: 40px;
    border: 1px solid #ededed;
    border-radius: 5px;
}

/** 点击放大预览图片 **/
.jumpImage{
    max-width: 800px;
    max-height: 600px;
    margin-top: 30px;
    vertical-align: middle;
}

table.list .goods-title td {
    line-height: 24px;
    background: #f8f8f8;
    color: #000;
    font-size: 12px;
    font-weight: 500;
}

table.list td p {
    height: 20px;
    line-height: 20px;
}

table.list td .trueIcon {
    width: 24px;
    height: 24px;
    display: block;
    overflow: hidden;
}

table.list td .falseIcon {
    width: 24px;
    height: 24px;
    display: block;
    overflow: hidden;
}

table.input {
    width: 100%;
    word-break: break-all;
}

table.input thead tr th {
    text-align: left;
}

table.input th {
    width: 150px;
    line-height: 50px;
    padding: 5px 10px 5px 0px;
    font-weight: normal;
    text-align: right;
    white-space: nowrap;
    border-bottom: 1px solid #F0F0F0;
    background-color: #f8f8f8;
}

table.input .title th, table.input .title td {
    text-align: left;
    padding-left: 5px;
    background-color: #F0F0F0;
}

table.input td {
    line-height: 50px;
    padding: 5px;
    color: #3d5159;
    border-bottom: 1px solid #F0F0F0;
}

table.input .fieldTitle {
    height: 29px;
    line-height: 29px;
    padding-right: 5px;
}

/* ---------- ToolTip ---------- */

div.tooltip {
    padding: 5px;
    color: #999999;
    border: 1px solid #ffd461;
    background-color: #feffe6;
}

/* ---------- iconfont ---------- */
.iconfont{
    font-size: 14px;
}

/* ---------- layui-tab-content ---------- */
.layui-tab{
    margin: 0;
}
.layui-tab-content{
    padding: 0;
}
.layui-upload-img{
    max-width: 200px;
    max-height: 300px;
    margin: 5px 0;
}

.layui-form-list{
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
.layui-form-list .layui-form-item{
    margin-bottom: 0px;
}

.layui-form-list .layui-form-item .layui-input{
    height: 26px;
}

.layui-form .layui-form-item{
    margin-bottom: 0px;
}

/* ---------- page ---------- */
.page ul li{
    float: left;
    padding: 10px;
}

.page .active a{
    font-weight: bold;
    color: #0080FF;
}
.pageSkip{
    padding: 9px;
}
.pageSkip .page-number{
    width: 20px;
    text-align: center;
    margin: 0 5px;
}

table.input td#orderStatus{
    font-size: 18px;
    font-weight: bold;
}

table.input td#balance span{
    font-size: 14px;
    margin-right: 15px;
}

table.input td#balance span b{
    font-size: 16px;
    color: #C0865b;
}

/* footer */
.footer {
    width: 100%;
    position: fixed;
    bottom: 30px;
    text-align: center;
}

.footer p {
    color: #9f9f9f;
    font-size: 1.0em;
    text-align: center;
    margin-top: 5px;
}

.footer p a{
    color: rgba(17, 17, 17, 0.62);
    font-weight: bold;
}