﻿/* 微信扫码分享组件样式（迁移至 shared/css/） */
.wxshare-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 1000;
}

.wxshare-modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 320px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	overflow: hidden;
}

.wxshare-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	background: #f7f8fa;
	border-bottom: 1px solid #eef0f3;
}

.wxshare-title {
	font-size: 16px;
	font-weight: 600;
	color: #1f2329;
}

.wxshare-close {
	border: none;
	background: transparent;
	font-size: 22px;
	line-height: 1;
	color: #86909c;
	cursor: pointer;
}

.wxshare-close:hover {
	color: #1f2329;
}

.wxshare-body {
	padding: 20px 16px 24px;
	text-align: center;
}

.wxshare-qr {
	display: block;
	width: 220px;
	height: 220px;
	margin: 0 auto 12px;
	border: 1px solid #eef0f3;
	border-radius: 8px;
	background: #fff;
}

.wxshare-hint {
	font-size: 13px;
	color: #4e5969;
}



@media (max-width: 767px) {
	.wxshare-overlay {
		display: none !important;
	}
}

