input{
	outline:none
	}

.uu-head {
	width: 100%;
	height: 180px;
	background: #0F4B9D;
	margin-bottom: 40px;
	position: relative;
}

.hide, .hidden, [hide], [hidden] {
	display: none;
}

.uu-head-box {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 20px;
	justify-content: space-between;
}
.uu-head-box .logo-txt {
	color: #fff;
	font-size: 24px;
	align-items: center;
	font-weight: bold;
}

.uu-head-box .logo-txt .text {
	margin-top: 12px;
}

.uu-head-box .wza-box {
	position: absolute;
	top: 10px;
	right: 20px;
	color: #F79600;
}

.footer {
	display: flow-root;
	overflow: hidden;
}

.details-box {
	width: 100%;
	max-width: 100%;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	padding: 5% 3%;
	transition: none;
	margin: 0 auto;
	box-sizing: border-box;
}

/* 标题区 — 增加一点顶部内边距，视觉舒适 */
.user_box_tit {
	margin-bottom: 28px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e6eaef;
	padding-top: 4px;
}

.user_box_tit h2 {
	font-size: 26px;
	font-weight: 600;
	color: #1f2a3a;
	letter-spacing: -0.3px;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
}

.user_box_tit h2::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 26px;
	background: #1f63ae;   /* 主色统一 */
	border-radius: 6px;
	margin-right: 12px;
}

.user_box_tit span {
	font-size: 14px;
	color: #6b7f96;
	margin-left: 17px;
	font-weight: 400;
	letter-spacing: 0.2px;
}

/* 表单区域 */
.user_box {
	width: 100%;
}

.user_box_con {
	width: 100%;
}

/* 表单列表 */
.user_box_con ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.user_box_con ul li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #ffffff;    /* 输入框白色背景，干净 */
	border-radius: 12px;
	padding: 0 16px;
	min-height: 56px;
	border: 1px solid #dce2ec;
	transition: border 0.15s, box-shadow 0.15s, background 0.15s;
}

.user_box_con ul li:focus-within {
	background: #ffffff;
	border-color: #1f63ae;
	box-shadow: 0 0 0 3px rgba(31, 99, 174, 0.12);
}

.user_box_con ul li.no-border {
	border: none;
	padding: 0;
}

.user_box_con ul li.no-border:focus-within {
	box-shadow: none;
}

/* 统一标签 */
.attr {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: 500;
	color: #2c3a4b;
	white-space: nowrap;
	min-width: 72px;
	margin-right: 4px;
}

.attr strong {
	color: #e54545;
	font-size: 16px;
	margin-right: 2px;
}

/* 输入框通用 */
.user_box_con input[type="text"],
.user_box_con input[type="password"] {
	flex: 1;
	border: none;
	background: transparent;
	font-size: 15px;
	padding: 14px 0;
	min-width: 0;
	width: 100%;
	color: #1a2533;
	outline: none;
	font-weight: 400;
	letter-spacing: 0.3px;
}

.user_box_con input::placeholder {
	color: #b0bacb;
	font-weight: 400;
	font-size: 14px;
}

/* 验证码行特殊处理：让输入框和图片在一行 */
.user_box_con ul li:nth-child(3) {
	padding-right: 8px;
	flex-wrap: nowrap;
}

.user_box_con ul li:nth-child(3) .ipt2 {
	flex: 1;
	min-width: 100px;
	width: auto;
}

/* 验证码图片容器 */
.input-group-pl-l {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: 8px;
	border-radius: 8px;
	overflow: hidden;
	background: #eef2f7;
	height: 44px;
	width: 110px;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.15s;
}

.input-group-pl-l img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	background: #dce2ec;
}

.input-group-pl-l:active {
	opacity: 0.7;
}

/* 登录按钮 — 颜色 #1f63ae, 圆角 6px */
.btn-register.login-btn {
	width: 100%;
	background: #1f63ae;
	border: none;
	border-radius: 6px;        /* 按要求 6px */
	padding: 16px 0;
	font-size: 18px;
	font-weight: 600;
	color: white;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
	margin-top: 6px;
	box-shadow: 0 4px 10px rgba(31, 99, 174, 0.25);
}

.btn-register.login-btn:active {
	background: #17508f;
	transform: scale(0.98);
	box-shadow: 0 2px 6px rgba(31, 99, 174, 0.2);
}

/* 底部注册/忘记密码 */
.user_box_con > div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	margin-top: 28px;
	padding-top: 4px;
	font-size: 14px;
	color: #6b7a8f;
	gap: 4px 6px;
}

.user_box_con > div a {
	text-decoration: none;
	font-weight: 500;
}

.user_box_con > div a span {
	color: #1f63ae;      /* 统一主色 */
	transition: color 0.15s;
}

.user_box_con > div a span:active {
	color: #134074;
}

/* 忘记密码 (保留结构，默认隐藏) */
.user_box_con > div .forgot-link {
	color: #dd0000;
	font-weight: 500;
	margin-right: auto;
	text-decoration: none;
	display: none;   /* 默认隐藏，与设计一致 */
}

.user_box_con > div .forgot-link:active {
	opacity: 0.6;
}

/* 适配小屏 */
@media (max-width: 380px) {
	body {
		padding: 16px 2%;   /* 保持 2% 边距 */
	}
	.attr {
		min-width: 60px;
		font-size: 14px;
	}
	.user_box_con ul li {
		padding: 0 12px;
		min-height: 50px;
	}
	.input-group-pl-l {
		width: 96px;
		height: 38px;
	}
	.user_box_tit h2 {
		font-size: 22px;
	}
}

/* 大屏仍保持移动风格，宽度 100%，左右边距 2% */
@media (min-width: 600px) {
	body {
		padding: 30px 2%;
		background: #f5f7fa;
	}
}

/* 去除输入框默认样式 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance: textfield;
}

.user_box_con input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
	-webkit-text-fill-color: #1a2533 !important;
}

.user_box_con input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
}