/*点赞开始*/
.like-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	backdrop-filter: blur(10px);
}
.like-link {
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: inherit;
	display: block;
}
.like-link:hover {
	text-decoration: none;
	transform: translateY(-3px);
}
.tool_heart {
	width: 20px;
	height: 20px;
	display: block;
	float: left;
	background: url(/images/ico002102.png) no-repeat 0px 50%;
}
.tool_heart.liked {
	background: url(/images/ico002102-2.png) no-repeat 0px 50%;
}
.tool_count {
	color: #333;
	transition: all 0.3s ease;
}
.tool_count.liked {
	animation: countPop 0.5s;
}
 @keyframes heartBeat {
 0% {
transform: scale(1);
}
 25% {
transform: scale(1.3);
}
 50% {
transform: scale(0.9);
}
 75% {
transform: scale(1.2);
}
 100% {
transform: scale(1);
}
}
 @keyframes countPop {
 0% {
transform: scale(1);
}
 50% {
transform: scale(1.3);
}
 100% {
transform: scale(1);
}
}
/*点赞技术*/
/*收藏开始*/
.collect-link {
	transition: all 0.3s ease;
	position: relative;
	text-decoration: none;
}
.collect-link:hover {
	transform: translateY(-5px);
	text-decoration: none;
}
.collect-link:active {
	transform: translateY(2px);
}
.collect-icon {
	font-size: 18px;
	line-height: 0px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	color: #333;
}
.collect-icon.collected {
	color: #ffd700;
	animation: starTwinkle 0.6s;
}
.collect-count {
	color: #333;
	padding-top: 3px;
	transition: all 0.3s ease;
}
.collect-count.collected {
	animation: countPop 0.5s;
}
 @keyframes starTwinkle {
 0% {
transform: scale(1) rotate(0deg);
}
 25% {
transform: scale(1.3) rotate(-10deg);
}
 50% {
transform: scale(0.9) rotate(10deg);
}
 75% {
transform: scale(1.2) rotate(-5deg);
}
 100% {
transform: scale(1) rotate(0deg);
}
}
 @keyframes countPop {
 0% {
transform: scale(1);
}
 50% {
transform: scale(1.4);
}
 100% {
transform: scale(1);
}
}
.collect_toast {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 15px 25px;
	border-radius: 50px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transition: all 0.4s ease;
	z-index: 1000;
}
.collect_toast.show {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
.ripple {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 215, 0, 0.5);
	transform: scale(0);
	animation: ripple 0.6s linear;
}
 @keyframes ripple {
 to {
 transform: scale(4);
 opacity: 0;
}
}
/*收藏结束*/
/*分享开始*/
.share-btn {
	background: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
	background: url('/images/ico00210_share.png') no-repeat 0px 50%;
	padding-left: 20px;
}
.share-btn:hover {
	color: #C30;
	background: url('/images/ico00210_share-2.png') no-repeat 0px 50%;
}
.share-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}
.share-content {
	background: white;
	width: 90%;
	max-width: 450px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	padding: 25px;
	animation: modalAppear 0.3s ease;
}
 @keyframes modalAppear {
 from {
 opacity: 0;
 transform: scale(0.9);
}
to {
	opacity: 1;
	transform: scale(1);
}
}
.share-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}
.close-btn {
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #666;
	cursor: pointer;
	transition: color 0.3s;
}
.close-btn:hover {
	color: #e74c3c;
}
.url-container {
	display: flex;
	margin-bottom: 15px;
}
.url-input {
	flex: 1;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px 0 0 8px;
	font-size: 0.95rem;
	background: #f9f9f9;
	overflow: hidden;
	text-overflow: ellipsis;
}
.copy-btn {
	background: #ff4800;
	color: white;
	border: none;
	padding: 0 20px;
	border-radius: 0 8px 8px 0;
	cursor: pointer;
	transition: background 0.3s;
}
.copy-btn:hover {
	background: #000;
}
.success-message {
	color: #4CAF50;
	text-align: center;
	margin-top: 15px;
	font-weight: 600;
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 0.9rem;
}
 @media (max-width: 600px) {
.share-content {
	width: 95%;
	padding: 20px;
}
}
/*分享结束*/
