vhis-modal.scss 5.15 KB
@import '@/styles/_support';

$borderRadius:6px;

.comp {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100%;
  @extend .fcc;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba($color: #000000, $alpha: 0.7);
}

.bold {
  font-weight: 600;
}

.orange {
  color: $cOrange2;
}

.border {
  position: relative;
  @include border-tans(20px);
}

.modal {
  position: relative;
  @extend .bb;
  width: 1200px;
  max-height: 84vh;
  padding: 88px 0 0;
  font-size: 22px;
  overflow-x: hidden;
  overflow-y: auto;
  color: $cFontGray2;

  .content {
    max-width: 800px;
    margin: 0 auto;
  }

  .statement {
    @extend .bb;
    padding: 0 92px 0 92px;
    margin: 50px auto 0;
  }

  .form {
    @extend .bb;
    padding-left: 92px;
    margin: 50px auto 0;

    &-item {
      display: flex;
      justify-self: center;
    }
  }

  .bottom-wrap {
    margin: 50px auto 0;
    padding-bottom: 88px;

    .notice {
      font-size: 0;

      span {
        font-size: 22px;
      }
    }

    .notice:lang(zh) {
      letter-spacing: 2.2px;
    }
  }

  .title {
    @extend .bb;
    font-size: 36px;
    color: $cOrange2;
    font-weight: bold;
  }

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

  .desc {
    text-align: left;
    line-height: 1.82;
    @extend .text-jtf;

    span {
      margin: 0 2px;
    }
  }

  .desc:lang(zh) {
    letter-spacing: 3.6px;
  }

  .value {
    flex: 1;
    text-align: left;
    line-height: 1.82;
    font-size: 0;

    span {
      font-size: 22px;
    }
  }

  .value:lang(zh) {
    letter-spacing: 3.6px;
  }

  .ltz {
    letter-spacing: 0;
  }

  .ltr-zero {
    @extend .ltz;
    text-align: justify;
    text-align-last: left;
  }

  .line1 {
    margin: 50px auto 0;
  }


  hr {
    border-top: 1px solid #e4e4e5;
    margin: 0 auto;
    max-width: 1000px;
  }

  .download {
    margin: 44px auto 0;
    text-align: center;


    &-item {
      @extend .fcc;
      margin: 0 auto 24px;
      max-width: 602px;
      height: 67px;
      line-height: 67px;
      cursor: pointer;
      @include border-tans($borderRadius);

      .cont {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;

        font-weight: bold;
        color: $cOrange2;

        .icon {
          height: 47px;
          margin-right: 52px;
        }
      }

      .cont:lang(zh) {
        letter-spacing: 1.4px;
      }
    }
  }

  .flex-center {
    display: flex;
    justify-items: center;
    align-items: center;
  }

  .default-mt {
    margin-top: 2.2rem;
  }

  .half-mt {
    margin-top: 1rem;
  }

  .btn-wrap {
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
  }

  .submit-btn {
    background: url("~@assets/images/vhis/vhis-btn.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 300px;
    height: 50px;
    line-height: 50px;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    margin: 0 25px;
  }

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

  .contact {
    margin: 50px auto 0;
    font-weight: bold;
    color: $cOrange2;

    span {
      text-decoration: underline;
    }
  }
}

.close {
  position: absolute;
  right: -55px;
  top: -15px;
  cursor: pointer;

  img {
    position: relative;
    width: 30px;
    height: 30px;
  }
}


.hide {
  display: none;
}

@media (max-width: 1350px) {
  .close {
    right: -15px;
    top: -55px;
  }
}

@media (max-width: 1250px) {
  .border {
    width: 90%;
  }
}

@media (max-width: 1200px) {
  .border {
    width: 90%;

    .modal {
      padding: 80px 20px;
    }
  }
}


@media (max-width: 1000px) {
  .border {
    width: 90%;

    .modal {
      padding: 80px 20px;

      .statement {
        // padding-left: 0;
        padding: 0;
      }

      .form {
        padding-left: 0;
      }
    }
  }
}


@media (max-width: 768px) {
  .close {
    right: -15px;
    top: -40px;
  }

  .border {

    .modal {
      padding: 16px 16px;
      font-size: 18px;

      .title {
        font-size: 28px;
      }

      .statement {
        margin: 24px auto 0;
      }

      .form {
        margin: 24px auto 0;

        .value {
          span {
            font-size: 18px;
          }
        }
      }

      .bottom-wrap {
        margin: 24px auto 0;

        .notice {

          span {
            font-size: 18px;
          }
        }

        .btn-wrap {
          margin: 16px auto 0;
          flex-wrap: wrap;

          .submit-btn {
            height: 48px;
            line-height: 48px;
            font-size: 18px;
            margin: 8px auto;
          }
        }

        .contact {
          margin: 16px auto 0;
          font-size: 18px;
        }
      }

      .download {
        margin: 24px auto 0;
        font-size: 18px;

        .download-item {
          height: 52px;
          line-height: 52px;

          .icon {
            height: 32px;
            margin-right: 24px;
          }
        }


      }

      .line1 {
        margin: 24px auto 0;
      }
    }

  }
}


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

.comp {
  -ms-overflow-style: none;
}