.mainArea > .wrap, .faqList > li, .faqTitle h2, .faqArrowBtn::before, .faqArrowBtn::after {
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out; }

.mainArea > .wrap {
  opacity: 0; }

.mainArea > .wrap {
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px); }

.mainArea > .wrap.show {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  opacity: 1; }

/*
	Authors: Alvin, Randy, Rex
    Version: 2.0
	Latest Update: 2020/03/13
*/
.faqList {
  counter-reset: item; }
  .faqList > li {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    counter-increment: item; }
    @media (max-width: 1180px) {
      .faqList > li {
        padding-top: 10px;
        padding-bottom: 10px; } }
    .faqList > li:hover, .faqList > li.open {
      border-color: #00a0e9; }
      .faqList > li:hover h2, .faqList > li.open h2 {
        color: #00a0e9; }
      .faqList > li:hover .faqArrowBtn::before, .faqList > li:hover .faqArrowBtn::after, .faqList > li.open .faqArrowBtn::before, .faqList > li.open .faqArrowBtn::after {
        background-color: #00a0e9; }
    .faqList > li.open .faqArrowBtn::after {
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg);
      opacity: 0; }

.faqTitle {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 85px;
  padding-left: 145px;
  padding-right: 50px;
  cursor: pointer; }
  @media (max-width: 1180px) {
    .faqTitle {
      padding-left: 60px;
      padding-right: 40px; } }
  .faqTitle::before {
    content: "Q" counter(item);
    position: absolute;
    top: 0;
    left: 25px;
    z-index: 1;
    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;
    width: 85px;
    height: 85px;
    font-size: 18px;
    font-family: "Poppins", "Noto Sans TC", sans-serif;
    color: #00a0e9;
    border-radius: 50%;
    border: 1px solid #e5e5e5; }
    @media (max-width: 1180px) {
      .faqTitle::before {
        top: 10px;
        left: 0;
        width: 40px;
        height: 40px;
        font-size: 14px; } }
  .faqTitle .mTitle {
    margin-bottom: 10px;
    font-size: 14px;
    color: #00a0e9; }
  .faqTitle h2 {
    font-weight: 400;
    font-size: 18px;
    color: #111; }

.definition {
  display: none;
  padding: 20px 100px 40px 145px; }
  @media (max-width: 1180px) {
    .definition {
      padding-left: 0;
      padding-right: 0; } }

.faqArrowBtn {
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1;
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  margin-left: -7.5px; }
  @media (max-width: 1180px) {
    .faqArrowBtn {
      right: 0; } }
  .faqArrowBtn::before, .faqArrowBtn::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 1px;
    background-color: #626262; }
  .faqArrowBtn::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    margin-top: -1px; }
  .faqArrowBtn::after {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%; }
