.server {
	padding-top: 71px;
	padding-bottom: 57px;
	background-color: #FAFAFC;
}

.server .title {
	text-align: center;
	font-weight: bold;
	font-size: 32px;
}

.server .content {
	text-align: center;
	width: 900px;
	margin: 25px auto 0;
	line-height: 28px;
	font-size: 14px;
}

.server .list {
	width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 24px;
	margin-top: 80px;
}

.server .list .item {
	background-color: #fff;
	padding: 30px;
	cursor: pointer;
}

.server .list .item .name {
	font-weight: bold;
	font-size: 20px;
}

.server .list .item .img {
	margin-top: 26px;
}

.server .list .item .main {
	margin-top: 27px;
	font-size: 14px;
	line-height: 24px;
	color: #767676;
	height: 120px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 5;
}

.server .list .item .more {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	border-top: 1px solid #DEDDE5;
	height: 36px;
}

.server .list .item .more .right {
	width: 19px;
	height: 19px;
	border: 1px solid #DEDDE5;
	border-radius: 50%;
	position: relative;
}

.server .list .item .more .right::after {
	content: '';
	display: block;
	position: absolute;
	right: 10px;
	width: 32px;
	height: 1px;
	background-color: #DEDDE5;
	top: 9px;
}