faq.scss 1.21 KB


.container {
  // margin-top: -48px;
  font-size: $fontSize-M2;

  .title {
    text-align: center;
    font-size: $articleTitleLarge;
    font-weight: bold;
  }

  .title:lang(zh) {
    letter-spacing: 3.65px;
  }

  .desc {
    margin-top: 28px;

    &-item {
      @extend .bb;
      padding: 40px 0 42px;
      border-bottom: solid 2px #eaebeb;
      cursor: pointer;


      // 问题
      .question {
        // font-weight: bold;
        margin-bottom: 12px;
      }

      // 答案
      .answer {}

      table {
        width: 100%;
        text-align: center;
        margin: 24px auto;
        border-collapse: collapse;

        tr {
          border-left: solid 2px #eaebeb;

          th {
            background-color: #eaebeb;
            border-right: solid 2px #d7d9d9;

            &:last-child {
              border-right: solid 2px #eaebeb;
            }
          }

          td {
            border-bottom: solid 2px #eaebeb;
            border-right: solid 2px #eaebeb;
          }

          th,
          td {
            padding: 12px 0;
          }
        }
      }
    }

    &-item:lang(zh) {
      letter-spacing: 2.2px;
    }
  }
}


@media (max-width: 1200px) {
  .container {
    width: 92vw;
  }
}