* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }
        
        .login-container {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
            padding: 40px;
            height:550px;
        }
        
        .logo {
            text-align: center;
            margin-top: -40px;
        }
        
        .logo img {
            height: 100px;
        }
        
        h1 {
            font-size: 24px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 14px;
        }
        
        input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
            transition: border-color 0.3s;
        }
        
        input:focus {
            outline: none;
            border-color: #3b82f6;
        }
        
        .forgot-password {
            display: flex;
    		justify-content: space-between;
            margin-bottom: 20px;
        }
        
        .forgot-password a {
            color: #666;
            font-size: 13px;
            text-decoration: none;
        }
        
        .forgot-password a:hover {
            color: #3b82f6;
        }
        
        button {
            width: 100%;
            padding: 14px;
            background-color: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .login_button:hover {
            background-color: #2563eb;
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 25px 0;
            color: #999;
            font-size: 14px;
        }
        
        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #eee;
        }
        
        .divider::before {
            margin-right: 15px;
        }
        
        .divider::after {
            margin-left: 15px;
        }
        
        .social-login {
            display: flex;
		    flex-direction: row;
		    gap: 12px;
		    flex-wrap: nowrap;
		    justify-content: center;
        }
        
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 8px;
            background-color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .social-btn:hover {
            background-color: #f9f9f9;
        }
        
        .social-btn img {
            height: 20px;
            margin-right: 10px;
        }
        
        .signup-link {
            text-align: center;
            margin-top: 25px;
            font-size: 14px;
            color: #666;
        }
        
        .signup-link a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }
        .login_type{
        	margin-bottom: 30px;
        	font-size:18px;
        }
        .checked_span{
        	text-decoration: underline;
        	text-underline-offset: 6px;
        	text-decoration-color: rgb(77 107 254);
        	text-decoration-thickness: 3px;
        	color:rgb(77 107 254)
        }
        .login_type ul {
		    display: flex;
		    justify-self: anchor-center;
        }
        .login_type ul li{
        	list-style-type: none; /* 移除默认的列表项前的点或编号 */
        	margin:0px 5px;
        	cursor: pointer;       
        }
        .login_type ul > li:first-child ~ li::before {
		    content: "|"; /* 在每个列表项前添加一个| */
		    color: #ccc;
    		margin-right: 10px;
		}
		.wx_login{
			display: flex;
		    justify-content: center;
		    flex-wrap: wrap;
		}
		.wx_login img{
			width:180px;
			height:180px;
		}
		.wx_login span{
			color: #7d7a7a;
		    font-size: 15px;
		}
		.wx_login,.phone_login,.pwd_login{
			width:320px;
			height:260px;
		}
		
		/***********************************手机输入框样式******************************************/
		.input-label {
            display: block;
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .phone-input-group {
            display: flex;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: border-color 0.2s;
        }
        
        .phone-input-group:focus-within {
            border-color: #1e88e5;
        }
        
        .country-code {
            display: flex;
            align-items: center;
            padding: 0 12px;
            background-color: #f5f5f5;
            font-size: 14px;
            color: #333;
            border-right: 1px solid #ddd;
        }
        
        .phone-input {
            flex: 1;
            padding: 12px;
            border: none;
            outline: none;
            font-size: 16px;
        }
        
        /* 新增验证码输入区域样式 */
        .verification-group {
            display: flex;
            gap: 10px;
        }
        
        .verification-input {
            flex: 1;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            outline: none;
            transition: border-color 0.2s;
        }
        
        .verification-input:focus {
            border-color: #1e88e5;
        }
        
        .send-code-btn {
            padding: 0 15px;
            background-color: #f5f5f5;
            color: #1e88e5;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
            white-space: nowrap;
        }
        
        .send-code-btn:hover {
            background-color: #e9f3fd;
            border-color: #1e88e5;
        }
        
        .send-code-btn.disabled {
            color: #999;
            background-color: #f5f5f5;
            border-color: #ddd;
            cursor: not-allowed;
        }
        
        .submit-btn {
            width: 100%;
            padding: 14px;
            background-color: #1e88e5;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
            margin-top:16px;
        }
        
        .submit-btn:hover {
            background-color: #1976d2;
        }
        
        .other-options {
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
            color: #666;
        }
        
        .other-options a {
            color: #1e88e5;
            text-decoration: none;
        }
        
        .other-options a:hover {
            text-decoration: underline;
        }
        .send-code-btn{
        	width:auto;
        }
        .input-container {
        	margin-top:10px;
        }
        .tip{
        	font-size: 12px;
		    line-height: 18px;
		    color:#a3a3a3;
		    margin-top:10px;
        }
/***********************************手机输入框样式  end******************************************/
.sign_up{
	height:540px;
}
.btn_sign_up{
	margin-top: 20px;
}
.re-login {
	display: flex;
	flex-direction: row;
	gap: 12px;
	flex-wrap: nowrap;
	justify-content: center;
	margin-top:15px;
}
.re-login a{
	font-size:12px;
	color:#2563EB;
	cursor: pointer;
	text-decoration: none;
}
.re-login a:active{
	text-decoration: none;
}

/*二维码*/
.impowerBox .qrcode{
	width:200px;
}
.web_qrcode_type_iframe{
	background-color: white;
}
.login_container iframe{
	height:300px
}