body {
  background-color: #F2F7FF !important;
}
.mouse-scroll-icon {
  position: absolute;
  width: 25px;
  height: 35px;
  bottom: 89px;
  right: 133px;
  border: 2px solid #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.mouse-scroll-icon .wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 10px;
  background-color: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: mouse-bob 1.9s infinite ease-in-out;
}
@keyframes mouse-bob {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
.about-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}
.about-hero-section .hero-bg .img-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: radial-gradient(125% 10% at 50% 102%, transparent 50%, #fff 51%);
  mask-image: radial-gradient(125% 10% at 50% 102%, transparent 50%, #fff 51%);
}
.about-hero-section .hero-bg .hero-content {
  width: 1280px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  z-index: 10;
}
.about-hero-section .hero-bg .hero-content img {
  margin-bottom: 43px;
}
.about-hero-section .hero-bg .hero-content span {
  font-size: 96px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}
.about-hero-section .hero-bg .hero-content span::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-color: #00A3E0;
  border-radius: 50%;
  position: absolute;
  bottom: 15px;
  right: -39px;
}
.about-hero-section .hero-bg .hero-content .title-butn {
  padding-top: 35px;
  display: flex;
  align-items: center;
}
.about-hero-section .hero-bg .hero-content .title-butn .title {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 22px;
}
.driver-join-section {
  width: 100%;
  padding: 100px 0 100px;
}
.driver-join-section .driver-container {
  width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}
.driver-join-section .driver-container .page-header {
  text-align: center;
  margin-bottom: 67px;
}
.driver-join-section .driver-container .page-header .title {
  font-size: 40px;
  color: #002EA6;
  font-weight: 700;
  margin-bottom: 15px;
}
.driver-join-section .driver-container .page-header .desc {
  font-size: 20px;
  color: #050505;
}
.driver-join-section .driver-container .driver-form {
  margin: 0 auto;
  background: #fff;
  border-radius: 25px;
  padding-top: 101px;
  padding-bottom: 88px;
}
.driver-join-section .driver-container .driver-form .block-title {
  font-size: 24px;
  color: #002EA6;
  font-weight: 700;
  margin-bottom: 50px;
  padding-left: 15px;
  position: relative;
}
.driver-join-section .driver-container .driver-form .block-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 22px;
  border-radius: 3px;
  background-color: #002EA6;
}
.driver-join-section .driver-container .driver-form .form-group {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.driver-join-section .driver-container .driver-form .form-group label {
  display: block;
  font-size: 16px;
  color: #050505;
  margin-bottom: 10px;
  font-weight: 500;
  margin-right: 30px;
}
.driver-join-section .driver-container .driver-form .form-group label .req {
  color: #ff4d4f;
  margin-right: 4px;
}
.driver-join-section .driver-container .driver-form .form-group label .tip {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin-left: 30px;
}
.driver-join-section .driver-container .driver-form .form-group .error-tip {
  position: absolute;
  bottom: -10px;
  left: 110px;
  font-size: 12px;
  color: #ff4d4f;
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s;
}
.driver-join-section .driver-container .driver-form .form-group .form-input {
  width: 413px;
  height: 60px;
  background-color: #f7f8fa;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s;
}
.driver-join-section .driver-container .driver-form .form-group .form-input:focus {
  background-color: #fff;
  border-color: #002EA6;
}
.driver-join-section .driver-container .driver-form .form-group.error .form-input,
.driver-join-section .driver-container .driver-form .form-group.error .custom-select,
.driver-join-section .driver-container .driver-form .form-group.error .upload-btn-box,
.driver-join-section .driver-container .driver-form .form-group.error .upload-trigger {
  border-color: #ff4d4f !important;
  background-color: #fff;
  animation: shake 0.4s ease-in-out;
}
.driver-join-section .driver-container .driver-form .form-group.error .error-tip {
  opacity: 1;
  transform: translateY(0);
}
.driver-join-section .driver-container .driver-form .form-row {
  display: flex;
  flex-wrap: wrap;
}
.driver-join-section .driver-container .driver-form .form-row.two-cols .form-group {
  flex: 1;
  display: flex;
  align-items: center;
}
.driver-join-section .driver-container .driver-form .custom-select {
  position: relative;
  width: 413px;
  height: 60px;
  background-color: #f7f8fa;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}
.driver-join-section .driver-container .driver-form .custom-select .select-trigger {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.driver-join-section .driver-container .driver-form .custom-select .select-trigger .selected-text {
  font-size: 14px;
  color: #999;
}
.driver-join-section .driver-container .driver-form .custom-select .select-trigger .selected-text.has-value {
  color: #333;
}
.driver-join-section .driver-container .driver-form .custom-select .select-trigger .arrow {
  transition: transform 0.3s;
}
.driver-join-section .driver-container .driver-form .custom-select .select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-top: 5px;
  padding: 0;
  list-style: none;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.driver-join-section .driver-container .driver-form .custom-select .select-options li {
  padding: 12px 20px;
  font-size: 14px;
  color: #333;
}
.driver-join-section .driver-container .driver-form .custom-select .select-options li:hover {
  background-color: #002EA6;
  color: #fff;
}
.driver-join-section .driver-container .driver-form .custom-select.active .arrow {
  transform: rotate(180deg);
}
.driver-join-section .driver-container .driver-form .custom-select.active .select-options {
  display: block;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper {
  display: flex;
  gap: 40px;
  padding-left: 110px;
  padding-bottom: 20px;
  padding-top: 20px;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card {
  position: relative;
  width: 150px;
  height: 104px;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card .upload-trigger {
  width: 100%;
  height: 100%;
  background: url(../image/upload.png) no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card .upload-trigger .icon-camera {
  width: 50px;
  height: 50px;
  background: #eef2f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a90e2;
  margin-bottom: 10px;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card .upload-trigger .icon-camera svg {
  width: 24px;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card .text {
  font-size: 14px;
  color: #050505;
  text-align: center;
  padding-top: 10px;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card .file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card .preview-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  border-radius: 4px;
  overflow: hidden;
  z-index: 6;
  background: #fff;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card .preview-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card .preview-area .delete-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.driver-join-section .driver-container .driver-form .id-upload-wrapper .upload-card .preview-area:hover .delete-btn {
  opacity: 1;
}
.driver-join-section .driver-container .driver-form .multi-upload-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-left: 110px;
  padding-bottom: 20px;
  padding-top: 20px;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .upload-btn-box {
  position: relative;
  width: 112px;
  height: 112px;
  background-color: #F6F7FA;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .upload-btn-box .plus {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 5px;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .upload-btn-box .text {
  font-size: 12px;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .upload-btn-box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .preview-list {
  display: flex;
  gap: 20px;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .preview-list .preview-item {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 4px;
  overflow: hidden;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .preview-list .preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .preview-list .preview-item .del-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  cursor: pointer;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .preview-list .preview-item .del-mask::before {
  content: '';
  background: url('../image/delct.png') no-repeat center center;
  background-size: cover;
  width: 15px;
  height: 17px;
  background-size: 100% 100%;
}
.driver-join-section .driver-container .driver-form .multi-upload-container .preview-list .preview-item:hover .del-mask {
  opacity: 1;
}
.driver-join-section .driver-container .driver-form .form-footer {
  padding-left: 70px;
}
.driver-join-section .driver-container .driver-form .form-footer .agreement {
  margin-bottom: 30px;
}
.driver-join-section .driver-container .driver-form .form-footer .agreement .checkbox-label {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}
.driver-join-section .driver-container .driver-form .form-footer .agreement .checkbox-label input {
  display: none;
}
.driver-join-section .driver-container .driver-form .form-footer .agreement .checkbox-label .checkmark {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #002EA6;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #002EA6;
}
.driver-join-section .driver-container .driver-form .form-footer .agreement .checkbox-label .checkmark::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}
.driver-join-section .driver-container .driver-form .form-footer .agreement .checkbox-label input:not(:checked) ~ .checkmark {
  background: #fff;
}
.driver-join-section .driver-container .driver-form .form-footer .agreement .checkbox-label input:not(:checked) ~ .checkmark::after {
  display: none;
}
.driver-join-section .driver-container .driver-form .form-footer .agreement .checkbox-label a {
  color: #0028AA;
  margin-left: 5px;
  text-decoration: none;
}
.driver-join-section .driver-container .driver-form .form-footer .btn-group {
  display: flex;
  gap: 20px;
}
.driver-join-section .driver-container .driver-form .form-footer .btn-group .btn {
  width: 250px;
  height: 60px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.driver-join-section .driver-container .driver-form .form-footer .btn-group .btn.submit {
  background-color: #002EA6;
  color: #fff;
}
.driver-join-section .driver-container .driver-form .form-footer .btn-group .btn.submit:hover {
  background-color: #003cd9;
}
.driver-join-section .driver-container .driver-form .form-footer .btn-group .btn.reset {
  background-color: #DCDCDC;
  color: #fff;
}
.driver-join-section .driver-container .driver-form .form-footer .btn-group .btn.reset:hover {
  background-color: #d0d0d0;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-5px);
  }
  40%,
  80% {
    transform: translateX(5px);
  }
}
.form-block {
  padding-bottom: 60px;
  padding-left: 70px;
}
