.owl-carousel { 
	width:100%;
	margin: 0 auto;
	overflow:hidden;
}
.owl-carousel .item a{
	width:100%;
	height:100%;
	display:block;
}
.owl-carousel .item{
	display: block;
	width:100%;
}

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/

.owl-theme .owl-controls{
	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
	font-size: 0px;
	position:absolute;
	top:50%;
	width:0.6rem;
	height: 0.6rem;
	margin-top:-0.5rem;
	text-indent:-9999px;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}

/* Styling Pagination*/
.owl-pagination{
	position:absolute;
	left:0;
	bottom: 0.24rem;
	width:100%;
	height: 0.24rem;
	text-align:center;
}
.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	border-radius: 50%;
	background:rgba(255,255,255,0.26);
	overflow: hidden;
	filter: Alpha(Opacity=70);/*IE7 fix*/
	opacity: 0.7;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{

	background:#ffffff;
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity:1;
}

.owl-theme .owl-controls .owl-prev{
	left:0.96rem;
	background:url(../images/arrow-left.svg) no-repeat;
}
/*.owl-theme .owl-controls .owl-prev:hover{
	background:url(../images/arrow-left-hover.svg) no-repeat;
}*/
.owl-theme .owl-controls .owl-next{
	right:0.96rem;
	background:url(../images/arrow-right.svg) no-repeat;
}
/*.owl-theme .owl-controls .owl-next:hover{
	background:url(../images/arrow-right-hover.svg) no-repeat;
}*/

/*--------------响应式代码 1024 移动----------------*/
@media only screen and (max-width : 1023px){
	#owl-demo-mobile {
		position: relative;
		margin-top: 0.94rem;
		display: block;
	}
	#owl-demo-pc {
		display: none;
	}
	#owl-demo-mobile .item {
		height: 5.4rem;
	}
	.owl-theme .owl-controls .owl-page span{
		width: 0.09rem;
		height: 0.09rem;
		margin: 0.05rem 0.07rem;
	}
}
/*--------------响应式代码 1024 PC------------------*/
@media only screen and (min-width : 1024px){
	#owl-demo-pc {
		position: relative;
		display: block;
	}
	#owl-demo-mobile {
		display: none;
	}
	#owl-demo-pc .item {
		height: 10rem;
	}
	.owl-theme .owl-controls .owl-page span{
		width: 0.12rem;
		height: 0.12rem;
		margin: 0.08rem 0.1rem;
	}
}
