@charset "utf-8";
/*topBox*/
.topBox{
	width: 100%;
	overflow: hidden;
	padding-bottom: 20px;
	border-bottom: 1px solid #828080;
}
	.topBox h1{
		color: #666666;
		font-size: 34px;
		text-align: center;
		margin-bottom: 20px;
	}
	.topBox ol{
		text-align: center;
	}
		.topBox ol li{
			display: inline-block;
			margin: 0 5px;
			padding: 5px 15px;
			border-radius: 2px;
			background: #868d97;
		}
			.topBox ol li a{
				display: block;
				color: #fff;
				font-size: 14px;
				line-height: 25px;
				text-align: center;
			}
		.topBox ol li:hover{
			background: #00a1e9;
		}		
@media only screen and (max-width: 640px) {
    .topBox ol li{
		display: block;
		width:100%;
		margin:0 0 5px 0;
	}
	.topBox h1{
		font-size: 24px;
		margin-top: 15px;
	}
}