/*!
* metismenu https://github.com/onokumus/metismenu#readme
* A collapsible jQuery menu plugin
* @version 3.0.6
* @author Osman Nuri Okumus <onokumus@gmail.com> (https://github.com/onokumus)
* @license: MIT
*/

.metismenu {
  font-size: 18px;
  background: #dfdfdf;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  font-weight: normal;
}
.metismenu::-webkit-scrollbar {
  display: none;
}

/* 搜索框样式 */
.metismenu .search {
  padding: 15px;
  background: #eee;
  border-bottom: 1px solid #fff;
}

.metismenu .search-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.metismenu .search-input {
  width: 100%;
  padding: 8px 45px 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

.metismenu .search-input:focus {
  border-color: #5bb247;
  box-shadow: 0 0 5px rgba(91, 178, 71, 0.3);
}

.metismenu .search-button {
  position: absolute;
  right: 2px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #5b5b5b;
}

.metismenu .clear-search-button {
  position: absolute;
  right: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #5b5b5b;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metismenu .search-button:hover,
.metismenu .clear-search-button:hover {
  color: #5bb247;
}

.metismenu .search-results {
  margin-top: 10px;
  display: none;
  max-height: 200px;
  overflow-y: auto;
  background: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.metismenu .search-results div {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  color: #5b5b5b;
}

.metismenu .search-results div:hover {
  background: rgba(91, 178, 71, 0.1);
  color: #5bb247;
  cursor: pointer;
}

.metismenu .search-results div:last-child {
  border-bottom: none;
}

.metismenu .search-results div .highlight {
  background-color: rgba(255, 255, 0, 0.3);
  font-weight: bold;
}

.metismenu .search-results .no-results {
  padding: 10px;
  text-align: center;
  color: #777;
}

.metismenu .arrow {
  float: right;
  line-height: 1.42857;
}
*[dir='rtl'] .metismenu .arrow {
  float: left;
}

.metismenu ul {
  padding-left: 0;
}
.metismenu li {
  list-style: none;
  background: #f6f6f6;
}

.metismenu > li {
  border-top: 1px solid #fff;
  background: #eee;
}

.metismenu a {
  display: inline-block;
  width: 100%;
  padding: 0.7em 0;
  color: #5b5b5b;
}

.metismenu li a:hover,
.metismenu li a.active {
  background: rgba(91, 178, 71, 0.18);
  color: #5bb247;
  cursor: pointer;
}
.metismenu ul a:hover {
  background: rgba(91, 178, 71, 0.1);
}

.metismenu ul a {
  padding-left: 0.8em;
}

.metismenu ul ul a {
  padding-left: 1.6em;
  font-size: 14px;
}
.metismenu ul ul ul a {
  padding-left: 2.4em;
}
.metismenu ul ul ul ul a {
  padding-left: 3.2em;
}
/*
 * Require Bootstrap 3.x
 * https://github.com/twbs/bootstrap
*/

.metismenu .glyphicon.arrow:before {
  content: '\e079';
}
.metismenu .mm-active > a > .glyphicon.arrow:before {
  content: '\e114';
}

/*
 * Require Font-Awesome
 * http://fortawesome.github.io/Font-Awesome/
*/

.metismenu .fa.arrow:before {
  content: '\f104';
}
.metismenu .mm-active > a > .fa.arrow:before {
  content: '\f107';
}

/*
 * Require Ionicons
 * http://ionicons.com/
*/
.title-box {
  font-size: 36px;
  margin-bottom: 10px;
  padding: 1em 0 1.8em;
  border-bottom: 2px solid rgb(231, 233, 232);
}
.metismenu .ion.arrow:before {
  content: '\f3d2';
}
.metismenu .mm-active > a > .ion.arrow:before {
  content: '\f3d0';
}
.metismenu .plus-times {
  float: right;
}
*[dir='rtl'] .metismenu .plus-times {
  float: left;
}
.metismenu .fa.plus-times:before {
  content: '\f067';
}
.metismenu .mm-active > a > .fa.plus-times {
  transform: rotate(45deg);
}
.metismenu .plus-minus {
  float: right;
}
*[dir='rtl'] .metismenu .plus-minus {
  float: left;
}
.metismenu .fa.plus-minus:before {
  content: '\f067';
}
.metismenu .mm-active > a > .fa.plus-minus:before {
  content: '\f068';
}
.metismenu .mm-collapse:not(.mm-show) {
  display: none;
}

.metismenu .mm-collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-timing-function: ease;
  transition-duration: 0.35s;
  transition-property: height, visibility;
}

.metismenu .has-arrow {
  position: relative;
  padding-right: 2em;
}

.metismenu .has-arrow::after {
  position: absolute;
  content: '';
  width: 0.5em;
  height: 0.5em;
  border-width: 2px 0 0 2px;
  border-style: solid;
  border-color: initial;
  right: 1em;
  transform: rotate(-45deg) translate(0, -50%);
  transform-origin: top;
  top: 50%;
  transition: all 0.3s ease-out;
}

*[dir='rtl'] .metismenu .has-arrow::after {
  right: auto;
  left: 1em;
  transform: rotate(135deg) translate(0, -50%);
}

.metismenu .mm-active > .has-arrow::after,
.metismenu .has-arrow[aria-expanded='true']::after {
  transform: rotate(-135deg) translate(0, -50%);
}

*[dir='rtl'] .metismenu .mm-active > .has-arrow::after,
*[dir='rtl'] .metismenu .has-arrow[aria-expanded='true']::after {
  transform: rotate(225deg) translate(0, -50%);
}
