/*
 * name: b端公共ui
 * time: 2018-03-04
 * author: sara
*/
/*---------------------------------公共color变量定义-----------------------------------------*/
/*---------------------------------公共color变量定义  end--------------------------------------*/
/*---------------------------------公共模块的尺寸，间距变量--------------------------------------*/
/*---------------------------------公共模块的尺寸，间距变量 end----------------------------------*/
/* 提示条 */
.alert {
  background-color: #fff;
  color: #5897ff;
  -webkit-box-shadow: 0 0 2px 0px rgba(88, 151, 255, 0.5);
          box-shadow: 0 0 2px 0px rgba(88, 151, 255, 0.5);
  padding: 15px 10px 15px 35px;
  border-radius: 3px;
  font-size: 12px;
  border: none;
  *zoom: 1;
}
.alert a.close {
  float: right;
  margin-right: 0;
  outline: none;
  text-decoration: none;
  font-size: 12px;
  font-family: serif;
  color: #5897ff;
}
.alert p {
  margin: 0;
}
.alert .alert-inline {
  display: inline;
  padding: 7px;
  vertical-align: middle;
}
.alert i.alert-type {
  float: left;
  font-size: 16px;
  margin-left: -22px;
  line-height: 21px;
}
.alert-success {
  background-color: #fff;
  color: #01c67a;
  -webkit-box-shadow: 0 0 2px 0px rgba(1, 198, 122, 0.5);
          box-shadow: 0 0 2px 0px rgba(1, 198, 122, 0.5);
}
.alert-success a.close {
  color: #01c67a;
}
.alert-question {
  background-color: #fff;
  color: #ff7c2d;
  -webkit-box-shadow: 0 0 2px 0px rgba(255, 124, 45, 0.5);
          box-shadow: 0 0 2px 0px rgba(255, 124, 45, 0.5);
}
.alert-question a.close {
  color: #ff7c2d;
}
.alert-warning {
  background-color: #fff;
  color: #ff7c2d;
  -webkit-box-shadow: 0 0 2px 0px rgba(255, 124, 45, 0.5);
          box-shadow: 0 0 2px 0px rgba(255, 124, 45, 0.5);
}
.alert-warning a.close {
  color: #ff7c2d;
}
.alert-error {
  background-color: #fff;
  color: #ff4b49;
  -webkit-box-shadow: 0 0 2px 0px rgba(255, 75, 73, 0.5);
          box-shadow: 0 0 2px 0px rgba(255, 75, 73, 0.5);
}
.alert-error a.close {
  color: #ff4b49;
}
/*一个字的小图标*/
.badge {
  display: inline-block;
  border-radius: 5px;
  padding: 0px 3px;
  color: #fff;
  margin-left: 0.4em;
  font-size: 12px;
  vertical-align: middle;
  line-height: 18px;
}
.badge-blue {
  background-color: #5897ff;
}
.badge-gray {
  background-color: #ccc;
}
.badge-orange {
  background-color: #ff7c2d;
}
.badge-yellow {
  background-color: #ffbe2e;
}
.badge-red {
  background-color: #ff4b49;
}
.badge-green {
  background-color: #01c67a;
}
/*一个字的小图标 end*/
/* ========================== btn & form =================== */
input[type="text"], input[type="password"] {
  height: 30px;
}
input[type="text"], input[type="password"], textarea {
  border: 1px solid #ddd;
  padding: 0 6px;
  color: #3e4959;
  background-color: #fff;
  line-height: 30px;
  border-radius: 3px;
  font-size: 12px;
}
input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  /* WebKit browsers*/
  color: #ccc;
}
input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  /* WebKit browsers*/
  color: #ccc;
}
input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder, textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18*/
  color: #ccc;
}
input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, textarea::-moz-placeholder {
  /* Mozilla Firefox 19+*/
  color: #ccc;
}
input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  /* Internet Explorer 10+*/
  color: #ccc;
}
textarea {
  line-height: 20px;
  padding: 10px;
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  border-color: #5897ff;
  outline: none;
}
.input-small[type="text"], .input-small[type="password"] {
  line-height: 22px;
  height: 22px;
  font-size: 12px;
  padding: 0 6px;
}
.input-large[type="text"], .input-large[type="password"] {
  line-height: 38px;
  height: 38px;
  padding: 0 6px;
  font-size: 14px;
}
input[disabled], button[disabled], textarea[disabled] {
  background-color: #f6f6f6;
  border-color: #ddd;
  color: #999;
  cursor: default;
  cursor: not-allowed;
}
/*btn*/
.btn {
  border: 1px solid #5897ff;
  background-color: #fff;
  color: #5897ff;
  height: 32px;
  line-height: 30px;
  padding: 0 16px;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-transition: .2s background;
  -o-transition: .2s background;
  transition: .2s background;
  vertical-align: middle;
  border-radius: 3px;
  display: inline-block;
  outline: none;
  text-decoration: none;
  *display: inline;
  *zoom: 1;
}
.btn:hover {
  color: #5897ff;
  background-color: #f2f7ff;
  text-decoration: none;
  border-color: #5897ff;
}
.btn:active {
  background-color: #d1e2ff;
  border-color: #d1e2ff;
  color: #5897ff;
}
a.btn:hover, a.btn:focus {
  text-decoration: none;
  outline: none;
}
.btn-small {
  height: 24px;
  line-height: 22px;
  padding: 0 16px;
  font-size: 12px;
}
.btn-large {
  height: 40px;
  line-height: 38px;
  padding: 0 20px;
  font-size: 14px;
}
.btn-default {
  background-color: #fff;
  border-color: #ddd;
  color: #3e4959;
}
.btn-default:hover {
  color: #3e4959;
  background-color: #f3f3f3;
  border-color: #ddd;
}
.btn-default:active {
  background-color: #f3f3f3;
  color: #3e4959;
  brder-color: #e6e6e6;
}
.btn-primary {
  background-color: #5897ff;
  border-color: #5897ff;
  color: #fff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #80b0ff;
  border-color: #80b0ff;
}
.btn-primary:active {
  background-color: #3b6ec3;
  color: #fff;
  brder-color: #3b6ec3;
}
.btn-warning {
  background-color: #ff7c2d;
  border-color: #ff7c2d;
  color: #fff;
}
.btn-warning:hover {
  color: #fff;
  background-color: #ff9a5d;
  border-color: #ff9a5d;
}
.btn-warning:active {
  background-color: #ce6220;
  color: #fff;
  brder-color: #ce6220;
}
.btn-success {
  background-color: #01c67a;
  border-color: #01c67a;
  color: #fff;
}
.btn-success:hover {
  color: #fff;
  background-color: #2fdf9b;
  border-color: #fff;
}
.btn-success:active {
  background-color: #05b571;
  color: #fff;
  border-color: #05b571;
}
.btn-error {
  background-color: #ff4b49;
  border-color: #ff4b49;
  color: #fff;
}
.btn-error:hover {
  color: #fff;
  background-color: #ff8886;
  border-color: #ff8886;
}
.btn-error:active {
  background-color: #cc3c3a;
  color: #fff;
  border-color: #cc3c3a;
}
.btn-link {
  background-color: none;
  border-color: #fff;
  color: #3e4959;
}
.btn-link:hover {
  color: #3e4959;
  background-color: #fff;
  border-color: none;
}
.btn-link:active {
  background-color: #fff;
  color: #3e4959;
  border-color: none;
}
input[disabled], button[disabled], .btn-disabled {
  background-color: #f6f6f6;
  border-color: #ddd;
  color: #999;
  cursor: not-allowed;
}
input[disabled]:hover, button[disabled]:hover, .btn-disabled:hover {
  background-color: #f6f6f6;
  border-color: #ddd;
  color: #999;
}
input[disabled]:active, button[disabled]:active, .btn-disabled:active {
  background-color: #f6f6f6;
  border-color: #ddd;
  color: #999;
}
.labels {
  display: inline-block;
  vertical-align: middle;
  padding: 0 6px;
  border-radius: 16px;
  color: #fff;
  margin-left: 0.4em;
  line-height: 20px;
  font-size: 12px;
}
.labels-gray {
  background-color: #ccc;
}
.labels-blue {
  background-color: #5897ff;
}
.labels-orange {
  background-color: #ff7c2d;
}
.labels-yellow {
  background-color: #ffbe2e;
}
.labels-red {
  background-color: #ff4b49;
}
.labels-green {
  background-color: #01c67a;
}
/* ========== pagerbar ========== */
.pagerbar {
  text-align: right;
  font-family: Arial;
  white-space: nowrap;
  font-size: 0;
}
.pagerbar span.ellipsis, .pagerbar a {
  height: 30px;
  font-size: 12px;
  line-height: 30px;
  background-color: #fff;
  border: 1px solid #f3f3f3;
  margin-left: 8px;
  padding: 0 12px;
  color: #3e4959;
  border-radius: 3px;
  outline: none;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.pagerbar span.ellipsis {
  border: 0;
  padding: 0;
  background: none;
}
.pagerbar a:hover {
  color: #9ac0ff;
  text-decoration: none;
}
/*
.pagerbar a.pageback:before {
  content: '';
  position: absolute;
  border: 10px solid transparent;
  border-right-color: @gray;   
  left: 8px;
  top: 11px;
  border-width: 4px 6px 4px 0;
}
.pagerbar a.pageback:hover::before {
  border-right-color: @pagebar-hover-text-color;
}
.pagerbar a.pageahead:hover::before {
  border-left-color: @pagebar-hover-text-color;
}
.pagerbar a.pageback {
  padding-left: 22px;
}
.pagerbar a.pageback.disabled:before {
  border-right-color: @text-disabled-color;
}
.pagerbar a.pageahead {
  padding-right: 22px;
}
.pagerbar a.pageahead:before {
  content: '';
  position: absolute;
  right: 8px;
  top: 11px;
  border-style: solid;
  border-color: transparent;
  border-width: 4px 0 4px 6px;
  border-left-color: @gray;
}
.pagerbar a.pageahead.disabled:before {
  border-left-color: @text-disabled-color;   
}*/
.pagerbar a {
  cursor: pointer;
}
.pagerbar a.disabled, .pagerbar a.disabled:hover {
  color: #ccc;
  background-color: #fff;
  cursor: default;
}
.pagerbar a.current {
  background-color: #eaf3fd;
  border-: 1px solid #eaf3fd;
  cursor: default;
}
.pagerbar input.pn {
  margin-left: 30px;
  width: 37px;
  font-size: 12px;
  border-right: none;
  vertical-align: middle;
  border-radius: 3px 0 0 3px;
}
.pagerbar .go {
  border-radius: 0 3px 3px 0;
  width: 58px;
  padding: 0 10px;
}
.table {
  width: 100%;
  margin-bottom: 20px;
}
.table th.text-left, .table td.text-left {
  text-align: left;
}
.table th.text-center, .table td.text-center {
  text-align: center;
}
.table tr th, .table tr td {
  text-align: left;
  padding: 10px;
}
.table tr th {
  font-weight: bold;
}
.table thead tr th, .table thead tr td {
  color: #999;
  background-color: #fff;
}
.table.table-striped tbody > tr:nth-child(odd) > td, .table.table-striped tbody > tr:nth-child(odd) > th {
  background-color: #f6faff;
}
.table thead tr:first-child th:first-child, .table thead tr:first-child td:first-child {
  border-top-left-radius: 3px;
}
.table thead tr:first-child th:last-child, .table thead tr:first-child td:last-child {
  border-top-right-radius: 3px;
}
.table tfoot tr th, .table tfoot tr td, .table tbody tr th, .table tbody tr td {
  border-top: 1px solid #e6e6e6;
}
.table tbody tr:last-child th:first-child, .table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 3px;
}
.table tbody tr:last-child th:first-child + td {
  border-bottom-left-radius: 0;
}
.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}
.table-text-center tr th, .table-text-center tr td {
  text-align: center;
}
.table-border thead tr th, .table-border thead tr td {
  border: 1px solid #f0f0f0;
}
.table-border, .table-border tfoot tr th, .table-border tfoot tr td, .table-border tbody tr th, .table-border tbody tr td {
  border: 1px solid #f0f0f0;
}
.table-noborder tfoot tr th, .table-noborder tfoot tr td, .table-noborder tbody tr th, .table-noborder tbody tr td {
  border: 0;
}
.table.table-hover tbody tr:hover > th, .table.table-hover tbody tr:hover > td {
  background-color: #f1f8ff;
}
.table-form tr th {
  text-align: right;
}
.table-form tr td {
  text-align: left;
}
.text-info {
  color: #5897ff;
}
.text-error {
  color: #ff4b49;
}
.text-warning {
  color: #ff7c2d;
}
.text-success {
  color: #01c67a;
}
.text-muted {
  color: #999;
}
.text-primary {
  color: #707f95;
}
.text-disabled {
  cursor: no-drop;
  color: #ccc !important;
}
.text-disabled:hover {
  color: #ccc !important;
  text-decoration: none !important;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-middle {
  vertical-align: middle;
}
.text-large {
  font-size: 48px;
}
/* public */
/* lpt 版本专属 labels */
.labels-elite {
  background-color: #ff7c2d;
}
.labels-worker {
  background-color: #5897ff;
}
/* 空列表 */
.empty, .empty:hover {
  background-color: #fff !important;
  padding: 70px 0 80px !important;
  text-align: center !important;
}
.empty p {
  padding-top: 15px;
  font-size: 16px;
  line-height: 32px;
  color: #3e4959;
}
/* lpt 版本专属 labels end */
/* 业务端公共 */
.board {
  border-radius: 3px;
  background-color: #fff;
  margin-bottom: 20px;
}
.loading, .animate-loading {
  width: 34px;
  height: 34px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/public/loading.b6734a7c.png) center no-repeat;
}
.animate-loading {
  cursor: default;
  -webkit-animation: loading 1s linear infinite forwards;
          animation: loading 1s linear infinite forwards;
}
@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loading {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.dot-loading{
  background:#5897ff;
  height: 24px;
  line-height: 24px;
  display: inline-block;
  border-radius:12px;
  padding:0 10px;
}
.dot-loading i{
  width: 8px;
  height: 8px;
  margin:0 3px;
  vertical-align: middle;
  border-radius: 50%;
  display: inline-block;
  background:#fff;
}
.dot-loading i:nth-child(1){
  opacity:1;
  -webkit-animation: loadinga 1.5s linear infinite;
          animation: loadinga 1.5s linear infinite;
}
.dot-loading i:nth-child(2){
  opacity:.7;
  -webkit-animation: loadinga 1.5s .5s linear infinite;
          animation: loadinga 1.5s .5s linear infinite;
}
.dot-loading i:nth-child(3){
  opacity:.4;
  -webkit-animation: loadinga 1.5s 1s linear infinite;
          animation: loadinga 1.5s 1s linear infinite;
}
@-webkit-keyframes loadinga {
  from {
    opacity:1;
  }to{
    opacity:0;
  }
}
@keyframes loadinga {
  from {
    opacity:1;
  }to{
    opacity:0;
  }
}
/* 面包屑 */
.bread-crumbs {
  margin-bottom: 10px;
  line-height: 32px;
  font-size: 14px;
}
/*submenu*/
.menu-section {
  background-color: #fff;
  border-radius: 6px;
}
.menu-section .menu-box {
  margin: 14px;
}
.submenu ul li, .submenu ul {
  float: left;
}
.submenu .more {
  float: right;
  line-height: 36px;
}
.submenu .more * {
  vertical-align: middle;
}
.submenu ul li {
  background-color: #fff;
}
.submenu ul li a {
  border-radius: 3px 3px 0 0;
  float: left;
  height: 38px;
  line-height: 38px;
  font-size: 14px;
  border-bottom: none;
  position: relative;
  z-index: 2;
  margin-right: -1px;
  color: #3e4959;
  padding: 0 25px;
}
.submenu ul li a:hover {
  text-decoration: none;
}
.submenu ul li.active {
  background-color: #f3f3f3;
  text-decoration: none;
  z-index: 1;
  border-radius: 3px 3px 0 0;
}
.submenu ul li.active a {
  color: #5897ff;
}
.submenu + .board {
  border-radius: 0 3px 3px 3px;
  background-color: #f3f3f3;
  padding: 14px;
}
.submenu-content {
  padding:20px;
  background-color: #fff;
  border-radius: 3px;
}
.submenu-content:before, .submenu-content:after  {
  content: '';
  display: table;
}
.submenu-content:after {
  clear: both;
}
.combobox .selectui {
  margin-right: -4px;
  z-index: 1;
}
.combobox .selectui .selectui-head {
  border-radius: 3px 0 0 3px;
}
.combobox input[type="text"] {
  border-radius: 3px 0 0 3px;
  margin-right: -5px;
  position: relative;
}
.combobox .selectui + input[type="text"] {
  border-radius: 0;
}
.combobox input[type="button"] {
  border-radius: 0 3px 3px 0;
}
/* 2016-08-23 rpo+ */
#header .navbar nav ul.nav-items li .beta {
  position: absolute;
  top: 0;
  right: 2px;
  width: 24px;
  height: 24px;
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/public/beta.9f121795.png);
}
/* end 2016-08-23 rpo+ */
/* 优惠券 */
.btn-group.coupon {
  padding: 0 20px 20px;
}
.btn-group.coupon .btn {
  margin-right: 6px;
  position: relative;
}
.badge.coupon {
  position: absolute;
  right: -7px;
  top: -7px;
}
.badge-white {
  background-color: #fff;
  color: #ff4b49;
  vertical-align: baseline;
  margin-left: 5px;
  line-height: 20px;
  margin-right: 0;
}
/*定位在标签右上方的提示性标记，可用该class*/
.mark-fixed {
  position: absolute;
  right: -7px;
  top: -7px;
}
/* 猎聘猎聘通 vDialog 自定义 风格控制 */
div.vdialog .vd-footer a.vd-btn {
  vertical-align: middle;
  height: 32px;
  line-height: 32px;
  border: 1px solid #5897ff;
  background-color: #fff;
  border-radius: 3px;
  color: #5897ff;
  padding: 0 1.4em;
  outline: none;
}
div.vdialog .vd-footer a.vd-btn-ok {
  margin-left: .8em;
  border: 1px solid #5897ff;
  background-color: #5897ff;
  color: #fff;
}
div.vdialog .vd-header a.vd-close {
  font-size: 2em;
  top: 18px;
}
div.vdialog .vd-main-with-icon .icon-vd-alert:before {
  color: #ff7c2d;
}
div.vdialog .vd-main-with-icon .icon-vd-error {
  color: #ff4b49;
}
/* end 猎聘猎聘通 vDialog 自定义风格控制 */
/* =============================================== sueggest =============================================== */
.suggest {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  text-align: left;
  *display: inline;
  width: 120px;
}
div.suggest .suggest-head .suggest-result, div.suggest .suggest-head .suggest-drop {
  height: 30px;
}
.suggest-drop {
  width: 30px;
}
.suggest .suggest-list {
  position: relative;
}
.suggest .suggest-head {
  height: 30px;
  line-height: 30px;
  position: relative;
  color: #454545;
  border: 1px solid #ddd;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
.suggest .suggest-head .suggest-result, .suggest .suggest-head .suggest-drop {
  height: 30px;
}
.suggest-drop {
  width: 30px;
}
.suggest .suggest-head.error {
  border-color: #e44;
}
.suggest .suggest-head input[type="text"] {
  border: none;
  margin-top: -4px;
}
.suggest .suggest-head .suggest-result {
  cursor: pointer;
}
.suggest .suggest-head .suggest-drop {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
}
.suggest:hover .suggest-drop {
  background-color: #f6f6f6;
}
.suggest .suggest-head .suggest-drop var {
  font-size: 12px;
  right: 8px;
  top: 10px;
  position: absolute;
}
/* =============================================== sueggest end =============================================== */
.input-hasmark {
  position: relative;
}
.input-hasmark input[type="text"], .input-hasmark input[type="text"].input-small, .input-hasmark input[type="text"].input-large {
  padding-right: 20px;
}
.input-hasmark span.input-mark {
  position: absolute;
  right: 10px;
}
.input-hasmark input[type="text"]+span.input-mark {
  line-height: 30px;
  top: -4px;
}
.input-hasmark input[type="text"].input-small+span.input-mark {
  line-height: 22px;
  top: -1px;
}
.input-hasmark input[type="text"].input-large+span.input-mark {
  line-height: 38px;
  top: -8px;
}
/*
  time: 2018-03-22开始
*/
/*lpt过渡版本，dropdown插件*/
.dropdown .icon-drop:before {
  border-top-color: #5897ff !important;
}
.j-autocomplete ul li.hasFocus {
  background-color:#5897ff !important;
}
/*职能等插件*/
.simulation-text, input.text, textarea.text {
  padding: 0 6px;
  line-height: 30px;
}
.simulation-text {
  color: #ccc;
}
/*selectui改版*/
/* ========== selectUI - start ========== */
div.selectui .selectui-head .selectui-result, div.selectui .selectui-head .selectui-drop {
  height: 30px;
}
div.selectui .selectui-head {
  border-color: #ddd;
  height: 30px;
  line-height: 30px;
}
div.selectui ul {
  top: 31px;
}
div.selectui ul li a {
  background-color: #fff;
  color: #3e4959;
}
div.selectui ul li.active a, div.selectui ul li.active a:hover {
  color: #5897FF;
  background-color: #EAF3FD;
}
div.selectui ul li a:hover {
  display: block;
  background-color: #f6f6f6;
  text-decoration: none;
}
div.selectui ul li a.select-disabled {
  color: #ccc;
  cursor: not-allowed;
  background-color: #f6f6f6;
}
div.selectui-small .selectui-head .selectui-result, div.selectui-small .selectui-head .selectui-drop {
  height: 22px;
}
div.selectui-small .selectui-head {
  height: 22px;
  line-height: 22px;
}
div.selectui-small ul {
  top: 23px;
}
div.selectui.selectui-disabled ul {
  color: #999;

}
div.selectui-large .selectui-head .selectui-result, div.selectui-large .selectui-head .selectui-drop {
  height: 38px;
}
div.selectui-large .selectui-head {
  height: 38px;
  line-height: 38px;
}
div.selectui-large ul {
  top: 39px;
}
div.selectui .selectui-head .selectui-drop {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/plugins/downarrow.36cb7bac.png) center center no-repeat;
}
div.selectui.selectui-disabled .selectui-head {
  background-color: #f3f3f3;
  border: 1px solid #ddd;
  color: #999;
}
div.selectui:hover .selectui-drop {
  right: -1px;
  border-right: 1px solid #cdcdcd;
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/plugins/downarrow.36cb7bac.png) center center no-repeat #ededed;
}
div.selectui.selectui-disabled:hover .selectui-drop {
  background-color: none;
}
div.selectui.selectui-active .selectui-head .selectui-drop {
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/plugins/uparrow.6343ca00.png) center center no-repeat;
}
div.selectui.selectui-active .selectui-head:hover .selectui-drop {
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/plugins/uparrow.6343ca00.png) center center no-repeat #ededed;
}
.pagerbar .first:before {
  content: '\9996\9875';
}
.pagerbar .last:before {
  content: '\5C3E\9875';
}
.table-form tr th {
  text-align: right;
}
.table-form tr td {
  text-align: left;
}
/*input 默认提示*/
input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  /* WebKit browsers*/
  color: #999 !important;
}
input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  /* WebKit browsers*/
  color: #999 !important;
}
input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder, textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18*/
  color: #999 !important;
}
input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, textarea::-moz-placeholder {
  /* Mozilla Firefox 19+*/
  color: #999 !important;
}
input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  /* Internet Explorer 10+*/
  color: #999 !important;
}
/*
 * common.css
 * V5
 *
 * PS: 此版是猎聘通V3 代码要求完全符合前端规范；
 * last modified 2018-6-6
 *
 * 修改备注：
 * fonts 单独抽出css文件，避免编译引起问题
 *
 */
/* ============================ css reset =============================== */
/*font-icon-start*/
.icon-24h:before {
  content: "\E001";
}
.icon-account:before {
  content: "\E002";
}
.icon-add-resume:before {
  content: "\E003";
}
.icon-affixation:before {
  content: "\E004";
}
.icon-back:before {
  content: "\E005";
}
.icon-backtop:before {
  content: "\E006";
}
.icon-branches:before {
  content: "\E007";
}
.icon-briefcase:before {
  content: "\E008";
}
.icon-card:before {
  content: "\E009";
}
.icon-certification:before {
  content: "\E00A";
}
.icon-change:before {
  content: "\E00B";
}
.icon-communicate:before {
  content: "\E00C";
}
.icon-company:before {
  content: "\E00D";
}
.icon-contract:before {
  content: "\E00E";
}
.icon-correspond:before {
  content: "\E00F";
}
.icon-coupon:before {
  content: "\E010";
}
.icon-customer-service:before {
  content: "\E011";
}
.icon-delivery:before {
  content: "\E012";
}
.icon-doctor:before {
  content: "\E013";
}
.icon-dot:before {
  content: "\E014";
}
.icon-downarrow-thin:before {
  content: "\E015";
}
.icon-downarrow:before {
  content: "\E016";
}
.icon-dropout:before {
  content: "\E017";
}
.icon-edit:before {
  content: "\E018";
}
.icon-error:before {
  content: "\E019";
}
.icon-export:before {
  content: "\E01A";
}
.icon-eye:before {
  content: "\E01B";
}
.icon-favorite-cancel:before {
  content: "\E01C";
}
.icon-favorite:before {
  content: "\E01D";
}
.icon-finish:before {
  content: "\E01E";
}
.icon-flame:before {
  content: "\E01F";
}
.icon-fold:before {
  content: "\E020";
}
.icon-forwarding:before {
  content: "\E021";
}
.icon-freeaccount:before {
  content: "\E022";
}
.icon-four:before {
  content: "\E023";
}
.icon-handheld:before {
  content: "\E024";
}
.icon-im-chatwin-more:before {
  content: "\E025";
}
.icon-language:before {
  content: "\E026";
}
.icon-leftarrow-solid:before {
  content: "\E027";
}
.icon-leftarrow:before {
  content: "\E028";
}
.icon-list:before {
  content: "\E029";
}
.icon-lock:before {
  content: "\E02A";
}
.icon-lpt-account:before {
  content: "\E02B";
}
.icon-lpt-app:before {
  content: "\E02C";
}
.icon-lpt-branches:before {
  content: "\E02D";
}
.icon-lpt-circulation:before {
  content: "\E02E";
}
.icon-lpt-company:before {
  content: "\E02F";
}
.icon-lpt-contract:before {
  content: "\E030";
}
.icon-lpt-coupon:before {
  content: "\E031";
}
.icon-lpt-doctor:before {
  content: "\E032";
}
.icon-lpt-dropout:before {
  content: "\E033";
}
.icon-lpt-eseal:before {
  content: "\E034";
}
.icon-lpt-intro:before {
  content: "\E035";
}
.icon-lpt-message:before {
  content: "\E036";
}
.icon-lpt-mobile:before {
  content: "\E037";
}
.icon-lpt-notice:before {
  content: "\E038";
}
.icon-lpt-resource-rest:before {
  content: "\E039";
}
.icon-lpt-resources:before {
  content: "\E03A";
}
.icon-lpt-service:before {
  content: "\E03B";
}
.icon-lpt-setting:before {
  content: "\E03C";
}
.icon-lpt-subaccount:before {
  content: "\E03D";
}
.icon-lpt-work:before {
  content: "\E03E";
}
.icon-mail-safe:before {
  content: "\E03F";
}
.icon-mail:before {
  content: "\E040";
}
.icon-mark:before {
  content: "\E041";
}
.icon-message-read:before {
  content: "\E042";
}
.icon-message:before {
  content: "\E043";
}
.icon-mobile:before {
  content: "\E044";
}
.icon-next:before {
  content: "\E045";
}
.icon-notice:before {
  content: "\E046";
}
.icon-one:before {
  content: "\E047";
}
.icon-phone-safe:before {
  content: "\E048";
}
.icon-phone:before {
  content: "\E049";
}
.icon-preview:before {
  content: "\E04A";
}
.icon-print:before {
  content: "\E04B";
}
.icon-project:before {
  content: "\E04C";
}
.icon-prompt-close:before {
  content: "\E04D";
}
.icon-prompt-correct:before {
  content: "\E04E";
}
.icon-prompt-failure:before {
  content: "\E04F";
}
.icon-prompt-question:before {
  content: "\E050";
}
.icon-prompt-warning:before {
  content: "\E051";
}
.icon-qrcode:before {
  content: "\E052";
}
.icon-recommend:before {
  content: "\E053";
}
.icon-relation-cancel:before {
  content: "\E054";
}
.icon-relation:before {
  content: "\E055";
}
.icon-report:before {
  content: "\E056";
}
.icon-res-liebi:before {
  content: "\E057";
}
.icon-res-other:before {
  content: "\E058";
}
.icon-res-resume:before {
  content: "\E059";
}
.icon-res-ticket:before {
  content: "\E05A";
}
.icon-resources:before {
  content: "\E05B";
}
.icon-resume-buy:before {
  content: "\E05C";
}
.icon-right:before {
  content: "\E05D";
}
.icon-rightarrow-solid:before {
  content: "\E05E";
}
.icon-rightarrow:before {
  content: "\E05F";
}
.icon-save:before {
  content: "\E060";
}
.icon-search:before {
  content: "\E061";
}
.icon-self:before {
  content: "\E062";
}
.icon-setting:before {
  content: "\E063";
}
.icon-share:before {
  content: "\E064";
}
.icon-similar:before {
  content: "\E065";
}
.icon-skill:before {
  content: "\E066";
}
.icon-sort-downarrow:before {
  content: "\E067";
}
.icon-sponsor:before {
  content: "\E068";
}
.icon-subaccount:before {
  content: "\E069";
}
.icon-succeed:before {
  content: "\E06A";
}
.icon-three:before {
  content: "\E06B";
}
.icon-trash:before {
  content: "\E06C";
}
.icon-two:before {
  content: "\E06D";
}
.icon-uparrow-thin:before {
  content: "\E06E";
}
.icon-uparrow:before {
  content: "\E06F";
}
.icon-user:before {
  content: "\E070";
}
.icon-verify-education:before {
  content: "\E071";
}
.icon-verify-identity:before {
  content: "\E072";
}
.icon-verify-phone:before {
  content: "\E073";
}
.icon-view:before {
  content: "\E074";
}
.icon-wait:before {
  content: "\E075";
}
.icon-waiting:before {
  content: "\E076";
}
.icon-warning:before {
  content: "\E077";
}
.icon-work-card:before {
  content: "\E078";
}
/*font-icon-end*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[role="button"] {
  cursor: pointer;
}
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
body, figure, p, dl, dd, form {
  margin: 0;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: none;
}
abbr[title] {
  border-bottom: 1px dotted;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  vertical-align: middle;
}
svg:not(:root) {
  overflow: hidden;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button, input, select, textarea {
  color: inherit;
  vertical-align: middle;
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button, input {
  line-height: normal;
}
button, select {
  text-transform: none;
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  cursor: pointer;
}
button[disabled], input[disabled], textarea[disabled] {
  cursor: not-allowed;
}
input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
td, th {
  padding: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* ========================================= basic ===================================== */
body {
  font: 12px/1.5 "PingFang SC", "microsoft yahei", Arial, sans-serif;
  color: #3e4959;
  background-color: #e6e6e6;
}
var, em, i, dfn, cite {
  font-style: normal;
}
input.radio, input.checkbox {
  vertical-align: middle;
  line-height: normal;
  margin-right: .4em;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}
.wrap {
  width: 1200px;
}
.wrap, .container {
  margin-right: auto;
  margin-left: auto;
  *zoom: 1;
}
.wrap:before, .wrap:after, .container:before, .container:after {
  display: table;
  content: "";
}
.wrap:after, .container:after {
  clear: both;
}
.hide {
  display: none;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-middle {
  vertical-align: middle;
}
hr {
  margin: 5px 0;
  border: 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #fff;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: #33444c;
  margin: 0;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #57666a;
}
h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small {
  font-size: 65%;
}
h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small {
  font-size: 75%;
}
h1, .h1 {
  font-size: 36px;
}
h2, .h2 {
  font-size: 30px;
}
h3, .h3 {
  font-size: 24px;
}
h4, .h4 {
  font-size: 18px;
}
h5, .h5 {
  font-size: 14px;
}
h6, .h6 {
  font-size: 12px;
}
.required:before {
  content: '*';
  color: #ff4b49;
  font-size: inherit;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 0.2em;
}
a {
  color: #104bab;
  text-decoration: none;
}
a:hover {
  color: #84A1CD;
  text-decoration: underline;
}
a:focus {
  outline: none;
}
a.link-light {
  color: #ccc;
  text-decoration: none;
}
a.link-light:hover {
  color: #ccc;
  text-decoration: underline;
}
a.link-hint {
  color: #104bab;
  text-decoration: none;
}
a.link-hint:hover {
  color: #104bab;
  text-decoration: underline;
}
/* =============================================== face & logo =============================================== */
img.rounded {
  border-radius: 6px;
}
img.polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
img.circle {
  border-radius: 500px;
}
img.minixFace, img.miniFace, img.tinyFace, img.normalFace, img.middleFace, img.bigFace, img.tinyELogo, img.normalELogo, img.bigELogo {
  vertical-align: middle;
}
img.minixFace {
  width: 20px;
  height: 20px;
}
img.miniFace {
  width: 30px;
  height: 30px;
}
img.tinyFace {
  width: 50px;
  height: 50px;
}
img.normalFace {
  width: 80px;
  height: 80px;
}
img.middleFace {
  width: 100px;
  height: 100px;
}
img.bigFace {
  width: 200px;
  height: 200px;
}
img.tinyELogo {
  width: 100px;
  height: 50px;
}
img.normalELogo {
  width: 160px;
  height: 80px;
}
img.bigELogo {
  width: 220px;
  height: 110px;
}
@-moz-document url-prefix(http), url-prefix(file) {
  img.minixFace:-moz-broken {
    -moz-force-broken-image-icon: 1 !important;
    width: 20px;
    height: 20px;
  }
}
@-moz-document url-prefix(http), url-prefix(file) {
  img.miniFace:-moz-broken {
    -moz-force-broken-image-icon: 1 !important;
    width: 30px;
    height: 30px;
  }
}
@-moz-document url-prefix(http), url-prefix(file) {
  img.tinyFace:-moz-broken {
    -moz-force-broken-image-icon: 1 !important;
    width: 50px;
    height: 50px;
  }
}
@-moz-document url-prefix(http), url-prefix(file) {
  img.normalFace:-moz-broken {
    -moz-force-broken-image-icon: 1 !important;
    width: 80px;
    height: 80px;
  }
}
@-moz-document url-prefix(http), url-prefix(file) {
  img.middleFace:-moz-broken {
    -moz-force-broken-image-icon: 1 !important;
    width: 100px;
    height: 100px;
  }
}
@-moz-document url-prefix(http), url-prefix(file) {
  img.bigFace:-moz-broken {
    -moz-force-broken-image-icon: 1 !important;
    width: 200px;
    height: 200px;
  }
}
@-moz-document url-prefix(http), url-prefix(file) {
  img.tinyELogo:-moz-broken {
    -moz-force-broken-image-icon: 1 !important;
    width: 100px;
    height: 50px;
  }
}
@-moz-document url-prefix(http), url-prefix(file) {
  img.normalELogo:-moz-broken {
    -moz-force-broken-image-icon: 1 !important;
    width: 160px;
    height: 80px;
  }
}
@-moz-document url-prefix(http), url-prefix(file) {
  img.bigELogo:-moz-broken {
    -moz-force-broken-image-icon: 1 !important;
    width: 220px;
    height: 110px;
  }
}
/* =============================================== face & logo --end =============================================== */
.icons16 {
  display: inline-block;
  background-image: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/icons/icons16.f35ef67a.png);
  background-repeat: no-repeat;
  background-size: 222px 16px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  overflow: hidden;
}
.icons16-right {
  background-position: 0px 0px;
}
.icons16-resume-down {
  background-position: -16px 0px;
}
.icons16-question-space {
  background-position: -32px 0px;
}
.icons16-private_word {
  background-position: -48px 0px;
}
.icons16-private_txt {
  background-position: -64px 0px;
}
.icons16-private_pdf {
  background-position: -80px 0px;
}
.icons16-left {
  background-position: -96px 0px;
}
.icons16-invite {
  background-position: -112px 0px;
}
.icons16-intention {
  background-position: -128px 0px;
}
.icons16-guide-mark {
  background-position: -144px 0px;
}
.icons16-arrow-yellow-up {
  background-position: -160px 0px;
}
.icons16-arrow-yellow-down {
  background-position: -176px 0px;
}
.icons16-arrow-white {
  background-position: -192px 0px;
}
.icons16-private_html {
  background-position: -208px 0px;
}
.icons24 {
  display: inline-block;
  background-image: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/icons/icons24.55c7f3d3.png);
  background-repeat: no-repeat;
  background-size: 114px 24px;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  overflow: hidden;
}
.icons24-position-new {
  background-position: 0px 0px;
}
.icons24-lens {
  background-position: -24px 0px;
}
.icons24-hasInterview {
  background-position: -48px 0px;
}
.icons24-arch {
  background-position: -72px 0px;
}
.icons24-lens-resume {
  background-position: -96px 0px;
}
.icons32 {
  display: inline-block;
  background-image: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/icons/icons32.d6957dd8.png);
  background-repeat: no-repeat;
  background-size: 320px 32px;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  overflow: hidden;
}
.icons32-service-guide {
  background-position: 0px 0px;
}
.icons32-rzk {
  background-position: -32px 0px;
}
.icons32-photo-approve {
  background-position: -64px 0px;
}
.icons32-phone-approve {
  background-position: -96px 0px;
}
.icons32-idcard-approve {
  background-position: -128px 0px;
}
.icons32-email-approve {
  background-position: -160px 0px;
}
.icons32-education-approve {
  background-position: -192px 0px;
}
.icons32-counselor {
  background-position: -224px 0px;
}
.icons32-arrow-right {
  background-position: -256px 0px;
}
.icons32-arrow-left {
  background-position: -288px 0px;
}
.icons48 {
  display: inline-block;
  background-image: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/icons/icons48.2a081cc6.png);
  background-repeat: no-repeat;
  background-size: 48px 48px;
  width: 48px;
  height: 48px;
  vertical-align: middle;
  overflow: hidden;
}
.icons48-dot {
  background-position: 0px 0px;
}
.icons64 {
  display: inline-block;
  background-image: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/icons/icons64.dd8e946a.png);
  background-repeat: no-repeat;
  background-size: 64px 64px;
  width: 64px;
  height: 64px;
  vertical-align: middle;
  overflow: hidden;
}
.icons64-hrassistant-logo {
  background-position: 0px 0px;
}
/* =============================================== iconfont =============================================== */
@font-face {
  font-family: "iconfont";
  src: url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/iconfont.6bf31643.eot);
  src: url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/iconfont.6bf31643.eot?#iefix) format("eot"), url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/iconfont.21c46827.woff) format("woff"), url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/iconfont.5e517263.ttf) format("truetype"), url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/iconfont.6bb9086a.svg#iconfont) format("svg");
}
.text-icon {
  vertical-align: middle;
  font-family: "iconfont";
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholderui {
  position: absolute;
  color: #a3a3a3;
  white-space: nowrap;
  overflow: hidden;
  cursor: text;
  pointer-events: none;
  z-index: 1;
}
.checkboxui {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  line-height: 0;
  font-size: 0;
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/plugins/jquery-CheckboxUI/checkboxui_bg.68a257a9.png) no-repeat;
  margin-right: 5px;
  cursor: pointer;
}
.checkboxui {
  background-position: 0 0;
}
.checkboxui-checked {
  background-position: 0 -16px;
}
.checkboxui-disabled {
  background-position: 0 -32px;
}
.checkboxui-checked-disabled, .checkboxui-disabled-checked {
  background-position: 0 -48px;
}
/* select ui */
.selectui {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  white-space: nowrap;
  text-align: left;
}
.selectui {
  *display: inline;
}
.selectui .selectui-head {
  position: relative;
  color: #454545;
  border: 1px solid #cdcdcd;
  background-color: #fff;
  overflow: hidden;
}
.selectui.selectui-disabled .selectui-head {
  background-color: #f5f5f5;
}
.selectui .selectui-head .selectui-result {
  cursor: pointer;
}
.selectui .selectui-head .selectui-drop {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/plugins/jquery-SelectUI/drop.e0a6d9eb.png) center center no-repeat;
}
.selectui:hover .selectui-drop {
  right: -1px;
  border-right: 1px solid #cdcdcd;
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/plugins/jquery-SelectUI/drop_hover.20e904ec.png) center center no-repeat #ededed;
}
.selectui .selectui-head .selectui-drop i {
  display: none;
}
.selectui ul {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  border: 1px solid #cdcdcd;
  _overflow: hidden;
}
.selectui ul li {
  line-height: 0;
  font-size: 0;
}
.selectui ul li a {
  display: block;
  background-color: #fafafa;
  text-decoration: none;
  color: #454545;
  _zoom: 1;
}
.selectui ul li a:hover {
  display: block;
  background-color: #d5e9f2;
  text-decoration: none;
}
.selectui ul li.active a, .selectui ul li.active a:hover {
  background-color: #3d9ccc;
  color: #fff;
}
.selectui-active {
  z-index: 10;
}
.selectui-active ul {
  display: block;
}
/* selectui-medium */
.selectui, .selectui ul li a {
  font-size: 12px;
}
.selectui .selectui-head {
  border-radius: 2px;
  line-height: 26px;
}
.selectui .selectui-head .selectui-result, .selectui .selectui-head .selectui-drop {
  height: 26px;
}
.selectui .selectui-head .selectui-result {
  padding: 0 10px;
  margin-right: 20px;
  _height: auto;
}
.selectui .selectui-head .selectui-drop {
  width: 26px;
}
.selectui ul {
  top: 26px;
}
.selectui ul li a {
  padding: 0 27px 0 10px;
  line-height: 28px;
}
/* selectui-mini */
.selectui-mini, .selectui-mini ul li a {
  font-size: 12px;
}
.selectui-mini .selectui-head {
  border-radius: 2px;
  line-height: 18px;
}
.selectui-mini .selectui-head .selectui-result, .selectui-mini .selectui-head .selectui-drop {
  height: 18px;
}
.selectui-mini .selectui-head .selectui-result {
  padding: 0 4px;
  margin-right: 14px;
  _height: auto;
}
.selectui-mini .selectui-head .selectui-drop {
  width: 14px;
}
.selectui-mini .selectui-head .selectui-drop:before, .selectui-mini .selectui-head .selectui-drop:after {
  border-width: 4px;
  left: 3px;
}
.selectui-mini .selectui-head .selectui-drop:before {
  top: 9px;
}
.selectui-mini .selectui-head .selectui-drop:after {
  top: 8px;
}
.selectui-mini .selectui-head .selectui-drop i {
  border-width: 4px;
  top: 9px;
  left: 4px;
}
.selectui-mini ul {
  top: 18px;
}
.selectui-mini ul li a {
  padding: 0 21px 0 4px;
  line-height: 18px;
}
/* selectui-small */
.selectui-small, .selectui-small ul li a {
  font-size: 12px;
}
.selectui-small .selectui-head {
  border-radius: 2px;
  line-height: 20px;
}
.selectui-small .selectui-head .selectui-result, .selectui-small .selectui-head .selectui-drop {
  height: 20px;
}
.selectui-small .selectui-head .selectui-result {
  padding: 0 6px;
  margin-right: 16px;
  _height: auto;
}
.selectui-small .selectui-head .selectui-drop {
  width: 16px;
}
.selectui-small .selectui-head .selectui-drop:before, .selectui-small .selectui-head .selectui-drop:after {
  border-width: 4px;
  left: 4px;
}
.selectui-small .selectui-head .selectui-drop:before {
  top: 10px;
}
.selectui-small .selectui-head .selectui-drop:after {
  top: 9px;
}
.selectui-small .selectui-head .selectui-drop i {
  border-width: 4px;
  top: 10px;
  left: 5px;
}
.selectui-small ul {
  top: 20px;
}
.selectui-small ul li a {
  padding: 0 23px 0 6px;
  line-height: 20px;
}
/* selectui-large */
.selectui-large, .selectui-large ul li a {
  font-size: 14px;
}
.selectui-large .selectui-head {
  border-radius: 2px;
  line-height: 34px;
}
.selectui-large .selectui-head .selectui-result, .selectui-large .selectui-head .selectui-drop {
  height: 34px;
}
.selectui-large .selectui-head .selectui-result {
  padding: 0 6px;
  margin-right: 24px;
  _height: auto;
}
.selectui-large .selectui-head .selectui-drop {
  width: 24px;
}
.selectui-large .selectui-head .selectui-drop:before, .selectui-large .selectui-head .selectui-drop:after {
  border-width: 6px;
  left: 6px;
}
.selectui-large .selectui-head .selectui-drop:before {
  top: 16px;
}
.selectui-large .selectui-head .selectui-drop:after {
  top: 15px;
}
.selectui-large .selectui-head .selectui-drop i {
  border-width: 4px;
  top: 16px;
  left: 7px;
}
.selectui-large ul {
  top: 34px;
}
.selectui-large ul li a {
  padding: 0 31px 0 6px;
  line-height: 34px;
}
/* selectui-xlarge */
.selectui-xlarge, .selectui-xlarge ul li a {
  font-size: 16px;
}
.selectui-xlarge .selectui-head {
  border-radius: 2px;
  line-height: 38px;
}
.selectui-xlarge .selectui-head .selectui-result, .selectui-xlarge .selectui-head .selectui-drop {
  height: 38px;
}
.selectui-xlarge .selectui-head .selectui-result {
  padding: 0 8px;
  margin-right: 24px;
  _height: auto;
}
.selectui-xlarge .selectui-head .selectui-drop {
  width: 28px;
}
.selectui-xlarge .selectui-head .selectui-drop:before, .selectui-xlarge .selectui-head .selectui-drop:after {
  border-width: 6px;
  left: 7px;
}
.selectui-xlarge .selectui-head .selectui-drop:before {
  top: 18px;
}
.selectui-xlarge .selectui-head .selectui-drop:after {
  top: 17px;
}
.selectui-xlarge .selectui-head .selectui-drop i {
  border-width: 4px;
  top: 18px;
  left: 8px;
}
.selectui-xlarge ul {
  top: 38px;
}
.selectui-xlarge ul li a {
  padding: 0 35px 0 8px;
  line-height: 38px;
}
.tipsui {
  position: absolute;
  border: 1px solid #e4e388;
  background-color: #feffea;
  border-radius: 3px;
}
.tipsui .tipsui-content {
  padding: 4px 8px;
  margin-right: 10px;
}
.tipsui a.tipsui-close {
  position: absolute;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  right: 2px;
  top: 2px;
  color: #666666;
  text-decoration: none;
}
.tipsui .tipsui-arrow {
  position: absolute;
  width: 10px;
  height: 10px;
  overflow: hidden;
}
.tipsui .tipsui-arrow i, .tipsui .tipsui-arrow em {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  border-style: solid;
  border-width: 5px;
  border-color: transparent;
  *border-color: white;
  *-webkit-filter: chroma(color=white);
  *        filter: chroma(color=white);
}
.tipsui-left .tipsui-arrow i {
  border-left-color: #e4e388;
  top: 0;
  left: 5px;
}
.tipsui-left .tipsui-arrow em {
  border-left-color: #feffea;
  top: 0;
  left: 4px;
}
.tipsui-right .tipsui-arrow i {
  border-right-color: #e4e388;
  top: 0;
  left: -5px;
}
.tipsui-right .tipsui-arrow em {
  border-right-color: #feffea;
  top: 0;
  left: -4px;
}
.tipsui-bottom .tipsui-arrow i {
  border-bottom-color: #e4e388;
  top: -5px;
  left: 0;
}
.tipsui-bottom .tipsui-arrow em {
  border-bottom-color: #feffea;
  top: -4px;
  left: 0;
}
.tipsui-top .tipsui-arrow i {
  border-top-color: #e4e388;
  top: 5px;
  left: 0;
}
.tipsui-top .tipsui-arrow em {
  border-top-color: #feffea;
  top: 4px;
  left: 0;
}
.loadingui {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
}
.loadingui-a {
  width: 32px;
  height: 8px;
  background-image: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/plugins/jquery-LoadingUI/loading2.48ca8ca7.gif);
}
.loadingui-b {
  width: 16px;
  height: 16px;
  background-image: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/plugins/jquery-LoadingUI/loading1.4f323667.gif);
}
/* vdialog 图标字体 */
@font-face {
  font-family: 'vdfont';
  src: url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/plugins/vdialog/vdfont.351a167d.eot);
  /* IE9*/
  src: url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/plugins/vdialog/vdfont.351a167d.eot?#iefix) format('embedded-opentype'),  url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/plugins/vdialog/vdfont.9b97441f.woff) format('woff'),  url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/plugins/vdialog/vdfont.2d26a8d2.ttf) format('truetype'),  url(//concat.lietou-static.com/fe-lpt-pc/v5/fonts/plugins/vdialog/vdfont.7779c213.svg#vdfont) format('svg');
  /* iOS 4.1- */
}
/* vdialog 主样式 */
.vdialog {
  position: absolute;
  line-height: 1.5em;
  border-radius: 3px;
  -webkit-animation-duration: .3s;
  animation-duration: .3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: vdialogZoomIn;
  animation-name: vdialogZoomIn;
}
.vdialog-fixed {
  position: fixed;
}
@-webkit-keyframes vdialogZoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes vdialogZoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.vdialog .vd-header, .vdialog .vd-footer {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.vdialog .vd-header {
  position: relative;
  z-index: 1;
}
.vdialog .vd-header .vd-title {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.vdialog .vd-header a.vd-close {
  position: absolute;
  text-decoration: none;
}
.vdialog-no-title .vd-header .vd-title {
  display: none;
}
.vdialog .vd-main {
  position: relative;
}
.vdialog .vd-main .vd-icon {
  display: none;
  position: absolute;
  font-family: "vdfont" !important;
  font-style: normal;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.vdialog .vd-main-with-icon .vd-icon {
  display: block;
}
.vdialog .vd-footer {
  display: none;
}
.vdialog .vd-footer:before {
  content: '';
  display: block;
}
.vdialog .vd-footer a.vd-btn {
  display: inline-block;
  text-decoration: none;
}
.vdialog-modal {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
}
/* vdialog 风格控制 */
.vdialog {
  background-color: #fff;
  border: 1px solid #bcbcbc;
}
.vdialog .vd-header .vd-title {
  padding: .8em 2em .8em 1em;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.vdialog .vd-header a.vd-close {
  right: .5em;
  top: 50%;
  padding: 0 .2em;
  margin-top: -0.6em;
  font-size: 1.2em;
  color: #000;
  line-height: 1.1em;
  opacity: .3;
}
.vdialog .vd-header a.vd-close:hover {
  opacity: 1;
}
.vdialog-no-title .vd-header {
  height: 1em;
}
.vdialog-no-title .vd-header a.vd-close {
  top: 1em;
  right: .5em;
}
.vdialog .vd-main .vd-icon {
  left: 15px;
  top: 2px;
  width: 45px;
  font-size: 35px;
  padding: 1em 0;
  margin-top: -5px;
}
.vdialog .vd-main-with-icon {
  padding: 5px 15px 0 50px;
}
.vdialog .vd-main-with-icon .icon-vd-error:before {
  content: "\E600";
  color: #d9534f;
}
.vdialog .vd-main-with-icon .icon-vd-alert:before {
  content: "\E601";
  color: #f0ad4e;
}
.vdialog .vd-main-with-icon .icon-vd-success:before {
  content: "\E602";
  color: #5cb85c;
}
.vdialog .vd-main-with-icon .icon-vd-confirm:before {
  content: "\E603";
  color: #eea237;
}
.vdialog .vd-main-with-icon .icon-vd-toast-success:before {
  content: "\E604";
  color: #eea237;
}
.vdialog .vd-main-with-icon .icon-vd-toast-loading:before {
  content: "\E605";
  color: #eea237;
}
.vdialog .vd-main .vd-content {
  padding: 2em;
  min-width: 8em;
}
.vdialog-no-padding {
  border: 0;
  border-radius: 0;
}
.vdialog-no-padding.vdialog-no-title .vd-header {
  height: 0;
}
.vdialog-no-padding .vd-main .vd-content {
  padding: 0;
}
.vdialog .vd-footer {
  padding: 0 1em 1em;
}
.vdialog .vd-footer:before {
  background-color: #eee;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#eee));
  background-image: -webkit-linear-gradient(left, #fff, #eee);
  background-image: -o-linear-gradient(left, #fff, #eee);
  background-image: linear-gradient(90deg, #fff, #eee);
  height: 1px;
  margin-bottom: 15px;
}
.vdialog .vd-footer-rtl {
  text-align: right;
}
.vdialog .vd-footer-ltr {
  text-align: center;
}
.vdialog .vd-footer-ltr:before {
  background-image: none;
  margin-left: -1em;
  margin-right: -1em;
}
.vdialog .vd-footer a.vd-btn {
  color: #fff;
  margin: 0 .4em;
  padding: .2em .8em;
  border: 1px solid #fff;
  border-radius: 3px;
  background-color: #429cf9;
}
.vdialog .vd-footer a.vd-btn:first-child {
  margin-left: 0;
}
.vdialog .vd-footer a.vd-btn:last-child {
  margin-right: 0;
}
.vdialog .vd-footer a.vd-btn-ok {
  border-color: #3488f7;
  background-color: #429cf9;
}
.vdialog .vd-footer a.vd-btn-cancel {
  color: #333;
  border-color: #c8c8c8;
  background-color: #fff;
}
.vdialog-modal {
  opacity: .6;
  background-color: #000;
}
/* IE6/7 */
.vdialog {
  *padding-top: 3.5em;
}
.vdialog .vd-header {
  *position: absolute;
  *width: 100%;
  *left: 0;
  *top: 0;
}
.vdialog-no-title {
  *padding-top: 1em;
}
.vdialog-modal {
  filter: alpha(opacity=60);
}
/* mobile */
.vdialog-mobile {
  border: 1px solid #e2e2e3;
}
.vdialog-mobile .vd-header {
  padding: 0;
}
.vdialog-mobile .vd-header .vd-title {
  font-size: 1.2em;
  padding: 10px 15px;
  text-align: center;
  border-bottom: 0;
}
.vdialog-mobile .vd-header a.vd-close {
  top: -2px;
  right: -12px;
  font-size: 20px;
  padding: 0;
  width: 25px;
  opacity: 1;
  line-height: 25px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #e2e2e3;
}
.vdialog-mobile .vd-main {
  padding: 0;
}
.vdialog-mobile .vd-main-with-icon {
  padding-left: 3.5em;
}
.vdialog-mobile .vd-main .vd-icon {
  top: -16px;
}
.vdialog-mobile .vd-main .vd-content {
  padding: 0 1em 1em 1em;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 10em;
}
.vdialog-mobile .vd-footer {
  padding: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  text-align: center;
  border-top: 1px solid #e2e2e3;
}
.vdialog-mobile .vd-footer:before {
  display: none;
}
.vdialog-mobile .vd-footer a.vd-btn {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-width: 0 0 0 1px;
  border-color: #e2e2e3;
  margin: 0;
  padding: .6em 0;
  border-radius: 0;
}
.vdialog-mobile .vd-footer a.vd-btn:first-child {
  border-left-width: 0;
  border-bottom-left-radius: 3px;
}
.vdialog-mobile .vd-footer a.vd-btn:last-child {
  border-bottom-right-radius: 3px;
}
.vdialog-mobile .vd-footer a.vd-btn:active {
  background-color: #eee;
}
.vdialog-mobile .vd-footer a.vd-btn-ok {
  background-color: #fff;
  color: #00ad0a;
}
/* toast */
.vdialog-toast {
  border: 0;
  background-color: rgba(0, 0, 0, 0.75);
}
.vdialog-toast .vd-header, .vdialog-toast .vd-footer {
  display: none !important;
}
.vdialog-toast .vd-main .vd-icon {
  position: static;
  text-align: center;
  width: auto;
  font-size: 50px;
  line-height: 2em;
  margin-top: 0;
  padding: 0;
}
.vdialog-toast .vd-main-with-icon {
  margin-top: 0;
  padding: 0;
}
.vdialog-toast .vd-main-with-icon .icon-vd-toast-loading:before, .vdialog-toast .vd-main-with-icon .icon-vd-toast-success:before {
  color: #fff;
}
.vdialog-toast .vd-main-with-icon .icon-vd-toast-loading {
  animation: toast-loading 2s linear infinite;
  -webkit-animation: toast-loading 2s linear infinite;
}
@-webkit-keyframes toast-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes toast-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.vdialog-toast .vd-main .vd-content {
  padding: 0 2em 1em;
  color: #fff;
  text-align: center;
  min-width: 6em;
}
.radioui {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  line-height: 0;
  font-size: 0;
  background: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/plugins/jquery-RadioUI/radioui_bg.5bff94c7.png) no-repeat;
  margin-right: 5px;
  cursor: pointer;
}
.radioui {
  background-position: 0 0;
}
.radioui-checked {
  background-position: 0 -16px;
}
.radioui-disabled {
  background-position: 0 -32px;
}
.radioui-checked-disabled, .radioui-disabled-checked {
  background-position: 0 -48px;
}
table.jCalendar {
  border: 1px solid #c6dbef;
  border-collapse: separate;
  line-height: 18px;
  table-layout: fixed;
}
table.jCalendar th {
  background: #bdebef;
  color: #000;
  padding: 3px 5px;
}
table.jCalendar td {
  color: #000;
  padding: 3px 5px;
  text-align: center;
}
table.jCalendar td.other-month {
  background: #fff;
  color: #aaa;
}
table.jCalendar td.today {
  color: #6b69ff;
}
table.jCalendar td.selected {
  background: #ade7ef;
  color: #333;
}
table.jCalendar td.selected.dp-hover {
  background: #ade7ef;
  color: #333;
}
table.jCalendar td.dp-hover, table.jCalendar tr.activeWeekHover td {
  background: #ade7ef;
  color: #000;
}
table.jCalendar tr.selectedWeek td {
  background: #f66;
  color: #fff;
}
table.jCalendar td.disabled, table.jCalendar td.disabled.dp-hover {
  color: #888;
}
table.jCalendar td.unselectable, table.jCalendar td.unselectable:hover, table.jCalendar td.unselectable.dp-hover {
  background: #bbb;
  color: #888;
}
/* For the popup */
/* NOTE - you will probably want to style a.dp-choose-date - see how I did it in demo.css */
div.dp-popup {
  position: relative;
  background: #fff;
  font-size: 12px;
  padding: 2px;
  width: 171px;
  border: 1px solid #bdbabd;
}
div#dp-popup {
  position: absolute;
  z-index: 2599;
}
div.dp-popup h2 {
  font-size: 12px;
  text-align: center;
  margin: 2px 0;
  padding: 0;
  line-height: 20px;
}
a#dp-close {
  font-size: 11px;
  padding: 4px 0;
  text-align: center;
  display: block;
}
a#dp-close:hover {
  text-decoration: underline;
}
div.dp-popup a {
  color: #000;
  text-decoration: none;
  padding: 3px 2px 0;
}
div.dp-popup div.dp-nav-prev {
  position: absolute;
  top: 2px;
  left: 4px;
  width: 100px;
}
div.dp-popup div.dp-nav-prev a {
  float: left;
}
/* Opera needs the rules to be this specific otherwise it doesn't change the cursor back to pointer after you have disabled and re-enabled a link */
div.dp-popup div.dp-nav-prev a, div.dp-popup div.dp-nav-next a {
  cursor: pointer;
}
div.dp-popup div.dp-nav-prev a.disabled, div.dp-popup div.dp-nav-next a.disabled {
  cursor: default;
}
div.dp-popup div.dp-nav-next {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 100px;
}
div.dp-popup div.dp-nav-next a {
  float: right;
}
div.dp-popup a.disabled {
  cursor: default;
  color: #aaa;
}
div.dp-popup td {
  cursor: pointer;
}
div.dp-popup td.disabled {
  cursor: default;
}
div.dp-popup td.weekend {
  color: #f00;
}
div.dp-popup td.disabled {
  color: #888;
}
div.dp-popup td.other-month {
  color: #888;
}
sup.dp-choose-date {
  cursor: pointer;
  background-image: url(//concat.lietou-static.com/fe-lpt-pc/v5/images/common/icon_pop_selection.d22d0132.png);
  width: 16px;
  height: 16px;
}
