@charset "utf-8";

.searchBox {
	background: #eeeeee;
	margin-bottom: 30px;
	padding: 10px;
	display: table;
	width: 100%;
	table-layout: fixed;
}

.searchBox>* {}

.searchTxt {
	background-color: #fff;
	border: 2px solid #dbdbdb;
	width: 70%;
	border-right: none;
	padding: 11px 8px;
	font-size: 1.4rem;
}

.searchBtn {
	width: 30%;
	background: #000;
	border: 2px solid #000;
	padding: 11px 15px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	font-size: 1.4rem;
}

.searchResult {
	margin-bottom: 60px;
}

.searchResult dt {
	margin-bottom: 10px
}

.searchResult dd {
	margin-bottom: 30px;
}


.searchPagerList {
	overflow: hidden;
	text-align: center;
	display: table;
	width: 100%;
	table-layout: fixed;
}

.searchPagerList li {
	position: relative;
	display: table-cell;
	vertical-align: middle;
}

.searchPagerListPrevAll {
	float: left;
	background: #fff;
	border: 1px solid #999999;
}

.searchPagerListPrev {
	float: left;
	background: #fff;
	border: 1px solid #999999;
}

.searchPagerListPrevAll {
	margin-right: 10px;
}

.searchPagerListPrevAll a,
.searchPagerListPrev a,
.searchPagerListNext a {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}

.searchPagerListPrevAll a span,
.searchPagerListPrev a span,
.searchPagerListNext a span {
	display: none;
}

.searchPagerListNext {
	float: right;
	background: #fff;
	border: 1px solid #999999;
}

.searchPagerListPrevAll a:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	margin-left: -5px;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

.searchPagerListPrevAll a:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	margin-left: 1px;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

.searchPagerListPrev a:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	margin-left: -2px;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

.searchPagerListNext a:before {
	content: '';
	position: absolute;
	top: 50%;
	right: 50%;
	width: 6px;
	height: 6px;
	margin-top: -4px;
	margin-right: -2px;
	border-top: 1px solid #999999;
	border-right: 1px solid #999999;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.searchPagerListPrevAll.is-none {
	display: none;
}

.searchPagerListPrev.is-none,
.searchPagerListNext.is-none {
	visibility: hidden;
}

.searchPagerCurrent {
	display: inline-block;
	margin-right: 5px;
}

.searchPagerTotal {
	display: inline-block;
	margin-left: 5px;
}


@media print,
screen and (min-width: 768px) {
	.searchBox {
		background: #eeeeee;
		margin-bottom: 60px;
		padding: 20px 50px;
		display: block;
		text-align: center;
	}
	.searchBox>* {
		display: inline-block;
	}

	.searchTxt {
		border: 2px solid #dbdbdb;
		width: 400px;
		font-size: 1.6rem;
	}

	.searchBtn {
		width: 130px;
		background: #000;
		border: 2px solid #000;
		padding: 11px 32px;
		font-weight: bold;
		color: #fff;
		text-align: center;
		font-size: 1.6rem;
	}
	.searchBtn:hover{
		background: #fff;
		color:#000;
	}

	.tpl-pagerList {
		width: 80%;
		margin: 0 auto;
	}
	.searchPagerListPrevAll a,
	.searchPagerListPrev a,
	.searchPagerListNext a {
		width: 50px;
		height: 50px;
	}
	.searchPagerListPrevAll a:hover,
	.searchPagerListPrev a:hover,
	.searchPagerListNext a:hover {
		background: #000;
	}
	.searchPagerListPrevAll a:hover:before,
	.searchPagerListPrevAll a:hover:after,
	.searchPagerListPrev a:hover:before,
	.searchPagerListNext a:hover:before {
		border-color: #fff;
	}
}