* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
    background: #1b212d;/*
    background: linear-gradient(0deg,#1f2739,#1b212d);/**/
    color: white;
    font-size: 13px;
    max-width: 100%;
	position:relative;
	--maxWidth: 1200px;
	position:relative;
    font-family: "Arial","微软雅黑","思源黑体",sans-serif;
}
@font-face {
	font-family: 				"tt0288m_";
	src: 						url(../font/tt0288m_.ttf);
}
* {
	margin: 					0;
	padding: 					0;
}

/*所有内容的样式-始*/
div#headline {
	width: 80%;
	margin: 100px auto 30px;
	text-align: left;
	color: #fff;
	position: relative;
}
div#headline h1 {
	display: inline-block;
	font-size: 500%;/*
	padding: 10px 60px;
	border: 1px solid #d3cabe;
	border-radius: 5px;/**/
}


/*article style start*/

/*包含卡片的大容器*/
div.boxer {
	display: flex;/*
	flex-direction:column;/**/
	position: relative;
	width: 100%;
    margin: 100px auto 70px;
    justify-content: space-between;
    padding: .7rem;
    max-width: var(--maxWidth);
}

/*制造溢出*/
div.allcontainer {
	display: flex;
	margin: 20px 0px 0px;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
/*卡片区域*/
div.allcontainer a {
	border-radius: 15px;
	display: inline-block;
	color: #fff;
	border: solid 1px rgba(255,255,255,0.1);
	padding:25px 30px 30px;
	position: relative;
	margin: 0px 24px 40px;
	min-width: 186px;
	max-width: 20%;
	-webkit-transition: all .15s ease-in-out;
	-moz-transition: all .15s ease-in-out;
	-ms-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}
div.allcontainer a h4 {
	font-size: 20px;
	padding-bottom: 10px;
}
div.allcontainer a:link,div.allcontainer a:visited {
	text-decoration: none;
}
div.allcontainer a:hover {	
	color: #5e48ec;
	border: solid 1px #fff;
	border-radius: 5px;
	background: #fff;
}
/*下面的这段代码让图片自适应*/

/*article style end*/
/*footer style start*/
footer {
	width: 80vw;
	margin: 0px auto 20px;
	border-top: solid 1px rgba(255,255,255,0.1);
	padding: 20px  0px 0px;
	position: absolute;
	left: 0;
	right: 0;
}
footer ul {
	width: 60%;
	font-size: 					9px;
	color: 						#aaa6a0;
}
footer p {
	position: absolute;
	right: 0px;
	bottom: 0px;
	font-size: 					11px;
	color: 						#aaa6a0;
}
/*footer style end*/
/*allcontainer style end*/
@media screen and (min-width:980px) and (max-width:1200px) {
	div.allcontainer a {
		min-width: 186px;
		flex: 1 1 18%;
		max-width: 25%;
	}
}
@media screen and (min-width:725px) and (max-width:960px) {
	div.allcontainer a {
		min-width: 186px;
		flex: 1 1 18%;
		max-width: 30%;
	}
}
@media screen and (min-width:491px) and (max-width:724px) {
	div.allcontainer a {
		min-width: 186px;
		flex: 1 1 18%;
		max-width: 45%;
	}
}
@media screen  and (max-width:490px) {
	div.allcontainer a {
		min-width: 80%;
		flex: 1 1 90%;
		max-width: 90%;
	}
	div#headline h1 {
		width: 50%;
		font-size: 300%;
	}
}