login.scss 2.63 KB
.page{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: #FFFFFF;
}
.logo{
  height: 240rpx;
  padding: 0 6%;
  position: relative;
  z-index: 0;
  top: 140rpx;
  image{
    width: 120rpx;
    height: 120rpx;
  }
}
.login-title {
	position: relative;
	z-index: 1;
	padding: 0 6%;
	.login-title-big {
		font-size: 50rpx;
		font-weight: bold;
		letter-spacing: 10rpx;
	}
	.login-title-small {
		font-size: 30rpx;
		color: #9BA2B0;
		margin-top: 10rpx;
	}
}
/* 填写 */
.input-info{
  padding: 0 6%;
  margin: 80rpx 0 40rpx 0;
  .info{
    display: flex;
    align-items:center;
    justify-content: space-between;
    width: 100%;
    height: 100rpx;
	background-color: #F2F4F6;
	border-radius: 20rpx;
	margin-bottom: 40rpx;
	padding: 0 30rpx 0 40rpx;
    input{
      width: 70%;
      height: 100%;
      font-size: 26rpx;
      color: #222222;
    }
	.info-icon {
		image {
			width: 28rpx;
			height: 28rpx;
			margin-right: 20rpx;
		}
	}
    .more{
      display: flex;
      align-items: center;
      justify-content: flex-end;
      width: 32%;
      height: 100%;
      .iconfont{
        font-size: 34rpx;
      }
      .mo{
        font-size: 26rpx;
        padding-left: 20rpx;
        // margin-left: 10rpx;
        border-left: 2rpx solid #ccc;
      }
    }
  }
}
.check-box {
	display: flex;
	margin: 20rpx 6%;
	.check{
	 	display: flex;
	 	align-items: center;
	 	text{
	 		font-size: 38rpx;
	 		color: #959595;
	 	}
	 	.action{
	 		color: #89B8FF;
	 	}
	 }
}
/* 按钮 */
.btn-info{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88%;
    height: 90rpx;
    background-color:#3f9b6a;
    border-radius: 10rpx;
    color: #FFFFFF;
    font-size: 32rpx;
  }
}
/* 操作 */
.operation{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  margin: 40rpx 0;
  text{
    font-size: 28rpx;
    color: #555555;
  }
}

/* 其他 */
.other-ways{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80rpx;
  margin-top: 100rpx;
  text{
    font-size: 28rpx;
    color: #999999;
  }
}
.other-ways::after{
  content: "";
  width: 36%;
  height: 2rpx;
  background-color: #EEEEEE;
}
.other-ways::before{
  content: "";
  width: 36%;
  height: 2rpx;
  background-color: #EEEEEE;
}
/* 登录方式 */
.login-way{
	position: absolute;
	bottom: 0;
  width: 100%;
  height: 200rpx;
  .way{
    width: 50%;
    height: 100%;
	margin: 0 auto;
    image{
      width: 535rpx;
      height: 180rpx;
    }
  }
}