* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	/* background-color: #eef2f5; */
	/* font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Helvetica, Arial, sans-serif; */
	/* line-height: 1.5; */
	/* color: #1e2b3c; */
	/* padding: 30px 20px; */
	/* min-height: 100vh; */
	/* display: flex; */
	/* flex-direction: column; */
	/* align-items: center; */
}

/* 主卡片容器 */
.application-container {
	max-width: 1200px;
	width: 100%;
	background-color: #ffffff;
	/* border-radius: 12px; */
	/* box-shadow: 0 8px 20px rgba(0, 20, 40, 0.08); */
	overflow: hidden;
	/* border: 1px solid #dce5ec; */
	margin: 0 auto;
}

/* 头部 */
/* .header {
	background-color: #1e3a5f;
	padding: 20px 30px;
	border-bottom: 4px solid #c09d5e;
}
.header h1 {
	font-size: 1.9rem;
	font-weight: 500;
	color: white;
	letter-spacing: 1px;
	display: flex;
	align-items: center;
}
.header h1:before {
	content: "⚖️";
	font-size: 2rem;
	margin-right: 12px;
	opacity: 0.9;
}
.header .subhead {
	color: #d4e3fd;
	font-size: 0.95rem;
	margin-top: 6px;
	padding-left: 44px;
} */

/* 表单主体 */
.form-body {
	padding: 30px 35px 35px 35px;
}

/* 提示信息 */
.notice {
	background-color: #f0f7fe;
	border-left: 5px solid #1e3a5f;
	padding: 14px 20px;
	border-radius: 6px;
	margin-bottom: 28px;
	font-size: 0.95rem;
	color: #1e3a5f;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.notice .icon {
	font-size: 1.4rem;
}
.notice .text {
	flex: 1;
}
.notice .text strong {
	font-weight: 600;
}

/* 表单组 */
.form-group {
	margin-bottom: 22px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
.form-group label {
	width: 160px;
	font-weight: 500;
	padding-top: 10px;
	color: #1e3a5f;
	font-size: 1rem;
	display: flex;
	align-items: center;
}
.label-required:after {
	content: "*";
	color: #c84141;
	font-weight: 600;
	font-size: 1.2rem;
	margin-left: 6px;
}
.field-wrapper {
	flex: 1;
	min-width: 280px;
}

/* 输入框样式 */
input, select, textarea {
	width: 100%;
	padding: 12px 16px;
	font-size: 1rem;
	border: 1px solid #bccbd8;
	border-radius: 8px;
	background-color: white;
	transition: 0.2s;
	font-family: inherit;
}
input:focus, select:focus, textarea:focus {
	border-color: #1e5f9e;
	outline: none;
	box-shadow: 0 0 0 3px rgba(30, 90, 150, 0.15);
}
input::placeholder, textarea::placeholder {
	color: #8a9bb0;
}

/* 提示标签样式 */
.hint-tag {
	background: #f9f2f2;
	color: #ab3e3e;
	padding: 5px 12px;
	border-radius: 30px;
	font-size: 0.85rem;
	display: inline-block;
	margin-top: 8px;
}

/* 辅助文字 */
.hint {
	font-size: 0.85rem;
	color: #657e9b;
	margin-top: 6px;
	margin-left: 2px;
}

/* 实名提示样式 */
.realname-hint {
	background: #fef0f0;
	color: #ab3e3e;
	padding: 4px 12px;
	border-radius: 30px;
	font-size: 0.85rem;
	display: inline-block;
	margin-top: 8px;
	border: 1px solid #ffcdcd;
}

/* 多行文本 */
textarea {
	resize: vertical;
	min-height: 120px;
}
#complaintDescription {
	min-height: 150px;
}
#yourAppeal {
	min-height: 100px;
}

/* 字数统计行 */
.char-counter {
	font-size: 0.8rem;
	text-align: right;
	margin-top: 6px;
	color: #4a6782;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
}
.char-counter span {
	font-weight: 500;
}
.char-counter.warning {
	color: #b85c5c;
}
.char-counter.exceed {
	color: #c84141;
	font-weight: 600;
}

/* 证明材料上传区域 */
.upload-area {
	border: 2px dashed #bccbd8;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	background-color: #f9fcff;
	transition: 0.2s;
	cursor: pointer;
}
.upload-area:hover {
	border-color: #1e5f9e;
	background-color: #f0f7fe;
}
.upload-area .upload-icon {
	font-size: 2rem;
	color: #4a6782;
	margin-bottom: 8px;
}
.upload-area .upload-text {
	color: #1e3a5f;
	font-weight: 500;
	margin-bottom: 4px;
}
.upload-area .upload-hint {
	font-size: 0.85rem;
	color: #8a9bb0;
}
.upload-area.has-file {
	border-color: #1e5f9e;
	background-color: #e8f0fe;
}
.file-list {
	margin-top: 12px;
}
.file-item {
	background-color: #f0f4f9;
	border: 1px solid #d9e4f0;
	border-radius: 6px;
	padding: 8px 12px;
	margin-bottom: 6px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.95rem;
}
.file-item .file-name {
	color: #1e2b3c;
	max-width: 70%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.file-item .file-size {
	color: #657e9b;
	font-size: 0.8rem;
}
.file-item .remove-file {
	color: #c84141;
	cursor: pointer;
	font-weight: 600;
	padding: 0 6px;
	font-size: 1.2rem;
	line-height: 1;
}
.file-item .remove-file:hover {
	color: #a12323;
}

/* 验证码区域 */
.captcha-container {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-wrap: wrap;
}
.captcha-input {
	flex: 2;
	min-width: 150px;
}
.captcha-image {
	flex: 1;
	min-width: 50px;
	height: 48px;
	background: linear-gradient(145deg, #e75755, #f22825);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 6px;
	font-family: 'Courier New', monospace;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	cursor: pointer;
	user-select: none;
	border: 2px solid #c09d5e;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.captcha-refresh {
	flex: 0 0 auto;
	color: #1e3a5f;
	background: #f0f7fe;
	border: 1px solid #b0c4de;
	border-radius: 8px;
	padding: 12px 16px;
	cursor: pointer;
	font-size: 1rem;
	white-space: nowrap;
	transition: 0.2s;
}
.captcha-refresh:hover {
	background: #e1f0fa;
	border-color: #1e5f9e;
}
.captcha-error {
	color: #c84141;
	font-size: 0.9rem;
	margin-top: 6px;
}

/* 按钮区域 */
.action-buttons {
	margin-top: 38px;
	display: flex;
	gap: 16px;
	align-items: center;
	border-top: 1px solid #e2eaf2;
	padding-top: 30px;
	flex-wrap: wrap;
}
.btn {
	padding: 14px 28px;
	font-size: 1.1rem;
	border-radius: 40px;
	border: none;
	font-weight: 500;
	cursor: pointer;
	transition: 0.15s;
	border: 1px solid transparent;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.btn-primary {
	background-color: #f22825;
	color: white;
	min-width: 140px;
}
.btn-primary:hover {
	background-color: #123152;
	box-shadow: 0 6px 12px rgba(0, 40, 70, 0.15);
	border-color: #0b263f;
}
.btn-secondary {
	background-color: #ffffff;
	border-color: #b0c4de;
	color: #1e3a5f;
}
.btn-secondary:hover {
	background-color: #f0f6fd;
	border-color: #7f9bc0;
}
.btn-reset {
	background-color: #f8fafd;
	border-color: #cbd8e8;
	color: #4d6278;
}
.btn-reset:hover {
	background-color: #eef3f9;
	border-color: #9bb1cc;
}

/* 必填星号提醒 */
.required-tip {
	background: #f9f2f2;
	color: #ab3e3e;
	padding: 5px 12px;
	border-radius: 30px;
	font-size: 0.85rem;
	display: inline-block;
	margin-left: auto;
}

/* 适配移动设备 */
@media (max-width: 680px) {
	.form-group label {
		width: 100%;
		padding-top: 0;
		margin-bottom: 6px;
	}
	.header h1 { font-size: 1.6rem; }
	.form-body { padding: 20px; }
	.action-buttons { flex-direction: column; align-items: stretch; }
	.btn { width: 100%; }
	.required-tip { margin-left: 0; text-align: center; }
	.captcha-container { flex-direction: column; align-items: stretch; }
	.captcha-image { height: 60px; }
}