ZZJ
2022-07-15 5c0c6ad7ac6f28e970532af9936de638830f1161
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<template>
  <div class="resetPassword">
    <Header> </Header>
    <div class="container">
      <div class="title">
        <div class="left">请完善账户信息</div>
      </div>
      <div class="stepArea" v-if="step === 0">
        <img src="/images/register/" alt="" />
      </div>
    </div>
    <Footer></Footer>
  </div>
</template>
 
<script>
import Header from "@/components/Header";
import Footer from "@/components/Footer";
export default {
  components: {
    Header,
    Footer,
  },
};
</script>
 
<style lang="scss" scoped>
.resetPassword {
  position: absolute;
  height: 100%;
  width: 100%;
  min-width: 1280px;
  background: url("/images/register/success.png");
  background-size: 100% 100%;
  font-size: 14px;
 
  .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 30px 0 30px;
    height: 74px;
    border-bottom: 1px solid #e9ebee;
 
    .left {
      font-size: 18px;
      font-weight: 700;
    }
  }
 
  .container {
    position: absolute;
    width: 660px;
    height: 468px;
    left: 320px;
    top: 22vh;
    text-align: center;
    background: #ffffff;
  }
 
  .Footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #252525;
    color: #9b9ea0;
  }
}
</style>