@charset "utf-8";

/*
 *	Created by 71nc.com on 23/03/28
*/
html {

	font-size: 16px;
	overflow-x: hidden;

}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

ul,
ol,
li {
	list-style: outside none none;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0px;
	border: 0;
	font-size: 100%;
	outline: none;
}

table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	padding: 0px;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	overflow-x: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html::-webkit-scrollbar {
	width: 8px;
	background: none;
}

html::-webkit-scrollbar-thumb {
	width: 8px;
	background: #16243d;
}

html::-webkit-scrollbar-corner {
	background: none;
}

html::-webkit-scrollbar:horizontal {
	height: 9px;
}

body {
	margin: 0 auto;
	color: #333;
	background-color: #ffffff;
	font-family: 'syhtN';
	overflow-x: hidden;
}

/* 中屏（1200-1920px）：微调根字体，适配比例 */
@media (min-width: 1200px) and (max-width: 1919px) {
	html {
		font-size: calc(100vw / 120);
		/* 120=1920÷16，保证1920设计稿比例 */
	}
}

/* 小屏（<1200px）：降低根字体，优化移动端体验 */
@media (max-width: 1199px) {
	html {
		font-size: calc(100vw / 75);
		/* 75=1200÷16，适配小屏比例 */
	}
}

.loginBox {
	width: 28rem;
	position: absolute;
	right: 15%;
	top: 15rem;
}

.registerBox {
	width: 28rem;
	position: absolute;
	right: 15%;
	top: 10rem;
}
/* 独立登录模块样式 - 不包含背景颜色 */
.login-module {
	width: 100%;
}

.login-title {
	text-align: center;
	color: #fff;
	line-height: 5.375rem;
	font-size: 2.875rem;
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #f39800;
}

.login-title a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	font-size: 1.25rem;
}

.register-link a:hover {
	text-decoration: underline;
}

.login-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.form-group {
	position: relative;
}

.form-group .icon {
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	color: #666;
	font-size: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.form-group input {
	width: 100%;
	line-height: 3.625rem;
	font-size: 1.125rem;
	border: none;
	border-radius: 5px;
	background-color: #fff;
	color: #333;
	transition: all 0.3s ease;
	box-shadow: inset 0 5px 6px #c6c3c2;
	padding: 0 4.375rem;
}

.form-group input:focus {
	outline: none;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(243, 152, 0, 0.5);
}

.form-group input::placeholder {
	color: #999;
}

.login-button {
	width: 100%;
	line-height: 3.75rem;
	font-size: 1.5rem;
	color: #fff;
	background-color: #f39800;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.login-button:hover {
	background-color: #d58705;
}



.login-footer {
	width: 100%;
	margin-top: 30px;
	color: #fff;
	font-size: 1.225rem;
	display: flex;
	justify-content: space-between;
}

.login-footer a {
	color: #ffd700;
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline-block;
}

.login-footer a:hover {
	color: #ffed4e;
	text-decoration: underline;
}


/* 注册 */
      .register-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        
        .verify-code-container {
            display: flex;
            gap: 10px;
            align-items: stretch;
        }
        
        .verify-code-container .form-group {
            flex: 1;
        }
        
        .get-code-btn {
            padding: 0 25px;
            background-color: #ff6b6b;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Microsoft YaHei', sans-serif;
        }
        
        .get-code-btn:hover {
            background-color: #ff5252;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }
        
        .get-code-btn:active {
            transform: translateY(0);
        }
        
        .get-code-btn.disabled {
            background-color: #cccccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .terms-agreement {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        
        .terms-agreement input[type="checkbox"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
			border-radius: 100%;
        }
        
        .terms-agreement label {
            color: #fff;
            font-size: 18px;
            cursor: pointer;
        }
        
        .terms-agreement a {
            color: #f7931e;
            text-decoration: none;
        }
        
        .terms-agreement a:hover {
            text-decoration: underline;
        }
        
        
        .register-button:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
		
		.login-prompt {
		    text-align: center;
		    margin-top: 20px;
		    color: #fff;
		    font-size: 18px;
		}
		
		.login-prompt a {
		    color: #f7931e;
		    text-decoration: none;
		}
		
		.login-prompt a:hover {
		    text-decoration: underline;
		}
		
		/* 响应式设计 */
		@media (max-width: 768px) {
			.login-module,.register-module {
				padding: 20px;
			}
		
			.login-title {
				font-size: 24px;
				margin-bottom: 30px;
				line-height: 56px;
			}
		.login-title a{font-size: 16px;}
			.form-group input {
				line-height: 50px;
				font-size: 16px;
				padding: 0 25px 0 50px;
			}
		
			.login-button {
				padding: 12px;
				font-size: 16px;
				margin-top: 0;
			}
			.loginBox,.registerBox{width: 100%; position: relative; right:0;}
			.login-footer,.terms-agreement label,.login-prompt,.get-code-btn{font-size: 16px;}
		.form-group .icon{left: 15px;}
		}
		.sydw{width: 30px; position:absolute; left: 34%; top: 50px;}