@charset "UTF-8";
.brand-title {
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.25rem;
  text-align: center;
  background-color: #e51f1f;
  color: white;
}

.side-menu-wrapper {
  float: left;
  width: 20%;
}

.side-title {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.25rem;
  text-align: center;
  background-color: #898989;
  border-radius: 4px 4px 0 0;
  color: white;
}

.side-menu {
  padding-top: 8px;
  padding-bottom: 8px;
  border-right: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
  border-left: 1px solid #c6c6c6;
  border-radius: 0 0 4px 4px;
}
.side-menu > ul > li:hover > a {
  padding-left: 16px;
  background-color: #e51f1f;
  color: white;
}
.side-menu li {
  font-size: 16px;
  line-height: 1.5;
}
.side-menu li > a {
  padding-right: 24px;
  padding-left: 24px;
}

.side-menu-sort {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
}

.side-menu-parent::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 24px;
  font-family: "FontAwesome";
}
.side-menu-parent:hover::after {
  color: #e51f1f;
}

.side-menu-main-parent:hover::after {
  color: white;
}

.side-menu-item {
  position: relative;
  display: block;
  white-space: nowrap;
}
.side-menu-item:hover > .drop-right-menu {
  -webkit-transform: translate(0, 0) scale(1);
      -ms-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
  -webkit-transition-delay: 150ms;
       -o-transition-delay: 150ms;
          transition-delay: 150ms;
  opacity: 1;
  pointer-events: auto;
}

/* 展開式選單 */
.drop-right-menu {
  position: absolute;
  width: 100%;
  top: 0;
  left: 100%;
  margin-left: -16px;
  background-color: #ededed;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  border: 1px solid #9f9f9f;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-24px);
      -ms-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 100ms ease-out, -webkit-transform 300ms ease-out;
  transition: opacity 100ms ease-out, -webkit-transform 300ms ease-out;
  -o-transition: transform 300ms ease-out, opacity 100ms ease-out;
  transition: transform 300ms ease-out, opacity 100ms ease-out;
  transition: transform 300ms ease-out, opacity 100ms ease-out, -webkit-transform 300ms ease-out;
}

@media (max-width: 1200px) {
  .side-menu-wrapper {
    padding-right: 16px;
  }
}
@media (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}
.brand-list-wrapper {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 80%;
}

.brand-logo-wrapper {
  width: 20%;
  padding: 1px;
}

.brand-logo {
    background-color: white;
    border: 1px solid #c6c6c6;
    width: 176px;
    height: 132px;
    line-height: 132px;
    text-align: center;
    font-size: 28px;
}
.brand-logo img {
  display: block;
  width: 100%;
}

@media (min-width: 1199px) {
  .brand-list-wrapper {
    max-width: 900px;
  }
}
@media (max-width: 992px) {
  .brand-list-wrapper {
    width: 100%;
  }
}
.brand-logo-s {
  margin-bottom: 16px;
}
.brand-logo-s img {
  display: block;
  max-height: 40px;
}

.brand-info-wrapper {
  margin-top: 8px;
  margin-bottom: 8px;
}

.brand-info {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}

.brand-link {
  display: inline-block;
  min-width: 160px;
  margin-top: 8px;
  margin-bottom: 16px;
  padding-right: 8px;
  padding-left: 8px;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  border: 1px dashed #9f9f9f;
  border-radius: 4px;
}
.brand-link:hover {
  border-color: #e51f1f;
}
.brand-link::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  font-family: "FontAwesome";
  vertical-align: bottom;
}