	/* 域名弹窗样式 */
	.domain-modal {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		animation: fadeIn 0.3s ease-out;
	}

	.domain-modal.show {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.domain-modal-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.8);
		backdrop-filter: blur(5px);
	}

	.domain-modal-content {
		position: relative;
		background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
		border: 1px solid #333;
		border-radius: 10px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
		max-width: 500px;
		width: 90%;
		max-height: 80vh;
		overflow-y: auto;
		animation: slideIn 0.3s ease-out;
	}

	.domain-modal-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 20px;
		border-bottom: 1px solid #333;
	}

	.domain-modal-title {
		color: #ccc;
		font-size: 18px;
		font-weight: bold;
		margin: 0;
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.domain-icon {
		font-size: 20px;
		color: #d82a0b;
	}

	.domain-modal-close {
		background: none;
		border: none;
		color: #999;
		font-size: 24px;
		cursor: pointer;
		padding: 0;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: all 0.3s ease;
	}

	.domain-modal-close:hover {
		background: #333;
		color: #d82a0b;
	}

	.domain-modal-body {
		padding: 20px;
	}

	.domain-notice-text {
		margin-bottom: 20px;
	}

	.domain-notice-text p {
		color: #ccc;
		margin: 0;
		font-size: 14px;
		line-height: 1.5;
	}

	.domain-list {
		margin-bottom: 20px;
	}

	.domain-item {
		display: flex;
		align-items: center;
		padding: 12px;
		margin-bottom: 10px;
		background: #2a2a2a;
		border: 1px solid #333;
		border-radius: 6px;
		transition: all 0.3s ease;
	}

	.domain-item:hover {
		border-color: #d82a0b;
		box-shadow: 0 2px 8px rgba(216, 42, 11, 0.2);
	}

	.domain-item.primary {
		border-color: #d82a0b;
		background: linear-gradient(135deg, #2a2a2a 0%, #3a2a2a 100%);
	}

	.domain-label {
		color: #d82a0b;
		font-size: 12px;
		font-weight: bold;
		min-width: 80px;
		margin-right: 10px;
	}

	.domain-url {
		color: #ccc;
		font-family: monospace;
		font-size: 14px;
		flex: 1;
		margin-right: 10px;
	}

	.domain-copy {
		background: #d82a0b;
		color: #fff;
		border: none;
		padding: 4px 8px;
		border-radius: 4px;
		font-size: 12px;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.domain-copy:hover {
		background: #b8220a;
		transform: translateY(-1px);
	}

	.domain-tips {
		background: #333;
		border-radius: 6px;
		padding: 15px;
		border-left: 3px solid #d82a0b;
	}

	.domain-tips p {
		color: #999;
		font-size: 13px;
		margin: 5px 0;
		line-height: 1.4;
	}

	.domain-modal-footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 20px;
		border-top: 1px solid #333;
	}

	.domain-checkbox {
		display: flex;
		align-items: center;
		cursor: pointer;
		color: #ccc;
		font-size: 14px;
		user-select: none;
	}

	.domain-checkbox input {
		display: none;
	}

	.checkmark {
		width: 18px;
		height: 18px;
		border: 2px solid #666;
		border-radius: 3px;
		margin-right: 8px;
		position: relative;
		transition: all 0.3s ease;
	}

	.domain-checkbox input:checked + .checkmark {
		background: #d82a0b;
		border-color: #d82a0b;
	}

	.domain-checkbox input:checked + .checkmark:after {
		content: '✓';
		position: absolute;
		top: -2px;
		left: 2px;
		color: #fff;
		font-size: 12px;
		font-weight: bold;
	}

	.domain-btn-primary {
		background: #d82a0b;
		color: #fff;
		border: none;
		padding: 10px 20px;
		border-radius: 6px;
		font-size: 14px;
		font-weight: bold;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.domain-btn-primary:hover {
		background: #b8220a;
		transform: translateY(-1px);
		box-shadow: 0 4px 12px rgba(216, 42, 11, 0.3);
	}

	/* 动画效果 */
	@keyframes fadeIn {
		from { opacity: 0; }
		to { opacity: 1; }
	}

	@keyframes slideIn {
		from {
			opacity: 0;
			transform: translateY(-50px) scale(0.9);
		}
		to {
			opacity: 1;
			transform: translateY(0) scale(1);
		}
	}

	/* 移动端适配 */
	@media (max-width: 767px) {
		.domain-modal-content {
			width: 95%;
			margin: 10px;
		}

		.domain-modal-header {
			padding: 12px 15px;
		}

		.domain-modal-title {
			font-size: 16px;
		}

		.domain-modal-body {
			padding: 12px 15px;
		}

		.domain-notice-text {
			margin-bottom: 15px;
		}

		.domain-list {
			margin-bottom: 15px;
		}

		.domain-item {
			padding: 8px 10px;
			margin-bottom: 8px;
			flex-wrap: wrap;
		}

		.domain-label {
			min-width: 60px;
			font-size: 11px;
			margin-right: 8px;
		}

		.domain-url {
			flex: 1;
			font-size: 12px;
			margin-right: 8px;
			word-break: break-all;
			min-width: 0;
		}

		.domain-copy {
			padding: 4px 8px;
			font-size: 11px;
			flex-shrink: 0;
		}

		.domain-tips {
			padding: 10px;
		}

		.domain-tips p {
			font-size: 12px;
			margin: 3px 0;
		}

		.domain-modal-footer {
			flex-direction: column;
			gap: 12px;
			padding: 12px 15px;
		}

		.domain-btn-primary {
			width: 100%;
			padding: 12px;
		}
	}