
/* --------------------------------
 * 圖片輪播
 * -------------------------------- */
 
.owl-carousel {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}
.item {
	width: 100%;
}
.owl-controls .owl-nav [class*=owl-] {
	padding: 8px;
	display: inline-block;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	border: 2px solid #0099ff;
}
.owl-controls .owl-nav [class*=owl-]:hover {
	background: #00418f;
	border: 2px solid #00418f;
}
.owl-next,.owl-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    top: 50%;
}
.owl-prev {
    left: 30px;
}
.owl-next {
    right: 30px;
}
@media only screen and (max-width:1440px) {
.item {
	width: 95%;
	margin-right: auto;
	margin-left: auto;
}
}
@media only screen and (max-width:1200px) {
.owl-controls .owl-nav [class*=owl-] {
	padding: 7px;
    border: 1px solid #0099ff;
}
.owl-controls .owl-nav [class*=owl-]:hover {
	border: 1px solid #00418f;
}
.owl-next,.owl-prev {
    width: 36px;
    height: 36px;
    margin-top: -18px;
}
.owl-prev {
    left: 1.5%;
}
.owl-next {
    right: 1.5%;
}
}
@media only screen and (max-width:960px) {
.item {
	width: 100%;
}
.owl-controls .owl-nav [class*=owl-] {
	padding: 5px;
}
.owl-next,.owl-prev {
    width: 32px;
    height: 32px;
    margin-top: -16px;
}
.owl-prev {
    left: 5%;
}
.owl-next {
    right: 5%;
}
}
@media only screen and (max-width:600px) {
.owl-controls .owl-nav [class*=owl-] {
	padding: 3px;
}
.owl-next,.owl-prev {
    width: 24px;
    height: 24px;
    margin-top: -12px;
}
}

