body {
	background: black;
}

.wrap {
	margin: auto;
}

.wrap-box {
	max-width: 1440px;
	margin: auto;
}

.banner img,
.images-box img {
	width: 100%;
	height: auto;
}

.banner {
	width: 100%;
}

.header {
	height: 60px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
}

.header .logo {
	height: 60px;
	width: 100px;
	background: url('../img/logo.png') no-repeat 0 center;
	background-size: auto 80%;
}

.header .logo a {
	display: block;
	width: 100%;
	height: 100%;
}

.header .down-app {
	color: rgba(255, 255, 255, 1);
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.show-app {
	background: white;
	position: absolute;
	right: 0;
	top: 24px;
	padding: 10px 15px;
	width: 200px;
	display: none;
}

.show-app p {
	color: black;
	line-height: 1.6;
}

.header .down-app p {
	font-size: 14px;
	margin: 0 0 0 5px;
}

.movie-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 15px;

}

.icon-down {
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/icon-down.png) no-repeat 0 0;
	background-size: cover;
}


.movie-list li {
	width: 25%;
	min-width: 250px;
	margin: 20px 0 0 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.movie-list li .images-box {
	width: 240px;
	overflow: hidden;
}

.movie-list li h2,
.movie-list li p {
	text-align: left;
	width: 240px;
}

.movie-list li h2 {
	font-size: 18px;
	margin: 15px 0 0;
	color: rgba(255, 255, 255, 1)
}

.movie-list li p {
	font-size: 14px;
	margin: 10px 0 0;
	color: rgba(255, 255, 255, .7)
}

.about {
	color: white;
	padding: 100px 30px;
	min-height: 840px;
}

.about dt {
	font-size: 24px;
	font-weight: bold;
}

.about dd {
	margin: 30px 0 0;
	font-size: 18px;
	line-height: 1.6;
}

.footer {
	background: #333;
	margin: 30px 0 0;
}

.footer .wrap-box {
	display: flex;
	padding: 30px 0 30px 60px;


}

.footer,
.footer a {
	color: rgba(255, 255, 255, 1)
}

.footer dl {
	margin-right: 30px;

}
.footer dt{
	font-size: 14px;
	font-weight: bold;
}
.footer dd {
	padding: 10px 0 0;
	font-size: 12px;
}

.footer dd a {
	color: rgba(255, 255, 255, .7);
}

.footer dd a:hover {
	color: rgba(255, 255, 255, 1)
}

.copy {

	padding: 0 30px 30px;
}

.copy p {
	color: rgba(255, 255, 255, 1);
	font-size: 12px;
	line-height: 1.5;
}

@media only screen and (min-width : 320px) and (max-width : 480px) {
	.movie-list li {
		width: 33%;
		min-width: 110px;
	}

	.movie-list li .images-box {
		width: 100px;
		overflow: hidden;
	}

	.movie-list li h2,
	.movie-list li p {
		width: 100px;
	}

	.movie-list li h2 {
		font-size: 14px;
		margin: 15px 0 0;

	}

	.movie-list li p {
		font-size: 12px;
		margin: 10px 0 0;

	}

	.footer .wrap-box {
		display: flex;
		padding: 15px 0 15px 30px;


	}

	.footer .wrap-box {
		flex-wrap: wrap;
	}

	.footer dl {}

	.footer dt {
		font-size: 14px;
	}

	.footer dd {
		font-size: 12px;
	}

	.copy {
		width: 100%;
		padding: 0;
	}
}