.home_server {
	height: 455rem;
	padding: 80rem 165rem 0;
	background: url('../../static/iconPc/4.png') no-repeat;
	background-size: cover;
}

.home_server .head {
	font-size: 32rem;
	font-family: MicrosoftYaHei;
	color: #FFFFFF;
	margin-bottom: 40rem;
}

.home_server .list {
	width: 232rem;
	height: 253rem;
	background: #FFFFFF;
	box-shadow: 2rem 2rem 4rem 2rem rgba(0, 0, 0, 0.1);
	border-radius: 4rem;
	padding: 40rem 19rem 32rem;
	text-align: center;
	transition: all 0.3s;
	cursor: pointer;
	border: 4rem solid #fff;
}


.home_server .list img {
	width: 35rem;
	height: 35rem;
	margin-bottom: 12rem;
}

.home_server .list .name {
	font-size: 21rem;
	font-family: MicrosoftYaHei;
	color: #3577FD;
}

.home_server .list .txt {
	font-size: 16rem;
	font-family: MicrosoftYaHei;
	color: #000000;
	text-align: left;
}

.home_server .list .line {
	width: 100%;
	height: 2rem;
	background: #eee;
	margin: 19rem 0;
	position: relative;
}

.home_server .list .line .lineBg {
	width: 0rem;
	height: 100%;
	background: #3577FD;
	transition: all 0.3s;
}

.home_server .list:hover {
	border: 4rem solid #3577FD;
}

.home_server .list:hover .lineBg {
	width: 100% !important;
}

.home_server .list:hover .txt {
	color: #3577FD;
}