﻿/*
  EasyReport样式表v2.3.5
  蒋农 2020年12月20日
*/

html {
    font-size: 12px;
    font-family: 'Microsoft YaHei','sans-serif';
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0px;
    padding: 0px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    color:#333;
    margin:4px 0;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
}

h4, h5, h6 {
    font-size: 14px;
}

ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
}

    ul ul, ol ul, ul ol, ol ol {
        margin-bottom: 0;
    }

a:link {
    color: #034af3;
}

a:visited {
    color: #034af3;
}

a:active {
    color: #034af3;
}

a:hover {
    color: #1d60ff;
}

/* reference from bootstrap 3.3.7 */
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

input {
    line-height: normal;
}

    input[type="checkbox"],
    input[type="radio"] {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type="search"] {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-appearance: textfield;
    }

        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

/*form-control from bootstrap 3.3.7*/
.form-control {
    display: block;
    height: 24px;
    font-size: 14px;
    font-family: 'Microsoft YaHei UI';
    padding: 0px 2px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    }

    .form-control::-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #999;
    }

    .form-control::-webkit-input-placeholder {
        color: #999;
    }

    .form-control::-ms-expand {
        background-color: transparent;
        border: 0;
    }

    .form-control[disabled],
    .form-control[readonly],
    fieldset[disabled] .form-control {
        background-color: #eee;
        opacity: 1;
    }

    .form-control[disabled],
    fieldset[disabled] .form-control {
        cursor: not-allowed;
    }

textarea.form-control {
    height: auto;
}



/*查询加载蒙板*/
.maskLayer {
    background-color: white;
    filter: alpha(opacity=50);
    opacity: 0.5;
    position: fixed;
    text-align: center;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 100;
    pointer-events: none;
    overflow: hidden;
}
    /*加载动图*/
    .maskLayer .loading {
        width: 32px;
        height: 32px;
        left: 50%;
        top: 40%;
        margin: 0 -16px 0 0;
        position: absolute;
    }

/*水印区域*/
.watermark-area {
    position: fixed;
    margin: auto;
    text-align: center;
    left: 0px;
    top: 0px;
    z-index: 99;
    pointer-events: none;
    overflow: hidden;
}
    /*水印*/
    .watermark-area .watermark {
        display: block;
        overflow: hidden;
        float: left;
        margin-right: 0px;
        margin-left: 80px;
        margin-top: 160px;
        margin-bottom: 0px;
        padding: 10px;
        font-size: 32px;
        font-weight: bold;
        color: lightblue;
        white-space: nowrap;
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -moz-opacity: 0.33;
        opacity: 0.33;
        filter: alpha(opacity=33);
    }

/*清理行*/
.clear {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/*头部区*/
.header {
    background: #4b6c9e;
    border-bottom: 4px solid #ffa500;
}
    /*菜单区*/
    .header .menuDiv {
        color: White;
        margin: 4px 4px 0px 0px;
        float: right;
        text-align: right;
    }
        /*菜单*/
        .header .menuDiv .menu {
            white-space: nowrap;
            font-family: 'Microsoft YaHei UI';
            font-size: 12px;
        }

    /*报表图标区*/
    .header .reportIconDiv {
        float: left;
        margin: 8px;
    }

        /*报表图标*/
        .header .reportIconDiv .reportIcon {
            border: none;
            display: block;
            height: 32px;
        }

    /*标题区*/
    .header .titleDiv {
        float: left;
        margin: 8px 0;
    }
        /*标题*/
        .header .titleDiv .title {
            color: White;
            white-space: nowrap;
            display: block;
            margin: auto;
            line-height: 32px;
        }



/*查询面板区*/
.queryPanel {
    padding: 8px;
    background-color: #f0f0f0;
    /*width:100%;*/
}

    /*页面图标区*/
    .queryPanel .pageIconDiv {
        margin: 8px;
        float: left;
    }
        /*页面图标*/
        .queryPanel .pageIconDiv .pageIcon {
            border: none;
            display: block;
        }

    /*查询条件与按钮区*/
    .queryPanel .controlsDiv {
        margin: 8px;
    }

        /*查询条件输入区（控件表格）*/
        .queryPanel .controlsDiv .inputsDiv {
            border-collapse: collapse;
            float: left;
        }

            /*查询控件标题*/
            .queryPanel .controlsDiv .inputsDiv span {
                color: #666666;
                font-family: 'Microsoft YaHei UI';
                font-size: 14px;
                overflow: hidden;
            }


        /*按钮区域*/
        .queryPanel .controlsDiv .buttonDiv {
            margin: 0px 16px 8px 8px;
            width: 96px;
            float: right;
        }
            /*查询按钮*/
            .queryPanel .controlsDiv .buttonDiv .button {
                display: block;
                background-color: #ee9500;
                color: white;
                font-weight: normal;
                font-size: 14px;
                font-family: 'Microsoft YaHei UI';
                -ms-touch-action: manipulation;
                touch-action: manipulation;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                border: 1px solid transparent;
                width: 96px;
                height: 32px;
            }

                .queryPanel .controlsDiv .buttonDiv .button:hover,
                .queryPanel .controlsDiv .buttonDiv .button:focus {
                    background-color: #ffa509;
                    text-decoration: none;
                }


/*表格容器*/
.reportBody {
    padding: 0px;
    margin: 0px;
    overflow: auto;
}

    /*报表主体*/
    .reportBody .tblEasyReport {
        border-collapse: collapse;
        border-style: solid;
        border-width: 1px;
        border-color:lightgray;
        width: 100%;
    }

        /*报表单元格*/
        .reportBody .tblEasyReport > tbody > tr > td {
            border-color:lightgray;
/*            border-style: dotted;
            border-width: 1px;
*/            white-space: nowrap;
            word-break: keep-all; /* 不换行 */
            overflow: hidden;
            padding: 6px;
            color: #0f0f0f;
            text-overflow: ellipsis;
        }
        /*行号列*/
        .reportBody .tblEasyReport > tbody > tr > .rowIndex {
            background-color: whitesmoke;
            width: 32px;
            text-align: center;
        }
        /*可换行的单元格*/
        .reportBody .tblEasyReport > tbody > tr > .wrapcell {
            white-space: normal;
            word-break: break-all; /* 换行 */
        }

        /*报表头*/
        .reportBody .tblEasyReport > tbody > tr > th {
            border-color:lightgray;
/*            border-style: dotted;
            border-width: 1px;*/
            padding: 6px;
            background-color: #4977a9; /*background-color: #4b6c9e#4682B4;*/
            color: White;
            /*font-weight: bold;*/
            text-align: center;
        }
            /*报表头链接*/
            .reportBody .tblEasyReport > tbody > tr > th a:active,
            .reportBody .tblEasyReport > tbody > tr > th a:link {
                color: White;
            }

        /*排序列样式*/
        .reportBody .tblEasyReport > tbody > tr > .SortedAscendingHeader {
            background-color: #ee9500;
            background-image: url(../ig_res/Default/images/igg_sortAsc.gif);
            background-repeat: no-repeat;
            background-position-y: center;
            background-position-x: right;
        }

        .reportBody .tblEasyReport > tbody > tr > .SortedDescendingHeader {
            background-color: #ee9500;
            background-image: url(../ig_res/Default/images/igg_sortDesc.gif);
            background-repeat: no-repeat;
            background-position-y: center;
            background-position-x: right;
        }

        /*报表脚*/
        .reportBody .tblEasyReport > tbody > .Footer {
            background-color: #bbeeff; /*LightGrey*/
            color: Black;
        }


        /*报表分页*/
        .reportBody .tblEasyReport > tbody > .Pager > td {
            border: none;
            padding: 0px;
            background-color: lightgray;
        }

            .reportBody .tblEasyReport > tbody > .Pager > td > table {
                border-collapse: separate;
                border-spacing: 6px;
                border-width: 0px;
            }

                .reportBody .tblEasyReport > tbody > .Pager > td > table > tbody > tr > td {
                    border-style: none;
                    background-color: #4977a9; /*background-color: #4b6c9e#4682B4;*/
                    color: White;
                    /*font-weight: bold;*/
                    text-align: center;
                    font-size: 14px;
                    width: 30px;
                    height: 30px;
                }

                    .reportBody .tblEasyReport > tbody > .Pager > td > table > tbody > tr > td:hover {
                        background-color: #ffa509;
                    }

                    .reportBody .tblEasyReport > tbody > .Pager > td > table > tbody > tr > td a:link {
                        color: White;
                    }

                    .reportBody .tblEasyReport > tbody > .Pager > td > table > tbody > tr > td a:active {
                        color: White;
                    }

        /*报表空白*/
        .reportBody .tblEasyReport > tbody > .Empty > td {
            text-align: center;
            padding: 8px;
            background-color: #4977a9; /*background-color: #4b6c9e#4682B4;*/
            color: White;
        }

        /*间隔行样式*/
        .reportBody .tblEasyReport > tbody > .alternatingRow {
            background-color: whitesmoke;
        }

    /*鼠标悬停高亮*/
    .reportBody .hoverHighlight > tbody > tr:hover {
        /*background-color: lightskyblue;*/
        background-color:lightyellow;
    }

    /*额外的行*/
    .reportBody .rowEasyReport {
        background-color: white;
        border-collapse: collapse;
        border-width: 0px;
        border-style: none;
        border-color: white;
        width: 100%;
        margin:0px;
        padding:0px;
    }

        .reportBody .rowEasyReport > tbody > tr > td {
            border-color: white;
            border-style: none;
            border-width: 0px;
            /*white-space: nowrap;
            word-break: keep-all;*/ /* 不换行 */
            padding: 6px;
            margin: 0px;
            font-size: 14px;
            /*font-weight: bold;*/
            color: #666666;
            text-overflow: ellipsis;
            overflow: hidden;
        }


/*底部区*/
.footer {
    /*background-color: #f0f0f0;
    border-top:1px solid #cccccc;*/
    padding: 8px;
    background-color: #dce8fa;
    border-top: 1px solid #ffa500;
}

    /*报表备注*/
    .footer .summary {
        margin: 8px 0px 0px 0px;
        color: #666666;
    }
        /*备注条目*/
        .footer .summary li {
            font-size: 12px;
            line-height: 20px;
            list-style-type: square;
        }
