/* 登录弹窗样式 */
.login-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: #000000;
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.login-modal-overlay.active {
    display: flex;
}

.login-modal-container {
    width: 973px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    animation: loginModalFadeIn 0.3s ease-out;
}

@keyframes loginModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 主体部分 */
.login-modal-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 左侧背景区域 */
.login-modal-left {
    display: flex;
	flex-direction: row;;
    align-items: center;
    justify-content: center;
	width: 575px;
	height: 426px;
	overflow: hidden;
}


/* 返回按钮 */
.login-back-btn {
	gap: 5px;
	cursor: pointer;
	transition: color 0.3s;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 27px;

    font-family: 'KingHwaOldSong';
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0em;

    /* 次要文字颜色 */
    color: #909090;
}

.login-back-btn:hover {
	color: #a0a0a0;
}

.login-back-btn svg {
	width: 20px;
	height: 20px;
}

.login-logo {
	width: 575px;
	height: 426px;
	overflow: hidden;
}

.login-logo img {
    width: 100%;
    height: auto;
}

/* 右侧表单区域 */
.login-modal-right {
    position: relative;
	width: 330px;
    height: 400px;
	overflow: hidden;
}


/* 登录标题 */
.login-title {
	font-size: 22px;
    line-height: 29px;
	font-family: 'KingHwaOldSong'; 
	font-weight: normal;
	line-height: normal;
	color: #E0E0E0;
	letter-spacing: 0em;
    margin-bottom: 28px;
}

/* 表单容器 */
.login-form-container {
    width: 100%;
}

.login-form {
    width: 100%;
}

/* 表单组 */
.form-group {
    margin-bottom: 18px;
}
.form-group-box{
    background: #0F0F0F;
	border-radius: 8px;
}

/* 输入框 */
.login-input {
    width: 100%;
    padding: 11px 15px 12px;
    box-sizing: border-box;
	border: none;
	outline: none;
	font-family: Source Han Sans;
	font-size: 16px;
    line-height: 23px;
	color: #E0E0E0;
	background: transparent;
}

.login-input:focus {
	
}

.login-input::placeholder {
    color: #999;
}

/* 验证码组 */
.verification-group {
    display: flex;
    gap: 10px;
	justify-content: space-between;
	align-items: center;
}

.verification-group .login-input {
    flex: 1;
}

.get-code-btn {
    padding: 0px 20px;
	background: #E0E0E0;
    border: none;
	border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
	line-height: 1;
	width: 112px;
	height: 34px;

	font-family: Source Han Sans;
	font-size: 14px;
	/* 黑色 */
	color: #000000;
}

.get-code-btn:hover {
    background: #333;
    color: #fff;
}

.get-code-btn:disabled {
    background: #f5f5f5;
    border-color: #ddd;
    color: #999;
    cursor: not-allowed;
}

/* 协议复选框 */
.agreement-group {
    margin-top: 10px;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
	font-family: Source Han Sans;
	font-size: 14px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 0em;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label a {
	color: #E0E0E0;
}

.checkbox-label a:hover {
    color: #a0a0a0;
    color: #a0a0a0;
}

/* 登录按钮 */
.login-submit-btn {
    width: 100%;
    height: 42px;
    background: #E0E0E0;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Source Han Sans;
    font-size: 14px;
    /* 黑色 */
    color: #000000;
}

.login-submit-btn:hover {
    background: #b0b0b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.login-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* 分割线 */
.login-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
    color: #999;
    font-size: 14px;
    line-height: 20px;
    height: 20px;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #272727;
}

.login-divider span {
    padding: 0 15px;
}

/* 微信登录按钮 */
.wechat-login-btn {
    width: 100%;
    height: 40px;
    padding: 14px;
    background: transparent;
    border: 1px solid #909090;
    border-radius: 8px;
    color: #fff;
    font-family: Source Han Sans;
    font-size: 14px;
    line-height: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
img.wechat-icon{
    width: 18px;
    height: 18px;
    margin-right: 4px;
}

.wechat-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 144, 144, 0.5);
}

/* 手机号登录按钮 */
.phone-login-btn {
    width: 328px;
    height: 40px;
    border: 1px solid #909090;
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(144, 144, 144, 0.5);
}
.phone-login-btn img{
    width: 18px;
    height: 18px;
    margin-right: 4px;
}

/* 微信登录容器 */
.wechat-container {
}

/* 二维码区域 */
.wechat-qrcode {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 52px;
    margin-bottom: 35px;
}

.qrcode-placeholder {
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.qrcode-placeholder img {
    width: 146px;
    height: 146px;
    object-fit: contain;
    margin-bottom: 22px;
}

.qrcode-text {
    font-family: 'KingHwaOldSong';
    font-size: 16px;
    color: #E0E0E0;
    letter-spacing: 0em;
    text-align: center;
    line-height: 21px;
}

