.main {
	margin: 50px auto 100px 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-row:first-child {
	margin-bottom: 10px;
}

.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
}

/* 二手列表（手机版） */
.used-list {
    width: 100%;
    padding: 0 15px 20px 15px;
    margin: 10px auto 15px;
    box-sizing: border-box;
	background-color: #fff;
}

.used-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px 10px;
    padding: 0;
    margin: 0;
}

.used-list li {
    min-width: 0;
}

.used-item-link {
    display: block;
    text-decoration: none;
    color: #333;
}

.used-item-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 2px;
    background: #f5f5f5;
}

.used-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.used-item-price {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    color: #333;
}

.used-item-title {
    margin-top: 9px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.used-item-area {
    margin-top: 6px;
    font-size: 12px;
    color: #999;
}

.used-zuixin-title {
    padding: 16px 0 16px 0;
    font-weight: bold;
    font-size: 17px;
    border-top: 1px solid #f3f3f3;
}