policy-change-information.scss 3.58 KB
@import '@/styles/_support.scss';

.container {
  padding-bottom: 24px;
}

.border {
  @extend .bb;
  // height: 387px;
  border-radius: 8px;
  border: solid 1px #f2f2f2;
  background-color: #ffffff;
}

.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 {
      @extend .bb;
      padding: 0 24px;
    }
  }

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


.form {
  @extend .bb;
  padding: 12px 9px;

  &-item {
    position: relative;
    margin-bottom: 28px;
    padding: 0 15px;
    height: auto;

    .label {
      color: #f05a23;
      display: flex;
      align-items: center;

      margin-bottom: 8.4px;

      .fla2{
        @extend .bb;
        flex-wrap: wrap;
        justify-content: flex-end;
        flex: 1;

      }

      .fla3{

      }

      .icon {
        width: 26px;
        display: flex;
      }

      img {
        height: 12px;
      }
    }

    .label2 {
      justify-content: space-between;

      .icon2 {

        width: 14.4px;
        display: flex;
      }

      .t1 {
        color: $cFontGray;
      }

      .t2 {
        color: $cOrange;
        text-decoration: underline;
        @extend .pointer;
      }
    }

    .ipt-wrap {
      position: relative;

      // input和下拉
      .ipt {}

      .disable {
        background-color: #dcdddd;
      }

      // 长文本
      .textarea {
        min-height: 105px;
        border-radius: 12px;
        @extend .bb;
        padding: 9px;
      }

    }
  }

  // 不换行
  &-item2 {
    display: flex;
    margin-bottom: 27px;

    .label {
      height: 30px;
      margin-right: 27px;
      color: $cFontGray;
    }

    .cont {

      display: flex;

      .boo-btn {
        // width: 63px;
        padding: 0 27px;
        height: 30px;
        line-height: 30px;
        border: solid 1px #dcdddd;
        background-color: #ffffff;
        border-radius: 30px;
        text-align: center;
        margin: 0 7.2px;
      }

      .active {
        border: none;
        color: #ffffff;
        background-color: #f05a23;
        box-shadow: 0px 10px 13px 0 rgba(236, 100, 41, 0.2);
        background-blend-mode: soft-light, ;
        // background-image: linear-gradient(to top, #000000, #ffffff), linear-gradient(to bottom, #f05a23, #f05a23);
        background-image: linear-gradient(to bottom, #f05f28, #f05021);
      }
    }
  }

}

.orange {
  background-color: $cOrange;
}

.submit-btn {
  // width: 163px;
  // height: 49px;
  // margin: 0 auto 0;
  // line-height: 49px;
  // box-shadow: 0px 10px 13px 0 rgba(236, 100, 41, 0.2);
  // background-blend-mode: soft-light, ;
  // background-image: linear-gradient(to top, #000000, #ffffff), linear-gradient(to bottom, #ec6429, #ec6429);
  // text-align: center;
  // color: #ffffff;
  // border-radius: 42px;
  // cursor: pointer;
  // border: none;
  // color: #ffffff;
  // background-color: #f05a23;
  // box-shadow: 0px 10px 13px 0 rgba(236, 100, 41, 0.2);
  // background-blend-mode: soft-light, ;
  // background-image: linear-gradient(to top, #000000, #ffffff), linear-gradient(to bottom, #ec6429, #ec6429);
  @include btc4(300px, 50px, 18px);
  width: 300px;
  height: 50px;
  border-radius: 25px;
  margin: 40px auto 0;
}

.submit-btn :lang(zh) {
  letter-spacing: 1.55px;
}


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


@media (max-width: 768px) {
  .form {
    &-item2 {
      display: block;
    }
  }
}