common-form.scss 2.05 KB
@import '@/styles/_support.scss';

.common-form-container {}

.table {
  $girdHei: 52px;
  text-align: center;

  &-header {
    @include border-top-radius(8px);
    display: flex;
    align-items: center;
    height: 39px;
    color: #ffffff;
    font-weight: bold;
    &-item {}
  }

  &-header:lang(zh) {
    letter-spacing: 1.2px;
  }

  &-content {
    color: $cFontGray;
    background-color: #f2f2f2;
    text-align: center;
    border: solid 1px #f2f2f2;
    @include border-bottom-radius(8px);
    $gridHei: 63px;

    &-item {
      position: relative;
      // @extend .fcc;
      display: flex;
      align-items: center;
      width: 100%;
      height: auto;

      .hl {
        position: absolute;
        width: 77.4px;
        height: 1px;
        background-color: #dcdddd;
        bottom: 0;
        left: 12px;
      }

      .grid {
        position: relative;
        height: $gridHei;
        @extend .fcc;
        // border-bottom: solid 1px #f2f2f2;
        background-color: #ffffff;

        .v-line {
          position: absolute;
          width: 1px;
          height: 27px;
          background-color: #dcdddd;
          right: 0;
          top: 0;
          bottom: 0;
          margin: auto 0;
        }

        .icon {
          margin-right: 11px;
        }
      }

      .ww {
        position: relative;

        .h-line {
          position: absolute;
          width: 100%;
          height: 1px;
          background-color: #dcdddd;
          bottom: 0;
          left: 0;
        }
      }

      .w1 {}

      .w4 {
        .h-line {
          width: 144px;
        }

        color: $cOrange;
      }
    }
  }

  .t1 {
    background-color: #f2f2f2;
  }

  .w1 {
    width: 105px;
  }

  .w2 {
    width: 348px;
  }

  .w3 {
    width: 357px;
  }

  .w4 {
    width: 144px;
    width: 165px;
  }
}

.orange {
  background-color: $cOrange;
}

@media (max-width: 1200px) {
  .container {
    display: -webkit-box;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 92vw;
  }
}

.container::-webkit-scrollbar {
  display: none;
}