.popup_mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 100;
}

/*地区、职位类通用弹出框*/
.popup_select {
  background: #fff;
  border-radius: 12px;
  position: absolute;
  width: 880px;
  overflow: hidden;
  z-index: 101;
}
/*弹框头部*/
.popup_top {
  width: 100%;
  position: relative;
  height: 70px;
  background: #FFFFFF;
  padding: 0 32px;
}
.popup_top .h {
  display: block;
  float: left;
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  padding: 24px 0;
}
.popup_top .pop_search {
  display: block;
  float: left;
  margin-left: 32px;
  margin-top: 18px;
  position: relative;
}
.popup_top .pop_search .key_input {
  width: 280px;
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #EDEFF2;
  padding: 0 40px 0 16px;
}
.popup_top .pop_search .search_btn {
  display: block;
  content: '';
  width: 40px;
  height: 32px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.popup_top .pop_search .search_btn::after {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background: url('../img/icon_search_gray.png') center no-repeat;
  background-size: contain;
  margin: 8px auto;
}

.popup_top .pop_search input.key_input::-webkit-input-placeholder {
  color: #AFB3BA;
}

/*WebKit browsers*/
.popup_top .pop_search input.key_input::-moz-input-placeholder {
  color: #AFB3BA;
}

/*Mozilla Firefox*/
.popup_top .pop_search input.key_input:-moz-input-placeholder {
  color: #AFB3BA;
}

/*Mozilla Firefox*/
.popup_top .pop_search input.key_input:-ms-input-placeholder {
  color: #AFB3BA;
}
.popup_top .popup_close {
  display: block;
  float: right;
  width: 24px;
  height: 24px;
  margin-top: 23px;
  border-radius: 6px;
  position: relative;
}
.popup_top .popup_close:hover {
  background: #F5F6F7;
}
.popup_top .popup_close::after {
  background: url('../img/btn_close1.png') center no-repeat;
  background-size: contain;
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.popup_center {
  height: 400px;
}
.popup_center *::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 6px;
  border-radius: 4px;
}
.popup_center *::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 4px;
  background: rgba(124, 128, 135, 0.3);
}
.popup_center *::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 4px;
}

.popup_center .c_left {
  display: block;
  float: left;
  width: 200px;
  height: 100%;
  overflow-y: auto;
  background: #F5F6F7;
  padding: 8px 16px;
}
.popup_center .c_left.c_left_m {
  background: #fff;
  border-right: 1px solid #EDEFF2;
}
.popup_center .c_left a {
  display: block;
  line-height: 22px;
  padding: 9px 36px 9px 16px;
  color: #222222;
  font-size: 14px;
  border-radius: 8px;
  position: relative;
}
.popup_center .c_left a:hover {
  background: #EDEFF2;
}
.popup_center .c_left a.active,
.popup_center .c_left a.active:hover {
  font-weight: 700;
  background: #fff;
  color: #EF8B00;
}
.popup_center .c_left a.checked::after {
  display: block;
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FFD74D;
  border-radius: 3px;
  top: 50%;
  margin-top: -3px;
  right: 12px;
}
.popup_center .c_right {
  display: block;
  float: right;
  height: 100%;
  padding: 8px 32px 8px 16px;
  overflow-y: auto;
  background: #fff;
}
.popup_center .c_right table {
  width: 100%;
  table-layout: fixed;
}
.popup_center .c_right th span,
.popup_center .c_right td a {
  display: block;
  text-align: left;
  color: #222222;
  padding: 8px 16px;
}
.popup_center .c_right td a {
  display: block;
  line-height: 40px;
  font-size: 14px;
  line-height: 22px;
  position: relative;
}
.popup_center .c_right td a:hover {
  background: #F5F6F7;
  border-radius: 8px;
}
.popup_center .c_right td a.checked {
  color: #EF8B00;
  font-weight: 700;
}
.popup_center .c_right th span {
  font-size: 16px;
  position: relative;
}
.popup_center .c_right td a span {
  position: relative;
}
.popup_center .c_right td a.checked span::after {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background: url('../img/selected_orange.png') center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: -24px;
}

.popup_bottom {
  width: 100%;
  height: 68px;
  background: #FFFFFF;
  border-top: 1px solid #EDEFF2;
  padding: 16px 32px;
  text-align: right;
}
.popup_bottom .pop-btn {
  display: inline-block;
  line-height: 20px;
  text-align: center;
  border-radius: 8px;
  color: #222222;
  font-size: 14px;
  padding: 8px 24px;
}
.popup_bottom .pop-btn_ok {
  background: #FFD74D;
}
.popup_bottom .pop-btn_cancel {
  background: #EDEFF2;
  margin-right: 16px;
}

.popup_storage {
  width: 100%;
  border-top: 1px solid #EDEFF2;
  border-bottom: 1px solid #EDEFF2;
  padding: 12px 112px 12px 26px;
  position: relative;
}
.popup_storage .sitem {
  display: block;
  float: left;
}
.popup_storage .sitem a {
  display: block;
  float: left;
  line-height: 30px;
  background: #FFFBEC;
  border-radius: 6px;
  border: 1px solid #FFECAD;
  margin: 4px 6px;
  padding: 0 32px 0 12px;
  color: #EF8B00;
  position: relative;
}
.popup_storage .sitem a::after {
  display: block;
  content: '';
  background: url('../img/btn_close_16.png') center no-repeat;
  background-size: contain;
  position: absolute;
  width: 16px;
  height: 16px;
  right: 8px;
  top: 50%;
  margin-top: -8px;
}
.popup_storage .snum {
  display: block;
  float: left;
  line-height: 32px;
  font-size: 14px;
  color: #222222;
  position: relative;
  margin: 4px 16px 0 0;
}
.popup_storage .snum .count {
  color: #EF8B00;
}
/*账号绑定 - 信息提示等通用类弹窗*/
.popup_user_bind {
  background: #fff;
  border-radius: 12px;
  padding: 40px 48px 32px;
  position: fixed;
  top: 50%;
  margin-top: -190px;
  left: 50%;
  margin-left: -220px;
  overflow: hidden;
  z-index: 101;
}
.popup_user_bind .popup_close {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  position: absolute;
  top: 12px;
  right: 12px;
}
.popup_user_bind .popup_close:hover {
  background: #F5F6F7;
}
.popup_user_bind .popup_close::after {
  background: url('../img/btn_close1.png') center no-repeat;
  background-size: contain;
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.popup_user_bind .bind_msg {
  display: block;
  width: 344px;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  line-height: 21px;
  text-align: center;
}
.popup_user_bind .bind_code {
  display: block;
  margin: 32px auto;
  width: 144px;
  height: 144px;
  border-radius: 12px;
  border: 2px solid #FFD74D;
  padding: 12px;
}
.popup_user_bind .bind_code img {
  width: 100%;
  height: 100%;
  background: #F5F6F7;
}
.popup_user_bind .popup_btn_close {
  display: block;
  margin: 0 auto;
  width: 88px;
  width: fit-content;
  padding: 0 21px;
  line-height: 36px;
  height: 36px;
  background: #FFD74D;
  color: #222;
  border-radius: 8px;
}
.popup_user_bind .popup_btn_close:hover {
  background: #FFBF00;
}

/*升级弹窗*/
.popup_upgrade {
  width: 398px;
  height: 508px;
  background: #FFFFFF url('../img/upgradepop_bg@2x.png') top left no-repeat;
  background-size: 188px 160px;
  border-radius: 24px;
  position: fixed;
  top: 50%;
  margin-top: -254px;
  left: 50%;
  margin-left: -199px;
  padding: 48px 32px;
  z-index: 101;
}
.popup_upgrade .h_dec {
  display: block;
  position: absolute;
  top: -11px;
  right: -20px;
}
.popup_upgrade .upgrade_msg {
  padding: 22px 0 40px;
}
.popup_upgrade .upgrade_msg p {
  margin-top: 20px;
  padding: 4px 0 4px 72px;
  position: relative;
}
.popup_upgrade .upgrade_msg p em {
  display: block;
  content: '';
  width: 56px;
  height: 56px;
  position: absolute;
  top: 50%;
  margin-top: -28px;
  left: 0;
}
.popup_upgrade .upgrade_msg p .icon1 {
  background: url('../img/upgradepop_icon_efficient@2x.png') center no-repeat;
  background-size: contain;
}
.popup_upgrade .upgrade_msg p .icon2 {
  background: url('../img/upgradepop_icon_accurate@2x.png') center no-repeat;
  background-size: contain;
}
.popup_upgrade .upgrade_msg p .icon3 {
  background: url('../img/upgradepop_icon_diverse@2x.png') center no-repeat;
  background-size: contain;
}
.popup_upgrade .upgrade_msg p b {
  display: block;
  color: #222;
  font-size: 16px;
}
.popup_upgrade .upgrade_msg p span {
  display: block;
  color: #7C8087;
  margin-top: 4px;
  font-size: 14px;
}
.popup_upgrade .upgrade_btn {
  display: block;
  width: 254px;
  height: 40px;
  line-height: 40px;
  background: #FFD74D;
  border-radius: 8px;
  color: #222222;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
  cursor: pointer;
}
.popup_upgrade .upgrade_btn:hover {
  background: #FFBF00;
}
.popup_toast {
  background: #FFFFFF;
  box-shadow: 0px 4px 12px 0px rgba(76,79,84,0.26);
  border-radius: 8px;
  max-width: 360px;
  padding: 16px 32px;
  position: absolute;
  z-index: 999;
}
.popup_toast .warn {
  line-height: 24px;
  padding-left: 36px;
  font-size: 16px;
  font-weight: 400;
  color: #222222;
  position: relative;
}
.popup_toast .warn::after {
  display: block;
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: url('../img/message_warning.png') center no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -12px;
  left: 0;
}
.reg_result {
  position: absolute;
  padding: 8px;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 2px 12px 0px rgba(0,0,0,0.08);
  border-radius: 12px;
  z-index: 10;
  overflow-y: auto;
}
.reg_result .match_error {
  display: block;
  padding: 8px 16px;
  color: #AFB3BA;
  font-size: 14px;
  line-height: 22px;
}
.reg_result a {
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 0 16px;
}
.reg_result a:hover {
  background: #F5F6F7;
  border-radius: 8px;
}
.reg_result a.checked,
.reg_result a em {
  color: #EF8B00;
}
.reg_result .cascade1 {
  line-height: 36px;
  height: 36px;
  color: #222222;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.reg_result .cascade3 {
  display: block;
  padding: 12px 16px;
  width: 100%;
  color: #222222;
}
.reg_result .cascade3 span {
  display: block;
  line-height: 22px;
  width: 100%;
  margin-top: 2px;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.reg_result .cascade3 span.sub {
  color: #999999;
  font-size: 12px;
}

.reg_result::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 6px;
  border-radius: 4px;
}
.reg_result::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 4px;
  background: rgba(124, 128, 135, 0.3);
}
.reg_result::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 4px;
}
.reg_result .reg_result_sec {
  padding: 8px 12px;
  position: relative;
  font-size: 14px;
  font-weight: 400;
}
.reg_result .reg_result_sec p::after {
  display: block;
  content: '';
  clear: both;
}
.reg_result .reg_result_sec p {
  margin-left: -8px;
}
.reg_result .reg_result_sec p:first-child {
  margin-left: 8px;
}
.reg_result .reg_result_sec .reg_tit {
  display: block;
  float: left;
  font-weight: 600;
  color: #222222;
  line-height: 22px;
}
.reg_result .reg_result_sec .reg_btn {
  display: block;
  float: right;
  color: #AFB3BA;
  line-height: 22px;
  cursor: pointer;
}
.reg_result .reg_result_sec .reg_btn:hover {
  color: #4C4F54;
}
.reg_result .reg_result_sec .reg_item {
  display: block;
  float: left;
  line-height: 32px;
  background: #F5F6F7;
  border-radius: 6px;
  padding: 0 12px;
  color: #4C4F54;
  margin-left: 8px;
  margin-top: 12px;
  cursor: pointer;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.reg_result .reg_result_sec .reg_item:hover {
  background: #FFF4DE;
  color: #EF8B00;
}

/* app下载 */
.app_download {
	position: fixed;
	width: 100%;
	min-width: 1200px;
	height: 190px;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 10;
	background: url(../img/download_bg@2x.png) center no-repeat;
	background-size: 100% 100%;
}

.app_download .in {
	position: relative;
	width: 1184px;
	height: 100%;
	padding: 19px 66px 0;
	box-sizing: border-box;
}

.app_download .left, .app_download .center {
	float: left;
}

.app_download .center {
	padding-top: 16px;
	margin: 0 93px 0 23px;
}

.app_download .center img {
	display: block;
}

.app_download .txt {
	display: inline-block;
	line-height: 30px;
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	margin-top: 6px;
	padding: 4px 12px;
	background: #383838;
  min-width: 321px;
  text-align: center;
}

.app_download .txt span {
	color: #77E6E1;
	font-size: 24px;
	padding: 0 10px;
}

.app_download .close {
	position: absolute;
	right: 100px;
	top: 20px;
	font-size: 14px;
	color: #AFB3BA;
	cursor: pointer;
}