register.scss 3.56 KB
@import '@/styles/_support';

.content {
  position: relative;
  min-height: 50rem;
  padding-bottom: 2.25rem;
}

.top-space {
  height: 2.75rem;
}

.box {
  position: relative;
}

.ebg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  img {
    max-width: 100%;
  }
}

.step {
  @extend .fcc;
  margin-bottom: 3rem;
}

.login {
  color: #4c4948;
  @extend .bb;
  padding: 2.75rem 5rem 4.25rem;
  border-bottom: solid .666667rem #006441;

  margin: auto;
  max-width: 40.25rem;
  border-radius: .75rem;
  box-shadow: 0 0 1.5rem 0 rgba(255, 87, 0, 0.15);
  background-color: #ffffff;

  &-tit {
    font-family: MicrosoftYaHei;
    color: #f05a23;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .2rem;
    text-shadow: 3px 5.2px 9px rgba(236, 100, 41, 0.27);
  }


  &-nav {
    margin: 2.25rem 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;

    &-v-line {
      width: .2rem;
      height: 1.25rem;
      background-color: #4c4948;
      margin: 0 2.25rem;
    }

    &-tit {
      font-family: MicrosoftYaHei;
      flex: 1;
      font-size: 18px;
      font-weight: bold;
      color: #4c4948;
      // text-shadow: 3px 5.2px 9px rgba(76, 73, 72, 0.27);
    }

    .active {
      color: #f05a23;
      text-shadow: 3px 5.2px 9px rgba(236, 100, 41, 0.27);
    }
  }

  &-protocol {
    margin: 2.5rem auto 0;
    display: flex;
    align-items: center;

    .check {
      height: 1rem;
      margin-right: .6rem;
    }

    .protocol {
      color: #f05a23;
    }
  }

  &-submit {
    @include btc2(13.5rem, 4rem, 16px);
    margin: 8.25rem auto 0;
    letter-spacing: 1.6px;
  }

  &-func {
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: center;

    &-btn {
      margin: 0 1.25rem;
      text-decoration: underline;
    }
  }
}

.form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;


  &-item {
    position: relative;
    margin-top: 3.75rem;

    .label {
      font-family: MicrosoftYaHei;
      font-size: 18px;
      font-weight: bold;
      color: #f05a23;
      display: flex;
      align-items: center;
      margin-bottom: 1.25rem;

      img {
        height: 1.5rem;
        margin-right: .8rem;
      }
    }

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

      // input和下拉
      .ipt {
        @extend .bb;
        width: 100%;
        height: 3.5rem;
        border: solid 1px #dcdddd;
        background-color: #ffffff;
        border-radius: 3.5rem;
        padding: 0 1.75rem;
        flex: 1;
      }

      // 长文本
      .textarea {
        min-height: 8.75rem;
        border-radius: 1rem;
      }

      .down-arrow {
        position: absolute;
        top: 1.6rem;
        right: 2rem;
      }


      .verify-btn {
        @extend .fcc;
        font-family: Arial;
        font-size: 18px;
        width: 8.5rem;
        border: solid 1px #dcdddd;
        background-color: #f2f2f2;
        flex: none;
        margin-left: 1.5rem;
        color: #4c4948;
      }

      // 框内按钮
      .ipt2 {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .ipt-tel {
          flex: 1;
          padding-left: 1.75rem;
        }

        .ipt-code {
          flex: 1;
          padding-right: 1.75rem;
        }

        .region-tel{

        }

        .veri-btn {
          color: #f05a23;
          text-decoration: underline;
        }
      }

    }

  }
}

@media (max-width: 950px) {
  .box {
    width: 96%;
  }

  .login {
    padding: 2rem 1rem 3.5rem;
  }
}