/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* 实例 */
#owl-demo {
	position: relative;
	width: 560px;
	height: 375px;
	margin: 0 auto;
}

#owl-demo .item {
	position: relative;
	display: block;
}

#owl-demo img {
	display: block;
	width: 560px;
    height: 315px;
}

#owl-demo .itemBg {
	position: absolute;
	left: 0;
	bottom: -60px;
	width: 560px;
	height: 60px;
	background-color: #006cb8;
	/* opacity: .88;
	filter: alpha(opacity=88);
	-webkit-filter: alpha(opacity=88); */
}

#owl-demo h5 {
	position: absolute;
	left: 0;
	bottom: 15px;
	width: 530px;
	padding-left: 20px;
	font: 16px/32px "微软雅黑", "黑体";
	color: #fff;
	text-align: left;
}

/* 只有一张图片时 */
/* #owl-demo b {
	height: 40px;
}

#owl-demo span {
	bottom: 5px;
} */

/* 轮播图2 */
#owl-demo02 {
	position: relative;
	width: 1100px;
	height: 380px;
	margin: 0 auto;
}

#owl-demo02 .item {
	position: relative;
	box-sizing: border-box;
	width: 260px;
	height: 380px;
	margin-right: 20px;
	float: left;
	text-align: center;
}

#owl-demo02 .photo {
	position: relative;
	z-index: 1;
	perspective: 1000px;
	width: 210px;
	height: 210px;
	margin: 0 auto 20px;
	border: #f5f5f5 solid 6px;
	border-radius: 105px;
	-webkit-border-radius: 105px;
	-moz-border-radius: 105px;
	-ms-border-radius: 105px;
	-o-border-radius: 105px;
	overflow: hidden;
}

#owl-demo02 .photo img {
	width: 100%;
	height: 100%;
}

#owl-demo02 .item:hover .photo {
	border: #d8ebfa solid 6px;
}

#owl-demo02 .item:hover .photo:before {
	content: '';
	position: absolute;
	background: #fff;
	width: 25px;
	height: 270px;
	top: -10px;
	left: -60px;
	opacity: 0.3;
	z-index: 99999;
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
	/*动画*/
	animation: move 5s infinite ease;
	-webkit-animation: move 3s infinite ease;
}

@keyframes move {
	0% {
		left: -60px;
	}

	75% {
		left: 300px;
	}

	76% {
		opacity: 0;
	}

	100% {
		left: -60px;
		opacity: 0;
	}
}

#owl-demo02 .name {
	width: 260px;
	color: #23509b;
	font-size: 24px;
	line-height: 36px;
	font-weight: bold;
}

#owl-demo02 p.job {
	margin-top: 10px;
	height: 100px;
	color: #333;
	font-size: 16px;
	line-height: 24px;
	text-align: left;
}

#owl-demo02 h5 {
	position: absolute;
	left: 0;
	bottom: -100px;
	display: block;
	box-sizing: border-box;
	width: 260px;
	height: 100px;
	*height: 80px;
	/* IE 7 */
	background: #d8ebfa;
	padding: 10px;
	color: #456888;
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	text-align: left;
	transition: bottom 1s linear;
	-webkit-transition: bottom 1s linear;
	-moz-transition: bottom 1s linear;
	-ms-transition: bottom 1s linear;
	-o-transition: bottom 1s linear;
}

#owl-demo02 .item:hover h5 {
	bottom: 0px;
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

#owl-demo02 .owl-pagination {
	display: none;
}

#owl-demo02 .owl-buttons div {
	position: absolute;
	top: 60%;
	width: 40px;
	height: 80px;
	margin-top: -40px;
	text-indent: -9999px;
}



.owl-pagination {
	position: absolute;
	left: 0;
	bottom: 0px;
	*bottom: -50px;
	/* IE7 */
	box-sizing: border-box;
	width: 100%;
	height: 22px;
	padding-right: 10px;
	text-align: right;
}

.owl-page {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background-image: url(../images/bg15.png);
	*display: inline;
	*zoom: 1;
}

.owl-pagination .active {
	width: 25px;
	background-image: url(../images/bg16.png);
}

.owl-buttons {
	display: none;
}

.owl-buttons div {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 80px;
	margin-top: 10px;
	text-indent: -9999px;
}

.owl-prev {
	left: 0;
	background-image: url(../images/bg17.png);
}

.owl-next {
	right: 0;
	background-image: url(../images/bg18.png);
}

.owl-prev:hover {
	background-image: url(../images/bg19.png);
}

.owl-next:hover {
	background-image: url(../images/bg20.png);
}


/* 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);
}

/* mouse grab icon */
.grabbing {
	cursor: url(grabbing.png) 8 8, move;
}

/* 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-wrapper-outer{
height:375px}





