@charset "UTF-8";
:root {
  --fontFamily:NotoSans, "PingFangTC", Microsoft JhengHei,"微軟正黑體", "Helvetica", "sans-serif";
  /*語意化顏色變數*/
  --primaryText: #222222;
  --placeholderText:#6C6C6C;
  --inputBorder:#B4BFC9;
  --divideBorder:#BFBFBF;
  --input_disabled:#F5F5F5;
  --searchBorder:#E1E1E1;
  --border:#ebebeb;
  --primaryColor: #4674A0;
  --primaryColor_subtle:#396085;
  --primaryBg:#C8E5F2;
  --secondaryColor:#39496A;
  --secondaryColor_subtle:#2a3650;
  --green:#019338;
  --green_subtle:#00772D;
  --red:#E5002F;
  --blue_focus:#2E75FF;
  --link:#0074BF;
  --black900:#222222;
  --black800:#5C5C5C;
  --black700:#6C6C6C;
  --black600:#B4BFC9;
  --black500:#BFBFBF;
  --black400:#E1E1E1;
  --black300:#E5E6E8;
  --black200:#EBEBEB;
  --black100:#F5F5F5;
  --blue700:#2A3650;
  --blue600:#39496A;
  --blue500:#396085;
  --blue400:#4674A0;
  --blue300:#0074BF;
  --blue200:#2E75FF;
  --blue100:#C8E5F2;
  --green200:#00772D;
  --green100:#019338;
  --red100:#E5002F;
}

body {
  overflow: hidden;
  min-width: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.full-container {
  display: flex;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
}
.full-container .main-container {
  width: calc(100% - 200px);
  height: 100vh;
  padding: 1rem;
  background-color: #fcfcfc;
  box-sizing: border-box;
  overflow: auto;
  /* width */
  /* Handle */
  /* Track */
  /*某些元素的corner部分的部分样式(例:textarea的可拖动按钮)*/
  /*firefox scrollbar*/
  position: relative;
}
.full-container .main-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.full-container .main-container::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: rgba(79, 79, 79, 0.5);
}
.full-container .main-container::-webkit-scrollbar-track {
  background-color: transparent;
}
.full-container .main-container::-webkit-scrollbar-corner {
  background-color: transparent;
}
.full-container .main-container::-webkit-resizer {
  background-color: transparent;
  border-color: transparent;
}

aside {
  width: 200px;
  height: 100vh;
  background-color: #fffaf2;
  box-sizing: border-box;
  overflow-y: auto;
  flex-shrink: 0;
  /* width */
  /* Handle */
  /* Track */
  /*某些元素的corner部分的部分样式(例:textarea的可拖动按钮)*/
  /*firefox scrollbar*/
}
aside::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
aside::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: rgba(79, 79, 79, 0.5);
}
aside::-webkit-scrollbar-track {
  background-color: transparent;
}
aside::-webkit-scrollbar-corner {
  background-color: transparent;
}
aside::-webkit-resizer {
  background-color: transparent;
  border-color: transparent;
}
aside .title {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75em 1em;
}
aside ul li a {
  display: block;
  width: 100%;
  font-size: 1rem;
  color: #6c6c6c;
  padding: 0.75em 1em;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s;
  animation: active;
  animation-timeline: var(--s);
}
aside ul li a:hover {
  background-color: #4f4f4f;
  color: #fff;
}
@keyframes active {
  0%, 100% {
    background-color: #4f4f4f;
    color: #fff;
  }
}

section {
  view-timeline-name: var(--s);
  view-timeline-inset: 50%;
  margin-bottom: 80px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.8333em;
  position: relative;
  z-index: 1;
}
.section-title > span:first-child {
  color: #4f4f4f;
  border-right: 3px solid #4f4f4f;
  padding-right: 10px;
  background-color: #fcfcfc;
}
.section-title > span:nth-child(2) {
  color: #000;
  padding-left: 10px;
  padding-right: 20px;
  background-color: #fcfcfc;
}
.section-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3153ba;
  opacity: 0.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.caption {
  font-size: 1.125rem;
  margin-bottom: 0.8888em;
}
.caption ul {
  padding-left: 24px;
}
.caption ul li {
  position: relative;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: left;
}
.caption ul li::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background: #3C4C5E;
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}
.caption.description {
  font-size: 1rem;
  background-color: rgba(180, 191, 201, 0.5);
  border-radius: 4px;
  padding: 10px;
}
.caption.description ul {
  padding-left: 18px;
}
.caption.description ul li::before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  background: #3C4C5E;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.margin-center {
  margin: auto;
}

.subtitle {
  font-size: 1rem;
  background-color: rgba(180, 191, 201, 0.5);
  color: #151515;
  border-radius: 4px;
  padding: 10px;
  margin-top: 1em;
  margin-bottom: 1.25em;
  text-align: left;
}

.layout-img-1 {
  width: 100%;
}

.layout-img-2 {
  width: 100%;
}

.page-title {
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  color: #4f4f4f;
}

.example-box {
  width: 100%;
  height: 60px;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-box .button {
  margin: auto;
}
.btn-box .btn-radio {
  margin: auto;
}

.main-aside {
  width: 14rem;
  height: auto;
  overflow: inherit;
}
.main-aside .aside-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}
.main-aside ul li a > .aside-title-txt {
  grid-template-columns: 1fr;
}
.main-aside ul li a::after {
  display: block;
}
.main-aside ul li:has(.submenu) > a::after {
  display: block;
}
.main-aside ul li:has(.submenu) > a.active::after {
  transform: translateY(-50%) rotate(90deg);
}
.main-aside ul li:has(.thirdmenu) > a::after {
  display: block;
}
.main-aside ul li:has(.thirdmenu) > a.active::after {
  transform: translateY(-50%) rotate(90deg);
}

.main-container .search-group.index-search {
  margin-top: 0;
}

.guide-setting-menu .setting-menu {
  display: block;
  position: relative;
  top: inherit;
  right: inherit;
}

.btn_gotop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.4375rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  position: fixed;
  right: 1em;
  bottom: -60px;
  z-index: 99;
  opacity: 0;
  transition: all 0.3s;
  background-color: #CBCBCB;
  color: #222A32;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  box-sizing: border-box;
}

.btn_gotop.show {
  opacity: 1;
  bottom: 60px;
}

.btn_gotop::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #222A32 transparent;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #d2d2d2;
  padding-top: 1rem;
  color: #7d7d7d;
}/*# sourceMappingURL=guideline.css.map */