/* 入会权益模块 */
body{
	background-color: #fff;
}
#dingbu{
	/* background: url(../../images/cheyouhui/czsh/img-czsh/czsh_bg2.png) ;
		background-size: 100% 100%; */
		background: #f7f7f7;
}
.benefit-section {
	width: 100%;
	margin: 0 auto;
	padding: 40px 0;
	/* background-color: #fff; */
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-bottom: 40px !important;
}

.benefit-container {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: stretch;
	gap: 0;
	margin-top: 20px;
}

.benefit-item {
	flex: 1;
	background-color: transparent;
	/* padding: 30px 20px; */
	padding: 0px 20px;
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-align: left;
	box-shadow: none;
	transition: transform 0.3s ease;
	/* border-right: 1px solid rgba(0, 0, 0, 0.1); */
	background-color: #e9e9e9;
	border-radius: 10px;
	margin: 0 10px;
	/* border-right: 1px solid #f0f0f0; */
}

.benefit-item:last-child {
	/* border-right: none; */
}
.benefit-icon,.benefit-title{
	transition: 300ms;
}

.benefit-item:hover div{
	/* transform: scale(1.2); */
	/* transform: translateY(-15px); */
	/* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); */
}
.benefit-item:hover .benefit-title{
	/* transform: scale(1.2); */
	/* transform: translateY(-15px); */
	/* box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); */
}

.benefit-icon {
	/* width: 80px; */
	height: 80px;
	/* background-color: #fef0f0; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	font-size: 32px;
	color: #d9232e;
}

/* 新增：图片样式，保证和图标视觉统一 */
.benefit-img {
	width: 32px;
	/* 和原图标字体大小一致 */
	height: 32px;
	object-fit: contain;
	/* 保证图片不变形 */
	color: #d9232e;
}

.benefit-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0;
	white-space: nowrap;
	color: #333;
}

.benefit-desc {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* 移动端适配 */
@media (max-width: 768px) {
	.benefit-container {
		flex-wrap: wrap;
	}

	.benefit-item {
		flex: 0 0 50%;
		display: block;
		text-align: center;
		border-right: 1px solid #f0f0f0;
		border-bottom: 1px solid #f0f0f0;
		padding: 30px 20px; 
		margin: 0;
		background-color: transparent;
	}

	.benefit-icon {
		margin: 0 auto 12px;
	}

	.benefit-item:nth-child(2n) {
		border-right: none;
	}
	.benefit-title {
		color: #333;
	}
	.benefit-item:nth-last-child(1),
	.benefit-item:nth-last-child(2) {
		/* border-bottom: none; */
	}
}
