.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 .title {
  position: relative;
  padding: 15.6px 10px;
  font-weight: 400;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  background-color: #f9f9f9;
  margin-top: 10px;
}
@media (max-width: 500px) {
  .faqList .title {
    padding: 10px 10px;
    font-size: 16px;
  }
}
.faqList .title b {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 6px;
  font-size: 16px;
  color: #990000;
}

.toggleOpen {
  position: absolute;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 0;
  top: 0px;
  border-radius: 0px;
  font-size: 14px;
  color: #fff;
  background-color: #990000;
  cursor: pointer;
}
@media (max-width: 500px) {
  .toggleOpen {
    width: 47.45px;
    height: 47.45px;
  }
}

.definition {
  display: none;
  padding: 15px;
  font-size: 15px;
  color: #686868;
  line-height: 1.8;
  height: 150px;
  background-color: #f5f5f5;
}