/*轮播*/

.slider {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.carousel-inner {
	width: 100%;
	height: 100%;
}

.carousel-inner .item img {
	width: auto;
	height: 100%;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
	max-width: none;
	margin: 0 auto;
	width: 100%;
	height: 700px;
}

.carousel-indicators li {
	display: inline-block;
	width: 60px;
	height: 10px;
	margin: 1px;
	text-indent: -999px;
	cursor: pointer;
	background: white;
	border: 1px solid #fff;
	border-radius: 0px;
	border: 1px solid gainsboro;
}

.carousel-indicators .active {
	width: 70px;
	height: 15px;
	margin: 0;
	background-color: #122B40;
	border: 1px solid gainsboro;
}

.carousel-indicators {
	position: absolute;
	top: 680px;
}


/*内容*/

.content {
	width: 1108px;
	height: 660px;
	margin: 0 auto;
	margin-top: 60px;
	overflow: hidden;
}


/*左边内容*/

.content-left {
	width: 224px;
	height: 100%;
	background: url(../img/left-con2.png)no-repeat;
	background-size: 110% 100%;
	float: left;
}

.content-left h3 {
	color: white;
	text-align: center;
	margin-top: 190px;
}

.content-left h5 {
	color: white;
	text-align: center;
	font-size: 18px;
}

.content-left span {
	width: 90%;
	height: auto;
	margin: 0 auto;
	display: block;
	font-size: 14px;
	color: white;
	overflow: hidden;
}
.content-left>li {
	width: 100%;
	height: 300px;
	display: block;
	margin: 0 auto;
	margin-top: 70px;
	font-size: 14px;
	line-height: 30px;
	color: white;
	overflow: hidden;
	text-overflow: ellipsis;
	text-indent: 2em;
}
.content-left p {
	clear: both;
	line-height: 20px;
}

.content-left a {
	float: right;
	color: gainsboro;
	text-decoration: none;
	margin-top: 15px;
}

.content-left a:hover {
	color: white;
}


/*右边内容*/

.content-right {
	width: 880px;
	height: 100%;
	float: left;
}

.content-right li {
	float: left;
	width: 33%;
	height: 219px;
	list-style: none;
}

.detail {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	text-align: center;
	border: 1px solid gainsboro;
	overflow: hidden;
	background: gainsboro;
}

.detail .text-desc {
	opacity: 0;
	transition: 0.5s;
	color: #000;
	background: rgba(255, 255, 255, 0.6);
}

.detail.active1 span {
	transition: 0.5s;
	position: relative;
	left: 0;
	width: 100%;
	height: 220px;
	display: block;
	background-color: white;
}

.detail.active1:hover span {
	left: 100%;
}

.detail.active1 .text-desc {
	transform: perspective(600px) rotateY(90deg);
	transform-origin: left center 0;
	width: 100%;
	height: 220px;
	position: absolute;
	left: 0;
	top: 0;
	padding: 18px 10px;
}
.text-desc h3{
	margin-top: 60px;
}
.detail.active1:hover .text-desc {
	opacity: 1;
	transform: perspective(600px) rotateY(0deg);
	z-index: 99;
}

.detail.active2 span {
	position: relative;
	width: 100%;
	height: 220px;
	display: block;
	bottom: 0;
}

.detail.active2 .text-desc {
	transform: perspective(600px) rotateX(20deg);
	transform-origin: bottom center 0;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	padding: 50px 10px;
	background: rgba(255, 255, 255, 0.8);
}

.detail.active2:hover .text-desc {
	opacity: 1;
	transform: perspective(600px) rotatex(0deg);
	z-index: 99;
}

.detail.active3 span {
	transition: 0.5s;
	position: relative;
	width: 100%;
	height: 220px;
	display: block;
	right: 0;
}

.detail.active3:hover span {
	right: 50%;
}

.detail.active3 .text-desc {
	transform: perspective(600px) rotateY(-90deg);
	transform-origin: right center 0;
	width: 50%;
	height: 100%;
	position: absolute;
	left: auto;
	right: 0;
	top: 0;
	padding: 18px 10px;
}

.detail.active3:hover .text-desc {
	opacity: 1;
	transform: perspective(600px) rotateY(0deg);
	z-index: 99;
}

.btn {
	display: inline-block;
	padding: 5px 10px;
	font-size: 14px;
	color: #fff;
	border: 2px solid #4d92d9;
	background-color: #4d92d9;
	text-decoration: none;
	transition: 0.4s;
	border-radius: 5px;
}

.btn:hover {
	background-color: transparent;
	color: #4d92d9;
	transition: 0.4s;
}


