/* Banner轮播 - Swiper样式 */
.banner_carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.banner_carousel .mySwiper {
	width: 100%;
}

.banner_carousel .swiper-wrapper {
	width: 100%;
}

.banner_carousel .swiper-slide {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner_carousel .swiper-slide a {
	display: block;
	width: 100%;
}

.banner_carousel .swiper-slide img {
	width: 100% !important;
	height: auto !important;
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	background: #fff;
}

/* 导航按钮样式 */
.banner_carousel .swiper-button-prev,
.banner_carousel .swiper-button-next {
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 0.3s ease;
	opacity: 0;
	visibility: hidden;
}

.banner_carousel:hover .swiper-button-prev,
.banner_carousel:hover .swiper-button-next {
	opacity: 1;
	visibility: visible;
}

.banner_carousel .swiper-button-prev:hover,
.banner_carousel .swiper-button-next:hover {
	background: rgba(0, 0, 0, 0.5);
}

.banner_carousel .swiper-button-prev:after,
.banner_carousel .swiper-button-next:after {
	font-size: 24px;
	font-weight: bold;
}

/* 分页器样式 */
.banner_carousel .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	width: 10px;
	height: 10px;
	transition: all 0.3s ease;
}

.banner_carousel .swiper-pagination-bullet-active {
	background: var(--accent);
	transform: scale(1.3);
}

/* 响应式调整 */
@media (max-width: 1024px) {
	.banner_carousel .swiper-button-prev,
	.banner_carousel .swiper-button-next {
		width: 40px;
		height: 40px;
	}
	
	.banner_carousel .swiper-button-prev:after,
	.banner_carousel .swiper-button-next:after {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.banner_carousel .swiper-button-prev,
	.banner_carousel .swiper-button-next {
		display: none;
	}
}

/* 通用板块样式 */
.section {
	padding: 80px 0;
}

.section_header {
	text-align: center;
	margin-bottom: 50px;
}

.section_tag {
	font-size: 13px;
	font-weight: 500;
	color: var(--accent);
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.section_title {
	font-size: 32px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 12px;
}

.section_line {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), transparent);
	margin: 0 auto;
}

/* 协会简介 */
.about_section {
	background: linear-gradient(180deg, white 0%, var(--surface) 100%);
}

.about_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about_content h3 {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 20px;
}

.about_content p {
	font-size: 15px;
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 16px;
}

.about_stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 30px;
}

.stat_item {
	text-align: center;
	padding: 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat_num {
	font-size: 28px;
	font-weight: 700;
	color: var(--accent);
}

.stat_label {
	font-size: 13px;
	color: var(--muted);
	margin-top: 4px;
}

.about_image {
	position: relative;
}

.about_image img {
	width: 100%;
	height: 430px;
	object-fit: cover;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(26, 54, 93, 0.15);
}

/* 资讯列表 */
.news_section {
	background: white;
}

.news_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.news_card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.news_card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(26, 54, 93, 0.12);
}

.news_image {
	position: relative;
	height: 180px;
	overflow: hidden;
}

.news_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news_card:hover .news_image img {
	transform: scale(1.05);
}

.news_body {
	padding: 20px;
}

.news_date {
	font-size: 13px;
	color: var(--muted);
}

.news_meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.news_views {
	font-size: 13px;
	color: var(--muted);
}

.news_title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary);
	margin: 8px 0;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.news_card:hover .news_title {
	color: var(--accent);
}

.news_excerpt {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.section_more {
	text-align: center;
	margin-top: 40px;
}

.more_btn {
	display: inline-block;
	padding: 14px 32px;
	font-size: 15px;
	font-weight: 500;
	color: var(--primary);
	border: 2px solid var(--primary);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.more_btn:hover {
	background: var(--primary);
	color: white;
}

/* 协会成员 */
.members_section {
	background: var(--surface);
}

.members_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.member_card {
	background: white;
	padding: 30px 20px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid var(--border);
}

.member_card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
}

.member_avatar {
	width: 64px;
	height: 64px;
	background: rgba(26, 54, 93, 0.08);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	overflow: hidden;
}

.member_avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member_avatar span {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary);
}

.member_name {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 4px;
}

.member_level {
	font-size: 13px;
	color: var(--accent);
}

/* 会员风采 */
.style_section {
	background: white;
}

.style_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.style_card {
	display: flex;
	gap: 20px;
	padding: 24px;
	background: var(--surface);
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 1px solid var(--border);
}

.style_card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 35px rgba(26, 54, 93, 0.1);
	border-color: var(--accent);
}

.style_image {
	width: 200px;
	height: 150px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
}

.style_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.style_card:hover .style_image img {
	transform: scale(1.05);
}

.style_content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.style_date {
	font-size: 13px;
	color: var(--muted);
}

.style_title {
	font-size: 17px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 5px;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.style_card:hover .style_title {
	color: var(--accent);
}

.style_excerpt {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.7;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.style_footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.style_link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	color: var(--primary);
	font-weight: 500;
	transition: color 0.3s ease;
}

.style_link:hover {
	color: var(--accent);
}

.style_link svg {
	width: 16px;
	height: 16px;
}

/* 党建强会 */
.party_section {
	background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.party_section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.party_section .section_tag {
	color: #fcd34d;
}

.party_section .section_title {
	color: white;
}

.party_section .section_line {
	background: linear-gradient(90deg, #fcd34d, transparent);
}

.party_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	position: relative;
	z-index: 10;
}

.party_card {
	display: flex;
	gap: 16px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.party_card:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-3px);
}

.party_icon {
	width: 48px;
	height: 48px;
	background: #fcd34d;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.party_icon svg {
	width: 24px;
	height: 24px;
	color: #991b1b;
}

.party_content h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
}

.party_content time {
	font-size: 13px;
	opacity: 0.7;
}

.party_content p {
	font-size: 14px;
	opacity: 0.85;
	margin-top: 8px;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 法规行规 */
.laws_section {
	background: var(--surface);
}

.laws_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.law_card {
	background: white;
	padding: 24px;
	border-radius: 12px;
	border-left: 4px solid var(--accent);
	transition: all 0.3s ease;
}

.law_card:hover {
	box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
}

.law_header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.law_type {
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 500;
	border-radius: 50px;
}

.law_type.guojiabiaozhun {
	background: rgba(26, 54, 93, 0.1);
	color: var(--primary);
}

.law_type.hangyebiaozhun {
	background: rgba(5, 150, 105, 0.1);
	color: #059669;
}

.law_type.difangguiding,
.law_type.xiehuiwenjian {
	background: rgba(201, 162, 39, 0.15);
	color: var(--accent);
}

.law_date {
	font-size: 13px;
	color: var(--muted);
}

.law_title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.law_card:hover .law_title {
	color: var(--accent);
}

.law_excerpt {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* 公益慈善 */
.charity_section {
	background: white;
}

.charity_section .section_header {
	margin-bottom: 40px;
}

.section_subtitle {
	text-align: center;
	font-size: 14px;
	color: var(--muted);
	margin-top: 8px;
}

.charity_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.charity_card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.charity_card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border-color: var(--accent);
}

.charity_image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.charity_image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.charity_card:hover .charity_image img {
	transform: scale(1.05);
}

.charity_tag {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 4px 12px;
	background: var(--accent);
	color: var(--primary);
	font-size: 12px;
	font-weight: 500;
	border-radius: 50px;
}

.charity_content {
	padding: 20px;
}

.charity_title {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 10px;
	line-height: 1.5;
	transition: color 0.3s ease;
}

.charity_card:hover .charity_title {
	color: var(--accent);
}

.charity_desc {
	font-size: 14px;
	color: var(--text-gray);
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 16px;
}

.charity_meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.charity_date {
	font-size: 13px;
	color: var(--muted);
}

.charity_more {
	font-size: 13px;
	color: var(--primary);
	font-weight: 500;
	transition: color 0.3s ease;
}

.charity_card:hover .charity_more {
	color: var(--accent);
}

.charity_button {
	text-align: center;
}

.more_btn.primary {
	background: var(--primary);
	color: white;
	border: none;
}

.more_btn.primary:hover {
	background: var(--secondary);
}

/* 消费诉求 */
.complaint_section {
	background: var(--primary);
	color: white;
}

.complaint_section .section_tag {
	color: var(--accent);
}

.complaint_section .section_title {
	color: white;
}

.complaint_section .section_line {
	background: linear-gradient(90deg, var(--accent), transparent);
}

.complaint_desc {
	text-align: center;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	max-width: 600px;
	margin: -30px auto 40px;
}

.complaint_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.complaint_info h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.contact_list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact_item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.contact_item:hover {
	background: rgba(255, 255, 255, 0.15);
}

.contact_icon {
	width: 40px;
	height: 40px;
	background: var(--accent);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact_icon svg {
	width: 20px;
	height: 20px;
	color: var(--primary);
}

.contact_label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.contact_value {
	font-size: 15px;
	font-weight: 500;
}

.complaint_form h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.form_group {
	margin-bottom: 16px;
}

.form_group label {
	display: block;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 8px;
}

.form_group input,
.form_group textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 14px;
	color: white;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	outline: none;
	transition: border-color 0.3s ease;
}

.form_group input::placeholder,
.form_group textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form_group input:focus,
.form_group textarea:focus {
	border-color: var(--accent);
}

.form_group textarea {
	min-height: 100px;
	resize: vertical;
}

.submit_btn {
	width: 100%;
	padding: 14px;
	font-size: 15px;
	font-weight: 600;
	color: var(--primary);
	background: var(--accent);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit_btn:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
}



/* 响应式 */
@media (max-width: 1024px) {
	.about_grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about_image {
		order: -1;
	}

	.news_grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.members_grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.style_grid {
		grid-template-columns: 1fr;
	}

	.style_card {
		flex-direction: column;
	}

	.style_image {
		width: 100%;
		height: 200px;
	}

	.party_grid {
		grid-template-columns: 1fr;
	}

	.laws_grid {
		grid-template-columns: 1fr;
	}

	.charity_grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.complaint_grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.section {
		padding: 60px 0;
	}

	.section_title {
		font-size: 26px;
	}

	.about_stats {
		grid-template-columns: repeat(3, 1fr);
	}

	.news_grid {
		grid-template-columns: 1fr;
	}

	.members_grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.charity_grid {
		grid-template-columns: 1fr;
	}
}
