﻿@charset "utf-8";


/* 桌機版型優先 */
/* product-box */
#product-box li {
	float: left;
	list-style-type: none;
	width: 33%;
	margin-top: 40px;
}
#product-box li .pic img {
	display: block;
	width: 195px;
	height: 140px;
	border: 5px solid #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	box-shadow: 0 0 8px #bbb;
	-webkit-box-shadow: 0 0 8px #bbb;
	-moz-box-shadow: 0 0 8px #bbb;
	margin: 0 auto 8px auto;
}
#product-box li .title {
	width: 195px;
	margin: 0 auto;
	font-size: 0.813em;
	line-height: 20px;
	text-align: center;
}
#product-box li .title a {
	color: #555;
	text-decoration: none;
	overflow: hidden;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
}
#product-box li .title a:hover {
	color: #007bc7;
	position:relative;
	left: 1px;
	top: 1px;
}


/* 平板版型 */
@media (min-width: 768px) and (max-width: 1023px) {
/* product-box */
#product-box li {
	width: 50%;
}
#product-box li .pic img {
	width: 195px;
	height: 140px;
}
}


/* 手機版型 */
@media only screen and (max-width: 767px) {
/* product-list */
#product-box li {
	width: 100%;
	margin-top: 30px;
}
#product-box li .pic img {
	width: 250px;
	height: 179px;
}
#product-box li .title {
	width: 250px;
	font-size: 1em;
	line-height: 26px;
}
}