#app .topbar {
  background: #223242;
}

.sub-items {
  position: absolute;
  padding: 10px;
  background: white;
  top: 30px;
  width: 120px;
  border-bottom: 3px solid #00b4e3;
  box-shadow: 3px 3px 15px #5c5c5c2e;
  border-radius: 4px;
  display: none;
}

.sub-item {
  display: block;
  padding: 8px 15px;
  border-top: 1px solid #e6e6e6;
  text-align: center;
}

.sub-item:hover {
  color: #00b4e3
}

.sub-item:first-child {
  border-top: none;
}

.p-item {
  position: relative;
}

.p-item:hover .sub-items {
  display: block;
}

.category {
  padding: 25px;
  background: #f3f3f3;
  border-radius: 4px;
  margin: 25px 0;
  height: 38px;
}

.category>* {
  float: left;
  display: block;
}

.category .label {
  font-weight: bold;
}

.category .item {
  cursor: pointer;
  border-radius: 2px;
  padding: 10px 20px;
  text-align: center;
  float: left;
}

.category .item:hover {
  color: #0e72cf;
}

.category .item.true {
  color: white;
  background: #0094f7;
}

.list {
  overflow: hidden;
  margin-bottom: 40px;
}

.list .item {
  width: 20%;
  float: left;
  text-align: center;
  margin-bottom: 25px;
}

.list .item .wrap {
  width: 90%;
  margin: auto;
  background: #e8e8e7;
}

.list .item .avatar {
  width: 100%;
  height: 150px;
  background-size: 100% 100%;
  cursor: pointer;
  display: block;
}

.list .item .title {
  font-size: 14px;
  padding: 5px;
  height: 40px;
  line-height: 40px;
  color: #494949;
  overflow: hidden;
  cursor: pointer;
  background: #f1f1f1;
  display: block;
}