*{
	margin: 0;
	padding: 0;
}
ul{
	list-style: none;
}
#body{
    padding: 0 0;
}
.demo-title{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	text-indent: .5em;
	pointer-events: none;
}
.line-between{
	width: 100%;
	height: 3px;
	background-color: #7a7a7a;
	margin: 20px 0;
}
@media only screen and (max-width: 760px) {
	.carousel-content{
		overflow-y: hidden;
	}
}
@media only screen and (min-width: 760px) {
	.carousel-content{
	}
}
/* 以下为轮播图样式 */
.carousel-content{
	width: 100%;

	position: relative;
	margin: 0 auto;
}
.carousel{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
    border-radius: 5px;
}
.carousel li{
	float: left;
	position: absolute;
	display: none;
}
.carousel li,.carousel li img{
	background-size:contain|cover;

width:100%;

height: 100%;
max-width: 100%;
    min-height: 100%;
}
.carousel-index{

	position: absolute;
    bottom: 35px;
    width: 100%;
    display: none;
    justify-content: center;
}
.carousel-index li{
	float: left;
    width: 10px;
    height: 10px;
    line-height: 18px;
    text-align: center;
    border-radius: 10px;
    background-color: #f2edea;
    font-size: 12px;
    cursor: pointer;
    margin: 0 6px;
    color: #f2edea;
	opacity: 0.6;
}
.carousel-index li.current-index{
	background-color: #f2edea;
	opacity: 1;
}
.carousel-index li:hover{
	background-color:#f2edea;
	opacity: 1;
}
.carousel-prev,.carousel-next{
	position: absolute;
	top: 0;
	bottom: 0;
	cursor: pointer;
	margin: auto;
	width: 32px;
	height: 40px;
}
.carousel-prev img,.carousel-next img{
	width: 100%;
	height: 100%;
}
.carousel-prev{
	left: 0;
}
.carousel-next{
	right: 0;
}
