/*
v0.61
UPDATE: 2018/04/02 已脱离
上次版本: 2017/11/14
Powered by Joyton & dline.com.cn
*/
/** 通用 **/
::selection {
  background: #666;
  color: #fff;
}
::-moz-selection {
  background: #666;
  color: #fff;
}
::-webkit-selection {
  background: #666;
  color: #fff;
}
body {
  background-color: #e7edf5;
  /*min-height: 1080px;*/
  position: relative;
}
body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
body > .copyright {
  display: none;
}
/** 大套子 **/
#wrap {
  padding: 0;
}
.fixed_header #wrap {
  padding-top: 50px;
}
/******** 通用黑色遮罩 ********/
.mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#shadow {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .8;
  z-index: 5;
  display: none;
}
.shadow_show {
  overflow: hidden;
  position: fixed;
  /*position: absolute;*/
  width: 100%;
  height: 100%;
}
/** 通用空结果 **/
.nothing {
  font-size: 20px;
  text-align: center;
  color: #aaa;
  padding: 60px 0;
}
/******** 通用弹出 ********/
/** 通用弹出
UPDATE: 2016/07/19
 **/
#poptips {
  display: none;
  position: fixed;
  z-index: 10001;
}
.poptips_show {
  overflow: hidden;
  /*position: fixed;*/
  position: absolute;
  width: 100%;
  height: 100%;
}
.poptips_show #poptips {
  display: block;
  /*cursor: pointer;*/
}
#poptips:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 899;
}
#poptips .poptips_box {
  display: inline-block;
  position: fixed;
  top: 30%;
  left: 50%;
  min-width: 300px;
  /*max-width: 600px;*/
  margin: 0 auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #fff;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.6);
  z-index: 900;
}
#poptips .title {
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
}
#poptips .con {
  color: #757575;
  font-size: 14px;
  overflow: auto;
}
#poptips .con.center {
  text-align: center;
}
#poptips .con strong {
  color: #ef3a3a;
}
#poptips .con hr {
  margin: 10px 0;
}
#poptips .btn_group {
  padding-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row;
  flex-flow: row;
}
#poptips .btn_group .btn {
  display: inline-block;
  padding: 0;
  font-size: 12px;
  line-height: 40px;
  background-color: #0081e6;
  color: #fff;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
  cursor: pointer;
  font-weight: bold;
}
#poptips .btn_group .cancel {
  background-color: #e5e5e5;
  color: #424242;
  margin-right: 10px;
}
.ie8 #poptips .poptips_box {
  left: 40px;
  right: 40px;
  border: 1px solid #c8c8c8;
}
/** 快速闪现提示
UPDATE: 2016/11/07
 **/
#winktips {
  position: fixed;
  bottom: 70px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10100;
  pointer-events: none;
}
#winktips .item {
  display: block;
  margin-bottom: 5px;
  display: none;
}
#winktips .item span {
  display: inline-block;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px;
  border-radius: 3px;
}
/******** 载入指示器 ********/
#loader {
  background-color: #fff;
  opacity: 1;
  position: fixed;
  bottom: 90px;
  left: 50%;
  margin-left: -25px;
  z-index: 100;
  padding: 10px;
  border-radius: 100px;
  -webkit-box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-animation: loader_show .3s 1 both;
  animation: loader_show .3s 1 both;
}
#loader.hide {
  -webkit-animation: loader_hide .5s 1 both;
  animation: loader_hide .5s 1 both;
}
@-webkit-keyframes loader_show {
  0% {
    -webkit-transform: translate(0, 190px);
    opacity: 0;
  }
  1% {
    -webkit-transform: translate(0, 190px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes loader_show {
  0% {
    transform: translate(0, 190px);
    opacity: 0;
  }
  1% {
    transform: translate(0, 190px);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes loader_hide {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
  30% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 190px);
    opacity: 0;
  }
}
@keyframes loader_hide {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  30% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(0, 190px);
    opacity: 0;
  }
}
#loader:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border: 5px solid #1e88e5;
  border-top-color: transparent;
  border-radius: 100px;
  -webkit-animation: loader_ani 1s infinite;
  animation: loader_ani 1s infinite;
  /*display: none;*/
}
@-webkit-keyframes loader_ani {
  0% {
    -webkit-transform: rotate(30deg);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: rotate(390deg);
    opacity: 1;
  }
}
@keyframes loader_ani {
  0% {
    transform: rotate(30deg);
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: rotate(390deg);
    opacity: 1;
  }
}
/** Bootstrap 工具提示 **/
.tooltip-inner {
  font-family: tahoma, "Helvetica Neue", Helvetica, Microsoft Yahei, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
  font-size: 12px;
  white-space: nowrap;
}
/** 头部 **/
#header {
  z-index: 10;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  margin: 0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  /*  -pie-shadow: 0 2px 2px rgba( 0,0,0,.2 );
  behavior: url(./res/js/pie/PIE.htc);*/
}
/*css3pie {
  overflow: hidden;
}*/
#header .navbar-header {
  float: left;
  height: 50px;
  line-height: 50px;
}
#header .navbar-brand {
  position: relative;
  min-width: 350px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: auto 100%;
  -ms-behavior: url("/res/js/backgroundsize/backgroundsize.min.htc");
  behavior: url("/res/js/backgroundsize/backgroundsize.min.htc");
}
@media (max-width: 700px) {
  #header .navbar-brand {
    display: none;
  }
}
#header .navbar-brand .material-icons {
  position: absolute;
  top: 2px;
  right: 0;
  opacity: 0;
  font-size: 18px;
  color: #7b7e85;
}
#header .navbar-brand:hover .material-icons {
  opacity: 1;
}
#header_userarea {
  list-style-type: none;
  margin: 0;
  margin-right: -15px;
  margin-left: -15px;
  padding: 0;
}
#header_userarea > li {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  position: relative;
  float: left;
  max-width: 220px;
}
@media (max-width: 700px) {
  #header_userarea > li {
    max-width: 130px;
  }
  #header_userarea .header_btn .name {
    display: none;
  }
}
#header_userarea > li.open .dropdown-toggle {
  box-shadow: none;
}
/*#header_userarea > li > a*/
.header_btn {
  display: inline-block;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  height: 100%;
  vertical-align: initial;
  position: relative;
  min-width: 50px;
  text-align: center;
}
.header_btn:hover {
  background-color: #F3F3F3;
}
#header_userarea > li:hover .header_btn > .material-icons {
  color: #333;
}
#header_reg,
#header_user {
  margin-right: 10px;
}
#header_reg:after,
#header_user:after {
  content: "";
  position: absolute;
  right: -5px;
  top: 10px;
  height: 30px;
  border-right: 1px solid #ccc;
  pointer-events: none;
}
#header_user .dropdown-toggle {
  font-weight: bold;
}
#header .dropdown-menu {
  border: 0;
  margin: 0;
}
#header .dropdown-menu li {
  cursor: pointer;
}
#header_userarea > .divider {
  /*border-right: 1px solid #ccc;*/
  padding: 0;
  min-width: 1px;
  width: 1px;
  background-color: #ccc;
}
#header_avatar {
  width: 30px;
  height: 30px;
}
.header_btn {
  cursor: pointer;
}
.header_btn > .material-icons {
  color: #7b7e85;
  cursor: pointer;
}
.header_btn .material-icons {
  vertical-align: middle;
}
.fixed_header #header {
  position: fixed;
  width: 100%;
}
#header #scroll_to_top {
  display: none;
}
#header #scroll_to_top.active {
  display: inline-block;
}
#sider_collapse_btn {
  /*background-color: #30343d;*/
  display: none;
}
#sider_collapse_btn:hover {
  /*color: #fff;
  background-color: #2b2f37;*/
}
#sider_collapse_btn:hover .material-icons {
  /*color: #fff;*/
}
@media (max-width: 700px) {
  #sider_collapse_btn {
    display: inline-block;
  }
}
/** 底部 **/
/** 侧栏 **/
#sider {
  position: absolute;
  top: 50px;
  left: 0;
  /*bottom: 0;*/
  float: left;
  width: 200px;
  z-index: 3;
  /*  background-color: #30343d;
  box-shadow: 2px 0 2px rgba( 0,0,0,.2 );*/
  -webkit-transition: all 0.3s;
  -webkit-user-select: none;
  user-select: none;
}
/*#sider:before {*/
#sider_bg {
  position: fixed;
  /*left: 0;*/
  left: inherit;
  top: 0;
  bottom: 0;
  _position: absolute;
  _clear: both;
  _top: expression( eval( document.documentElement.scrollTop + ( parseInt(this.currentStyle.marginTop,10) || 0 ) ) );
  float: left;
  width: inherit;
  max-width: inherit;
  background-color: #30343d;
  box-shadow: 2px 0 2px rgba(0, 0, 0, 0.2);
  clear: both;
  z-index: -1;
  /*-webkit-transition: all 0.3s;*/
}
.sider_expand {
  display: block;
  position: relative;
  line-height: 40px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
.sider_expand .material-icons {
  vertical-align: middle;
  opacity: .2;
  -webkit-transition: all 0.3s;
  cursor: pointer;
}
.sider_expand span {
  opacity: .2;
  -webkit-transition: all 0.3s;
}
.sider_expand:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.sider_expand:hover .material-icons,
.sider_expand:hover span {
  opacity: 1;
}
#sider hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border-top: 1px solid #262A31;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.sider_show #sider_scrollbox {
  width: 100%;
  overflow-y: auto;
  overflow-x: visible;
  position: relative;
  /*z-index: 1;*/
}
#sider_scrollbox::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
#sider_scrollbox:hover::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.6);
}
#sider_scrollbox::-webkit-scrollbar {
  width: 4px;
}
#sider_scrollbox::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 0;
}
.sider_topbox {
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 10px 0;
}
.sider_topbox .sider_topbox_btngroup .btn {
  margin: 5px 0;
  min-width: 80%;
}
.sider_topbox .sider_topbox_btngroup .btn span {
  padding-left: 5px;
}
.sider_group:hover .sider_group_title {
  background-color: rgba(255, 255, 255, 0.12);
  -pie-background: rgba(255, 255, 255, 0.12);
}
.sider_group_title {
  display: block;
  position: relative;
  line-height: 40px;
  min-height: 40px;
  padding-left: 20px;
  cursor: pointer;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  -pie-background: rgba(255, 255, 255, 0.1);
  behavior: url("/res/js/pie/PIE.htc");
  white-space: nowrap;
}
.sider_group .sider_group_title:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
  -pie-background: rgba(255, 255, 255, 0.15);
}
.sider_group_title span {
  display: inline-block;
}
.sider_group_title .expand {
  position: absolute;
  right: 13px;
  top: 8px;
  -webkit-transform: rotate(-90deg);
  -webkit-transition: all 0.3s;
}
.sider_group.on .sider_group_title .expand {
  -webkit-transform: rotate(0);
}
.sider_group .sider_group_list {
  display: none;
}
.sider_group.on .sider_group_list {
  display: block;
}
.sider_group .sider_group_list .list-group-item {
  margin-bottom: 0;
  /*min-height: 40px;*/
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  /* 15px */
  border: none;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  color: #fff;
  color: rgba(255, 255, 255, 0.8);
  behavior: url("/res/js/pie/PIE.htc");
  white-space: nowrap;
  cursor: pointer;
}
.sider_group .sider_group_list .list-group-item:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
  -pie-background: rgba(0, 0, 0, 0.1);
}
.sider_group .sider_group_list .list-group-item > .material-icons {
  opacity: .5;
}
.sider_group .sider_group_list .list-group-item:hover > .material-icons {
  opacity: 1;
}
.sider_group .sider_group_list .list-group-item span {
  /*  border-left: 1px solid #ccc;
  border-left: 1px solid rgba( 0,0,0,.1 );*/
  margin-left: 15px;
  padding: 0 10px;
  position: relative;
  /*display: inline-block;
  white-space: nowrap;*/
  -webkit-transition: all 0.3s;
  font-size: 16px;
  vertical-align: middle;
}
.sider_group .sider_group_list .list-group-item span:after {
  content: "";
  position: absolute;
  left: -5px;
  top: -4px;
  height: 26px;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.sider_group .sider_group_list .list-group-item.active {
  background-color: #ff3333;
  color: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.sider_group .sider_group_list .list-group-item.active > .material-icons {
  opacity: 1;
}
.sider_group .sider_group_list .list-group-item.active:hover {
  -pie-background: transparent;
}
#sider .list-group-item .badge {
  font-style: normal;
  background-color: #ff3333;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 11px;
  right: 10px;
  color: #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.sider_subgroup_list {
  background-color: #262A31;
  background-color: rgba(0, 0, 0, 0.15);
}
.sider_group .sider_group_list .sider_subgroup_list .list-group-item {
  padding-left: 25px;
}
.sider_group .sider_group_list .sider_subgroup_list .list-group-item .material-icons {
  font-size: 18px;
}
.sider_group .sider_group_list .sider_subgroup_list .list-group-item span {
  margin-left: 5px;
}
.sider_subgroup .sider_subgroup_list {
  display: none;
}
.sider_subgroup.on .sider_subgroup_list {
  display: block;
}
/** 窄侧栏 折叠 **/
.smallsider #sider {
  width: 50px;
}
/*.smallsider #sider:before {*/
.smallsider #sider_bg {
  width: 50px;
  width: inherit;
}
.smallsider #sider .sider_expand .material-icons {
  -webkit-transform: rotate(180deg);
}
.smallsider #sider .sider_expand span,
.smallsider #sider .sider_group .sider_group_title span,
.smallsider #sider .sider_group .sider_group_list .list-group-item span {
  display: none;
}
.smallsider #sider .list-group-item .badge {
  right: -10px;
}
.smallsider #sider .sider_topbox_btngroup .btn span {
  display: none;
}
.smallsider .sider_group .sider_group_list .sider_subgroup_list .list-group-item {
  padding-left: 16px;
}
/** 侧栏锁定 **/
.fixed_sider #sider {
  position: fixed;
  bottom: 0;
}
.fixed_sider #sider_scrollbox {
  overflow: auto;
  padding-bottom: 60px;
}
.fixed_sider #sider_scrollbox::-webkit-scrollbar {
  width: 0;
}
/** 侧栏适配手机版 **/
@media (max-width: 700px) {
  #sider {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 80%;
    max-width: 300px;
    left: -100%;
  }
  .sider_expand {
    display: none;
  }
}
.sider_show {
  overflow: hidden;
}
.sider_show #sider {
  left: 0;
}
#shadow {
  width: 0;
  height: 0;
  background-color: #000;
  opacity: 0;
  position: fixed;
  top: 0;
  z-index: 99;
  /* display: none; */
  transition: opacity .4s;
  -webkit-transition: opacity .4s;
  transition-delay: .3s;
  -webkit-transition-delay: .3s;
  cursor: pointer;
}
.sider_show #shadow {
  display: block;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}
.sider_show #sider_scrollbox .tooltip {
  display: none!important;
}
/** 校验 **/
.form-control.has-error {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.form-control.has-error:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.no_help .help-block {
  display: none;
}
.help-block[id$="-error"] {
  color: #a94442;
}
/** 面包屑导航 **/
#breadcrumb {
  margin-left: -25px;
  margin-right: -25px;
  position: relative;
}
#breadcrumb .breadcrumb {
  background-color: #262a31;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
}
#breadcrumb li {
  line-height: 40px;
}
#breadcrumb .date {
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 40px;
  color: #fff;
  font-size: 12px;
}
@media (max-width: 700px) {
  #breadcrumb {
    margin-left: -5px;
    margin-right: -5px;
  }
}
/** 主要内容（有侧栏） **/
#main .alert {
  margin-top: 20px;
}
#main {
  padding-left: 225px;
  padding-right: 25px;
  -webkit-transition: all 0.3s;
  /*overflow: auto;*/
}
.smallsider #main {
  padding-left: 75px;
}
@media (max-width: 700px) {
  #main,
  .smallsider #main {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.form_card {
  /*padding: 30px 20px;*/
  margin: 10px 0;
  /*min-width: 768px;*/
}
.nohide{
	overflow:visible !important;
}
.form_card_title {
  font-size: 14px;
  /*line-height: 40px;*/
  line-height: 22px;
  padding: 9px 0;
  margin: 0;
  padding-left: 10px;
  color: #777;
  border-bottom: 1px solid #e6e8ed;
}
.form_card_title .material-icons {
  position: relative;
  top: 6px;
  line-height: 10px;
  padding-bottom: 12px;
  vertical-align: top;
}
.form_card_title span {
  vertical-align: top;
}
.form_card_title .pull-right {
  margin-top: -6px;
  margin-right: 10px;
}
.form-group {
  margin-bottom: 10px;
}
.form_card_box {
  padding: 20px;
}
.form_card_box_mobile{
	text-align:center;
	margin-left:10px;
}
@media (max-width: 700px) {
  .form_card_box {
    padding: 20px 10px;
  }
}
/** 页面返回等按钮 **/
.pagetool {
  margin-bottom: 10px;
  padding: 5px;
  color: #777;
}
.pagetool .title {
  margin-left: 10px;
  color: #337AB7;
  font-size: 16px;
}
/** 通用胶囊导航 **/
.nav_pill_box {
  /*margin: 17px 0;*/
}
.table_count {
  /*margin: 10px 0;*/
  line-height: 74px;
}
.table_count .num {
  font-weight: bold;
}
/** 通用表格 **/
.table_wrap {
  overflow: auto;
	overflow-x:auto;
	overflow-y:hidden;
	
}
   .table_wrap::-webkit-scrollbar {
        width:10px;
        height:10px;
    }
    .table_wrap::-webkit-scrollbar-button    {
        /*background-color:#FF7677;*/
    }
    .table_wrap::-webkit-scrollbar-track     {
        background:#d2d2d2;
				border-radius:4px;
    }
    
    .table_wrap::-webkit-scrollbar-thumb{
        background:#b9b9b9;
        border-radius:4px;
    }
    .table_wrap::-webkit-scrollbar-corner {
        background:#82AFFF;
    }
    .table_wrap::-webkit-scrollbar-resizer  {
        background:#FF0BEE;
    }
.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  vertical-align: middle;
}
.table_card thead {
  /*background-color: #f9f9f9;*/
}
.table_card > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #9699A5;
  /*#7b7e85*/
  font-size: 12px;
  /*font-weight: normal;*/
}
.table_card tr {
  min-height: 60px;
}
.table_card tr .small {
  color: #7b7e85;
}
.table_card_a {
  display: block;
}
.table_card_a .label {
  padding-bottom: .2em;
  margin-right: 5px;
}
.checkboxcolumn {
  width: 40px;
}
td > .btn {
  margin-top: 2px;
  margin-bottom: 2px;
}
table .width_sm {
  width: 80px;
}
.nowrap {
  white-space: nowrap;
}
/** 禁用、失效的行 表格 **/
tr.disabled,
.table-hover > tbody > tr.disabled:hover {
  background-color: #ccc;
  background-color: rgba(0, 0, 0, 0.12);
}
/** 表格列最小宽度 **/
.table th {
  min-width: 66px;
}
/** 单选框 复选框 **/
label.check {
  cursor: pointer;
  white-space: nowrap;
}
.check input[type="checkbox"],
.check input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  vertical-align: middle;
}
.check input[type="checkbox"]::before,
.check input[type="checkbox"]::after,
.check input[type="radio"]::before,
.check input[type="radio"]::after {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  position: relative;
  top: 4px;
  left: 0;
  line-height: 10px;
  padding-bottom: 12px;
  color: #bbb;
}
.check input[type="radio"]::before {
  content: "";
}
.check input[type="radio"]:checked::before {
  content: "";
  color: #D9534F;
  -webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
  animation: check_radio 0.2s ease-out 0s 1 normal both;
}
.check input[type="checkbox"]::before {
  content: "";
}
.check input[type="checkbox"]:checked::before {
  content: "";
  color: #D9534F;
  -webkit-animation: check_radio 0.2s ease-out 0s 1 normal both;
  animation: check_radio 0.2s ease-out 0s 1 normal both;
}
@-webkit-keyframes check_radio {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes check_radio {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
label.check > .material-icons {
  vertical-align: middle;
  color: #999;
  opacity: .5;
}
label.check span {
  display: inline-block;
  line-height: 20px;
  vertical-align: middle;
  font-weight: normal;
  word-break: break-all;
  word-wrap: break-word;
  white-space: normal;
  padding-left: 5px;
  margin-right: 30px;
}
label.check [type=checkbox]:checked ~ span,
label.check [type=checkbox]:checked ~ .material-icons {
  color: #D9534F;
}
fieldset[disabled] input[type=checkbox],
fieldset[disabled] input[type=radio],
input[type=checkbox][disabled],
input[type=radio][disabled],
fieldset[disabled] input[type=checkbox] ~ span,
fieldset[disabled] input[type=radio] ~ span,
input[type=checkbox][disabled] ~ span,
input[type=radio][disabled] ~ span,
fieldset[disabled] input[type=checkbox] ~ .material-icons,
fieldset[disabled] input[type=radio] ~ .material-icons,
input[type=checkbox][disabled] ~ .material-icons,
input[type=radio][disabled] ~ .material-icons {
  cursor: not-allowed;
  opacity: .5;
}
.ul_tree {
  padding-left: 0;
  list-style-type: none;
  margin-top: 4px;
}
.ul_tree label {
  margin: 0;
  width: 100%;
}
.ul_tree ul {
  /*border: 1px solid #DEDEDE;*/
  padding: 5px;
  padding-left: 20px;
  margin: 5px 0;
  list-style-type: none;
  position: relative;
}
.ul_tree ul:before {
  content: "";
  position: absolute;
  top: 0;
  left: 11px;
  width: 0;
  bottom: 17px;
  border-left: 1px dotted #bbb;
}
/*
.ul_tree ul:after {
  content: "";
  position: absolute;
  top: 0;
  left: 7px;
  width: 11px;
  height: 0;
  border-top: 1px dotted #bbb;
}
*/
.ul_tree li {
  position: relative;
}
.ul_tree li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: -8px;
  width: 5px;
  height: 0;
  border-top: 1px dotted #bbb;
}
.ul_tree > li:before {
  display: none;
}
.ul_pool {
  background-color: #f4f4f4;
  background-color: rgba(0, 0, 0, 0.03);
}
.ul_pool li {
  display: inline-block;
  padding-right: 20px;
}
.ul_pool li:before {
  display: none;
}
.ul_tree .placeholder_fold i,
.ul_tree .btn_fold i {
  vertical-align: middle;
  color: #ccc;
  font-size: 16px;
  width: 24px;
  text-align: center;
}
.ul_tree .flod .btn_fold i.off,
.ul_tree .btn_fold i.on {
  display: none;
}
.ul_tree .flod .btn_fold i.on {
  display: inline-block;
  color: #999;
}
.ul_tree .placeholder_fold {
  /*cursor: default;*/
}
.ul_tree .placeholder_fold i {
  opacity: 0;
}
.ul_tree .flod ul {
  display: none;
}
.ul_tree.has_foldbtn .ul_pool {
  padding-left: 40px;
}
/** 表单label标签 **/
.form-horizontal .control-label {
  font-weight: normal;
  font-size: 12px;
  color: #666;
}
@media (min-width: 768px) {
  .form-horizontal .control-label {
    padding-top: 8px;
  }
}
/** 翻页 **/
.pager_wrap {
  margin: 20px 0;
}
.pager_wrap .form-group {
  vertical-align: bottom;
}
.pager_wrap .pagination {
  margin: 0;
  vertical-align: bottom;
}
.pager_wrap .pagination li{
	float:left;
}
/** 标签页 及 徽章 **/
.nav-tabs > li > a .badge,
.nav-pills > li > a .badge {
  margin-left: 5px;
  background-color: #EF4E4E;
}
/** 二级标签页 **/
.hassubnav_card .nav-pills {
  padding: 5px 10px;
  background-color: #f4f4f4;
  border-top: 1px solid #eee;
}
.hassubnav_card .nav-pills > li {
  margin-right: 5px;
}
.hassubnav_card .nav-pills > li > a {
  padding: 5px 15px;
}
/** 成功失败提示 **/
.alert_card {
  padding: 50px 30px;
  text-align: center;
  margin-bottom: 10px;
}
.alert_card_box {
  display: inline-block;
  padding-left: 90px;
  padding-right: 50px;
  position: relative;
  text-align: left;
}
.alert_card_box:before {
  font-family: 'Material Icons';
  content: "\e86c";
  position: absolute;
  left: 0;
  top: 0;
  color: #5cb85c;
  font-size: 60px;
  line-height: 1;
}
.alert_card.warning .alert_card_box:before {
  content: "\e002";
  color: #f0ad4e;
}
.alert_card.danger .alert_card_box:before {
  content: "\e5c9";
  color: #d9534f;
}
.alert_card_box:after {
  content: "";
  position: absolute;
  left: 70px;
  top: 0;
  height: 100%;
  border-left: 1px solid #ddd;
}
.alert_card .title {
  font-size: 23px;
  line-height: 60px;
  color: #666;
}
.alert_card .text {
  padding-bottom: 10px;
}
.alert_card .countdown {
  font-size: 12px;
  color: #999;
}
.alert_card .btnbox {
  padding-top: 10px;
}
.alert_card .btnbox .btn {
  margin-right: 10px;
}
/** 切换按钮 **/
.form-switchbox {
  margin: 0;
}
.form-switchbox .switchbox {
  background-color: #d9534f;
  border: 1px solid #ccc;
  min-width: 34px;
  height: 34px;
  line-height: 32px;
  padding: 0 12px 0 8px;
  font-weight: normal;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  color: #fff;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form-switchbox .switchbox span {
  line-height: inherit;
  vertical-align: top;
}
.form-switchbox [type=checkbox]:checked + .switchbox .sorry,
.form-switchbox .switchbox .ok {
  display: none;
}
.form-switchbox [type=checkbox]:checked + .switchbox .ok {
  display: block;
}
.form-switchbox .switchbox:before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form-switchbox [type=checkbox]:checked + .switchbox {
  background-color: #fff;
  color: #333;
  border-color: #5cb85c;
  padding: 0 8px 0 12px;
}
.form-switchbox [type=checkbox]:checked + .switchbox:before {
  right: auto;
  left: 2px;
  background-color: #5cb85c;
}
/** select 最小宽度 **/
select.form-control {
  min-width: 60px;
	margin:5px 0;
}
/** 流程进度指示 **/
.flowprogress .text {
  text-align: center;
  margin-bottom: 10px;
  color: #ccc;
  font-size: 12px;
}
.flowprogress .text > div {
  padding: 5px;
}
.flowprogress .text .ok {
  color: #666;
}
.flowprogress .text .active {
  font-size: 14px;
  position: relative;
  z-index: 0;
  color: #fff;
}
.flowprogress .text .active:before {
  content: "";
  background-color: #5CB85C;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: .8;
}
.flowprogress .progress {
  margin-bottom: 0;
}
/** 表单内上传控件 **/
.form-file {
  font-weight: normal;
  cursor: pointer;
  display: block;
  background-color: #fff;
  border: 1px solid #DEDEDE;
  margin-bottom: 0;
}
.form-file .filename {
  line-height: 32px;
  padding-left: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.form-file [type=file] {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 0;
}
/** 仪表盘 **/
.dashboard_area {
  margin: 10px -5px;
}
.dashboard_card_wrap {
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .dashboard_card_wrap {
    padding-bottom: 0;
  }
}
.dashboard_card {
  padding: 20px;
  text-align: center;
  border-top: 4px solid #30343d;
}
@media (max-width: 700px) {
  .dashboard_card {
    padding: 20px 5px;
  }
}
.dashboard_card .icon .material-icons {
  font-size: 30px;
  color: #30343d;
}
.dashboard_card .title {
  color: #878789;
}
.dashboard_card .maincon {
  font-size: 18px;
}
.dashboard_card .maincon .num {
  font-size: 24px;
  font-weight: bold;
  padding-left: 3px;
  padding-right: 3px;
}
.dashboard_card .extra {
  color: #a6a7ac;
  font-size: 12px;
}
.index_left .form_card {
  margin-left: -5px;
  margin-top: 0;
}
.index_right .form_card {
  margin-right: -5px;
  margin-top: 0;
}
.index_notice .form_card_box {
  padding: 20px;
}
.form_card_box_waite a{
	padding:0 5px;
}
.form_card_box_waite a:hover{
	background-color:#ebf0f5;
}
.index_notice li {
  line-height: 30px;
  display:block;
}
.index_notice a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.index_support .form_card_box {
  padding: 20px;
}
.index_support li {
  line-height: 30px;
}
.index_primary_area {
  margin: 10px -5px;
}
/** 仪表概述页 企业/个人名片区 **/
.index_vcard_card {
  text-align: center;
}
.index_vcard_main {
  padding: 20px;
  position: relative;
  display: block;
  color: #333;
}
.index_vcard_authorize {
  background-color: #f4f6f9;
  padding: 20px;
}
.index_vcard_main .set {
  position: absolute;
  right: 5px;
  top: 5px;
  opacity: 0;
}
.index_vcard_main:hover .set {
  opacity: 1;
}
.index_vcard_logo {
  /*background-color: #999;*/
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: 36.5%;
  margin-bottom: 10px;
}
.index_vcard_main .title {
  font-size: 18px;
  font-weight: bold;
}
.index_vcard_main .text {
  color: #7b7e85;
}
.index_vcard_authorize .text {
  color: #7b7e85;
  font-size: 14px;
}
.index_vcard_authorize .text .num {
  color: #5cb85c;
  font-weight: bold;
}
.index_vcard_authorize .text .num.danger {
  color: #d9534f;
  padding: 0 5px;
}
.index_vcard_authorize .btn {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .index_vcard {
    margin-bottom: 10px;
  }
}
/*
有顶条简版登录页面
v0.5
UPDATE: 2016/05/06
Powered by Joyton & dline.com.cn
*/
/** 登陆页面 **/
body.login {
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  -ms-behavior: url("/res/js/backgroundsize/backgroundsize.min.htc");
  behavior: url("/res/js/backgroundsize/backgroundsize.min.htc");
}
body.login .copyright {
  padding-top: 50px;
  font-size: 12px;
  text-align: center;
  color: #ddd;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}
body.login .copyright {
  display: block;
}
body.login .copyright a {
  color: #ddd;
  color: inherit;
}
/** 登录界面 **/
.login_card {
  /*padding: 30px 20px;*/
  margin-top: 20px;
}
.login_form {
  padding: 50px;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
	margin-top:10%;
}
@media(max-width:480px){
	#wrap{
		padding:10px;
	}
	.login_form{
		width:100%;
		padding:10px;
	}
}
.login_card legend {
  padding-bottom: 20px;
}
.login_card legend div {
  font-size: 14px;
  font-weight: normal;
  color: #777;
}
.login_card label {
  font-weight: normal;
}
.login_form .form-group {
  position: relative;
  width: 100%;
}
.login_form .form-group input[type=text],
.login_form .form-group input[type=email],
.login_form .form-group input[type=password] {
  /* padding: 20px 20px 20px 40px; */
  padding: 0 20px 0 40px;
  height: 42px;
  line-height: 42px;
}
.login_form .form-group > .material-icons {
  position: absolute;
  left: 10px;
  top: 9px;
  z-index: 4;
}
.login_form .form-group input[type=checkbox] {
  position: relative;
  top: 2px;
  vertical-align: baseline;
}
.login_form .form-group .help-block {
  margin: 0;
}
.input-group .change_captchas {
  padding: 0;
  border: 0;
  height: 42px;
  padding-left: 10px;
  background-color: transparent;
  display: table-cell;
}
.input-group .change_captchas img {
  height: 100%;
  min-width: 126px;
  min-height: 42px;
}
.help-block {
  display: table-row;
}
.login_form .form-group .cancel {
  position: absolute;
  right: 7px;
  top: 6px;
  z-index: 3;
  padding-left: 0;
  padding-right: 0;
  padding: 3px 0;
  width: 30px;
  border-radius: 100px;
}
.login_card label.check {
  width: auto;
}
/** 注册界面 **/
.reg_tip {
  display: none;
}
.reg_supplier #reg_tip_supplier,
.reg_project #reg_tip_project,
.reg_phone_ok #reg_tip_phone {
  display: block;
  line-height: 30px;
}
#reg_step_1 {
  text-align: center;
}
#reg_step_1 .btn {
  width: 80%;
  margin: 20px 20px 10px 20px;
  padding-top: 20px;
}
#reg_step_1 .btn .material-icons {
  display: block;
  margin-bottom: 5px;
}
#reg_step_2 {
  padding-top: 20px;
  display: none;
}
#reg_step_3 {
  padding-top: 20px;
  display: none;
}
#reg_type {
  display: none;
}
/** 重置密码 **/
#resetpassword_step_2 {
  padding-top: 20px;
  display: none;
}
.resetpassword_phone_ok #resetpassword_tip_phone {
  display: block;
  line-height: 30px;
}
/** 修改密码 **/
#password_tip_phone {
  display: block;
  line-height: 30px;
}
#password_step_1 {
  padding-top: 20px;
}
.text_t {
  margin-top: 7px;
}


/****个人认证点击预览图****/
.yulan_img{
	width:100px;
}

.examples {
	margin-top: 40px;
}
.examples .row {
	margin-bottom: 20px;
}
.examples .col-md-3 {
	text-align: center;
	margin-bottom: 20px;
}
.example img {
	width: 100%;
	max-width: 100px;
}
.zoomify {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: zoom-in
}
.zoomify.zoomed {
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 0;
	box-shadow: none;
	position: relative;
	z-index: 1501
}
.zoomify-shadow {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 1500;
	background: rgba(0,0,0 ,.3);
	opacity: 0
}
.zoomify-shadow.zoomed {
	opacity: 1;
	cursor: pointer;
	cursor: -webkit-zoom-out;
	cursor: zoom-out
}





