 /* 全局样式重置（可选，让不同浏览器表现更一致） */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      /* 背景图，可替换成实际项目的背景图路径 */
      background: url(' ../images/login/1_1.png') no-repeat center center / cover; 
      font-family: "微软雅黑", sans-serif;
      display: flex;
      justify-content:flex-end;
      align-items: center;
      min-height: 100vh;
    }
    /* 登录框容器 */
    .login-container {
      width: 730px; height: 700px;
      background-color: rgba(0, 0, 0, 0.6); /* 黑色半透明背景 */
      border-radius: 0px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* 阴影效果 */
      color: #fff;
      padding:60px;
      text-align: center;
	  right: 0;
    }

    /* logo 样式，根据实际 logo 尺寸调整宽高 */
    .login-container img {
      width: 113px;
      height:144px;
      margin-bottom: 15px;
    }
    /* 标题样式 */
    .login-container h1 {
      font-size: 35px;
      margin-bottom: 35px;
    }
    /* 输入框容器样式 */
    .input-group {
      margin-bottom: 40px;
      text-align: left;
	  display: flex; justify-content: flex-start; align-items: center;
    }
    .input-group label {
      display: block;
      margin-bottom: 6px;
      font-size: 18px;
	  white-space: nowrap;
		width: 80px;
    }
    .input-group input {
      width: 90%;
      padding: 10px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
    }
    /* 验证码行特殊处理，让输入框和验证码图并排（如果有验证码图，可结合实际调整） */
    .captcha-row {
      display: flex;
      gap: 10px;
    }
    .captcha-row input {
      flex: 1;
    }
    /* 登录按钮样式 */
    .login-btn {
      width: 100%;
      padding: 10px;
      background-color: #0096ff;
      border: none;
      border-radius: 4px;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .login-btn:hover {
      background-color: #007acc;
    }
    /* 注册链接样式 */
    .register-link {
      display: block;
      margin-top: 35px;
      color: #0096ff;
      text-decoration: none;
      font-size: 20px;
      transition: color 0.3s ease;
    }
    .register-link:hover {
		color: #007acc;}
		
@media screen and (max-width:640px) {
	 body {
      /* 背景图，可替换成实际项目的背景图路径 */
      background: url(' ../images/login/1_3.png') no-repeat center center / cover; 
      font-family: "微软雅黑", sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }
	 .login-container {
      width: 95%; height:auto; margin: 0 auto;
      background-color: rgba(0, 0, 0, 0.6); /* 黑色半透明背景 */
      border-radius: 8px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* 阴影效果 */
      color: #fff;
      padding:30px;
      text-align: center;
	  right: 0;
    }
	/* logo 样式，根据实际 logo 尺寸调整宽高 */
    .login-container img {
      width:30%;
      height:auto;
      margin-bottom: 15px;
    }
    /* 标题样式 */
    .login-container h1 {
      font-size: 20px;
      margin-bottom: 20px;
    }
    /* 输入框容器样式 */
    .input-group {
      margin-bottom: 20px;
      text-align: left;
	  display: flex; justify-content: flex-start; align-items: center;
    }
    .input-group label {
      display: block;
      margin-bottom: 6px;
      font-size: 14px;
	  white-space: nowrap;
		width: 80px;
    }
    .input-group input {
      width: 90%;
      padding: 10px;
      border: none;
      border-radius: 4px;
      font-size: 14px;
    }
    /* 验证码行特殊处理，让输入框和验证码图并排（如果有验证码图，可结合实际调整） */
    .captcha-row {
      display: flex;
      gap: 10px;
    }
    .captcha-row input {
      flex: 1;
    }
    /* 登录按钮样式 */
    .login-btn {
      width: 100%;
      padding: 15px;
      background-color: #0096ff;
      border: none;
      border-radius: 4px;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .login-btn:hover {
      background-color: #007acc;
    }
    /* 注册链接样式 */
    .register-link {
      display: block;
      margin-top: 25px;
      color: #0096ff;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s ease;
    }
    .register-link:hover {
      color: #007acc;
}
}