<template>
  <div id="app">
    <router-view />
  </div>
</template>

<script>
export default {
  name: 'App'
}
</script>

<style>
#app {
  width: 100%;
}
body,
html {
  padding: 0;
  margin: 0;
  background: #f9f9f9;
}
img {
  width: 100%;
  height: 100%;
}
.yourow {
  width: 0.21rem;
  height: 0.21rem;
  font-size: 0;
}
/* 搜索框
 */
.searchhead {
  width: 100%;
  padding: 0.2rem 0.32rem;
  box-sizing: border-box;
  background: #fff;
}
.searchimg {
  width: 0.3rem;
  height: 0.28rem;
  font-size: 0;
  margin-right: 0.11rem;
}
.searchbox {
  width: 6.96rem;
  height: 0.68rem;
  background: #f7f8fa;
  border-radius: 0.04rem;
  margin: 0 auto;
  padding: 0.16rem;
  box-sizing: border-box;
}
::-webkit-input-placeholder {
  color: #b5bfba;
}
.searchtext {
  height: 0.68rem;
  color: #b5bfba;
  font-size: 0.28rem;
}

.flex {
  display: flex;
}

.flexone {
  display: flex;
  align-items: center;
}

.flextwo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flexthree {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flexfour {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flexfive {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.flexsix {
  display: flex;

  align-items: center;
  justify-content: space-around;
}
.flexseven {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.register {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
}
</style>