[v-clock] { display: none; }
html, body {
  height: 100vh;
}
body, body *{
  padding: 0;
  margin: 0;
  color: #333;
  font-family: 'Microsoft YaHei';
}
ul, ol {
  list-style-type: none;
}
img{
  vertical-align: top;
}
a{
  text-decoration: none;
}
#app {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.child-btn{
  width: 100%;
  height: 60px;
  background-color: #ffcc00;
  text-align: center;
  font-size: 20px;
  line-height: 60px;
  position: relative;
  margin: auto;
  border-radius: 60px;
  cursor: pointer;
}
.child-btn:hover{
  color: white;
}
.child-body{
  width: 100%;
  /* min-height: calc(100vh - 60px); */
  flex: 1;
  background-color: #eee;
  display: flex;
  flex-direction: column;
}
.child-body .child-main{
  flex-direction: column;
}
.child-main{
  position: relative;
  margin: auto;
  width: 1200px;
  display: flex;
  background-color: white;
  /* min-height: calc(100vh - 60px); */
  flex: 1;
}
.child-content {
  padding: 0 100px 20px;
  /* min-height: calc(100vh - 150px); */
  flex: 1;
}
.child-content .head-img{
  display: block;
  -moz-user-select:none; /*火狐*/
  -webkit-user-select:none; /*webkit浏览器*/
  -ms-user-select:none; /*IE10*/
  -khtml-user-select:none; /*早期浏览器*/
  user-select:none;
}
.child-content .c-title{
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  background-color: #ffcc00;
  margin-bottom: 70px;
}
.search-box{
  float: right;
  margin-right: 100px;
  width: 300px;
  border:1px solid #333;
  border-radius: 32px;
  height: 32px;
  position: relative;
  overflow: hidden;
  margin-top: 12px;
}
.search-box .fa-search{
  display: block;
  float: left;
  margin-left: 14px;
  line-height: 32px;
}
.search-box input{
  padding-left: 12px;
  height: 32px;
  line-height: 32px;
  float: left;
  width: 240px;
  border: 0;
  outline: 0;
  background-color: transparent;
}
