
.login {
  position: relative;
}
.login-bg {
  width: 100%;
  height: 140px;
  margin-top: 44px;
  object-fit: fill;
  /* 基础背景色 */
  background-color: #063183;
  /* 光晕核心：左上角和右下角径向渐变（完全匹配图片光影） */
  background-image:
    /* 左上角光晕：从左上角向外扩散，淡蓝色调 */
          radial-gradient(
                  ellipse at top left,  /* 椭圆形状，定位左上角 */
                  rgba(255, 255, 255, 0.12) 0%,  /* 中心最亮（12%白色透明度） */
                  rgba(150, 180, 255, 0.3) 40%,  /* 过渡到淡蓝色（3%透明度） */
                  transparent 50%  /* 70%后完全透明 */
          ),
            /* 右下角光晕：从右下角向外扩散，更弱的光影 */
          radial-gradient(
                  ellipse at bottom right,  /* 椭圆形状，定位右下角 */
                  rgba(255, 255, 255, 0.5) 0%,  /* 中心亮度（5%白色透明度） */
                  transparent 60%  /* 60%后完全透明 */
          );
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.login-logo {
  width: 127px;
  height: 45px;
  object-fit: contain;
  margin-left: 160px;
  position: relative;
  top: -25px;
}
.login-logo-font{
  font-family: "Arial", sans-serif;
  font-weight: 550;
  letter-spacing: 0.08em; /* 微调字间距匹配截图 */
  color: #FFFFFF;
  font-size: 20px;
  position: absolute;
  top: 10%;
  left: 20%;
  transform: translate(-50%, -50%);
}
.login-info {
  position: relative;
  margin: -40px 0 0 0;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px 20px 0px 0px;
  font-weight: 600;
  font-size: 14px;
  color: #1A1A1A;
}
.login-info-item {
  margin-bottom: 0px;
  border-bottom: 1px solid #E4E5E7;
}
.login-info-item .van-cell {
  font-weight: 400;
  font-size: 16px;
  color: #C0C4CC;
  padding: 14px 0;
}
.login-btn {
  display: block;
  background: #002A79;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  padding: 13px 0;
  text-align: center;
  margin-bottom: 14px;
  border: 1px solid #002A79;
}
.login-btn-on {
  background: #fff;
  color: #1A1A1A;
  border: 1px solid #1A1A1A;
}
.login-line {
  margin: 60px 0 20px 0;
  font-weight: 400;
  font-size: 12px;
  color: #7F7F7F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
.login-line span {
  display: block;
  width: 35%;
  height: 1px;
  background: #C0C4CC;
}
.login-icon {
  width: 50px;
  height: 50px;
  margin: 0 20px;
}
.login-forget{
  margin: 5px 0 30px 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 0px) and (max-width: 768px) {

}
@media screen and (min-width: 769px) and (max-width: 959px) {
  
}

@media screen and (min-width: 960px) and (max-width: 1399px) {

}

@media screen and (min-width: 1400px) and (max-width: 1900px) {

}

@media screen and (min-width: 1901px) and (max-width: 5000px) {

}