forgetPassword.vue 967 Bytes
Newer Older
qzhxx's avatar
qzhxx committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
<template>
  <div class="forgetPassword W100 H100">
    <div class="content">
      <h2>忘记密码</h2>
      <p>如果您忘记密码,请您联系相关管理人员</p>
      <p>联系电话:13924551212</p>
      <p> 邮箱:325346534@zh.com</p>
    </div>
  </div>
</template>

<script>

  export default {
    data () {
      return {}
    },
    methods: {

    }
  }


</script>

<style lang="less" >
  @import '../../style/common';
  .forgetPassword{
    background:url("../../../static/images/pic/bg.png");
    border: 1px solid transparent;
    .content {
      width: 22%;
      height: 30%;
      margin: 12% auto;
      h2{
        font-size:20px;
        font-weight:500;
        color:rgba(0,0,0,1);
        text-align: center;
        margin-bottom: 7%;
      }
      p{
        font-size:18px;
        font-family:PingFangSC-Regular;
        font-weight:400;
        color:rgba(0,0,0,1);
        margin-bottom: 3%;
      }

    }

  }

</style>