.login__body {
  /* 科技风工厂风格背景 - 深色科技感底纹 */
  background: 
    linear-gradient(135deg, #0a192f 0%, #172a45 50%, #0f1f38 100%),
    radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 100, 0, 0.1) 0%, transparent 50%);
  background-size: 100% 100%, 80% 80%, 80% 80%;
  background-position: center, top left, bottom right;
  background-repeat: no-repeat;
  
  display: flex;
  overflow: hidden;
  position: relative;
  height: 100%;
  width: 100%;
  
  /* 工厂风网格线装饰 */
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #0a192f 0%, #172a45 50%, #0f1f38 100%),
    radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 100, 0, 0.1) 0%, transparent 50%);
  background-size: 50px 50px, 50px 50px, 100% 100%, 80% 80%, 80% 80%;

  /* 科技感发光边框效果 */
  box-shadow: inset 0 0 100px rgba(0, 255, 255, 0.1),
              inset 0 0 200px rgba(255, 100, 0, 0.05);

  .login {
    flex: 1;
  }
  
  .loging-btn {
    button {
      width: 100%;
      /* 科技风按钮 - 渐变蓝+发光效果 */
      background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%) !important;
      border: none !important;
      box-shadow: 0 0 20px rgba(0, 212, 255, 0.5),
                  0 4px 15px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
      font-weight: bold !important;
      text-transform: uppercase;
      letter-spacing: 1px;
      
      &:hover {
        background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%) !important;
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.8),
                    0 6px 20px rgba(0, 0, 0, 0.4);
        transform: translateY(-2px);
      }
    }
  }
  
  .content {
    display: flex;
    z-index: 99;
    position: relative;
    width: 900px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    top: 50%;
    height: 450px;
    border-radius: 12px;
    
    /* 科技感边框效果 */
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.2),
                0 0 100px rgba(255, 100, 0, 0.1);
    
    .l-left {
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
      width: 450px;
      background: rgba(10, 25, 47, 0.85);
      backdrop-filter: blur(10px);
      border-right: 2px solid rgba(0, 255, 255, 0.2);
      box-shadow: inset -5px 0 20px rgba(0, 255, 255, 0.1);
    }
  }

  .desc {
    text-align: left;
    width: 100%;
    padding: 30px 40px;
    box-sizing: border-box;
    height: 100%;
  }

  .desc p {
    font-size: 16px;
    color: #8892b0;
    line-height: 35px;
    font-family: 'Microsoft YaHei', sans-serif;
    
    /* 工厂风项目符号 */
    &:before {
      content: "▶";
      color: #00d4ff;
      margin-right: 12px;
      font-size: 12px;
    }
  }

  .title {
    z-index: 999;
    font-size: 70px;
    font-weight: 900;
    /* 科技蓝+工厂橙渐变文字 */
    background: linear-gradient(135deg, #00d4ff 0%, #ff6400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  }
    
  .subtitle{
      font-size: 13px; 
      /* background-color: rgb(70, 199, 6);  */
      color: white;
      border-radius: 24px; 
      padding: 4px 9px; 
      border: 1px solid;
      margin-left: 5px;
  }

  /* 科技风装饰元素 */
  &:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 0;
  }

  .form-user {
    margin: 30px 0;

    .item {
      display: flex;
      padding-bottom: 8px;
      /* 科技风下划线 - 蓝橙渐变 */
      border-bottom: 2px solid;
      border-image: linear-gradient(90deg, #00d4ff, #ff6400) 1;
      margin-bottom: 35px;
      align-items: center;
      
      .f-text {
        color: #00d4ff;
        font-weight: 600;
        width: 120px;
        font-size: 16px;
        text-align: left;
        font-family: 'Microsoft YaHei', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      
      .f-input {
        border: 0px;
        flex: 1;
      }
      
      .code {
        position: relative;
        cursor: pointer;
        top: 0;
        width: 80px;
        border: 2px solid #00d4ff;
        border-radius: 4px;
        height: 40px;
        margin-left: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        
        &:hover {
          border-color: #ff6400;
          box-shadow: 0 0 15px rgba(255, 100, 0, 0.5);
        }
      }
    }
  }
  
  input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #1a2a4a inset;
    -webkit-text-fill-color: #ffffff !important;
  }
  
  .login-contianer {
    .login-form {
      position: relative;
      overflow: hidden;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
      padding: 30px 40px 50px 40px;
      width: 450px;
      min-height: 380px;
      background: rgba(26, 42, 74, 0.95);
      backdrop-filter: blur(15px);
      height: 450px;
      box-shadow: inset 5px 0 20px rgba(255, 100, 0, 0.1);
      
      h2 {
        font-weight: 700;
        padding: 10px 0px 20px 0px;
        text-align: center;
        margin-top: 15px;
        color: #ffffff;
        font-family: 'Microsoft YaHei', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        
        /* 科技风标题装饰 */
        &:before,
        &:after {
          content: '';
          position: absolute;
          width: 50px;
          height: 3px;
          background: linear-gradient(90deg, #00d4ff, #ff6400);
          top: 70px;
        }
        
        &:before {
          left: 50px;
        }
        
        &:after {
          right: 50px;
        }
      }
     

      .v-tag {
        top: -23px;
        text-align: center;
        position: absolute;
        right: -43px;
        line-height: 49px;
        top: -17px;
        padding-left: 21px;
        font-size: 12px;
        width: 158px;
        /* 工厂风标签 - 橙色金属感 */
        background: linear-gradient(135deg, #ff6400 0%, #cc5200 100%);
        padding-top: 25px;
        color: white;
        -webkit-transform: rotate(40deg);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: bold;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      }
    }
  }

  .loging-btn {
    margin-top: 30px;
  }
  
  .action {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #8892b0;
    cursor: pointer;
    
    a {
      margin: 0 15px;
      color: #00d4ff;
      text-decoration: none;
      transition: all 0.3s ease;
      
      &:hover {
        color: #ff6400;
        text-shadow: 0 0 10px rgba(255, 100, 0, 0.7);
      }
    }
  }
  
  .login-footer {
    cursor: pointer;
    padding: 15px;
    text-align: center;
    font-size: 13px;
    position: absolute;
    width: 100%;
    bottom: 0px;
    background: rgba(10, 25, 47, 0.9);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #8892b0;
    
    a {
      margin: 0 15px;
      color: #00d4ff;
      text-decoration: none;
      transition: all 0.3s ease;
      
      &:hover {
        color: #ff6400;
        text-shadow: 0 0 10px rgba(255, 100, 0, 0.7);
      }
    }
  }
  
  @media screen and (max-width: 600px) {
    background-image: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
    
    .desc {
      display: none;
    }
    
    .content {
      width: 100%;
      height: 100%;
      border-radius: 0;
      box-shadow: none;
      top: 0;
      transform: none;
      
      .l-left {
        display: none;
      }
    }
    
    .login-contianer {
      height: 100%;
    }
    
    .login-contianer .login-form {
      width: 100%;
      height: 100%;
      border-radius: 0;
      padding: 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .login-footer {
      display: none;
    }
  }
  
  .link a {
    text-decoration: none;
    /* 工厂风链接按钮 */
    color: #ffffff;
    border: 2px solid #00d4ff;
    width: 90px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    background: rgba(0, 212, 255, 0.1);
    white-space: nowrap;
    user-select: none;
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    
    &:hover {
      background: rgba(255, 100, 0, 0.2);
      border-color: #ff6400;
      box-shadow: 0 0 15px rgba(255, 100, 0, 0.5);
      transform: translateY(-2px);
    }
  }

  input {
    background: transparent;
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 8px 0;
    color: #ffffff;
    line-height: inherit;
    text-align: left;
    border: 0;
    outline: none;
    font-size: 16px;
    line-height: 22px;
    font-family: 'Microsoft YaHei', sans-serif;
    
    &::placeholder {
      color: #64748b;
      opacity: 0.8;
    }
    
    /* 聚焦时的科技风效果 */
    &:focus {
      color: #00d4ff;
      text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
  }

  /* 工厂风装饰条 */
  .c-bg {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #00d4ff 0%, #ff6400 100%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5),
                0 0 40px rgba(255, 100, 0, 0.3);
    
    .c-bg-item {
      display: none;
    }
  }
  
  .app-link {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding-top: 25px;
    font-size: 13px;
    
    a {
      position: relative;
      cursor: pointer;
      flex: 1;
      color: #00d4ff;
      margin: 20px 15px 0;
      text-decoration: none;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      
      &:hover {
        color: #ff6400;
        text-shadow: 0 0 15px rgba(255, 100, 0, 0.7);
      }
      
      img {
        display: none;
      }
      
      &:hover img {
        display: block;
        position: absolute;
        z-index: 999999999;
        top: -130px;
        width: 120px;
        left: 50%;
        transform: translateX(-50%);
        border: 2px solid #ff6400;
        border-radius: 4px;
        box-shadow: 0 0 20px rgba(255, 100, 0, 0.5);
      }
    }
  }
}

/* 科技风滚动条 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 25, 47, 0.8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00d4ff, #ff6400);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0099ff, #cc5200);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}
/* 修复：多余的右大括号，删除即可 */