/*输入框样式*/
input:focus {
    border-color: rgba(82, 168, 236, 0.8);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6);
    outline: 0 none;
}
.er-input{
    border: 1px solid #C3CED9;
    font-size: 14px;
    height: 28px;
    line-height: 28px;
    width: 200px;
    padding-left: 20px;
}
.er-input:focus{
    border-color: gray;
}
.er-input1{
    font-size: 14px;
    height: 20px;
    font-weight: normal;
    padding: 4px;
    vertical-align: top;
    display: inline-block;
    border: 1px solid #ccc;
}
.er-input-left{
    background-color: #eee;
    text-align: center;
    width: auto;
    margin-right: -1px;

}
.er-input-left-round{
    border-radius: 5px 0 0 5px;
}
.er-input-right{
    width: 250px;
}
.er-input-right-round{
    border-radius:  0 5px 5px 0 ;
}
.er-input-right:focus{
    border-color: gray;
}
.er-round{
    border-radius: 5px 5px 5px 5px;
}
.er-round2{
    border-radius: 10px;
}
.er-round-top {
    border-radius: 5px 5px 0 0;
}

/*按钮样式*/
.er-btn{
    color: #000000;
    border:1px solid #c5c5c5;
    border-radius: 2px;
    line-height: 16px;
    display: inline-block;
    font-size: 15px;
    padding: 3px 13px;
    background: #ffffff;
}
.er-btn:hover{
    background-color: #E6E6E6;
    border:1px solid #B8B8B8;
}
/*按钮颜色，蓝，红，黄三种*/
.er-btn-blue{
    background-color: #5db2ff !important;
    border-color: #5db2ff;
    color: #fff;
}
.er-btn-blue:hover{
    background-color: rgba(40, 179, 211, 0.71) !important;
    border-color: rgba(40, 179, 211, 0.70);
}
.er-btn-yellow{
    background-color: #ffce55 !important;
    border-color: #ffce55;
    color: #fff;
}
.er-btn-yellow:hover{
    background-color: #FDD35A!important;
    border-color: #FDD35A;
}
.er-btn-red{
    background-color: #d73d32 !important;
    border-color: #d73d32;
    color: #fff;
}
.er-btn-red:hover{
    background-color: #f44233 !important;
    border-color: #f44233;
}
.er-btn-green{
    background-color: #a0d468 !important;
    border-color: #a0d468;
    color: #fff;
}
.er-btn-green:hover{
    background-color: #9CD584!important;
    border-color: #9CD584;
}
.er-btn-black{
    background-color: #981b48 !important;
    border-color: #981b48;
    color: #fff;
}
.er-btn-black:hover{
    background-color: #A82856 !important;
    border-color: #A82856;
}
.er-btn-noclick{

}
.er-btn-big{
    padding: 5px 12px 5px 12px;
    line-height: 35px;
    height: 35px;
    font-size: 18px;
}
.er-btn-small{
    line-height: 16px;
    font-size: 12px;
    padding: 3px 6px 3px 6px;
}
.er-btn-link{
    color: #08c;
    height:20px;
    line-height: 20px;
    border-radius: 4px;
    display: inline-block;
    font-size: 14px;
    padding: 4px 10px 4px 10px;
}
.er-btn-link:hover{
    color: #0054a9;
    text-decoration: underline;
}


/*边框效果*/
.er-border1{
    border: 1px solid #83BBD9;
}
.er-border-top{
    border-top: 1px solid #83BBD9;
}
.er-border-bottem{
    border-bottom: 1px solid #83BBD9;
}
.er-border-right{
    border-right: 1px solid #83BBD9;
}
.er-border-green{border: 1px solid #2ecc40;}
.border-left-none{
    border-left: none;
}
.border-right-none{
    border-right: none;
}
.zTreeContainer {
    z-index: 1500;
    width: 200px;
    background: #fff9e5;
    border:1px solid #CDCDCD;
}

/*table样式*/
.er-outOftable{
    margin: 0 auto;
    overflow: auto;
}
.er-text-light{
    text-shadow: 2px 2px 4px #fff29b;
}

/*td超出部分隐藏并显示...*/
.er-table{
    font-size: 14px;
    font-family: 'Open Sans', 'Segoe UI';
    float: left;
    table-layout: fixed;
    border-collapse:collapse;
    background-color: #ffffff;
    text-overflow:ellipsis;
}
.er-table td{
    border: 1px solid #D5DBE1;
    padding: 8px;
    white-space:nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
}
/*背景无色...*/
.er-table-w{
    float: left;
    border-collapse:collapse;
    table-layout:fixed;
    text-overflow:ellipsis;
}
.er-table-w td,.er-table-w th{
    border: 1px solid #D5DBE1;
    /*height: 30px;*/
    /*line-height: 30px;*/
    padding-left: 10px;
    white-space:nowrap;
    overflow: hidden;
    text-overflow:ellipsis;
}
.er-table-pager {
    position: relative;
    padding:8px;
    font-size: 12px;
    font-weight: normal;
    border-top: 1px solid #D5D5D5;
    margin-top: -1px;
}
.er-table-button {
    padding: 8px;
    color: #2dc3e8;
}
/*小标题*/
.er-table-t{
    text-align: center;
    font-weight: bold;
    font-size: 16px;

}
/*td超出部分折行显示*/
.er-table-noHidden{
    float: left;
    border-collapse:collapse;
    table-layout:fixed;
    word-break:break-all;
    background-color: #ffffff;
    height: 100px;
}
.er-table-noHidden td{
    border: 1px solid #D5DBE1;
    height: 30px;
    padding-left: 10px;
}
.er-tr-title{
    background-color: #eee;
    font-weight: 600;
    border-bottom: 2px solid #6f85bf;
}
.er-tr-light{
    background-color: #f9f9f9;
}
.er-tr-dark{
    background-color: #E0EAF3;
}
.er-tr-dark:hover,.er-tr-light:hover{
    background-color: #d8e1ea;
}
.er-tr-focus{
    background-color: #ffebc1;
}
.er-search-bar{
    width: 96%;
    padding: 10px 2% 10px 2%;
}
.er-table-order-desc {background-image:url(/web/20180813090118im_/http://hbsrcfwj.cn/resources/img/widget/er-table-order-desc.png);background-repeat:no-repeat;background-position:right center;cursor:pointer;}
.er-table-order-asc {background-image:url(/web/20180813090118im_/http://hbsrcfwj.cn/resources/img/widget/er-table-order-asc.png);background-repeat:no-repeat;background-position:right center;cursor:pointer}
.er-table-order {background-image:url(/web/20180813090118im_/http://hbsrcfwj.cn/resources/img/widget/er-table-order.png);background-repeat:no-repeat;background-position:right center;cursor:pointer}
.er-table-head table tr td{position: relative}
.resizerCol{width:3px;cursor: col-resize;height: 36px;top:0;position: absolute;}
.resizerColLeft{right: 0}
.resizerCol.active{background:red}


.er-upload{
    width: 150px;
    height: 50px;
    z-index: 90;
    position: absolute;
    top: 0;
    opacity: 0;
    filter:alpha(opacity=0);
    -moz-opacity:0;
    -khtml-opacity: 0;
}
.info-view{
    width: 100%;
    line-height: 35px;
    font-size: 13px;
    border-collapse: collapse;
    border:1px solid #E1E1E1;
    color: #626A8C;
}
.info-view th{
    text-align: right;
    font-weight: bold;
    background-color: #E0EAF3;
    border: 1px solid #E1E1E1;
    padding-right: 3%;
}
.info-view td{
    text-align: left;
    border: 1px solid #E1E1E1;
    text-indent: 20px;
}
.info-view-1p3 th{
    width: 25%;
}
.info-view-1p3 td{
    width: 75%;
}
.info-view-1p2 th{
    width: 50%;
}
.info-view-1p2 td{
    width: 50%;
}



.widgetGroup {
    width: 100%;
    min-height: 30px;
    float: left;
    margin: 20px 0 0 0;
}
.widgetGroup2 {
    width: 50%;
    min-height: 30px;
    float: left;
    margin: 20px 0 0 0;
}
.widgetGroup3 {
    width: 33%;
    min-height: 30px;
    float: left;
    margin: 20px 0 0 0;
}
.widgetGroup4 {
    width: 25%;
    min-height: 30px;
    float: left;
    margin: 20px 0 0 0;
}
.widgetGroup .widgetLabel,.widgetGroup2 .widgetLabel,.widgetGroup3 .widgetLabel,.widgetGroup4 .widgetLabel{
    float: left;
    min-height: 40px;
    line-height: 40px;
    padding-right: 3%;
    text-align: right;
    width: 25%;
}

.widgetGroup .widgetControl,.widgetGroup2 .widgetControl,.widgetGroup3 .widgetControl,.widgetGroup4 .widgetControl {
    float: left;
    min-height: 40px;
    text-align: left;
    width: 70%;
}
.widgetLabeltop{
     border-bottom: 1px solid #5DB2FF;
     padding-right: 65%!important;
     width: 15%!important;
     margin-left: 10%!important;
 }
.widgetControlbottom{
    width: 72%!important;padding-left:18%!important;padding-right: 10%!important;
}
.talErrorDiv {
    color: red !important;
    font-size: 12px !important;
}
.widgetGroup .input {
    height: 30px;
    line-height: 20px;
    width: 320px;
    border: 1px solid  #CCC;
    text-indent: 10px;
    display: inline-block;
    padding: 4px 2px;
    font-size: 16px;
    color: #555;
    vertical-align: middle;
   /* -webkit-border-radius: 4px;
    -moz-border-radius: 4px;*/
   /* border-radius: 4px;*/
    margin: 5px 0;
}

.widgetControl .textarea {
    height: 60px;
    line-height: 20px;
    width: 312px;
    border: 1px solid #CCCCCC;
    text-indent: 10px;
    display: inline-block;
    padding: 4px 6px;
    font-size: 16px;
    color: #555;
    vertical-align: middle;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 5px 0;
}

.widgetGroup3 .input{
    width: 150px;
}
.widgetGroup4 .input{
    width: 100px;
}
.widgetControl select{
    background-color: #fff;
    border: 1px solid #83BBD9;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    padding: 4px 6px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    vertical-align: middle;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    font-weight: normal;
    cursor: pointer;
    border-radius: 4px;
    border-radius: 5px 5px;
}

.bottomMessage {
    display: block;
    font-size:13px!important;
    color: #a0a0a0;
    line-height: 30px;
}
.rightMessage{
    text-indent: 10px;
    display: inline-block;
    font-size:14px!important;
    color: #727272;
}
.successMsgInput {
    border:1px solid green!important;
}
.errorMsgInput{
    border:1px solid red!important;
}
.successMsgDiv{
    color:green!important;
    font-size:14px!important;
}
.errorMsgDiv {
    color:red!important;
    font-size:14px!important;
}
.er-pag-title{
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ACCADD;
    font-size: 18px;
    text-align: center;
}
.er-pag-title-back {
    font-size: 18px;
    text-align: left;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    color: #000000;
    text-indent: 10px;
    width: 100%;
    border-bottom: 1px solid #ACCADD;
}
.er-back-to-main {
    display: inline-block;
    text-decoration: underline;
    color: #407390;
    float: left;
    top:0;
    left: 0;
    font-weight: normal;
}
.er-back-to-list {
    display: inline-block;
    color: #3C3C3C;
    top:0;
    left: 0;
    font-weight: normal;
}
.er-underline{
    text-decoration: underline;
}
.er-rightBottom{
    position: absolute;
    right: 0;
    bottom: 10px;
}
/**
*  erSelect
*/
.bgpic1{
    background: url("/web/20180813090118im_/http://hbsrcfwj.cn/resources/img/widget/bgpic1.png") no-repeat right 5px;
}
.bgpic2{
    background: url("/web/20180813090118im_/http://hbsrcfwj.cn/resources/img/widget/bgpic2.png") no-repeat right 5px;
}
.choise{
    min-height: 40px;
    width: 600px;
    line-height: 30px;
    font-size: 14px;
    border: 1px solid #83BBD9;
    background-color: white;
    border-radius: 5px 5px;
}
.choiseContent{
    min-height: 40px;
    min-width: 400px;
    max-width: 600px;
    line-height: 30px;
    font-size: 14px;
    z-index:1000;
    position: absolute;
    display : none;
}
.pct31{
    width: 31%;
}
.choiseContent ul{
    border: 1px solid #dadada;
    float: left;
    display: block;
    list-style-type: none;
    padding: 0;
    height: 300px;
    overflow: auto;
    line-height: 25px;
    background-color: white;
    margin:0;
}
.choiseContent ul.sonUl {
    margin: 0 0 0 -5px;
}
.choiseContent li{
    cursor:pointer;
    margin: 0;
    padding: 0;
    list-style: none;
    text-indent: 10px;
    line-height: 25px;
    width: 100%;
    float: left;
    background-image: url("/web/20180813090118im_/http://hbsrcfwj.cn/resources/img/widget/bgpic3.png");
    background-position: right 5px;
    background-repeat: no-repeat;
}
.choiseContent li:hover{
    background-image: url("/web/20180813090118im_/http://hbsrcfwj.cn/resources/img/widget/bgpic4.png");
    background-color: #f1f1f1;
}
.choiseContent .chosen{
    background-image: url("/web/20180813090118im_/http://hbsrcfwj.cn/resources/img/widget/bgpic5.png");
    background-color: #eff8ff;
}
.choise-info{
    display: inline-block;
    height: 30px;
    border: 1px solid #808080;
    background-color: #f1f1f1;
    margin: 5px;
    float: left;
    line-height: 30px;
    padding: 0 25px 0 10px;
    position: relative;
}
.choise-info .removeChoise{
    display: inline-block!important;
    position: absolute!important;
    width: 16px!important;
    height: 16px!important;
    right: 2px!important;
    top: 8px!important;
    border-radius: 8px!important;
    line-height: 16px!important;
    text-align: center!important;
    font-family: Verdana,"宋体"!important;
}
.no-bg{
    background-image: none!important;
}
.er-leftBottom{
    position: absolute;
    left: 0;
    bottom: 0;
}
.er-back-btn{
    display: inline-block;
    color: white;
    text-align: center;
    background-color:#5093BE; ;
    line-height: 25px;
    margin: 0 10px;
}


/**
*   selectMenu
*/
.dropdown-panel {
    position: relative;
    display: none;
}

.dropdown-menu {
    list-style: none;
    line-height: 30px;
    width: 218px;
    padding: 0;
    margin:0;
    z-index: 10;
    border: 1px solid #dadada;
    background-color: #ffffff;
}

.dropdown-menu li {
    position: relative;
    border-bottom:1px solid  #dadada;
    z-index: 99;
    margin: 0 10px;
    background-color: #ffffff;
}
.dropdown-menu li.active {
    border:1px solid red;
    border-right: 1px solid #ffffff;
    margin: -1px 0 0 0;
    padding:0 10px ;
}

.dropdown-menu li a {
    display: block
}

.dropdown-menu li a:hover, .maintainHover {
    color: #fff;
    text-decoration: none;
    background: #39f
}

.dropdown-popup {
    position: absolute;
    top: 0;
    border: 1px solid #ff0000;
    z-index: 15;
    padding: 0;
    width: 250px;
    list-style: none;
    display: none;
    margin-top: 0;
    line-height: 30px;
    background-color: #ffffff;
    margin-left: 2px;
}

.dropdown-popup h3 {
    height: 28px;
    line-height: 28px;
}

.dropdown-popup ul {
    margin: 6px;
    list-style: none;
}

.dropdown-popup ul li {
    border-bottom:1px solid  #dadada;
    z-index: 20;
    margin: 0 10px;
}

.dropdown-popup ul li a {
    margin: 6px;
    color: #444
}
.buttonDiv{
    text-align: center;
    margin: 20px;
    line-height: 40px;
    /*padding-right: 20%;*/

}
.buttonDiv a{
    /*width: 60px;*/
    /*height: 20px;*/
    font-size: 20px;
    margin-right: 20px;
    text-align: center;
}
.form-title {
    font-size: 18px;
    text-align: left;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    color: #000000;
    text-indent: 10px;
    width: 100%;
    border-bottom: 1px solid #ACCADD;
}

/** menu **/
.min-navbar{
    width: 36px;
    height: 45px;
    display: block;
}
.min-navbar:hover{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.min-navbar i{
    width: 36px;
    line-height: 45px;
    color: #ffffff;
    text-align: center;
}


/** well **/
.well {
    width:99%;
    -webkit-border-radius: 2px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 2px;
    -moz-background-clip: padding;
    border-radius: 2px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
    box-shadow: 0 0 4px rgba(0,0,0,.2);
    background-color: #fbfbfb;
    border: 0;
    color: #3C3C3C;
    position: relative;
    min-height: 0;
    margin: 0 auto;
}
.bordered-magenta{
    border-color: #bc5679!important;
}
.well .header[class*="bordered-"] {
    border-bottom: 2px solid #fff;
}
.well .header {
    padding: 10px;
    text-align: left;
    border-radius: 2px 2px 0 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
    font-weight: 600;
}

/** nav **/
.min-navbar-chosen{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.breadcrumb a {
    color: #2dc3e8;
    padding: 0 5px;
}
.page-breadcrumbs {
    background: #f3f3f3;
    min-height: 40px;
    min-width:300px;
    padding: 0;
    z-index: 1;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
    -moz-box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
}
.breadcrumb {
    background-color: transparent;
    display: inline-block;
    line-height: 40px;
    margin: 0 22px 0 12px;
    padding: 0;
    font-size: 13px;
    color: #333;
    border-radius: 0;
}
.breadcrumb>li {
    display: inline-block;
    float: left;
}
/** split **/
.splitLeft,.splitRight{
    float:left;
    vertical-align: top;
}
.splitLeft{
    width:20%;
    min-width: 100px;
}
.splitRight{
    width : 80%;
}

.contentDiv {
    width:99%;
    margin:5px auto;
}


.sidebar-toggler1, .sidebar-toggler2, .sidebar-toggler3 {
    color: #dfdfdf;
    display: inline-block;
    float: left;
    margin: 0 5px;
    text-align: center;
    width: 40px;
    line-height: 40px;
}
.sidebar-toggler3 {
    border-bottom: 5px solid #2BC3E8;
}

.sidebar-toggler2 {
    border-bottom: 5px solid #FCCE54;
}
.sidebar-toggler1 {
    border-bottom: 5px solid #ff6a4c;
}
.sidebar-toggler2:hover,.siderbar2-chosen {
    color: #FCCE54!important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.sidebar-toggler3:hover,.siderbar3-chosen {
    color: #2BC3E8!important;;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.sidebar-toggler1:hover,.siderbar1-chosen {
    color: #ff6a4c!important;;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.er-MenuSelected{
    background-color: #55575F;
}
.control-label{
    text-align: right;
    font: 400 14px "microsoft yahei", arial,"Hiragino Sans GB",sans-serif;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: normal;
}

.lo-grop .grop01 .userIcon{
    float: left;
    font-size: 25px;
    padding: 10px;
    background-color: #CCC;
    color: white;
}
.lo-grop .grop01 .passwordIcon{
    float: left;
    font-size: 28px;
    padding-left: 12px;
    padding-top: 9px;
    padding-bottom: 8px;
    background-color: #CCC;
    padding-right: 10px;
    color: white;
}
/*
     FILE ARCHIVED ON 09:01:18 Aug 13, 2018 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 07:21:51 Jan 10, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.512
  exclusion.robots: 0.042
  exclusion.robots.policy: 0.032
  esindex: 0.009
  cdx.remote: 12.734
  LoadShardBlock: 227.849 (3)
  PetaboxLoader3.datanode: 143.163 (5)
  PetaboxLoader3.resolve: 499.603 (3)
  load_resource: 526.268 (2)
*/