@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
	background: linear-gradient(135deg, #FFEFBA 0%, #FFFFFF 50%, #FFE4C4 100%);
	min-height: 100vh;
	color: #333;
}
.page-container {
	max-width: 980px;
	margin: 0 auto;
	padding: 15px 15px;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.hero-section {
	text-align: center;
	padding: 20px 20px;
}
.hero-title {
	font-size: 28px;
	font-weight: 800;
	background: linear-gradient(135deg, #FF6B35 0%, #F7C59F 50%, #FF6B35 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 6px;
	letter-spacing: 2px;
}
.hero-subtitle {
	font-size: 13px;
	color: #666;
	margin-bottom: 15px;
}
.domain-box {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 20px 20px;
	box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.domain-box .input-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}
.domain-box .prefix {
	font-size: 18px;
	font-weight: 600;
	color: #FF6B35;
}
.domain-box input[type="text"] {
	flex: 1;
	min-width: 250px;
	max-width: 450px;
	height: 46px;
	padding: 0 18px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	border: 2px solid #FFD5B8;
	border-radius: 10px;
	outline: none;
	transition: all 0.3s ease;
	background: #FFF9F5;
}
.domain-box input[type="text"]:focus {
	border-color: #FF6B35;
	box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
	background: #fff;
}
.domain-box input[type="text"]::placeholder {
	color: #AAA;
	font-weight: 400;
}
.domain-box .btn {
	height: 46px;
	padding: 0 30px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}
.domain-box .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}
.domain-box .btn:active {
	transform: translateY(0);
}
.tip-text {
	font-size: 12px;
	color: #999;
	margin-top: 10px;
}
.result-section {
	margin-bottom: 15px;
}
.result-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	box-shadow: 0 8px 30px rgba(255, 107, 53, 0.12);
	overflow: hidden;
}
.result-header {
	background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
	padding: 12px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.result-header h2 {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}
.result-header .page-info {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
}
.countdown-section {
	padding: 8px 20px;
	background: #FFF9F5;
	border-bottom: 1px solid #FFE4D0;
}
.countdown-bar {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 5px;
	gap: 12px;
}
.countdown-progress-text {
	font-size: 13px;
	color: #FF6B35;
	font-weight: 600;
}
.countdown-label {
	font-size: 13px;
	color: #666;
}
.countdown-time {
	font-size: 14px;
	font-weight: 700;
	color: #FF6B35;
}
.countdown-time .countdown-number {
	font-size: 18px;
}
.countdown-progress {
	height: 4px;
	background: #FFE4D0;
	border-radius: 2px;
	overflow: hidden;
}
.countdown-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #FF6B35, #F7931E);
	border-radius: 2px;
	transition: width 1s linear;
	width: 100%;
}
.result-content {
	padding: 0;
	background: #FFF9F5;
	position: relative;
	min-height: 150px;
}
.loading-indicator {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #FFF9F5;
	z-index: 10;
}
.loading-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid #FFE4D0;
	border-top-color: #FF6B35;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin-bottom: 10px;
}
@keyframes spin {
	to { transform: rotate(360deg); }
}
.loading-text {
	font-size: 13px;
	color: #FF6B35;
	font-weight: 500;
}
.workframe {
	width: 100%;
	height: 400px;
	border: none;
	display: block;
	overflow: hidden;
}
.result-footer {
	padding: 10px 20px;
	background: #FFF9F5;
	border-top: 1px solid #FFE4D0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.result-footer .stats {
	font-size: 13px;
	color: #666;
}
.result-footer .stats span {
	font-weight: 700;
}
.result-footer .stats .success {
	color: #10B981;
}
.result-footer .stats .error {
	color: #EF4444;
}
.complete-section {
	text-align: center;
	padding: 30px 20px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	box-shadow: 0 8px 30px rgba(255, 107, 53, 0.12);
	margin-bottom: 15px;
}
.complete-section .complete-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}
.complete-section h2 {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin-bottom: 8px;
}
.complete-section p {
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
.complete-section .btn {
	height: 44px;
	padding: 0 35px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, #10B981 0%, #059669 100%);
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}
.complete-section .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}
.seo-content {
	flex: 1;
}
.seo-content .cbox {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	margin-bottom: 12px;
	overflow: hidden;
}
.seo-content .cbox .head {
	height: 36px;
	border-bottom: 1px solid #FFE4D0;
	background: linear-gradient(135deg, #FFF5EE 0%, #FFFAF5 100%);
	overflow: hidden;
	line-height: 36px;
	padding: 0 15px;
}
.seo-content .cbox .head h2 {
	float: left;
	display: inline;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
	overflow: hidden;
	color: #FF6B35;
}
.seo-content .cbox .con {
	overflow: hidden;
	line-height: 180%;
	padding: 12px 15px;
	color: #333;
	font-size: 13px;
}
.seo-content .box_border {
	border: 1px solid #E8E8E8;
	padding: 12px;
	margin-top: 6px;
	background: #fafafa;
	border-radius: 6px;
}
.seo-content .accueil_box_2 {
	background: #fff;
}
.seo-content ul {
	list-style: none;
	padding-left: 5px;
}
.seo-content ul li {
	margin-bottom: 6px;
	padding-left: 5px;
}
.seo-content p {
	margin-bottom: 8px;
	line-height: 1.8;
}
#footer {
	text-align: center;
	padding: 12px 0;
	font-size: 11px;
	color: #999;
	margin-top: 15px;
}
@media screen and (max-width: 768px) {
	.page-container {
		max-width: 100%;
		padding: 10px 10px;
	}
	.hero-section {
		padding: 15px 10px;
	}
	.hero-title {
		font-size: 24px;
	}
	.domain-box {
		padding: 15px 12px;
	}
	.domain-box input[type="text"] {
		min-width: 100%;
		font-size: 15px;
	}
	.domain-box .btn {
		width: 100%;
		margin-top: 8px;
	}
	.workframe {
		height: 320px;
	}
}
@media screen and (max-width: 480px) {
	.hero-title {
		font-size: 20px;
	}
	.domain-box input[type="text"] {
		height: 42px;
		font-size: 14px;
	}
	.domain-box .btn {
		height: 42px;
		font-size: 14px;
	}
	.workframe {
		height: 220px;
	}
}