﻿.categories {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
}
.categories .category {
}
.categories .category .title {
  font-size: 16px;
  font-weight: bold;
  line-height: 56px;
  color: #1464FF;
  padding: 0 20px;
}
.categories .category .category-children {
  margin-top: 10px;
  padding: 0 15px;
}
.categories .category .category-children li {
  display: inline-block;
  background-color: #fff;
  border-radius: 10px;
  padding: 2px 15px 0;
  margin: 0 8px 12px 0;
}
.categories .category .category-children li>a {
  display: inline-block;
  overflow: hidden;
  max-width: 180px;
  font-size: 14px;
  color: #333333;
  line-height: 28px;
  text-align: center;
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.categories .category .category-children li.selected {
  background-color: #026AF2;
}
.categories .category .category-children li.selected>a {
  color: #fff;
}

.category-sep {
  background: #f8f9ff;
  height: 20px;
}
.category-group {
  min-height: 56px;
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.category-group .flag {
  background: #026AF2;
  width: 5px;
  height: 16px;
  margin-left: 20px;
  border-radius: 4px;
}
.category-group .title {
  flex: 1;
  font-size: 16px;
  font-weight: bold;
  color: #026AF2;
  margin: 0 15px;
}
.category-group .subscribe {
  position: relative;
  cursor: pointer;
  display: inline-block;
  line-height: 32px;
  font-size: 14px;
  color: #026AF2;
  margin: 0 30px 0 32px;
}
.category-group-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 3px 0 12px;
  margin-bottom: 10px;
}
.category-group-more .more {
  color: #666;
  margin: 0 30px 0 12px;
}