/* 查询 */

.rcw-seek {
	padding: 24px 0;
	border-top: 1px solid #eee;
	background: #fff;
}


/* 查询 - 搜索 */

.rcw-seek .search {
	position: relative;
	width: 1200px;
	height: 50px;
	margin: 0 auto 20px;
}

.rcw-seek .search .form {
	float: left;
	height: 46px;
	padding: 2px;
	border-radius: 10px;
	background-color: #f70;
}

.rcw-seek .search .form input[type='text'] {
	float: left;
	width: 1020px;
	height: 24px;
	padding: 11px 18px;
	border: 0;
	border-radius: 8px;
	background-color: #fff;
	font-size: 16px;
	color: #414a60;
	line-height: 24px;
}

.rcw-seek .search .form input[type='text']::placeholder {
	color: #999;
}

.rcw-seek .search .form input[type='button'] {
	float: left;
	width: 140px;
	height: 46px;
	padding: 0;
	border: 0;
	background-color: #f70;
	font-size: 20px;
	color: #fff;
}

.rcw-seek .search .history {
	position: absolute;
	top: 50px;
	left: 0px;
	z-index: 99;
	width: 1018px;
	padding: 14px 20px 16px;
	border-radius: 12px;
	background-color: #fff;
	box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .08);
}

.rcw-seek .search .history p {
	padding: 8px 0;
	font-size: 12px;
	line-height: 16px;
	overflow: hidden;
}

.rcw-seek .search .history p span {
	float: left;
	color: #757575;
}

.rcw-seek .search .history p a {
	float: right;
	color: #999;
}

.rcw-seek .search .history p a:hover {
	color: #f70;
}

.rcw-seek .search .history ul {
	overflow: hidden;
	margin-left: -6px;
	margin-right: -6px;
}

.rcw-seek .search .history ul li {
	float: left;
	padding: 2px 8px;
	border-radius: 4px;
	margin: 4px 6px;
	background-color: #f8f8f8;
	font-size: 14px;
	color: #666;
	line-height: 20px;
	word-break: break-all;
	cursor: pointer;
}

.rcw-seek .search .history ul li:hover {
	background-color: #f70;
	color: #fff;
}


/* 查询 - 筛选 */

.rcw-seek .filter {
	position: relative;
	width: 1190px;
	padding: 0 5px;
	margin: 0 auto;
}

.rcw-seek .filter p {
	position: absolute;
	bottom: 0;
	right: 5px;
}

.rcw-seek .filter p a {
	font-size: 14px;
	color: #999;
	line-height: 26px;
	text-decoration: none;
}

.rcw-seek .filter p a:hover {
	color: #f50;
	text-decoration: none;
}

.rcw-seek .filter dl {
	font-size: 14px;
	color: #333;
	line-height: 26px;
	overflow: hidden;
}

.rcw-seek .filter dl+dl {
	margin-top: 12px;
}

.rcw-seek .filter dl dt {
	float: left;
	width: 70px;
}

.rcw-seek .filter dl dd {
	float: left;
	width: calc(100% - 70px);
	overflow: hidden;
}

.rcw-seek .filter dl dd span {
	margin: 0 8px;
	white-space: nowrap;
	cursor: pointer;
}

.rcw-seek .filter dl dd span:hover,
.rcw-seek .filter dl dd span.active {
	color: #f60;
}

.rcw-seek .filter dl dd span.active {
	font-weight: bold;
}


/* 通用 */

.rcw-main {
	width: 1200px;
	margin: 20px auto 0;
	zoom: 1;
}

.rcw-main::after {
	content: "";
	display: block;
	visibility: hidden;
	height: 0;
	clear: both;
}


/* 结果 */

.rcw-main .result {
	float: left;
	width: 865px;
}

.rcw-main .result .list {
	zoom: 1;
}

.rcw-main .result .list::after {
	content: "";
	display: block;
	visibility: hidden;
	height: 0;
	clear: both;
}

.rcw-main .result .list .empty {
	padding: 240px 0 50px;
	background: url('/img/job-firm/empty_pic.png') no-repeat center 40px;
	text-align: center;
}

.rcw-main .result .list .empty em {
	font-size: 16px;
	color: #999;
}

.rcw-main .result .list .loading {
	padding: 100px 0;
}

.rcw-main .result .list .loading .box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 114px;
	padding-top: 6px;
	border-radius: 10px;
	margin: 0 auto;
	background-color: rgba(0, 0, 0, .4);
}

.rcw-main .result .list .loading .box span {
	padding: 20px 0 0 6px;
	font-size: 16px;
	color: #fff;
	line-height: 1;
}

.rcw-main .result .list .loading .box i {
	width: 20px;
	height: 20px;
	border: 2px solid #fff;
	border-top-color: transparent;
	border-right-color: transparent;
	border-radius: 50%;
	transform: translateZ(0);
	-webkit-animation: refresh-rotate 1s linear infinite;
	animation: refresh-rotate 1s linear infinite;
}

@keyframes refresh-rotate {
	0% {
		transform: rotateZ(0deg);
		-moz-transform: rotate(0deg);
	}
	100% {
		transform: rotateZ(360deg);
		-moz-transform: rotate(360deg);
	}
}

.rcw-main .result .list .firm {
	float: left;
	width: 279px;
	height:223px;
	border-radius: 10px;
	margin-right: 14px;
	margin-bottom: 14px;
	background-color: #fff;
	overflow: hidden;
}

.rcw-main .result .list .firm:nth-child(3n) {
	margin-right: 0;
}

.rcw-main .result .list .firm.top-fixed {
	background: url('/img/job-firm/fixed_top.png') no-repeat right top #fff;
}

.rcw-main .result .list .firm:hover {
	box-shadow: 0 6px 16px 0 hsla(0, 0%, 60%, .2);
}

.rcw-main .result .list .firm a {
	display: block;
	padding: 20px;
	text-decoration: none !important;
}

.rcw-main .result .list .firm .logo {
	width: 66px;
	height: 66px;
	border: solid 1px #f2f2f2;
	border-radius: 8px;
	margin: 0 90px 16px;
	overflow: hidden;
}

.rcw-main .result .list .firm .logo img {
	display: block;
	width: 100%;
	height: 100%;
}

.rcw-main .result .list .firm .name,
.rcw-main .result .list .firm .info {
	margin-bottom: 16px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.rcw-main .result .list .firm .name b {
	font-size: 16px;
	font-weight: 700;
	color: #333;
}

.rcw-main .result .list .firm .info span,
.rcw-main .result .list .firm .info i {
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	color: #666;
}

.rcw-main .result .list .firm .info i {
	padding: 0 3px;
}

.rcw-main .result .list .firm .count {
	height: 34px;
	border: 1px solid #ddd;
	border-radius: 5px;
	margin: 0 20px;
	line-height: 32px;
	text-align: center;
}

.rcw-main .result .list .firm .count span {
	font-size: 14px;
	color: #f70;
}

.rcw-main .result .list .firm .count span+span {
	color: #666;
}

.rcw-main .result .pages {
	padding: 24px 0;
	text-align: center;
}


/* 主体 - 侧栏 */

.rcw-main .sider {
	float: right;
	width: 320px;
}

.rcw-main .sider .sign {
	position: relative;
	padding: 0 12px;
	border-radius: 10px;
	margin-bottom: 15px;
	background: -webkit-linear-gradient(#f70, #fff);
	background: -o-linear-gradient(#f70, #fff);
	background: -moz-linear-gradient(#f70, #fff);
	background: linear-gradient(#f70, #fff);
}

.rcw-main .sider .sign i {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background: url('/img/job-firm/pc_qrcode_ico.png') no-repeat;
	cursor: pointer;
}

.rcw-main .sider .sign i.pc {
	background-position: 0 0;
}

.rcw-main .sider .sign i.pc:hover {
	background-position: 0 -50px;
}

.rcw-main .sider .sign i.qrcode {
	background-position: 0 -100px;
}

.rcw-main .sider .sign i.qrcode:hover {
	background-position: 0 -150px;
}

.rcw-main .sider .sign h3 {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	line-height: 54px;
	letter-spacing: 2px;
	text-align: center;
}

.rcw-main .sider .sign ul,
.rcw-main .sider .sign p {
	padding: 22px 18px 5px;
	border: 1px solid #f7fdfd;
	border-radius: 8px 8px 0 0;
	background: -webkit-linear-gradient(180deg, rgba(245, 252, 252, .8), #fcfbfa);
	background: -o-linear-gradient(180deg, rgba(245, 252, 252, .8), #fcfbfa);
	background: -moz-linear-gradient(180deg, rgba(245, 252, 252, .8), #fcfbfa);
	background: linear-gradient(180deg, rgba(245, 252, 252, .8), #fcfbfa);
	backdrop-filter: blur(7px);
}

.rcw-main .sider .sign img {
	display: block;
	width: 140px;
	height: 140px;
	border: 10px solid #fff;
	border-radius: 8px;
	margin: 0 auto;
}

.rcw-main .sider .sign span {
	display: block;
	margin: 20px 0 21px;
	font-size: 14px;
	color: #333;
	line-height: 1;
	text-align: center;
}

.rcw-main .sider .sign li {
	position: relative;
	padding-bottom: 22px;
	overflow: hidden;
}

.rcw-main .sider .sign input[type="text"] {
	float: left;
	width: calc(100% - 30px);
	height: 20px;
	padding: 8px 14px;
	border: 1px solid #fff;
	border-radius: 6px;
	background-color: #fff;
	font-size: 14px;
	color: #333;
	line-height: 20px;
}

.rcw-main .sider .sign input[type="text"]::placeholder {
	color: #aaa;
}

.rcw-main .sider .sign li:nth-child(2) input[type="button"] {
	position: absolute;
	top: 1px;
	right: 14px;
	z-index: 5;
	height: 36px;
	border: 0;
	background-color: #fff;
	font-size: 14px;
	color: #f80;
}

.rcw-main .sider .sign li:nth-child(3) input[type="button"] {
	float: left;
	width: 100%;
	height: 38px;
	border-radius: 6px;
	border: 0;
	background-color: #f70;
	font-size: 15px;
	color: #fff;
}

.rcw-main .sider .sign input[type="checkbox"],
.rcw-main .sider .sign label,
.rcw-main .sider .sign a {
	float: left;
	font-size: 12px;
	color: #999;
	line-height: 13px;
}

.rcw-main .sider .sign input[type="checkbox"] {
	margin: 0 6px 0 9px;
}

.rcw-main .sider .sign a {
	color: #f70;
	text-decoration: none;
}

.rcw-main .sider .hot {
	padding: 24px 20px 15px;
	border-radius: 10px;
	margin-bottom: 15px;
	background-color: #fff;
}

.rcw-main .sider .hot h3 {
	position: relative;
	height: 20px;
	padding-bottom: 30px;
	font-size: 18px;
	font-weight: bold;
	color: #222;
	line-height: 20px;
}

.rcw-main .sider .hot h3::after {
	content: '';
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 20px;
	height: 2px;
	background-color: #f70;
}

.rcw-main .sider .hot li {
	height: 18px;
	padding: 14px 1px;
}

.rcw-main .sider .hot li+li {
	border-top: 1px dashed #eee;
}

.rcw-main .sider .hot li::before {
	float: left;
	width: 18px;
	height: 18px;
	border-radius: 3px;
	margin-right: 12px;
	background-color: #e8e8e8;
	font-size: 12px;
	color: #888;
	line-height: 18px;
	text-align: center;
}

.rcw-main .sider .hot li:nth-child(1)::before {
	content: "\0031";
	background-color: #f80;
	color: #fff;
}

.rcw-main .sider .hot li:nth-child(2)::before {
	content: "\0032";
	background-color: #f80;
	color: #fff;
}

.rcw-main .sider .hot li:nth-child(3)::before {
	content: "\0033";
	background-color: #f80;
	color: #fff;
}

.rcw-main .sider .hot li:nth-child(4)::before {
	content: "\0034";
}

.rcw-main .sider .hot li:nth-child(5)::before {
	content: "\0035";
}

.rcw-main .sider .hot li:nth-child(6)::before {
	content: "\0036";
}

.rcw-main .sider .hot li:nth-child(7)::before {
	content: "\0037";
}

.rcw-main .sider .hot li:nth-child(8)::before {
	content: "\0038";
}

.rcw-main .sider .hot li:nth-child(9)::before {
	content: "\0039";
}

.rcw-main .sider .hot li:nth-child(10)::before {
	content: "\0031\0030";
}

.rcw-main .sider .hot li a {
	float: left;
	width: calc(100% - 30px);
	height: 18px;
	font-size: 15px;
	color: #333;
	line-height: 18px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.rcw-main .sider .hot li a:hover {
	color: #f70;
	text-decoration: none;
}

.rcw-main .sider .promotion {
	margin-bottom: 15px;
}

.rcw-main .sider .promotion li+li {
	margin-top: 15px;
}

.rcw-main .sider .promotion a,
.rcw-main .sider .promotion img {
	display: block;
	border-radius: 10px;
}

.rcw-main .sider .listjszp {
	padding: 24px 20px;
	border-radius: 10px;
	margin-bottom: 15px;
	background-color: #fff;
}

.rcw-main .sider .listjszp p {
	position: relative;
	height: 20px;
	padding-bottom: 30px;
	line-height: 20px;
}

.rcw-main .sider .listjszp p::after {
	content: '';
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 20px;
	height: 2px;
	background-color: #f70;
}

.rcw-main .sider .listjszp p b {
	float: left;
	font-size: 18px;
	font-weight: bold;
	color: #222;
}

.rcw-main .sider .listjszp p a {
	float: right;
	font-size: 14px;
	color: #666;
	text-decoration: none;
}

.rcw-main .sider .listjszp p a:hover {
	color: #333;
}

.rcw-main .sider .listjszp ul {
	padding-top: 4px;
}

.rcw-main .sider .listjszp li {
	position: relative;
	padding-left: 12px;
	font-size: 15px;
	line-height: 1;
	overflow: hidden;
}

.rcw-main .sider .listjszp li+li {
	margin-top: 15px;
}

.rcw-main .sider .listjszp li::before {
	content: '';
	position: absolute;
	left: 1px;
	top: 50%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	margin-top: -2px;
	background-color: #ccc;
}

.rcw-main .sider .listjszp li a {
	float: left;
	max-width: 280px;
	color: #333;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.rcw-main .sider .listjszp li a.new {
	max-width: 240px;
	padding-right: 30px;
	background: url('/img/new2/new_ico.gif') no-repeat right center;
}

.rcw-main .sider .listjszp li a:hover {
	color: #f70;
}

.rcw-main .sider .listjszp li a.red {
	color: #de1812;
}