.product {
	width: 1200px;
	margin: 0 auto;
	padding-top: 72px;
	padding-bottom: 78px;
}

.product .title {
	text-align: center;
	font-weight: bold;
	font-size: 32px;
}

.product .title2 {
	text-align: center;
	margin-top: 20px;
	font-size: 20px;
}

.product .content {
	text-align: center;
	margin-top: 54px;
	font-size: 14px;
	line-height: 28px;
}

.product .list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 83px;
	grid-gap: 32px;
}

.product .list .item {
	background-color: #FAFAFC;
	padding: 30px;
	cursor: pointer;
	transition: all 0.3;
}

.product .list .item .name {
	display: flex;
	justify-content: space-between;
}

.product .list .item .name .left {
	font-size: 20px;
	font-weight: bold;
}

.product .list .item .name .right {
	font-size: 16px;
	color: #0D0D0D;
}

.product .list .item .en_name {
	margin-top: 12px;
	font-size: 16px;
	color: #767676;
}

.product .list .item .detail {
	line-height: 56px;
	text-align: right;
	border-bottom: 1px solid #B4B4B4;
	font-size: 14px;
	transition: all 0.3s;
}

.product .list .item:hover {
	box-shadow: 0px 0px 8px 0px rgba(173, 183, 210, 0.35);
}

.product .list .item:hover .detail {
	color: #FF9228;
	border-color: #FF9228;
}