@charset "UTF-8";
/* 初始化 樣式 */
ul.ACCORDION.transit {
  margin: 0 0 0 1em;
}
ul.ACCORDION.transit a,
ul.ACCORDION.transit ul,
ul.ACCORDION.transit li {
  position: relative;
  text-decoration: none;
  list-style: none;
  padding-left: 0;
}
ul.ACCORDION.transit a {
  display: inline-block;
  padding: 5px 0;
  padding-left: 2em;
  padding-right: 1em;
  width: 100%;
  min-height: 30px;
  line-height: 30px;
  font-size: 16px;
  /* color: #202020; */
  transition: all 300ms ease-out;
}
/* 第一層 母層 - 根分類 */
ul.ACCORDION.transit .item1 {
  border-bottom: 1px solid #ccc;
}
/* ul.ACCORDION.transit li.item1 > a::after {
  content: '';
  position: absolute;
  border-width: 6px 8px;
  border-style: solid;
  border-color: transparent transparent transparent #bababa;
  display: block;
  left: 0.5em;
  transform: translateY(-50%);
  top: 50%;
} */

/* 第二層 子層 */
ul.ACCORDION.transit li[class^="item"] {
  /* padding-left: 1em; */
}
/* 收合狀態 icon */
ul.ACCORDION.transit li[class^="item"] a:before {
  content: '';
  color: #bababa;
  position: absolute;
  font-weight: normal;
  right: 1em;
  font-family: FontAwesome;
  font-size: 14px;
}
ul.ACCORDION.transit li.ACCORDION-open > a:before {
  content: '\f068';
}
ul.ACCORDION.transit li.ACCORDION-closed > a:before {
  content: '\f067';
}
/* hover 效果 */
ul.ACCORDION.transit li[class^="item"] > a:hover {
  background-color: rgb(233 233 233);
  color: #202020;
}
/* 強迫展開設定 */
ul.ACCORDION .FLO {
  display: block !important;
  height: auto !important;
}