﻿/*v=1.1.3*/
body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: 微软雅黑 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 微软雅黑 !important;
}


.hideImg {
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
}

/*给分页控件添加一个标题文本*/
.pagination-title {
    display: inline-block;
    padding: 5px 5px;
    margin: 20px 0px;
    float: left;
}

    .pagination-title .pageindex {
        display: inline-block;
        padding: 0px 10px;
    }

        .pagination-title .pageindex > span {
            display: inline-block;
            padding: 0px 5px;
            color: #337ab7;
        }

    .pagination-title .recordcount {
        display: inline-block;
        padding: 0px 5px;
    }

        .pagination-title .recordcount > span {
            display: inline-block;
            padding: 0px 5px;
            color: #337ab7;
        }
/*给分页控件添加一个标题文本*/
.pagination-select {
    display: inline-block;
    margin: 20px 0px;
    float: left;
}

    .pagination-select select {
        border: 1px solid #ccc;
        background: #fff;
        padding: 5px 0px 4px 0px;
        margin: 0px 5px;
        width: 45px;
    }

/*---------------------------------------------------------------------------*/
/*bootstrap3打开modal后下层网页内容出现右移:
    注意看BS3的modal，有这么一个样式，当打开的时候，会给body加上modal-open，于是y滚动条没了，页面宽度变大，自然元素就右移了，我图省事，直接重写了这个属性为intial解决了
*/
.modal-open {
    overflow: hidden;
}


/*---------------------------------------------------------------------------*/
hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

label {
    font-weight: normal !important;
}

/*可以输入的只读框样式，如：部门树控件选择框*/
.site-input-readonly {
    background-color: #fff !important;
}

.site-handle {
    cursor: pointer;
}

/*---------------------------table容器样式------------------------------------*/
.table-fixed-column-container {
    display: table;
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
    overflow: auto;
}

.table-fixed-column-cell {
    display: table-cell;
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
    vertical-align: top;
}

.table-fixed-column-cell-overflow-hidden {
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}



.table-fixed-column-cell-overflow-x {
    width: 100%;
    margin-top: 0px;
    /*margin-left: -1px;*/
    overflow-x: auto;
    overflow-y: hidden;
}

/*.table-fixed-column-cell-overflow-x .table > thead:first-child > tr:first-child > th:first-child {
        border-left: none;
    }*/


.table-fixed-column-cell-empty {
    /*两行标题头时，需要在固定列中添加空行，以撑开两行的高度*/
    width: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

/*---------------------------table样式------------------------------------*/
/* ---  固定列的table(动态列的table有"输入框") ----*/
.table-has-input {
}

    .table-has-input > tbody > tr > td {
        /*padding-top:4px !important;*/
        /*padding-bottom:5px !important;*/
    }
/* ---  固定列的table(动态列的table有"输入框") ----*/
.table-checkbox-not-input {
}

    .table-checkbox-not-input > tbody > tr > td {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

.table-virtu-input {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*---------------------------table样式------------------------------------*/

.table {
}
    /*table单元格中有控件时，单元格会被撑大， 因此，...*/
    .table > thead > tr > th .btn,
    .table > tbody > tr > td .btn {
        margin-top: -6px !important;
    }

    /*table单元格中有checkbox时，单元格会被撑大， 因此，...*/
    /* checkbox 必须包含大 div中, 且 div的class有: checkbox checkbox-inline*/
    .table > thead > tr > th .checkbox,
    .table > tbody > tr > td .checkbox {
        margin-top: -20px !important;
    }

    .table tbody td.site-left {
        text-align: left;
    }

    .table thead th {
        background-color: #fafdff; /*#e3eaf3*/
    }

    /*----table 边框圆角----*/
    .table thead > tr > :first-child {
        /*border-top-left-radius: 4px !important;*/
    }

    .table thead > tr > :last-child {
        /*border-top-right-radius: 4px !important;*/
    }

    .table tbody > tr:last-child > :first-child {
        /*border-bottom-left-radius: 4px !important;*/
    }

    .table tbody > tr:last-child > :last-child {
        /*border-bottom-right-radius: 4px !important;*/
    }

    .table tfoot > tr > :first-child {
        /*border-bottom-left-radius: 4px !important;*/
    }

    .table tfoot > tr > :last-child {
        /*border-bottom-right-radius: 4px !important;*/
    }

.table-margin-botton-0 {
    margin-bottom: 0px;
}

.table-header-center th {
    text-align: center !important;
    vertical-align: middle !important;
}

.table-header-border > thead > tr:first-child {
    border-top: 2px solid #00AAEF;
}

.table-header-border-top > thead > tr:first-child {
    border-top: 1px solid #e6f1fc;
}

.table-header-border > thead > tr {
    /*border-left: 1px solid #e6f1fc;*/
}

.table-header-border th {
    border-right: 1px solid #e6f1fc; /*#fff*/
    border-bottom: 1px solid #e6f1fc;
}


.table-body-center td {
    text-align: center !important;
    vertical-align: middle !important;
    word-break: break-all;
    word-wrap: break-word;
}

.table-header-left th {
    text-align: left !important;
    vertical-align: middle !important;
}

.table-body-left td {
    text-align: left !important;
    vertical-align: middle !important;
    word-break: break-all;
    word-wrap: break-word;
}

.table-header-oneline th {
    /*display: block;*/
    white-space: nowrap; /*不换行*/
    overflow: hidden;
    text-overflow: ellipsis; /*超出部分显示省略号…*/
}

.table-body-oneline td {
    /*与划线排中的 td position:relative,  div position:absolute有冲突*/
    /*display: block;*/
    white-space: nowrap; /*不换行*/
    overflow: hidden;
    text-overflow: ellipsis; /*超出部分显示省略号…*/
}

/*---------------------------------------------------------------------------*/

fieldset.scheduler-border {
    border: 1px solid #ddd !important;
    padding: 0 5px 5px 5px !important;
    margin: 0 0 10px 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
}

legend.scheduler-border {
    font-size: 1.0em !important;
    text-align: left !important;
    width: inherit; /* Or auto */
    padding: 0 10px; /* To give a bit of padding on the left and right */
    border-bottom: none;
    margin-bottom: 5px !important;
}

fieldset.scheduler-no-border {
    border: 0px solid #ddd !important;
    padding: 0 5px 5px 5px !important;
    margin: 0 0 10px 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
}

legend.scheduler-no-border {
    font-size: 1.0em !important;
    text-align: left !important;
    width: inherit; /* Or auto */
    padding: 0 10px; /* To give a bit of padding on the left and right */
    border-bottom: none;
    margin-bottom: 5px !important;
}


/*---调动中薪资结构的样式------------*/
.site-change-salary-container {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

    .site-change-salary-container > li {
        margin-bottom: 2px;
    }

        .site-change-salary-container > li > .site-change-salary-label {
            width: 80px;
        }

        .site-change-salary-container > li > .site-change-salary-label,
        .site-change-salary-container > li > .site-change-salary-input {
            display: table-cell;
            vertical-align: top;
        }

/*---------------------------------------------------------------------------*/


.checkbox label {
    padding-left: 2px !important;
}

.radio label {
    padding-left: 2px !important;
}

.checkbox-xs {
    width: 20px;
    height: 20px;
}

/*---------------------------------------------------------------------------*/
/*--必输项提示，用在label中，给必须项添加一个“星号” --*/
.site-must-input {
}

    .site-must-input::before {
        content: '*';
        color: #b94a48;
    }


/*---------------------------------------------------------------------------*/
/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

input.input-validation-error {
    border: 1px solid #b94a48;
}

select.input-validation-error {
    border: 1px solid #b94a48;
}

textarea.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}


/* Set width on the form input elements since they're 100% wide by default */

/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/


/* styles for bootstrap helpers */
@media (min-width: 768px) {

    .site-form-field input,
    .site-form-field select,
    .site-form-field textarea {
        max-width: 280px;
    }

    .site-form-field button,
    .site-form-field a[role="button"] {
        max-width: 280px !important;
    }

    .site-field-width {
        max-width: 160px !important;
    }

    .site-field-width-lg {
        max-width: 312px !important; /*注册页面中获取验证码*/
    }

    .site-field-long,
    .site-form-field input.site-field-long,
    .site-form-field select.site-field-long,
    .site-form-field textarea.site-field-long {
        max-width: 560px !important;
    }

    .site-md-padding-left-10 {
        padding-left: 10px !important;
    }
}

.form-horizontal .form-group p {
    margin-bottom: 0px !important;
}


/*---------------------------------------------------------------------------*/

@media (max-width: 768px) {
    .control-label {
        padding-top: 10px !important;
    }

    .form-group {
        margin-bottom: 5px !important;
    }

    /*label {
        padding-bottom: 0px !important;
        height: 35px !important;
    }*/

    /*.navbar-nav > li {
        border-bottom: 1px solid #f89406;
    }*/


    .site-sm-padding-horizontal-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .site-sm-width-100 {
        width: 100px;
    }

    .site-overflow-auto-sm {
        overflow: auto !important;
        width: 100%;
    }
}

/*---------------------------------------------------------------------------*/
/*--------1. 固定命令行  -----------------------------------------*/
/*---------------------------------------------------------------------------*/
.site-navbar {
    position: fixed;
    display: block;
    left: 0px;
    top: 50px;
    right: 0px;
    /*width: 100%;*/
    height: 50px;
    padding-top: 5px;
    background-color: #fff;
    z-index: 1029;
}

    .site-navbar + div {
        margin-top: 65px !important;
    }


/*---------------------------------------------------------------------------*/
/*--------1. 界面样式  -----------------------------------------*/
/*---------------------------------------------------------------------------*/

.site-page-nav-title {
    color: #666;
    position: fixed;
    height: 40px;
    line-height: 40px;
    z-index: 5;
    width: 100%;
    background-color: #fff;
}

.site-condition-div {
    /*background-color: #eeeeee;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 15px;
    margin: 10px 0px 10px 0px; */
    /*padding-bottom: 5px;*/
    padding-left: 10px;
    position: relative;
}

.site-condition-separate {
    margin: 10px 0px 0px 0px;
    padding: 0px;
    height: 0px;
}

/*panel的嵌套问题：由于外部的panel设置了 padding-bottom而 部门的panel设置了 margin-bottom 导致底部空白区域太大*/
.site-main-panel {
}

    .site-main-panel > .panel-body > .panel {
        margin-bottom: 0px;
    }





/*标签控件下面的panel，由于有边框，必须要向移2px*/
.nav-tabs + .panel {
    /*margin-top: -2px;*/
}

/*在panel heading中的命令控件(btn-sm)，垂直对齐*/
.panel-heading > .site-button-div {
    margin-top: -4px;
}

/*显示在标题中的命令控件*/
.site-title-btn {
    margin-top: -7px;
}

.site-title-btn-xs {
    margin-top: 0px;
}

/*两button之间的间隔*/
.site-btn-separate {
    padding: 0px 2px;
}

    .site-btn-separate:before {
        content: '\20';
        display: inline-block;
    }


.form-group > .control-label {
    padding-right: 0px;
    padding-left: 0px;
}

.form-group > .control-label-width {
    width: 50px;
}
/*---------------------------------------------------------*/
/*--------------所有弹框背景色--------------------------*/
/*--------------------------------------------------------*/
.modal-header {
    background-color: #2E3243;
}

    .modal-header .close {
        color: #fff;
        opacity: 1;
    }

    .modal-header .modal-title {
        color: #fff;
    }

.modal-body {
    background-color: #F8F8F8;
}

.modal-footer {
    background-color: #F8F8F8;
}

/*---------------------------------------------------------*/
/*--------------数据列表中的小头像--------------------------*/
/*--------------------------------------------------------*/
.site-small-image {
    width: 40px;
    height: 40px;
}

/*---------------------------------------------------------*/
/*--------------模式窗体样式(modal用到)--------------------*/
/*--------------------------------------------------------*/
.site-modal-container {
    display: inline-block;
    max-height: 410px;
    overflow: auto;
}


/*---------------------------------------------------------*/
/*--------------弹框窗口样式(popup--tree用到)-----------*/
/*--------------------------------------------------------*/
.site-popup-container {
    background-color: #fff;
    display: none;
    z-index: 10;
    border-radius: 4px;
    border: 1px solid #ddd;
    position: absolute;
    box-sizing: border-box;
    /*padding: 5px;
    min-height: 60px;
    max-height: 250px;
    min-width: 180px;
    overflow: hidden;*/
}

    .site-popup-container ul.ztree {
        padding: 5px;
        min-height: 60px;
        max-height: 250px;
        min-width: 150px;
        overflow: auto;
    }

    .content_left .ztree-input-search,
    .site-popup-container .ztree-input-search,
    .ztree-search-box .ztree-input-search {
        display: block;
        margin: 5px auto;
        border: 1px solid #ccc;
        border-radius: 4px;
        outline: none;
        padding: 5px 8px;
        box-sizing: border-box;
        width: 90%;
        background-image: url(/Images/filter.png);
        background-repeat: no-repeat;
        background-position: 98% 50%;
    }

.ztree-search-box {
    position: relative;
}
/*---------------------------------------------------------*/
/*--------------选员工和选部门弹框样式----------------------*/
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
.site-select-popup-container-data,
.site-select-popup-container-command,
.site-select-popup-container-result {
    background-color: #fff;
    height: 335px;
    /*padding:15px;*/
    overflow: auto;
}

.site-select-popup-container-data,
.site-select-popup-container-result {
    /*border-radius: 4px;
    border: 1px solid #ddd; */
}

.site-select-popup-container-command {
    text-align: center;
    padding: 15px;
    padding-top: 100px;
}

    .site-select-popup-container-command > button {
        margin-top: 10px;
        margin-bottom: 10px;
    }



/*---------------------------------------------------------*/
/*--------------列表数据div显示滚动条----------------------*/
/*--------------------------------------------------------*/

.site-overflow-auto {
    overflow: auto !important;
    width: 100%;
}

.site-overflow-x {
    overflow-y: hidden !important;
    overflow-x: auto !important;
}

.site-overflow-y {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}













/*---------------------------------------------------------*/
/*--------------1.div表格样式(div_table，以"列"为单位)---*/
/*--------------------------------------------------------*/

.site-col-table {
    display: table;
    width: 100%;
}

    .site-col-table .site-col-table-fixed-column {
        display: table-cell;
        background-color: #fff;
    }

    .site-col-table .site-col-table-dynamic-column {
        display: table-cell;
    }

    .site-col-table .site-col-table-column {
        display: table-cell;
        box-sizing: content-box;
        padding: 2px 0px;
        border: 0px solid #ddd;
    }

        .site-col-table .site-col-table-column .site-col-table-row,
        .site-col-table .site-col-table-column .site-col-table-header {
            width: 100%;
            height: 42px;
            display: block;
            border: 1px solid #ddd;
            padding: 2px 5px;
            line-height: 40px;
            text-align: center;
            vertical-align: middle;
        }

        .site-col-table .site-col-table-column .site-col-table-header {
            background-color: #f0f0f0;
        }


.site-table-row-width-80 .site-col-table-column {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
}

.site-table-row-width-130 .site-col-table-column {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
}

.site-table-row-width-180 .site-col-table-column {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
}

.site-table-row-width-240 .site-col-table-column {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
}


/*---------------------------------------------------------*/
/*--------------2. div表格样式(div_table，以"行"为单位)---*/
/*--------------------------------------------------------*/

.site-row-table {
    /*width: 100%;*/
}

    .site-row-table .site-row-table-header {
        display: table;
        width: 100%;
    }

    .site-row-table > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell1,
    .site-row-table > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 {
        display: table;
        width: 100%;
    }

    .site-row-table > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell1 {
        border-bottom: 1px solid #fff;
    }


    .site-row-table .site-row-table-row {
        display: table;
        border: 0px solid #eee;
        border-bottom: 1px solid #eee;
        width: 100%;
    }

        .site-row-table .site-row-table-row:hover {
            background-color: #F0F8FF;
        }

    .site-row-table > .site-row-table-row > .site-row-table-row-cell,
    .site-row-table > .site-row-table-header > .site-row-table-row-cell,
    .site-row-table > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell {
        display: table-cell;
        height: 36px;
        border: 0px solid #eee;
        border-bottom: 0px solid #eee;
        padding: 2px 5px;
        line-height: 24px;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        /*---*/
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-row-table .site-row-table-header .site-row-table-row-cell {
        background-color: #e3eaf3;
    }


.site-table-row-width-60 > .site-row-table-header > .site-row-table-row-cell,
.site-table-row-width-60 > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell,
.site-table-row-width-60 > .site-row-table-row > .site-row-table-row-cell {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
}

.site-table-row-width-80 > .site-row-table-header > .site-row-table-row-cell,
.site-table-row-width-80 > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell,
.site-table-row-width-80 > .site-row-table-row > .site-row-table-row-cell {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
}

.site-table-row-width-100 > .site-row-table-header > .site-row-table-row-cell,
.site-table-row-width-100 > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell,
.site-table-row-width-100 > .site-row-table-row > .site-row-table-row-cell {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
}

.site-table-row-width-120 > .site-row-table-header > .site-row-table-row-cell,
.site-table-row-width-120 > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell,
.site-table-row-width-120 > .site-row-table-row > .site-row-table-row-cell {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

.site-table-row-width-130 > .site-row-table-header > .site-row-table-row-cell,
.site-table-row-width-130 > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell,
.site-table-row-width-130 > .site-row-table-row > .site-row-table-row-cell {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
}

.site-table-row-width-150 > .site-row-table-header > .site-row-table-row-cell,
.site-table-row-width-150 > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell,
.site-table-row-width-150 > .site-row-table-row > .site-row-table-row-cell {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
}

.site-table-row-width-180 > .site-row-table-header > .site-row-table-row-cell,
.site-table-row-width-180 > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell,
.site-table-row-width-180 > .site-row-table-row > .site-row-table-row-cell {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
}

.site-table-row-width-240 > .site-row-table-header > .site-row-table-row-cell,
.site-table-row-width-240 > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell,
.site-table-row-width-240 > .site-row-table-row > .site-row-table-row-cell {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
}

.site-table-row-width-320 > .site-row-table-header > .site-row-table-row-cell,
.site-table-row-width-320 > .site-row-table-header > .site-row-table-row-cell > .site-row-table-row-cell2 > .site-row-table-row-cell,
.site-table-row-width-320 > .site-row-table-row > .site-row-table-row-cell {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
}

.site-table-row-cell-60 {
    width: 60px !important;
    min-width: 60px !important;
    max-width: 60px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-table-row-cell-80 {
    width: 80px !important;
    min-width: 80px !important;
    max-width: 80px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-table-row-cell-100 {
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-table-row-cell-120 {
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-table-row-cell-130 {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-table-row-cell-150 {
    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-table-row-cell-160 {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-table-row-cell-180 {
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-table-row-cell-240 {
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-table-row-cell-320 {
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/*---------------------------------------*/
/*---------列表下面的新增按键-------------*/
/*--------------------------------------*/
.site-table-add {
    background-color: #e6e9f0; /* #B0C4DE;*/
    cursor: pointer;
    padding: 10px 10px 10px 10px;
    /*border-radius: 4px;*/
    text-align: center;
    vertical-align: middle;
    line-height: 24px;
}

    .site-table-add:hover {
        background-color: #e6e9f0; /* #87CEFA;*/
    }

    .site-table-add .site-table-add-icon {
        color: #337ab7;
    }

    .site-table-add .site-table-add-text {
        color: #337ab7;
        padding-left: 1px;
        font-size: 14px;
    }

/*---------------------------------------*/
/*---------设置页面中的“方块”样式---------*/
/*--------------------------------------*/
.site-content-block, .site-content-block-sm {
    background-color: #337ab7 !important;
    color: #fff;
    padding: 5px 5px !important;
    cursor: pointer;
    margin-bottom: 5px;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
}

    .site-content-block:hover, .site-content-block-sm:hover {
        background-color: #286090 !important;
    }

.site-content-block {
    height: 50px;
    line-height: 40px;
}

.site-content-block-sm {
    height: 38px;
    line-height: 28px;
}

    .site-content-block .title,
    .site-content-block-sm .title {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        display: block;
        width: 100%;
    }

.site-content-block .title {
    font-size: 18px;
}

.site-content-block-sm .title {
    font-size: 12px;
}




/* styles for bootstrap helpers */

.site-row-margin {
    margin-top: 5px;
}

.site-hidden {
    display: none;
}

/*-------------------------------------------------*/
/*---------招聘模块中的“发布职位”的列表样式----------*/
/*------------------------------------------------*/
/* list style for two row */
.site-list-dl {
    line-height: 1.8em;
}

.site-list-dl-bold {
    font-size: 1.4em;
    font-weight: bold;
}

.site-list-dl-badge {
    font-size: 1.15em;
}

.site-list-dl-default {
}

.site-list-dl-btn {
    padding-top: 7.5px;
}

.site-list-dd-bold {
    font-size: 0.85em;
    font-weight: bold;
}

.site-list-opacity {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.site-changeinfo-container {
    height: 340px;
    overflow-y: auto;
}


/*-------------------------------------------------*/
/*---------Without Bootstrap----------*/
/*------------------------------------------------*/
/* We'll get to Bootstrap in a second, but here's the fundamental CSS concepts in play in order to do this yourself. 
    As beard of prey points out, you can do this with CSS by absolutely positioning the icon inside of the input element. 
    Then add padding to either side so the text doesn't overlap with the icon.
    http://stackoverflow.com/questions/18838964/add-bootstrap-glyphicon-to-input-box/18839305#18839305 
*/

/*1. So for the following HTML:*/

/*
    <div class="inner-addon left-addon">
    <i class="glyphicon glyphicon-user"></i>
    <input type="text" class="form-control" />
</div>
 */

/*2. You can use the following CSS to left and right align glyphs:*/

/* enable absolute positioning */
.inner-addon {
    position: relative;
}

    /* style icon */
    .inner-addon .glyphicon {
        position: absolute;
        padding: 10px;
        pointer-events: none;
    }

/* align icon */
.left-addon .glyphicon {
    left: 0px;
}

.right-addon .glyphicon {
    right: 0px;
}

/* add padding  */
.left-addon input {
    padding-left: 30px;
}

.right-addon input {
    padding-right: 30px;
}

/*///上传*/
.weui-uploader__files li {
    width: 77px;
    height: 77px;
    border: 1px solid #ccc;
    float: left;
    margin-right: 2px;
    margin-bottom: 6px;
    position: relative;
}

.weui-uploader__files a {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}

    .weui-uploader__files a img {
        height: 100%;
    }

.upload-box {
    width: 77px;
    height: 77px;
    border: 1px solid #ccc;
    cursor: pointer;
    position: relative;
}

    .upload-box:after, .upload-box:before {
        content: " ";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ccc;
    }

    .upload-box:before {
        width: 2px;
        height: 30px;
    }

    .upload-box:after {
        width: 30px;
        height: 2px;
    }

.img-action {
    height: 22px;
    width: 22px;
    position: absolute;
    background-color: rgba(0,0,0,0.2);
    top: 50px;
    left: 50px;
    display: none;
}

.upload-count {
    float: left;
    width: 30px;
}

.img-action-span {
    font-size: 12px;
    top: 4px;
    left: 4px;
    cursor: pointer;
}

.imagebackgroud {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 8888;
    background-color: rgba(0,0,0,.1);
}

.imgColse {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #000;
    background-color: rgba(0,0,0,.5);
}

.imgColse-i {
    color: #fff;
    position: relative;
    font-size: 16px;
    top: 7px;
    left: 6px;
}

.assistant {
    position: fixed;
    right: -230px;
    top: 200px;
    z-index: 3;
    background-image: url('../Images/background-assistant.png');
    width: 250px;
    height: 258px;
    display: none;
}

.assistant_content {
    margin-top: 40px;
}

.assistant_content_title {
    font-weight: 600;
    text-align: center;
}

.assistant_content_list {
    line-height: 25px;
    margin-top: 5px;
    margin-left: 55px;
}
/*------------------------------下载右下角页面样式------------------------------------------------*/
.download-page-header {
    width: 100%;
    background: #00aaef;
    height: 50px;
    border-top-left-radius: 5px;
    padding: 15px;
}

    .download-page-header .close {
        color: #fff;
        opacity: 1;
        margin-top: -2px;
        margin-left: 4px;
    }

    .download-page-header .download-page-title {
        color: #fff;
        float: left;
        margin: 0px 5px 0px 5px;
        font-size: 14px;
        font-weight: bold;
    }

.download-page {
    background-color: #fff;
    right: 0;
    bottom: 0;
    max-height: 240px;
    position: fixed;
    width: 460px;
    z-index: 9;
    display: none;
}
    .download-page .link {
     cursor:pointer;
    }

.download-page-list {
    padding: 0 20px;
    border: #e0e0e0 solid 1px;
}
    .download-page-list table {
        width: 100%;
        table-layout: fixed;
    }

    .download-page-list tr {
        line-height: 60px;
        font-size: 14px;
        margin: 0 20px;
        height: 60px;
        border-bottom: #e0e0e0 solid 1px;
    }

        .download-page-list tr td {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }


    .download-page-list img {
        width: 20px;
        height: 20px;
    }

.downloadrecord-page-list {
    max-height: 500px;
    overflow: auto;
}

    .downloadrecord-page-list .title {
        height: 40px;
        width: 90%;
        margin: auto;
        line-height: 40px;
        font-weight: 900;
        font-size: 13px;
    }

    .downloadrecord-page-list table {
        width: 90%;
        margin: auto;
        table-layout: fixed;
    }

    .downloadrecord-page-list img {
        width: 20px;
        height: 20px;
    }

    .downloadrecord-page-list tr {
        line-height: 45px;
        font-size: 14px;
        margin: 0 20px;
        height: 45px;
        border-bottom: #e0e0e0 solid 1px;
    }

        .downloadrecord-page-list tr td {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .downloadrecord-page-list .link {
        cursor: pointer;
    }
/*------------------------------下载右下角页面样式------------------------------------------------*/
