@charset "UTF-8";
/* CSS Document */
.contentBox .left {
  float: right;
  width: 100%;
}
@media (max-width: 640px) {
  .contentBox .left {
    float: none;
    width: 100%;
    padding: 0;
  }
}
.contentBox .right {
  float: left;
  width: 100%;
}
@media (max-width: 640px) {
  .contentBox .right {
    float: none;
    width: 100%;
    margin-top: 30px;
  }
}

.faqList {
  width: 100%;
}
.faqList .faqItem {
  margin-bottom: 15px;
  padding: 5px;
  border-bottom: 1px dashed #ccc;
}
.faqList .title {
  position: relative;
  padding: 10px 5px;
  font-weight: 400;
  font-size: 15px;
  color: #474747;
  cursor: pointer;
}
.faqList .title b {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 21px;
  color: #14345b;
  font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
  -webkit-transform: translateY(-10%);
          transform: translateY(-10%);
}

.toggleOpen {
  position: absolute;
  right: 5px;
  top: 50%;
  display: block;
  margin-top: -13px;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 13px;
  color: #fff;
  background-color: #14345b;
  cursor: pointer;
}
@media (max-width: 640px) {
  .toggleOpen {
    position: static;
    margin: 0;
    margin-top: 10px;
    padding: 10px 0;
    text-align: center;
  }
}

.definition {
  display: none;
  margin-top: 10px;
  padding: 15px;
  font-size: 14px;
  color: #686868;
  line-height: 1.8;
  background-color: #e7e7e7;
  overflow-x: scroll;
}
.definition table {
  min-width: 650px;
}