@charset "UTF-8";
/*common*/
* {
    margin: 0;
    padding: 0;
    /*font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", sans-serif;*/
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

a, img {
    border: none;
}

a {
    text-decoration: none;
    _color: #333;
}

ul li, ol li {
    list-style: none;
}

.text-link {
    color: blue;
}

/*公共样式*/
fieldset {
    border: solid 1px #aaa;
    margin: 5px;
}

fieldset > legend {
    margin-left: 10px;
}

fieldset .fieldset-body {
    padding: 5px;
}

.hideFieldset {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    overflow: hidden;
}

.hideFieldset .fieldset-body {
    display: none;
}

/*END 公共样式*/


/*miniui样式覆盖与扩展*/
.mini-toolbar{
    /*防止mini-fit计算高度四舍五入导致滚动条产生*/
    padding: 2px;
    min-height: 36px;
}

.mini-tabs-bodys {
    /*框架页面留白*/
    padding: 2px;
}

.mini-datagrid {
    /*默认充满父容器*/
    width: 100%;
    height: 100%;
}

.mini-labelfield-label {
    line-height: 24px;
}

.mini-grid-emptyText {
    /*datagrid empty 文本默认居中*/
    text-align: center !important;
}

/*配合common.js调整提示框大小*/
.mini-tips-half {
    font-size: 16px !important;
}

.mini-tips-big {
    font-size: 20px !important;
}

.mini-iconfont.icon-upload::before{
    /*防止iconfont污染miniui字体图标*/
    content:'';
}
/*END 配合common.js调整提示框大小*/

/*进度条*/
.progressbar {
    position: relative;
    background: #bbb;
    width: 100%;
    height: 16px;
    overflow: hidden;
}

.progressbar-percent {
    position: absolute;
    height: 18px;
    background: blue;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 1;
}

.progressbar-label {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    font-size: 13px;
    color: White;
    z-index: 10;
    text-align: center;
    height: 16px;
    line-height: 16px;
}

/*END 进度条*/

/*表单只读样式*/
.asLabel .mini-textbox-border,
.asLabel .mini-textbox-input,
.asLabel .mini-buttonedit-border,
.asLabel .mini-buttonedit-input,
.asLabel .mini-textboxlist-border {
    border: 0 !important;
    background: none !important;
    cursor: default !important;
}

.asLabel .mini-buttonedit-button,
.asLabel .mini-textboxlist-close {
    display: none !important;
}

.asLabel .mini-textboxlist-item {
    padding-right: 8px !important;
}

.asLabel .mini-textbox-input::placeholder, .asLabel .mini-buttonedit-input::placeholder {
    color: transparent;
    font-size: 0;
}

.asLabel .mini-textbox-input::-webkit-input-placeholder, .asLabel.mini-buttonedit-input::-webkit-input-placeholder {
    color: transparent;
    font-size: 0;
}

.asLabel .mini-textbox-input::-ms-input-placeholder, .asLabel .mini-buttonedit-input::-ms-input-placeholder {
    color: transparent;
    font-size: 0;
}

.asLabel .mini-textbox-input::-moz-placeholder, .asLabel .mini-buttonedit-input::-moz-placeholder {
    color: transparent;
    font-size: 0;
}


/*END 表单只读样式*/


/*iframe报表*/
.hmq-iframe-box {
    width: 100%;
    overflow: hidden !important;
    border: 1px solid #999999;
}

.hmq-iframe-box > iframe {
    width: 100%;
    height: 100% !important;
    border: 0;
    overflow: hidden;
}

/*END iframe报表*/

/*新增窗体表格自适应*/

label.hmq-label {
    margin: 5px 10px 5px 0 !important;
    display: inline-block !important;
}

table.hmq-modify-table {
    margin: auto;
    border: 0;
    table-layout: fixed;
    _border-collapse: collapse;
    /*单元格之间的间隔*/
    border-spacing: 1px;
    border-spacing: 0.2rem;

    /*width: 92%;*/
    padding: 15px 15px 0 15px;
}

table.hmq-modify-table > tr > td,
table.hmq-modify-table > tbody > tr > td {
    height: 28px !important;
    position: relative;
    /*文本不换行*/
    white-space: nowrap;
}

/*td行内的label、input样式*/
.td-inner-label {
    position: absolute;
    width: 60px;
    padding-right: 5px;
    line-height: 2.0;
    white-space: nowrap;
    text-justify: distribute-all-lines;
    text-align: justify;
    text-align-last: justify;
    -moz-text-align-last: justify;
}

.td-inner-input {
    padding-left: 65px !important;
}

/*END td行内的label、input样式*/
div.hmq-toolbar {
    padding: 5px 3px;
    padding: 0.5rem 3px;
    text-align: center;
    border-width: 0;
    height: 42px;
}

div.hmq-toolbar > a.mini-button {
    margin-left: 5px;
    margin-right: 5px;
    min-width: 25px;
}

/*END 新增窗体表格自适应*/

/*DataGrid背景*/
.hmq-white{
    color:white;
}
/*红色*/
.mini-grid-cell.hmq-row-bg-success,
.mini-grid-cell.hmq-row-bg-green,
.mini-grid-row.hmq-row-bg-success,
.mini-grid-row.hmq-row-bg-green {
    background-color: rgba(92, 184, 92, 0.5) !important;
}

.mini-grid-cell-selected.hmq-row-bg-success,
.mini-grid-cell-selected.hmq-row-bg-green,
.mini-grid-row-selected.hmq-row-bg-success,
.mini-grid-row-selected.hmq-row-bg-green {
    background-color: #5cb85c !important;
}

.hmq-bg-success, .hmq-bg-green {
    background-color: #5cb85c;
}

.hmq-success, .hmq-green {
    color: #5cb85c;
}

/*橙色*/
.mini-grid-cell.hmq-row-bg-warning,
.mini-grid-cell.hmq-row-bg-orange,
.mini-grid-row.hmq-row-bg-warning,
.mini-grid-row.hmq-row-bg-orange {
    background-color: rgba(236, 151, 31, 0.5) !important;
}

.mini-grid-cell-selected.hmq-row-bg-warning,
.mini-grid-cell-selected.hmq-row-bg-orange,
.mini-grid-row-selected.hmq-row-bg-warning,
.mini-grid-row-selected.hmq-row-bg-orange {
    background-color: #ec971f !important;
}

.hmq-bg-warning, .hmq-bg-orange {
    background-color: #ec971f;
}

.hmq-warning, .hmq-orange {
    color: #ec971f;
}

/*红色*/
.mini-grid-cell.hmq-row-bg-danger,
.mini-grid-cell.hmq-row-bg-red,
.mini-grid-row.hmq-row-bg-danger,
.mini-grid-row.hmq-row-bg-red {
    background-color: rgba(217, 83, 79, 0.5) !important;
}

.mini-grid-cell-selected.hmq-row-bg-danger,
.mini-grid-cell-selected.hmq-row-bg-red,
.mini-grid-row-selected.hmq-row-bg-danger,
.mini-grid-row-selected.hmq-row-bg-red {
    background-color: #d9534f !important;
}

.hmq-bg-danger, .hmq-bg-red {
    background-color: #d9534f;
}

.hmq-danger, .hmq-red {
    color: #d9534f;
}

/*蓝色*/
.mini-grid-cell.hmq-row-bg-primary,
.mini-grid-cell.hmq-row-bg-blue,
.mini-grid-row.hmq-row-bg-primary,
.mini-grid-row.hmq-row-bg-blue {
    background-color: rgba(0, 123, 255, 0.5) !important;
}

.mini-grid-cell-selected.hmq-row-bg-primary,
.mini-grid-cell-selected.hmq-row-bg-blue,
.mini-grid-row-selected.hmq-row-bg-primary,
.mini-grid-row-selected.hmq-row-bg-blue {
    background-color: #007bff !important;
}

.hmq-bg-primary, .hmq-bg-blue {
    background-color: #007bff;
}

.hmq-primary, .hmq-blue {
    color: #007bff;
}

/*灰色*/
.mini-grid-cell.hmq-row-bg-secondary,
.mini-grid-cell.hmq-row-bg-gray,
.mini-grid-row.hmq-row-bg-secondary,
.mini-grid-row.hmq-row-bg-gray {
    background-color: rgba(108, 117, 125, 0.5) !important;
}

.mini-grid-cell-selected.hmq-row-bg-secondary,
.mini-grid-cell-selected.hmq-row-bg-gray,
.mini-grid-row-selected.hmq-row-bg-secondary,
.mini-grid-row-selected.hmq-row-bg-gray {
    background-color: #6c757d !important;
}

.hmq-bg-secondary, .hmq-bg-gray {
    background-color: #6c757d;
}

.hmq-secondary, .hmq-gray {
    color: #6c757d;
}

.hmq-cell-disabled{
    background-color:#e0e0e0 !important;
}
/*蓝绿*/
.mini-grid-cell.hmq-row-bg-info,
.mini-grid-cell.hmq-row-bg-lightgreen,
.mini-grid-row.hmq-row-bg-info,
.mini-grid-row.hmq-row-bg-lightgreen {
    background-color: rgba(23, 162, 184, 0.5) !important;
}

.mini-grid-cell-selected.hmq-row-bg-info,
.mini-grid-cell-selected.hmq-row-bg-lightgreen,
.mini-grid-row-selected.hmq-row-bg-info,
.mini-grid-row-selected.hmq-row-bg-lightgreen {
    background-color: #17a2b8 !important;
}

.hmq-bg-info, .hmq-row-bg-lightgreen {
    background-color: #17a2b8;
}

.hmq-info, .hmq-lightgreen {
    color: #17a2b8;
}

/*深色*/
.mini-grid-cell.hmq-row-bg-dark,
.mini-grid-row.hmq-row-bg-dark {
    background-color: rgba(52, 58, 64, 0.5) !important;
}

.mini-grid-cell-selected.hmq-row-bg-dark,
.mini-grid-row-selected.hmq-row-bg-dark {
    background-color: #343a40 !important;
}

.hmq-bg-dark, .hmq-row-bg-dark {
    background-color: #343a40;
}

.hmq-dark {
    color: #343a40;
}

/*END DataGrid背景 */


/*图片自适应*/
img {
    vertical-align: middle;
}

.hmq-img-responsive {
    display: block;
    height: auto;
    max-width: 100%;
}

.hmq-img-rounded {
    border-radius: 6px;
}

.hmq-img-circle {
    border-radius: 50%;
}

.hmq-img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

/*END 图片自适应*/
.hmq-text-center {
    text-align: center;
}





.hmq-tag-link{
    cursor: pointer;
    display: inline-block;
}
/*微信相关样式*/
.hmq-tag{
    min-width: 24px;
    max-width: 80px;
    font-size: 12px;
    display: inline-block;
    margin-left:4px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 0.15rem;
    padding: 2px 8px;
    border: 1px solid #E4E6E9;
    margin-right: 5px;
    background: #fff;
    zoom: 0.8;
    overflow: hidden;
    vertical-align: bottom
}
/*mini-spinner 隐藏滚动滚轮按钮图标*/
.mini-spinner.hide-mousewheel .mini-buttonedit-buttons{
    display: none !important;
}