*,
::before,
::after{
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;/*兼容移动端主流浏览器*/
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;/*清除移动端点击高亮效果*/
}
.topText{
	
	background-color: #EE863A;
	padding-left: 10px;
	text-align: left;
	height:25px;
	color: white;
	line-height:27px;
	width:100%;
	overflow:hidden;
	/* font-weight: bold; */
	font-size: 14px;
	font-family: DIN-Medium;
	/* DIN-Regular */

	/* font-family:'Times New Roman'; */
}
.textStyle{
		/*text-align: center;*/
		font-size: 18px;
		color: black;
		padding-left: 15px;
		padding-top: 10px;
	}

.textStyle {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 15px;
	font-size: 14;
	color: #424242;
	font-family:DIN-Regular;
	/* background-color: red; */
	display: flex;
		justify-content: space-between;
	}
		
.leftText {
	font-family:DIN-Medium;
	width: 40%;
	font-size: 14px;
	/* font-weight: bold; */
	/* text-align: center; */
	
}
.rightText {
	font-family:DIN-Regular;
	width: 60%;
	text-align: right;
	/* font-weight: bold; */
	font-size: 14px;
}

.container{
	/* padding: 5px; */
	padding-top: 15px;
	width:100%;
	background: #eee;
	/*flex布局*/
	display: flex;
	padding-left: 30px;
	padding-right: 30px;
	background-color: white;
	/*
		flex-wrap：是否换行显示
		nowrap（默认）：不换行
		wrap:：换行，第一行在上方
		wrap-reverse：换行，第一行在下方
	*/
	flex-wrap:wrap;
}

.box{
	height:25px;
	/*每行8列，然后减去margin*/
	width:calc(calc(100% / 8) - 4px);
	background:red;
	overflow:hidden;
	/* display:inline-flex; */
	color:white;
	box-sizing: border-box;
	margin:2px;
	flex: 0 0 auto;
}

.boxCare{
	
	 /*每行8列，然后减去margin*/
	 width:calc(calc(100% /6) - 15px);
	 height: auto;
	 /* background:blue; */
	 overflow:hidden;
	 /* display:inline-flex; */
	 color:white;
	 box-sizing: border-box;
	 /* margin-left:10px; */
	 margin-left: 5px; 
	 margin-right: 5px;
	 margin-top:10px;
	 flex: 0 0 auto;
	 
	 /* 布局居左 */
	 float: center;
}

.boxBottom{
	height:80px;
	/*每行8列，然后减去margin*/
	width:calc(calc(100% / 4) - 30px);
	/* background:blue; */
	overflow:hidden;
	/* display:inline-flex; */
	color:white;
	box-sizing: border-box;
	margin:15px;
	flex: 0 0 auto;
}

@font-face {
	font-family: 'DIN-Bold';
	src: url(font/DIN-Bold.otf);
}
@font-face {
	font-family: 'DIN-Medium';
	src: url(font/DIN-Medium.otf);
}
@font-face {
	font-family: 'DIN-Regular';
	src: url(font/DIN-Regular.otf);
}
