@charset "UTF-8";

/**
 * content.css
 * @file: content.css
 * @author: &huhb
 * @update:  20150805
 * @note: 根据 V5 第一版规范进行修改
 */


.body-content-inner {
    padding: 10px;
}


/** 普通的form样式 */

.full-width {
    width: 99.9%;
}

.half-width {
    width: 46%;
}

.common-form * {
    font-size: 100%;
}

.common-form {
    background-color: #FFF;
    color: #222;
    float: left;
}

.ui-widget-content.common-form-border {
    border: 1px solid #ddd;
    margin: 5px;
}


/** form 标题 */

.common-form .form-title {
    width: 100%;
    background: #F8F8F8;
    color: windowtext;
    border: none;
    border-bottom: 1px solid #DDDDDD;
}

.common-form .form-title-inner {
    font-size: 100%;
    margin: 0;
    line-height: 2;
    padding: 0 10px 0 23px;
    font-weight: bold;
}

.common-form .form-fields-inner {
    padding: 8px;
}

.common-form .label-name {
    display: block;
    font-size: 100%;
    color: #666;
    width: 10em;
    float: left;
    margin-top: .4em;
    text-align: right;
    vertical-align: middle;
}

.common-form .field-content {
    margin-top: .4em;
    float: left;
}

.common-form .field-remark {
    color: #363636;
    font-style: italic;
    display: inline;
}

.common-form .input[type=text] {
    display: block;
    float: left;
}

.common-form .form-field-row {
    margin-bottom: .5em;
    min-height: 25px;
}

.common-form .form-field-row-border {
    margin-bottom: .5em;
    min-height: 25px;
    border-bottom: 1px dotted #AAAAAA;
}

.common-form .action-row {
    padding-left: 5em;
}

.common-form .action-row-center {
    text-align: center;
    border-top: 1px dotted #AAAAAA;
    margin-top: 1em;
    padding: 5px 0 5px 0;
    float: left;
}

.form-field-row-help {
    background: url("../images/icon-docs-info.gif") no-repeat;
    color: #666666;
    padding-left: 20px;
}

.common-form textarea,
.common-form input,
.common-form select {
    /*margin: 1px; font: 13px/19px "宋体", Verdana, Arial, "Bitstream Vera Sans", sans-serif; padding: 2px;*/
}

.common-form .query-icon {
    cursor: pointer;
}


/** 下拉列表相关样式  */

#select-picker-div {
    width: 150px;
    padding: 4px 0;
    position: absolute;
    left: -1000px;
    top: -1000px;
    z-index: 99998;
    background-clip: padding-box;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    list-style: none outside none;
    white-space: pre-wrap;
    word-break: break-all
}

#select-picker-div ul {
    margin: 0;
    padding: 0;
}

#select-picker-div ul li {
    margin: 0;
    padding: 2px;
    clear: both;
    color: #333333;
    display: block;
    font-weight: normal;
    line-height: 18px;
    padding: 3px;
    text-decoration: none;
    cursor: pointer;
}

#select-picker-div ul li input {
    vertical-align: middle;
    margin-right: 3px;
}


/** 选中的样式 */

#select-picker-div ul li.ui-state-default {
    color: #ffffff;
    background: #0088cc;
    border: none;
}

#select-picker-div .bottom {
    text-align: right;
    border-width: 1px 0pt 0pt;
    background-image: none;
    margin: 0.3em 0pt 0.3em 0pt;
    padding-top: .3em;
}

#select-picker-div .bottom a {
    margin-left: .5em;
    text-decoration: none;
    margin-right: 4px;
}

#select-picker-div .bottom a:hover {
    color: #fff;
    background-color: #FDAB00;
}

#select-picker-div li .active {
    color: red;
}


/** 动态提示信息相关样式 */

#dynamic-message-div {
    position: absolute;
    left: -1000px;
    top: -1000px;
    z-index: 99998;
}


/** 按钮样式 */

.button {
    border-color: #bbb;
    color: #464646;
    background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
    text-decoration: none;
    font-size: 12px !important;
    line-height: 16px;
    padding: 2px 8px;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -moz-border-radius: 6px;
    -khtml-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -khtml-box-sizing: content-box;
    box-sizing: content-box;
    margin-right: 3px;
    /** FIX:BUTTON左右空白宽度的差异 */
    /*overflow:visible;*/
}

.button:hover {
    color: #000;
    border-color: #666;
}

.button:active {
    background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
}

.button[disabled],
.button:disabled {
    color: #ccc !important;
    border-color: #ccc;
}

.button-add {
    background: transparent url(../images/icon_add.gif) 0 0 no-repeat;
    margin: 0 4px;
    line-height: 16px;
    cursor: pointer;
    border-width: 0px;
    width: 20px;
    height: 20px;
}

input.button-delete {
    background: transparent url(../images/icon_delete.gif) no-repeat center;
    margin: 0 4px;
    line-height: 16px;
    cursor: pointer;
    border-width: 0px;
    width: 20px;
    height: 20px;
}

.field-required {
    color: red;
}


/** 有下拉列表的input */

input.input_select {
    background: #FFFFFF url(../images/buttonSearch.gif) no-repeat scroll right center;
    border: 1px solid #999999;
}


/** 日期类型的input */

input.Wdate {}


/* 只读输入框 #dedede */

.input_textReadonly {
    background: #eeeeee;
    border: 1px solid #999999;
}


/** 普通表格 */

.commontable {
    border-collapse: collapse;
    border-spacing: 0;
    color: #0B559B;
}

.commontable input[type=text] {
    /*font: 13px/19px "宋体", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
	margin: 1px;
	padding: 3px 2px;*/
}

.commontable tr {
    padding: 5px 0;
}


/** 要可以自动换行，原先jqgrid定义的样式不允许自动换行 */

.ui-jqgrid .commontable tr.jqgrow td {
    white-space: normal;
}


/** 用于取消的链接 */

a.cancel {
    text-decoration: underline;
    padding: 0 4px;
    letter-spacing: 6px;
    color: #0033CC !important;
}

a.cancel:link {
    color: #0033CC;
}

a.cancel:visited {
    color: #0033CC;
}

a.cancel:hover {
    background-color: #0033BB;
    color: #fff !important;
    text-decoration: none;
}


/** jqGrid中自定义操作样式 */

ul.listActions {
    list-style-type: none;
}

ul.listActions li {
    display: inline;
}

ul.listActions li a {
    float: left;
    display: block;
    height: 20px;
    line-height: 20px;
}

ul.listActions li a:hover {
    background-color: #79b7e7;
    color: white;
    border-radius: 5px;
}

ul.listActions li {
    display: inline;
}

.dialog_link {
    padding: 0.2em 6px 0.2em 20px;
    position: relative;
    text-decoration: none;
}

.dialog_link span.ui-icon {
    left: 0.2em;
    margin: -8px 5px 0 0;
    position: absolute;
    top: 50%;
}

.button_bar {
    background: none !important;
    /*border: 1px solid #99BCE8 !important;*/
    /*    border-radius:  0 !important;*/
    /*margin: 4px 0 2px;*/
    margin: 4px 2px 2px;
    padding: 3px 5px;
}

.button_bar .btn-toolbar {
    margin: 0;
}


/** blockui加入关闭按钮样式 */

.blockUI .dialog-close {
    background: url("../images/fancy_close.png") no-repeat scroll 0 0 transparent;
    height: 30px;
    position: absolute;
    right: -5px;
    top: -10px;
    width: 30px;
    cursor: pointer;
}

.blockui-dialog {
    border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background: #fff;
    text-align: left;
}

.blockui-dialog h3 {
    border-bottom: 1px dotted #DDDDDD;
    padding: 7px;
}

.blockui-dialog .dialog-content {
    overflow: hidden;
    padding: 10px 20px;
}

.blockui-dialog .dialog-action {
    border-top: 1px dotted #DDDDDD;
    padding: 4px;
    text-align: center;
}


/** 覆盖文件上传的object container z-index */

.swiff-uploader-box {
    z-index: 10 !important;
}

.inner-loading {
    display: block;
    padding: 0 0 0 20px;
    color: #999999;
    font-size: 12px;
    background: url('../images/wait.gif') no-repeat;
}

.waiting-icon {
    background: url('../images/wait.gif') no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
}

.textCounter {
    color: #999999;
    margin-bottom: 0;
    margin-top: 6px;
}

.textCounter em {
    color: #444;
    font-family: Constantia, Georgia;
    font-weight: 700;
    font-size: 1.2em;
    padding: 0 5px;
}

.textCounter em.overlimit {
    color: #DA0000;
}


/* IE7以及IE8兼容模式下button按钮间距修复 */

.button_bar button {
    *margin-left: 4px;
}

.button_bar button.btn-combo,
.button_bar button.btn-date {
    *margin-left: -1px;
}

.nopicclass {
    background: url("../images/pic_haveNo.gif") repeat-x scroll 0 0 transparent;
}

.select-student {
    background: #DFF0D8;
    border: 1px solid #468847;
}


/** 页面进度条 */

#global-page-loading {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 100000;
    width: 300px;
    height: 100px;
    overflow: hidden;
    background: #eee;
    margin-left: -150px;
    margin-top: -100px;
    border-radius: 4px 4px 4px 4px;
}

#global-page-loading-text {
    position: absolute;
    left: 0;
    top: 26%;
    width: 100%;
    font-family: Arial, Tahoma, 微软雅黑;
    font-size: 20px;
    color: white;
    text-shadow: #666 0 0 3px;
    text-align: center;
}

#global-page-loading-bar-container {
    position: absolute;
    left: 50px;
    top: 70%;
    width: 200px;
    height: 2px;
    overflow: hidden;
    font-size: 0;
    border: 1px solid #999;
}

#global-page-loading-bar {
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: #FE780A url(../images/starting_bar.gif);
}


/** 左侧布局样式 */

.left-panel {
    border: 1px solid #D9DEE2;
    background: url("../images/left-panel-bg.png") repeat-y right center;
    overflow: hidden;
}

.left-panel-title {
    font-size: 14px;
    font-weight: bold;
    padding: 12px 0 10px 14px;
}


/** 确认框样式 */

.ui-dialog-confirm {
    z-index: 999999 !important;
}


/** 快速搜索样式 */

.form-quicksearch {
    display: inline-block;
    +display: inline;
    zoom: 1;
    position: relative;
}

.form-quicksearch label {
    font-weight: bold;
    margin-right: 4px;
}

.form-quicksearch .i-txt {
    padding-right: 16px;
}

.form-quicksearch .input-clear {
    background: url("../images/dialog/close.png") no-repeat scroll center center transparent;
    cursor: pointer;
    display: block;
    height: 12px;
    position: absolute;
    right: 30px;
    top: 8px;
    width: 12px;
}

.form-quicksearch .input-clear:hover {
    background-image: url("../images/dialog/close_a.png");
    background-position: center 2px;
}


/********************************* 自定义图标  start ***********************************/


/** 显示更多 */

.ui-icon-more {
    background: url("../images/arrow-display.png") no-repeat scroll center center transparent;
}


/** 收起 */

.ui-icon-collapse {
    background: url("../images/arrow-hidden.png") no-repeat scroll center center transparent;
}

.lzx-icon-star {
    background: url("../images/star.png") no-repeat scroll center center transparent !important;
}

.lzx-icon-emptystar {
    background: url("../images/star_empty.png") no-repeat scroll center center transparent !important;
}


/********************************* 自定义图标  end ***********************************/


/** 显示原始html样式，一般用于富文本编辑器内容的展现 */

.raw-html ul {
    list-style-position: inside;
}

.overflow-h {
    overflow: hidden!important;
}



.button_bar input.btn {
	float: right;
    margin: 0 5px;
    background-color: #39f;
    color: #fff;
    border: none;
    background-image: none!important;
}

.button_bar:after {
    content: '\200B';
    display: block;
    height: 0;
    clear: both;
}
.button_bar {
    *zoom: 1;
}
