@charset "UTF-8";
/**
 * 采购代理登录
 * date: 2024-9-4
 * author: fxyue;
 */
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  min-width: auto;
}

.main {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: auto;
  display: flex;
}
.main-scroll {
  width: 100%;
  min-width: 1320px;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../images/login_bg.jpg") top center no-repeat;
  background-size: 100% 100%;
}

.login-logo {
  display: block;
  margin: 0 auto;
}
.login-box {
  padding: 121px 0 16px;
  display: flex;
  justify-content: center;
}
.login-item {
  width: 438px;
  height: 468px;
  font-size: 36px;
  color: #0F62A9;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  background: url("../images/login_item_bg.png") top center no-repeat;
}
.login-item:nth-child(n+2) {
  margin-left: 100px;
}
.login-item:hover {
  background-image: url("../images/login_item_bgh.png");
  color: #fff;
}
.login-item:nth-child(1) .login-txt {
  background: url("../images/login_img1.png") calc(50% - 4px) 127px no-repeat;
}
.login-item:nth-child(2) .login-txt {
  background: url("../images/login_img2.png") calc(50% - 8px) 127px no-repeat;
}
.login-txt {
  padding-top: 290px;
  height: 100%;
  box-sizing: border-box;
}

@media (max-height: 768px) {
  .login-box {
    padding-top: 20px;
  }
}