.content {
  background-image: url("../images/slidertwo.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 !important;
  /* 强制去除所有外边距 */
  padding: 0 !important;
  /* 强制去除所有内边距 */
  width: 100%;
  /* 确保宽度填满容器 */
  height: 100%;
  /* 确保高度填满容器 */
  display: block;
  /* 设置为块级元素 */
  position: relative;
  /* 相对定位 */
}

/* 遮罩层样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

/* Logo样式 */
.modal-logo {
  /* 改为绝对定位 */
  width: 68px;
  height: 68px;
}

/* 弹窗容器样式 */
.custom-modal {

  /* 新增宽度设置 */
  height: 600px;
  /* 新增高度设置 */
}

/* 弹窗内容样式 */
.login-panel {
  background-color: white;

  width: 100%;
  /* 修改为100%以填充父容器 */
  height: 100%;
}

.login-panel .logo-panel {
  width: 100%;
  text-align: center;
  margin: 30px 0;
}

.login-panel-body {
  height: 65%;
  display: flex;
  padding: 0 80px;
}

.body-left {
  width: 50%;
  border-right: 1px solid #d7dbec;
  position: relative;
  /* 添加相对定位 */
  height: 100%;
  /* 确保父容器有固定高度 */
}

.left-footer {
  position: absolute;
  /* 改为绝对定位 */
  bottom: 0;
  /* 固定在底部 */
  left: 0;
  right: 0;
  height: 22%;
  /* background-color: aquamarine; */
}

.left-header {
  height: 100px;
  margin: 0;
  padding: 0;
}

.title-left {
  font-family: Inter, Inter;
  font-weight: bold;
  font-size: 32px;
  color: #131523;
  line-height: 44px;
  font-style: normal;
  text-transform: none;
  margin: 0;
  padding: 0;
}

.title-small {
  margin: 10px 0 0 0;
  padding: 0;
  width: 419px;
  height: 48px;
  font-family: Inter, Inter;
  font-weight: 400;
  font-size: 14px;
  color: #0d65f8;
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.user-name {
  /* margin: 0; */
  padding: 0;
  font-family: Inter, Inter;
  font-weight: 500;
  font-size: 16px;
  color: rgba(9, 17, 45, 0.8);
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 4px;
}

.input-css {
  padding-right: 15%;
}

.pass-word {
  margin-top: 40px;
}

.remember {
  font-family: Inter, Inter;
  font-weight: 400;
  font-size: 14px;
  color: #3a4057;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .custom-modal {
    width: 95%;
    top: 50px;
  }

  .modal-content-body {
    flex-direction: column;
    padding: 0 20px;
  }

  .body-left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d7dbec;
    padding-bottom: 20px;
  }

  .body-right {
    width: 100%;
    margin-top: 20px;
  }
}

.left-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.text-left {
  /* width: 196px;
    height: 48px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 15%;
}

.forgot {
  font-family: Inter, Inter;
  font-weight: 400;
  font-size: 14px;
  color: #1e5eff;
  line-height: 20px;
  text-align: right;
  font-style: normal;
  text-transform: none;
  cursor: pointer;
}

.body-right {
  padding-left: 7%;
  /* background-color: antiquewhite; */
  width: 50%;
  position: relative;
}

.right-img {
  width: 28px;
  height: 25px;
  margin-right: 9px;
}

.right-text {
  height: 28px;
  /* background-color: #0d65f8; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* 使内容垂直对齐到底部 */
  margin: 0;
  padding: 0;
  font-family: Inter, Inter;
  font-weight: 400;
  font-size: 14px;
  color: rgba(9, 17, 45, 0.8);
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.text-css {
  font-family: Inter, Inter;
  font-weight: 500;
  font-size: 18px;
  color: rgba(9, 17, 45, 0.8);
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.right-footer {
  position: absolute;
  /* 改为绝对定位 */
  bottom: 0;
  /* 固定在底部 */
  left: 70px;
  right: 0;
  height: 22%;
  /* background-color: aquamarine; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.remember-out {
  display: flex;
  align-items: center;
}

.oneInput-css {
  height: 48px;
}

/* 响应式断点 */
@media (max-width: 1440px) {
  .main-wrapper {
    max-width: 1200px;
  }

}

@media (max-width: 1200px) {
  .main-wrapper {
    max-width: 992px;
  }

}

@media (max-width: 992px) {
  .main-wrapper {
    max-width: 768px;
  }

}

@media (max-width: 768px) {
  .main-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }

  .top-panel {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .main-wrapper {
    padding: 0 5px;
  }
}

.main-wrapper {
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
}