.article-content,.desktop-share
{
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,.1)
}



body
{
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f5f5f5;
	padding: 20px
}

.container
{
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 30px
}

.article-content
{
	flex: 1;
	padding: 30px
}

.article-content h1
{
	font-size: 28px;
	margin-bottom: 20px;
	color: #222
}

.article-content p,.qrcode-title
{
	margin-bottom: 15px
}

.desktop-share
{
	width: 140px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
	padding: 15px
}

.share-label
{
	font-size: 16px;
	color: #666;
	white-space: nowrap
}

.mobile-share
{
	display: none;
	align-items: center;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	gap: 15px
}

.jiathis_txt
{
	font-size: 14px;
	color: #666
}

.qrcode-container
{
	position: relative
}

.wechat-icon
{
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #07c160;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,.15);
	transition: .3s
}

.mobile-share .wechat-icon
{
	width: 44px;
	height: 44px
}

.wechat-icon:hover
{
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0,0,0,.2)
}

.wechat-img
{
	width: 26px;
	height: 26px;
	filter: brightness(0) invert(1)
}

.mobile-share .wechat-img
{
	width: 22px;
	height: 22px
}

.qrcode-popup
{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	animation: .3s fadeIn
}

.close-btn,.qrcode-popup.active
{
	display: flex
}

.qrcode-content
{
	background: #fff;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	max-width: 300px;
	width: 80%;
	box-shadow: 0 5px 20px rgba(0,0,0,.2);
	animation: .3s scaleIn;
	position: relative
}

.qrcode-title
{
	font-size: 18px;
	color: #333
}

.qrcode-img
{
	width: 200px;
	height: 200px;
	margin: 0 auto 15px;
	border: 1px solid #eee;
	padding: 10px;
	background: #fff
}

.qrcode-tip
{
	font-size: 14px;
	color: #666;
	line-height: 1.5
}

.close-btn
{
	position: absolute;
	top: 15px;
	right: 15px;
	width: 30px;
	height: 30px;
	background: rgba(255,255,255,.2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	z-index: 10000
}

@keyframes fadeIn
{
	from
	{
		opacity: 0
	}

	to
	{
		opacity: 1
	}
}

@keyframes scaleIn
{
	from
	{
		transform: scale(.8);
		opacity: 0
	}

	to
	{
		transform: scale(1);
		opacity: 1
	}
}

@media (max-width:768px)
{
	.container
	{
		flex-direction: column
	}

	.desktop-share
	{
		display: none
	}

	.mobile-share
	{
		display: flex ;
		 margin-top: 0px;   
	}
}

@media (min-width:769px)
{
	.desktop-share
	{
		display: flex
	}

	.mobile-share
	{
		display: none
	}
}

@media (min-width:1200px)
{
	.desktop-share
	{
		position: sticky;
		top: 100px;
		align-self: flex-start
	}
}