		/* 免责声明弹窗基础样式 */
		#disclaimer-modal {
			display: none;
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.7);
			z-index: 9999;
			justify-content: center;
			align-items: center;
		}

		.disclaimer-content {
			background-color: #fff;
			padding: 30px;
			border-radius: 8px;
			max-width: 500px;
			width: 90%;
			text-align: center;
			box-shadow: 0 4px 6px rgba(0,0,0,0.1);
		}

		.disclaimer-content h3 {
			margin-top: 0;
			color: #333;
		}

		.disclaimer-content p {
			color: #666;
			line-height: 1.6;
			margin: 20px 0;
		}

		#disclaimer-confirm {
			background-color: #007bff;
			color: white;
			border: none;
			padding: 10px 20px;
			border-radius: 4px;
			cursor: pointer;
			font-size: 16px;
		}

		/* 深色主题样式 */
		#disclaimer-modal.dark-theme .disclaimer-content {
			background-color: #2c2c2c;
			color: #fff;
		}

		#disclaimer-modal.dark-theme .disclaimer-content h3 {
			color: #fff;
		}

		#disclaimer-modal.dark-theme .disclaimer-content p {
			color: #ccc;
		}