.loginContent {
  width: 761px;
  height: 393px;
  opacity: 1;
  background: linear-gradient(
    180deg,
    rgba(214, 227, 250, 1) 0%,
    rgba(245, 248, 255, 1) 100%
  );
  position: fixed;
  top: 126px;
  left: calc(50% - 380px);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 50px;
  align-items: center;
}
.active .loginContent {
  display: flex;
}
.loginItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 18.62px;
  color: rgba(56, 56, 56, 1);
  text-align: left;
  vertical-align: top;
  width: 179.33px;
  height: 227px;
  border: 1px solid transparent;
  background: white;
}
.itemContent {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.loginItem img {
  width: 120px;
  height: 120px;
}

.loginItem .title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 21.28px;
  color: rgba(51, 51, 51, 1);
  text-align: left;
  vertical-align: top;

  background-image: linear-gradient(
    to right,
    rgba(30, 100, 233, 1),
    rgba(102, 103, 250, 1)
  );
  -webkit-background-clip: text;
  color: transparent; /* 使文字颜色透明，以便看到背景渐变 */
}
.loginItem .sassImg {
  width: 122px;
  height: 91px;
  margin: 15px 0px;
}
.loginContent .loginItem.active,
.loginContent .loginItem:hover {
  width: 179.33px;
  height: 227px;
  opacity: 1;
  background: linear-gradient(
    142.4deg,
    rgba(242, 246, 254, 1) 0%,
    rgba(227, 237, 247, 1) 100%
  );
  border: 1px solid #6d6df3;
}

.bottoneLogin {
  padding: 5px 45px;
  border: 1px solid #3473f3;
  position: relative;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  transition: 0.3s;
  z-index: 1;
  font-family: inherit;
  margin-top: 27px;
  border: 1px solid rgba(11, 79, 218, 0.1);
  color: #ffffff;

  background-image: linear-gradient(
    to right,
    rgba(30, 100, 233, 1),
    rgba(102, 103, 250, 1)
  );
}

.registerOrTip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1000; /* 确保遮罩在最上层 */
}

.active.registerOrTip {
  display: inline-block;
}

.closeLogin {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
