policy-change-contact.scss 2.8 KB
@import '@/styles/_support.scss';

.container {
  @extend .bb;
  padding: 22px 36px 30px 26px;

}

.border {
  border-radius: 8px;
  border: solid 1px #f2f2f2;
  background-color: #ffffff;
}

.form {
  display: flex;
  flex-wrap: wrap;

  &-item {
    position: relative;
    margin-bottom: 28px;
    width: 100%;

    &:last-child {
      margin-bottom: 0;
    }

    .label {
      color: #f05a23;
      display: flex;
      align-items: center;
      margin-bottom: 8.4px;

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

      img {
        height: 12px;
      }
    }

    .ipt-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;

      // input和下拉
      .ipt {
        flex: 1;
      }

      .agree {
        cursor: pointer;
      }

      .name-ipt {
        width: 164px;
      }

      .phone-ipt {
        width: 164px;
      }

      .mail-ipt {}

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

      .down-arrow {
        position: absolute;
        top: 26.4px;
        right: 24px;
        background-image: url('~@/assets/images/reservation/re-down-arrow.png');
        width: 12px;
        height: 8px;
        pointer-events: none;
        cursor: default;
      }

      .check-icon {
        display: inline-block;
        margin-left: 26px;
        margin-right: 8px;
      }
    }

    .validator {
      color: $cOrange;
      margin-top: 6px;
      position: absolute;
      right: 192px;
      display: flex;
      align-items: center;
      // bottom: 0;

      img {
        display: inline-block;
        margin-right: 4.8px;
      }
    }
  }

}

.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;
  font-size: 15.5px;
  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);
}

.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 {
    &-item {
      .ipt-wrap {
        display: block;
      }

      .agree {
        margin-top: $marginSmall-M;

        .check-icon {
          margin-left: 0;
        }
      }


    }
  }
}