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
70
71
72
73
74
75
76
77
78
79
80
  | <template> 
 |    <div class="home"> 
 |      <div class="wrap"> 
 |      </div> 
 |    </div> 
 |  </template> 
 |    
 |  <script> 
 |  export default { 
 |    name: 'Index', 
 |    data () { 
 |      return {} 
 |    } 
 |  } 
 |  </script> 
 |    
 |  <style scoped lang="scss"> 
 |  @import "@/assets/style/variables.scss"; 
 |  .home { 
 |    text-align: center; 
 |    color: #777; 
 |    .wrap { 
 |      margin-top: 80px; 
 |      img { 
 |        width: 240px; 
 |      } 
 |    } 
 |    h2 { 
 |      font-size: 32px; 
 |      color: #555; 
 |      margin-bottom: 20px; 
 |    } 
 |    p { 
 |      line-height: 24px; 
 |      margin: 0; 
 |    } 
 |    .start-up { 
 |      margin-top: 8px; 
 |    } 
 |    .guide { 
 |      margin: 30px 0 40px 0; 
 |      display: flex; 
 |      justify-content: center; 
 |      a { 
 |        margin-right: 12px; 
 |        padding: 12px 40px; 
 |        border-radius: 30px; 
 |        background: $primary-color; 
 |        color: #fff; 
 |        text-decoration: none; 
 |      } 
 |    } 
 |    em,a { 
 |      font-style: normal; 
 |      font-weight: bold; 
 |      margin: 0 3px; 
 |      color: $primary-color; 
 |    } 
 |    .award { 
 |      position: absolute; 
 |      right: 20px; 
 |      bottom: 60px; 
 |      display: flex; 
 |      flex-direction: column; 
 |      text-align: left; 
 |      padding: 12px; 
 |      border: 1px solid #eee; 
 |      box-shadow: -1px 1px 10px #ccc; 
 |      h4 { 
 |        font-weight: bold; 
 |        margin-bottom: 8px; 
 |      } 
 |      img { 
 |        width: 160px; 
 |        margin-bottom: 20px; 
 |        transition: opacity ease .3s; 
 |      } 
 |    } 
 |  } 
 |  </style> 
 |  
  |