/* 全局样式重置和基础设置 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', 'Roboto', sans-serif;
	background-color: #f8f9fa;
	color: #333;
	line-height: 1.6;
}

/* 导航栏样式 */
#tiko_nav_bar {
	width: 100%;
	position: fixed;
	height: 60px;
	font-size: 18px;
	color: #333;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

/* 警告信息样式 */
#tiko_warning {
	width: 100%;
	background-color: #ffebee;
	padding: 16px;
	position: fixed;
	top: 60px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 2px solid #ff4757;
	z-index: 999;
}

#tiko_warning img {
	width: 24px;
	height: 24px;
	margin-right: 12px;
}

#tiko_warning div {
	color: #d63031;
	font-size: 14px;
	font-weight: 500;
	flex: 1;
}

/* 主内容容器 */
#tiko_content-container {
	position: relative;
	top: 130px;
	max-width: 600px;
	margin: 0 auto 60px;
	padding: 30px;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Logo 区域 */
#tiko_logo {
	text-align: center;
	margin-bottom: 40px;
}

#tiko_logo img {
	width: 100px;
	height: 100px;
	margin-bottom: 16px;
	border-radius: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#tiko_logo div {
	font-size: 24px;
	font-weight: 700;
	color: #333;
}

/* 删除账号步骤 */
#tiko_steps {
	margin-bottom: 32px;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #ff4757;
}

#tiko_steps h3 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 16px;
}

#tiko_steps ol {
	padding-left: 24px;
}

#tiko_steps li {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
	line-height: 1.5;
}

/* 表单样式 */
#tiko_delete-form {
	width: 100%;
}

.form-group {
	margin-bottom: 24px;
}

/* 标签样式 */
#tiko_account_tip,
#tiko_password_tip {
	display: block;
	color: #666;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
}

/* 输入框容器 */
#tiko_accout_input,
#tiko_password_input {
	position: relative;
}

/* 输入框样式 */
input {
	font-size: 16px;
	color: #333;
	width: 100%;
	background-color: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	padding: 14px 16px;
	transition: all 0.3s ease;
}

input:focus {
	outline: none;
	border-color: #ff4757;
	box-shadow: 0 0 0 2px rgba(255, 71, 87, 0.1);
	background-color: #fff;
}

/* 输入框图标 */
#tiko_accout_input img,
#tiko_password_input img {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	transition: opacity 0.3s ease;
}

#tiko_accout_input img:hover,
#tiko_password_input img:hover {
	opacity: 0.7;
}

/* 描述和提示区域 */
#tiko_desc,
#tiko_tips {
	margin: 32px 0;
	padding: 16px;
	border-radius: 8px;
	background-color: #f8f9fa;
}

#tiko_desc h3,
#tiko_tips h3 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
}

#tiko_desc p,
#tiko_tips p {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
	line-height: 1.5;
}

#tiko_tips a {
	color: #ff4757;
	text-decoration: none;
	transition: color 0.3s ease;
}

#tiko_tips a:hover {
	text-decoration: underline;
}

/* 提交按钮区域 */
#tiko_submit-area {
	width: 100%;
	margin-top: 40px;
	text-align: center;
}

#tiko_submit-area button {
	width: 100%;
	background-color: #ff4757;
	border-radius: 8px;
	padding: 16px;
	border: none;
	color: white;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

#tiko_submit-area button:hover {
	background-color: #e84118;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(255, 71, 87, 0.3);
}

#tiko_submit-area button:active {
	transform: translateY(0);
}

#tiko_submit-area button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* 客服相关样式（如果需要启用） */
#tiko_customer-service {
	position: fixed;
	width: 54px;
	height: 64px;
	right: 17px;
	bottom: 90px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

#tiko_customer-service:hover {
	transform: scale(1.1);
}

#tiko_customer-button {
	position: fixed;
	padding: 8px 12px;
	bottom: 80px;
	right: 12px;
	background: linear-gradient(94deg, #4babff 0%, #4693ff 48%, #4693ff 100%);
	border-radius: 54px;
	text-align: center;
	color: white;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

#tiko_customer-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(75, 171, 255, 0.4);
}

#tiko_bottom-box {
	position: relative;
	height: 120px;
}

/* 关闭按钮样式 */
.close {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 30px;
	height: 30px;
	color: #fff;
	background: #A1A1A1;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.close:hover {
	background: #7f8c8d;
	transform: rotate(90deg);
}

.close:before,
.close:after {
	position: absolute;
	content: "";
	width: 20px;
	height: 2px;
	background: #fff;
	top: 14px;
	left: 6px;
}

.close:before {
	transform: rotate(45deg);
}

.close:after {
	transform: rotate(-45deg);
}

/* 响应式设计 */
@media (max-width: 768px) {
	#tiko_content-container {
		margin: 0 16px 60px;
		padding: 24px;
	}

	#tiko_nav_bar {
		height: 56px;
		font-size: 16px;
	}

	#tiko_warning {
		top: 56px;
		padding: 12px;
	}

	#tiko_content-container {
		top: 120px;
	}

	#tiko_logo img {
		width: 80px;
		height: 80px;
	}

	#tiko_logo div {
		font-size: 20px;
	}

	#tiko_desc,
	#tiko_tips {
		margin: 24px 0;
		padding: 12px;
	}

	#tiko_submit-area {
		margin-top: 32px;
	}

	/* 成功和错误消息响应式调整 */
	.success-message,
	.error-message {
		font-size: 12px;
		padding: 10px 16px;
	}
}

@media (max-width: 480px) {
	#tiko_content-container {
		padding: 20px;
		margin: 0 12px 40px;
	}

	.form-group {
		margin-bottom: 20px;
	}

	#tiko_desc,
	#tiko_tips {
		margin: 20px 0;
		padding: 10px;
	}

	#tiko_desc h3,
	#tiko_tips h3 {
		font-size: 14px;
	}

	#tiko_desc p,
	#tiko_tips p {
		font-size: 13px;
	}

	#tiko_submit-area {
		margin-top: 28px;
	}

	#tiko_submit-area button {
		padding: 14px;
		font-size: 15px;
	}

	#tiko_nav_bar {
		height: 52px;
		font-size: 15px;
	}

	#tiko_warning {
		top: 52px;
		padding: 10px;
	}

	#tiko_warning div {
		font-size: 12px;
	}

	#tiko_content-container {
		top: 110px;
	}

	#tiko_logo img {
		width: 70px;
		height: 70px;
	}

	#tiko_logo div {
		font-size: 18px;
	}

	/* 输入框调整 */
	input {
		padding: 12px 14px;
		font-size: 15px;
	}

	/* 图标调整 */
	#tiko_accout_input img,
	#tiko_password_input img {
		width: 18px;
		height: 18px;
		right: 12px;
	}

	/* 成功和错误消息调整 */
	.success-message {
		top: 10px;
		right: 10px;
		padding: 8px 14px;
		font-size: 11px;
	}

	.error-message {
		font-size: 11px;
	}
}

@media (max-width: 320px) {
	#tiko_content-container {
		padding: 16px;
	}

	#tiko_desc p,
	#tiko_tips p {
		font-size: 12px;
	}

	#tiko_submit-area button {
		padding: 12px;
		font-size: 14px;
	}
}