.main {
	margin: 50px auto 90px auto;
}

/* 顶部搜索 */
.service-top-search {
	width: 100%;
	padding: 11px 15px;
    background-color: #fff;
    border-bottom: 1px solid #f3f3f3;
}

.service-top-search-form {
	position: relative;
}

.service-top-search-input {
	width: 100%;
	height: 45px;
	padding: 0 54px 0 16px;
	border: 1px solid #e9e9e9;
	border-radius: 1px;
	background: #fff;
	box-sizing: border-box;
	outline: none;
	font-size: 16px;
	color: #333;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .05);
	transition: .2s;
}

.service-top-search-input::placeholder {
	color: #c8c8c8;
}

.service-top-search-input:focus {
	border-color: #22c55e;
}

.service-top-search-btn {
	position: absolute;
	right: 0;
	top: 0;
	width: 54px;
	height: 50px;
	border: 0;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #8b8b8b;
	font-size: 16px;
	padding: 0;
}

.service-top-search-btn i {
    transform: translateY(-2px);
}

.service-top-search-btn:active {
	transform: scale(.95);
}

/* ===========================
   筛选
=========================== */
.by-job-filter-box {
	background: #fff;
	border: 1px solid #efefef;
	padding: 16px 15px 15px 15px
}

.by-job-filter-row {
	display: flex;
	align-items: flex-start
}

.by-job-filter-title {
	width: 70px;
	padding-top: 11px;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center
}

.by-job-filter-title i {
	margin-right: 5px;
	color: #00b578
}

.by-job-filter-select {
	flex: 1;
	position: relative
}

.by-job-filter-current {
	height: 46px;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer
}

.by-job-filter-current-text {
	font-size: 15px
}

.by-job-filter-current i {
	transition: .25s
}

.by-job-filter-select.open .by-job-filter-current i {
	transform: rotate(180deg)
}

.by-job-filter-dropdown {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 54px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 5px;
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	max-height: 300px;
	overflow: auto;
	z-index: 99
}

.by-job-filter-select.open .by-job-filter-dropdown {
	display: block
}

.by-job-filter-dropdown ul {
	list-style: none
}

.by-job-filter-dropdown a {
	display: block;
	padding: 14px 16px;
	text-decoration: none;
	color: #333
}

.by-job-filter-dropdown a.active, .by-job-filter-dropdown a:hover {
	background: #eef8f0;
	color: #00b578
}

/* ===========================
   招聘列表
=========================== */

.job-list {
	width: auto;
	margin: 10px 0 15px 0;
	background: #fff;
	overflow: hidden;
	box-shadow: none;
	border: 1px solid #f2f2f2;
}

.job-list .job-zuixin-title {
	padding: 16px 0 16px 15px;
	font-weight: bold;
	font-size: 17px;
	border-bottom: 1px solid #f3f3f3;
}

.job-list ul {
	list-style: none;
}

.job-list-item {
	border-bottom: 1px solid #f3f3f3;
}

.job-list-item:last-child {
	border-bottom: none;
}

.job-list-item>a {
	display: block;
	padding: 14px 15px 17px 15px;
	color: inherit;
	text-decoration: none;
}

/* 标题 */

.job-list-title {
	font-size: 18px;
	line-height: 1.6;
	color: #222;
}

/* 薪资 */

.job-list-salary {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #ff5b22;
    margin-top: -2px;
}

/* 底部 */

.job-list-bottom {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	justify-content: space-between;
	align-items: flex-start;
	font-size: 15px;
	color: #888;
}

.job-list-left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 13px;
}

.job-list-city {
	display: flex;
	align-items: center;
}

.job-list-city i {
	margin-right: 4px;
	font-size: 13px;
	color: #999;
}

.job-list-sep {
	display: none;
}

.job-list-position {
	color: #666;
}

.job-list-time {
	color: #999;
	white-space: nowrap;
}