@charset "UTF-8";
body {
  font-family: var(--fbh-font);
  margin: 0;
  padding: 0;
  color: var(--fbh-text-primary);
  line-height: 1.5;
}

html,
body {
  /* 消除點擊藍色底色 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
:after,
:before {
  box-sizing: border-box;
  border: 0px solid var(--fbh-neutral-divider-stroke);
}

/* 水平 scroll 的 DIV */
.fbh-scroll-horiz-block {
  display: flex;
  overflow-x: auto;
  -webkit-clip-path: inset(0 0 1.25rem 0);
          clip-path: inset(0 0 1.25rem 0);
  padding-bottom: 1.25rem;
  margin-bottom: -1.25rem;
  list-style: none;
  /* 邊距設定 */
}
.fbh-scroll-horiz-block ul {
  list-style: none;
}
.fbh-scroll-horiz-block.fbh-pl-6 {
  padding-left: 1.5rem;
}
.fbh-scroll-horiz-block.fbh-after-6::after {
  content: "";
  display: block;
  padding-left: 1.5rem;
  height: 10px;
}

/* reset */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

input:focus {
  outline: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}