header{
  height: 50px;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  background: #9890e3;
}

header img{
  width: 30px;
  height: 30px;
  margin-top: 0.11rem;
}

header .search_icon{
  display: flex;
  width: 48px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  align-items: center;
}

header .menu_icon {
  display: flex;
  width: 48px;
  height: 50px;
  position: absolute;
  left: 1rem;
  top: 0;
  text-align: center;
  align-items: center;
}


header p{
  text-align: center;
  line-height: 100%;
  height: 100%;
  width: auto;
  margin: 0 48px;
}

header p a{
  font-size: 22px;
  line-height: 50px;
  color: #fff;
  display: inline-block;
  padding: 0 20px;
  height: 100%;
  text-decoration: none;
}

.search{
  position: fixed;
  height: 100%;
  width: 80%;
   left: 0;
  /*right: 0;*/
  top: 0;
  z-index: 100;
  background: #fff;
}

.search .header{
  display: flex;
  align-items: center;
  padding: 3.5rem 1rem 1rem;
}

.search .header input{
  /*margin: 0 1rem;*/
  flex: 1;
  border: none;
  outline: none;
  box-sizing: border-box;
  background: #ced2d5;
  height: 2.2rem;
  font-size: 1rem;
  padding-left: 1rem;
  border-radius: 3rem;
  color: #000;
}

.search .header img{
  /*width: 0.2rem;*/
  width: 1.5rem;
  margin: 0 0.1rem;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;
}

.search .popular{
  font-weight: bold;
  font-size: 1.5rem;
  border-top: 1px solid #999;
  padding: 0.08rem 0.15rem;
  border-bottom: 1px solid #999;
  font-family: 'Yuji Mai', serif;
  font-style: normal;
}

.search .menu_categories{
  overflow: auto;
  height: 88%;
}

.search .menu_categories .category_item{
  padding: 0.1rem;
  display: flex;
  align-items: center;
}

.search .menu_categories .category_item img{
  width: 30px;
  margin:.5rem;
}

.search .menu_categories .category_item div{
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: flex;
  align-items: center;
  font-weight: bold;
  color:#000;
  font-family: 'Yuji Mai', serif;
  font-style: normal;
}

.search .menu_categories .category_item span{
  font-size: 0.12rem;
  color: #6e6e6e;
  width: 90px;
  text-align: right;
}

.main{
  margin-top: 3.55rem;
}

.bottom{
  background: #444;
  color: #fff;
  padding: 0.1rem;
  font-family: 'Yuji Mai', serif;
  font-style: normal;
}

.bottom a{
  color: #fff;
  text-decoration: none;
}

.bottom_nogame{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 94.6%;
}

.menu_close{
  width: 30px;
  height: 30px;
  right: 10px;
  top:10px;
  position: absolute;
}


@media screen and (min-width:768px){
  header .search_icon{
    /*top: -10px;*/
  }

  .bottom{
    padding: 10px;
    font-size: 16px;
  }
}

a{
  text-decoration: none;
}