@media (max-width: 640px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 640px) {
  .contentBox .rightBox {
    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: 18px;
  font-weight: 500;
  color: #474747;
  cursor: pointer;
}
@media (max-width: 960px) {
  .faqList .title {
    font-size: 16px;
  }
}
.faqList .title b {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-style: italic;
  font-size: 16px;
  color: #2b455c;
}

.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: #2b455c;
  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: #414141;
  line-height: 1.8;
  background-color: #e7e7e7;
}