﻿/* ===== 微信弹窗 ===== */
#wxnr {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	display: none;
	background: rgba(0,0,0,.65);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
#wxnr .nrdf {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - 48px);
	max-width: 340px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 32px 24px 28px;
	text-align: center;
	background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
	box-shadow: 0 20px 60px rgba(0,0,0,.3);
	border-radius: 20px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#wxnr img {
	width: 200px;
	max-width: 70%;
	display: block;
	margin: 8px auto 18px;
	padding: 10px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
}
#wxnr p {
	font-size: 15px;
	line-height: 1.8;
	text-align: center;
	margin: 0 0 8px;
	color: #555;
}
#wxnr p:nth-of-type(1) {
	font-size: 16px;
	color: #333;
	font-weight: 500;
	margin-bottom: 14px;
}
#wxnr p:nth-of-type(3) {
	font-size: 13px;
	color: #999;
	margin-bottom: 16px;
}
#wxnr i {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 30px;
	height: 30px;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	color: #999;
	font-weight: bold;
	font-style: normal;
	background: #f0f0f5;
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all .2s;
	transition: all .2s;
}
#wxnr i:hover {
	background: #e0e0e8;
	color: #333;
}
#wxnr span {
	display: inline-block;
	padding: 4px 14px;
	line-height: 1.6;
	background: linear-gradient(135deg, #1aad19, #07c160);
	color: #fff;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	letter-spacing: 1px;
}
#wxnr span.wx {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 32px;
	background-color: #1aad19;
	border-radius: 24px;
	font-size: 15px;
	-webkit-transition: all .2s;
	transition: all .2s;
}
#wxnr span.wx svg {
	flex-shrink: 0;
}
#wxnr span.wx:hover {
	background-color: #07c160;
	box-shadow: 0 4px 12px rgba(26,173,25,.3);
}
@media screen and (max-width: 360px) {
	#wxnr .nrdf {
		padding: 28px 18px 24px;
	}
	#wxnr img {
		width: 170px;
	}
	#wxnr p {
		font-size: 14px;
	}
}
/*复制提示*/
#weixin {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin-top: 0;
	z-index: 9999999;
	font-size: 15px;
	color: #fff;
	width: auto;
	max-width: 80%;
	right: auto;
	line-height: 1.6;
	text-align: center;
	background: rgba(0, 0, 0, 0.8);
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	display: none;
}
