﻿.hidden {
	visibility: hidden;
}

.ebay-block {
	position: relative;
	height: 150px;
	width: 300px;
	background-color: #dcdbe0;
	box-sizing: border-box;
	font-family: Arial, Helvetica, Tahoma, Verdana, "微軟正黑體", "Microsoft JhengHei", "微软雅黑", "Microsoft YaHei", "华文细黑", STXihei,  sans-serif;
	margin: 0 auto;
	overflow: hidden;
	padding: 10px 30px;
}
.ebay-block.double {
	width: 600px;
	background-position: 95% 94%;
}
.ebay-block.double .ebay-auction {
	width: 50%;
}
.ebay-block-logo {
	height: auto;
	position: absolute;
	right: 5%;
	bottom: 5%;
	width: 55px;
	z-index: 20;
}
.ebay-block-logo img { width: 100%; }

@media only screen and (max-width: 740px) {
	.ebay-block.double {
		width: 300px;
	}
	.ebay-block.double .ebay-auction {
		width: 100%;
	}
	.ebay-block-logo { right: 8%; }
}
.ebay-auction {
	height: 100%;
	width: 100%;
	display: block;
	float: left;
	margin-bottom: 10px;
	overflow: hidden;
}
.ebay-auction-image {
	width: 35%;
}
.ebay-auction-info {
	width: 55%;
	padding: 0 5%;
}
.ebay-auction-image,
.ebay-auction-info {
	float: left;
}
.ebay-auction-title {
	height: 105px;
	color: #0f76ce;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 10px;
	overflow: hidden;
	text-transform: uppercase;
}
.ebay-auction-price {
	color: #75787e;
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 2px;
}
.ebay-auction-shipping {
	color: #7d8087;
	font-size: 11px;
}

.ebay-navigation {
	position: absolute;
	top: 0;
	bottom: 0;
	height: 150px;
	width: 25px;
	cursor: pointer;
	transition: 0.2s;
	user-select: none;
	z-index: 2;
	-webkit-transition: 0.2s;
}
.ebay-navigation:hover {
	background-color: #cfced3;
}

.ebay-navigation-arrow {
	position: absolute;
	top: 50%;
	height: 10px;
	width: 10px;
	display: block;
}
.ebay-navigation-arrow:before {
	position: absolute;
	top: -5px;
	height: 10px;
	width: 10px;
	border-right: solid 2px #7e818a;
	border-top: solid 2px #7e818a;
	content: "";
}

.ebay-navigation-previous {
	left: 0;
}
.ebay-navigation-previous .ebay-navigation-arrow {
	left: 9px;
}
.ebay-navigation-next {
	right: 0;
}
.ebay-navigation-next .ebay-navigation-arrow {
	right: 11px;
}
.ebay-navigation-previous .ebay-navigation-arrow:before {
	transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
}
.ebay-navigation-next .ebay-navigation-arrow:before {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
