.download .box1{
	padding: 50px 0 80px;
	width: 960px;
	margin: 0 auto;
	max-width: 90%;
}
.download .box1 .items .item{
	display: flex;
	justify-content: space-between;
	padding: 25px;
	background: #F4F4F4;
	transition: all .6s;
	color: #333333;
}
.download .box1 .items .item:hover{
	background-color: #0387FB;
	color: #fff;
}
.download .box1 .items .item:not(:last-child){
	margin-bottom: 10px;
}
.download .box1 .items .item .title{
	font-family: Microsoft YaHei;
	font-weight: 400;
	font-size: 20px;
	line-height: 30px;
	flex: 1;
	margin-right: 30px;
}
.download .box1 .items .item .icon path{
	transition: all .6s;
}
.download .box1 .items .item:hover .icon path{
	fill: #fff;
}
@media (max-width:1024px) {
	.download .box1 .items .item{
		padding: 20px;
	}
	.download .box1 .items .item .title{
		font-size: 18px;
	}
}
@media (max-width: 768px) {
	.download .box1 .items .item{
		padding: 10px 15px;
	}
	.download .box1 .items .item .title{
		font-size: 16px;
		line-height: 24px;
	}
	.download .box1 .items .item .icon{
		width: 24px;
		height: 24px;
	}
	.download .box1{
		padding-bottom: 50px;
	}
}