@font-face {
  font-family: AlibabaSans-Regular;
  src: url(./fonts/AlibabaSans-Regular.otf);
}
@font-face {
  font-family: AlibabaSans-Bold;
  src: url(./fonts/AlibabaSans-Bold.otf);
}
@font-face {
  font-family: AlibabaSans-Medium;
  src: url(./fonts/AlibabaSans-Medium.otf);
}
@font-face {
  font-family: AlibabaSans-Light;
  src: url(./fonts/AlibabaSans-Light.otf);
}
* {
  font-family: "AlibabaSans-Regular";
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-colunm {
  flex-direction: column;
}

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

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

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

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

.f28 {
  font-size: 28px !important;
}

.bg-w {
  background-color: #fff;
}

.c-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.c-black {
  color: #222;
}

.c-blue {
  color: #3368d3;
}

.c-red {
  color: #de0000;
}

.fw-bold {
  font-weight: bold;
}
.on-time-state {
  background-color: rgba(61, 153, 239, 0.1);
  color: rgba(36, 180, 215, 1);
}
.delay-state {
  background-color: rgba(213, 135, 35, 0.1);
  color: rgba(213, 135, 35, 1);
}
.cancel-state {
  background-color: rgba(236, 18, 18, 0.1);
  color: rgba(236, 18, 18, 1);
}
.underline {
  text-decoration: underline;
}

.padding-t-20 {
  padding-top: 20px;
}

.pointer,
.btn,
.more,
.read-more,
.learn-more,
.contact-btn {
  cursor: pointer;
}
/* 移动端 */
@media screen and (max-width: 750px) {
  .pc-adapter {
    display: none !important;
  }
  .dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .dialog {
    display: none;
    position: fixed;
    top: 10%;
    left: 50%;
    font-size: 0.2rem;
    transform: translate(-50%, 0);
    background: #fff;
    padding: 0.45rem;
    box-shadow: 0.02rem 0.1rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80%;
    width: 80%;
    border-radius: 0.08rem;
    overflow-y: scroll;
  }
  .dialog-header {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.01rem solid #eaeaea;
    padding-bottom: 0.1rem;
    margin-bottom: 0.2rem;
    color: #1873ef;
  }
  .dialog-title {
    font-size: 0.18rem;
    font-weight: bold;
  }
  .dialog-close {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    width: 0.3rem;
  }
  .dialog-body {
    margin-bottom: 0.2rem;
  }
  .dialog-footer {
    text-align: right;
  }
  .dialog-footer button {
    padding: 0.08rem 0.16rem;
    margin-left: 0.1rem;
  }
  .form-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 0.1rem;

    .title,
    .tips {
      font-size: 0.32rem;
      line-height: 0.38rem;
      color: #1873ef;

      > p:last-child {
        margin: 0.2rem 0;
      }
    }

    .form {
      width: 100%;
      padding: 0 0.1rem;
    }
  }
  .btn-grounp {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    > div {
      margin-top: 0.2rem;
      width: 1.6rem;
      height: 0.5rem;
      line-height: 0.5rem;
      border-radius: 5px;
      font-family: "AlibabaSans-Bold";
      font-size: 0.32rem;
      text-align: center;
    }
    .sub {
      background-color: #3252b0;
      color: #fff;
    }
    .reset {
      background-color: #f2f2f2;
      color: #000;
    }
  }
  .el-form-item {
    padding-left: 10px;
  }
  .el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label:before {
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* pc端 */
@media screen and (min-width: 750px) {
  section .comtainer {
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
  }
  .mobile-adapter {
    display: none !important;
  }
  .dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .dialog {
    font-size: 15px;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 45px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 800px;
    height: 95vh;
    border-radius: 8px;
    overflow-y: scroll;
  }
  .dialog-header {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #1873ef;
  }
  .dialog-title {
    font-size: 18px;
    font-weight: bold;
  }
  .dialog-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 20px;
  }
  .dialog-body {
    margin-bottom: 20px;
  }
  .dialog-footer {
    text-align: right;
    font-size: 15px;
  }
  .dialog-footer button {
    padding: 8px 16px;
    margin-left: 10px;
  }
  .form-box {
    flex: 1;
    padding: 35px 55px 45px 50px;
    border: 1px solid #bbbbbb;
    display: flex;
    flex-direction: column;
    justify-content: start;

    .title,
    .tips {
      font-size: 15px;
      line-height: 23px;
      color: #1873ef;
      margin-bottom: 25px;
    }

    .form {
      width: 100%;
      margin-left: 10px;
      padding-right: 10px;
    }
  }
  .el-col-2 {
    height: 10px;
  }
  .el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label:before {
    position: absolute;
    top: 0;
    left: -10px;
  }
  .el-form-item {
    position: relative;
  }
  .btn-grounp {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    > div {
      width: 155px;
      height: 44px;
      line-height: 44px;
      border-radius: 5px;
      font-family: "AlibabaSans-Bold";
      font-size: 17px;
      text-align: center;
      margin: 0 20px 20px 0;
      cursor: pointer;
    }
    .sub {
      background-color: #3252b0;
      color: #fff;
    }
    .reset {
      background-color: #f2f2f2;
      color: #000;
    }
  }
}
