*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	list-style: none;
}
body{
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol','Noto Color Emoji';
}
::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 0;
	background: rgba(0, 0, 0, 0.1);
}
a{
	text-decoration: none;
}
.app{
	width: 1150px;
	margin: 0 auto;
	font-size: 16px;
}
.btn{
	display: block;
	cursor: pointer;
	transition: all .2s;
}
.btn:active{
	opacity: 0.6;
}

/* --------------------------------------------------------------------------------------------------- */
.banner{
	background-image: url(../img/apply-banner.png);
	height: 284px;
}
.banner-title{
	padding-top: 104px;
	font-size: 42px;
	font-weight: 500;
	color: #FFFFFF;
	width: 956px;
	margin: 0 auto;
}
.banner-sub{
	padding-top: 24px;
	width: 956px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 400;
	color: #FFFFFF;
}
.list{
	display: flex;
	justify-content: space-between;
	width: 1152px;
	margin: 0px auto;
	padding-top: 14px;
	flex-wrap: wrap;
	padding-bottom: 40px;
}
.list::after{
	content:"";
	width: 360px;
}
.item{
	width: 360px;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
	border-radius: 4px;
	margin-top: 26px;
	padding-bottom: 20px;
	overflow: hidden;
}
.item-img{
	height: 206px;
	position: relative;
}
.item-img::after{
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.05);
}
.item-title{
	font-size: 18px;
	font-weight: bold;
	line-height: 22px;
	color: rgba(0,0,0,0.85);
	padding: 0 24px;
	padding-top: 18px;
}
.item-sub{
	padding: 0 24px;
	padding-top: 16px;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: rgba(0,0,0,0.45);
}

.head{
	height: 70px;
	background-image: url(../img/logo.png);
	background-position: 40px;
	background-size: 120px;
}