/*
*功能:手风琴轮播
*作者:eveningwater
*日期:2017/7/17
*/
* {
	margin: 0;
	padding: 0;
	user-select: none;
}

body,
html {
	width: 100%;
	height: 100%;
}

.bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.bg-box-1 {
	background: url('../img/1.jpg')no-repeat center/cover;
}

.bg-box-2 {
	background: url('../img/2.jpg')no-repeat center/cover;
}

.bg-box-3 {
	background: url('../img/3.jpg')no-repeat center/cover;
}

.bg-box-4 {
	background: url('../img/4.jpg')no-repeat center/cover;
}

#wrap {
	width: 1000px;
	height: 400px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
}

#wrap>ul {
	width: 120%;
	list-style: none;
}

#wrap>ul>li {
	width: 100px;
	height: 400px;
	float: left;
	cursor: pointer;
}

#wrap>ul>li:nth-child(1) {
	background: url('../img/1.jpg')no-repeat center/cover;
	width: 700px;
}

#wrap>ul>li:nth-child(2) {
	background: url('../img/2.jpg')no-repeat center/cover;
}

#wrap>ul>li:nth-child(3) {
	background: url('../img/3.jpg')no-repeat center/cover;
}

#wrap>ul>li:nth-child(4) {
	background: url('../img/4.jpg')no-repeat center/cover;
}

#wrap>ul>li>.text {
	width: 100px;
	height: 100%;
	opacity: 0.8;
	background-color: #f5f0f0;
}

#wrap>ul>li>.text p {
	padding: 20px 40px;
	color: #bf1d1d;
	font-family: "微软雅黑";
}