
/*控制用户和密码框的样式*/
input {
	outline: none;
	border: none;
}

/*控制登录框的样式*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

/*控制登录框的位置*/
.container-login100 {
  width: 100%;
  min-height: 100vh;

}

/*控制logo*/
.container-login200 {
    width:700px;
    min-height:600px;
    padding-bottom:11%;
    overflow:hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size:cover;
    -moz-background-size:cover;
    background-size:cover;
    margin:0 60px 0 0;
}

/*控制登录框的宽度*/
.wrap-login100 {
  background-color: #fff;
  padding: 32px 48px;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  border-radius: 24px;
  transition: all 0.3s ease-in-out;
}
.wrap-login100:hover{
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  transform: scale(1.01);
}

/*控制登录框的上登录文字的位置和字体大小*/
.login100-form-title {
  display: block;
  font-family: 'Microsoft Yahei';
  font-size: 39px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}

/*控制输入框的浅色样式*/
.wrap-input100 {
  width: 100%;
  position: relative;
  /*border-bottom: 2px solid #d9d9d9;*/
  border-radius:4px;
  display: flex;
  align-items: center;
  border: 1px solid #dcdfe6;
}

/*控制用户名和密码两个字体的位置*/
.input100 {
  font-family: 'Microsoft Yahei';
  font-size: 20px;
  color: #333333;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 46px;
  background: transparent;
  padding: 0 7px 0 20px;
}

/*控制输入框前面的图片logo*/
.focus-input100::after {
  content: attr(data-symbol);
  font-family: Material-Design-Iconic-Font;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;

  height: calc(100% - 20px);
  bottom: 0;
  left: 0;
  padding-left: 13px;
  padding-top: 3px;
}

/*控制登录按钮*/
.wrap-login100-form-btn {
  width: 100%;
  height: 48px;
  line-height: 48px;

}

/*控制登录按钮*/
.login100-form-bgbtn {

}

/*控制登录框的样式和框上字体的大小位置*/
.login100-form-btn {
  font-family: 'Microsoft Yahei';
  font-size: 16px;

  line-height: 1.2;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 48px;
  line-height: 48px;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

/*控制不输入信息点击登录按钮的警告提示*/
.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

/*控制不输入信息点击登录按钮的警告提示*/
.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 2px;
  pointer-events: none;

  font-family: 'Microsoft Yahei';
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

/*控制不输入信息点击登录按钮的警告提示*/
.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  bottom: calc((100% - 20px) / 2);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
}

/*控制不输入信息点击登录按钮的警告提示*/
.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

/*控制不输入信息点击登录按钮的警告提示*/
@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*input placeholder属性 样式修改(颜色,大小,位置)*/
input::-webkit-input-placeholder {
       /* placeholder颜色  */
        color: #c5c5c5;
         /* placeholder字体大小  */
        font-size: 16px;
        /* placeholder位置  */
        text-align: left;
}

.header{
  width: 1280px;
  padding: 24px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .logo{
  width: 56px;
  height: 56px;
}
.header .title{
  font-size: 32px;
  font-weight: bold;
}
.login-footer{
  color: #666;
  display: flex;
  gap: 50px;
  text-align: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}



.container-login100{
  width: 100vw;
  height: 100vh;
  background-color: #e5e7eb;

}
.login-wrapper{
  width: 1280px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  margin-top: 8vh;
  gap: 120px;

}
.input-label{
  display: block;
  height: auto;
  line-height: 22px;
  margin-bottom: 8px;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  color: #606266;
}
.login-info{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.login-info-title{
  font-size: 32px;
  font-weight: bold;
  margin-top: 20px;
}
.login-info-title span:nth-child(2){
  background: linear-gradient(#2563eb, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 8px;
}
.login-info-text{
  line-height: 2;
  font-size: 22px;
  color: rgb(71, 85, 105);
}
.login-info-card{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.login-info-card-item{
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.login-info-card-item:hover{
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  transform: translateY(-4px);
}

.login-info-card-item-icon{
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.login-info-card-item-title{
  margin-top: 12px;
  font-size: 14px;
  color: #000;
}
.login-info-card-item-text{
  margin-top: 8px;
  font-size: 14px;
  color: rgb(100, 116, 139);
}