/* 全局滚动条美化 */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb {
	/* background: linear-gradient(135deg, #6366F1, #8B5CF6); */
	background: #0A84FF;
	border-radius: 4px;
	transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
	/* background: linear-gradient(135deg, #4F46E5, #7C3AED); */
	background: #007AFF;
	transform: scale(1.05);
}

::-webkit-scrollbar-corner {
	background: transparent;
}

/* Firefox滚动条样式 */
html {
	scrollbar-width: thin;
	scrollbar-color: #007AFF rgba(255, 255, 255, 0.1);
}




/* 自定义滚动条样式 */
.history-list::-webkit-scrollbar {
	width: 10px;
}

.history-list::-webkit-scrollbar-track {
	background: #2C2C2E;
	border-radius: 5px;
}

.history-list::-webkit-scrollbar-thumb {
	background: #0A84FF;
	border-radius: 5px;
	transition: background 0.3s;
}

.history-list::-webkit-scrollbar-thumb:hover {
	background: #007AFF;
}

/* Firefox 滚动条样式 */
.history-list {
	scrollbar-width: thin;
	scrollbar-color: #0A84FF #2C2C2E;
}



/* 弹窗样式 */
.modal-overlay-tk {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	animation: fadeIn 0.3s ease;
}

.modal-tk {
	background-color: white;
	border-radius: 16px;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	transform: scale(0.9);
	animation: modalAppear 0.4s ease forwards;
}

.modal-header-tk {
	background: linear-gradient(135deg, #ff6b6b, #ff4757);
	color: white;
	padding: 24px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-title-tk {
	font-size: 22px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.modal-title-tk i {
	font-size: 24px;
}

.close-btn-tk {
	background: none;
	border: none;
	color: white;
	font-size: 28px;
	cursor: pointer;
	transition: transform 0.2s ease;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.close-btn-tk:hover {
	transform: rotate(90deg);
	background-color: rgba(255, 255, 255, 0.2);
}

.modal-content-tk {
	padding: 30px;
	color: #333;
}

.modal-text-tk {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 24px;
}

.modal-contact-tk {
	background-color: #f8f9fa;
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
	border-left: 4px solid #ff6b6b;
}
.modal-contact-tk{
	color: #333;
}

.modal-contact-tk a {
	color: #ff6b6b;
	text-decoration: none;
	font-weight: 600;
	display: block;
	margin-top: 8px;
	font-size: 18px;
}

.modal-contact-tk a:hover {
	text-decoration: underline;
}

/* 二维码图片样式 */
.qrcode-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 15px;
}

.qrcode-img {
	width: 180px;
	height: 180px;
	object-fit: contain;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 10px;
	background-color: white;
	margin-top: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.qrcode-label {
	margin-top: 12px;
	font-size: 14px;
	color: #777;
	text-align: center;
}

.modal-footer-tk {
	padding: 20px 30px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: flex-end;
}

.modal-btn-tk {
	background: linear-gradient(135deg, #ff6b6b, #ff4757);
	color: white;
	border: none;
	padding: 12px 28px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.modal-btn-tk:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

/* 图片加载错误提示 */
.img-error {
	width: 180px;
	height: 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px dashed #ddd;
	border-radius: 8px;
	color: #999;
	font-size: 14px;
	padding: 20px;
	text-align: center;
}

.img-error i {
	font-size: 32px;
	margin-bottom: 10px;
	color: #ccc;
}

/* 动画 */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes modalAppear {
	to {
		transform: scale(1);
	}
}

/* 响应式 */
@media (max-width: 600px) {
	.footer-brand {
		padding: 30px 20px;
	}

	.social-icons {
		gap: 15px;
	}

	.social-icon {
		width: 44px;
		height: 44px;
		font-size: 20px;
	}

	.modal {
		width: 95%;
		max-width: 90%;
	}

	.qrcode-img {
		width: 150px;
		height: 150px;
	}
}


.dynamic-link-container{
	color: #333;
}