a{
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
.card-content{
	background-color: #f9f9fa;
	box-shadow: 0 0 5px 0 hsla(0,0%,100%,.4);
}
.card-container{
	width: 1400px;
	margin: 0 auto;
}
.card-inner{
	padding: 24px 0px;
	display: flex;
	flex-wrap: wrap;
}
.card-item{
	width:25%;
}
.card-item-box:hover{
	background-color: #1968ed;
}
.card-item-box:hover .card-title-text{
	color: #fff;
}
.card-item-box:hover .card-title-tip{
	color: #fff;
}
.card-item-box:hover .card-desc{
	color: #fff;
}
.card-item-box:hover .card-title-tip{
	border: 1px solid #ffffff;
}
.card-item-box:hover .orange-box{
	border: 1px solid #ffffff;
	color: #fff;
}
.card-item-box:hover .grey-box{
	border: 1px solid #ffffff;
	color: #fff;
}

.card-item-box{
	background-image: linear-gradient(rgb(243, 245, 247) 0%, rgb(255, 255, 255) 100%);
	margin-left: 12px;
	margin-right: 12px;
	box-shadow: 0 0 10px 0 rgba(194,200,213,.3);
	border: 2px solid #fff;
	padding: 20px 16px 20px 25px;
	margin-bottom: 20px;
	background-size: 0 0;
}
.card-title{
	font-weight: 500;
	font-size: 16px;
	color: #181818;
	line-height: 27px;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.card-title-tip{
	padding: 0 8px;
	border: 1px solid #ff6a00;
	border-radius: 3px;
	font-weight: 400;
	font-size: 12px;
	color: #ff6a00;
	line-height: 16px;
	text-align: center;
	margin-left: 7px;
	display: inline-block;
}
.icon-link{
	position: absolute;
	top: 0;
	right: 0;
	color: #fff;
	display: none;
}
.icon-link img{
	width:24px;
	height: 24px;
}
.card-desc{
	font-size: 14px;
	color: #666;
	line-height: 24px;
	margin-bottom: 16px;
}
.card-point span{
	font-size: 12px;
	padding: 2px 8px;
	border-width: 1px;
	border-style: solid;
	border-radius: 1px;
}
.orange-box{
	color: rgb(255, 106, 0); 
	border-color: rgb(255, 106, 0);
}
.grey-box{
	color: rgb(153, 153, 153); 
	border-color: rgb(153, 153, 153);
	
}
@media (max-width: 1200px){
	.card-item{
		width:50%;
	}
}
@media (max-width: 768px){
	.card-item{
		width:100%;
	}
}