.contentBox .leftBox {
  float: right;
  width: 20%;
}
@media (max-width: 640px) {
  .contentBox .leftBox {
    float: none;
    width: 100%;
    padding: 0;
  }
}
.contentBox .rightBox {
  float: left;
  width: 74%;
}
@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: 15px;
  color: #424242;
  cursor: pointer;
}
.faqList .title b {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  font-size: 16px;
  color: #c6171f;
}
.faqList .toggleOpen {
  position: absolute;
  right: 5px;
  top: 50%;
  display: block;
  margin-top: -15px;
  border-radius: 30px;
  font-size: 20px;
  color: #ffffff;
  background-color: #c6171f;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  .faqList .toggleOpen {
    position: static;
    margin: 0;
    margin-top: 10px;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    border-radius: 0;
  }
}
.faqList .definition {
  display: none;
  margin-top: 10px;
  padding: 15px;
  font-size: 14px;
  color: #424242;
  line-height: 1.8;
  background-color: #eeeeee;
}