.wechat-browser-tip {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
	box-sizing: border-box;
}
.wechat-browser-tip[hidden] {
	display: none !important;
}
.wechat-browser-tip__mask {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}
.wechat-browser-tip__box {
	position: relative;
	width: min(20rem, calc(100vw - 2rem));
	max-width: 20rem;
	background: #fff;
	border-radius: 12px;
	padding: 1.25rem 1rem 1rem;
	font-size: clamp(14px, 3.8vw, 15px);
	line-height: 1.55;
	color: #333;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.wechat-browser-tip__box strong {
	color: #07c160;
}
.wechat-browser-tip__close {
	display: block;
	width: 100%;
	margin-top: 1rem;
	padding: 0.65rem;
	border: none;
	border-radius: 8px;
	background: #07c160;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
}
.wechat-browser-tip__close:active {
	opacity: 0.9;
}
