@font-face {
  font-family: "Montserrat-Black";
  src: url("../fonts/Montserrat-Black.otf")
    format("truetype");
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat-Bold.otf")
    format("truetype");
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat-Regular.otf")
    format("truetype");
}
body {
  font-family: "Montserrat-Regular";
  background-color: #fff;
}

main .bg {
  position: relative;
  height: 100vh;
}
main .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
main .bg .title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.78rem;
  color: #fff;
  font-family: "Montserrat-Bold";
  overflow: hidden;
}
main .bg .title span {
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.8s;
  display: block;
}
main .bg .title .text_down {
  transform: translateY(0%);
  opacity: 1;
}
main .bg .brand_banner_line {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
main .bg .brand_banner_line div {
  background-color: rgb(254, 118, 0);
  width: 50%;
  height: 3px;
  margin-top: 0.06rem;
}
main .content {
  width: 60%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 1.77rem 0;
}
main .content .t1 {
  font-size: 0.36rem;
  font-family: "Montserrat-Bold";
}
.point {
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 0.1rem;
  position: relative;
  top: -0.05rem;
}
main .content .t2 {
  font-size: 0.25rem;
  font-family: "Montserrat-Bold";
  text-align: center;
  line-height: 0.38rem;
  margin-top: 0.4rem;
  margin-bottom: 0.1rem;
}
.c_pointer {
  cursor: pointer;
}
main .content .t3 {
  font-size: 0.25rem;
  font-family: "Montserrat-Bold";
  text-align: center;
  line-height: 0.38rem;
  margin-top: 0;
  margin-bottom: 1.36rem;
}
main .content .t3 a {
  color: #ff8002;
}
main .content .t2 span {
  color: #ff8002;
}
main .content .box {
  width: 100%;
}
main .content .box .t {
  text-transform: uppercase;
  font-size: 0.25rem;
  font-family: "Montserrat-Bold";
}
main .content .box .tabs {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  margin-top: 0.27rem;
}
main .content .box .tabs .tab {
  flex: 1;
  height: 0.58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.19rem;
  color: #5b5b5b;
  border: 1px solid #5b5b5b;
  cursor: pointer;
  text-transform: uppercase;
}
main .content .box .tabs .tab.active {
  background-color: #000;
  color: #fff;
}
main .content .box input {
  border: none;
  outline: none;
  font-size: 0.25rem;
  flex: 1;
  font-family: "Montserrat-Regular";
}
main .content .box .input-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  margin-top: 0.7rem;
  position: relative;
}
main .content .box .input-box img {
  width: 0.3rem;
}
main .content .box .input-box ul {
  position: absolute;
  top: 0.65rem;
  width: 100%;
  font-size: 0.2rem;
  z-index: 4;
  background-color: #fff;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
  height: 4.2rem;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: all 0.5s;
}
main .content .box .input-box ul li {
  padding: 0.2rem;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.25rem;
}
main .content .box .input-box ul li:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
main .content .box textarea {
  width: 100%;
  font-family: "Montserrat-Regular";
  font-size: 0.25rem;
  height: 1.84rem;
  resize: none;
  margin-top: 0.45rem;
  padding: 0.2rem 0.3rem;
}
main .content .box2 {
  margin-top: 1.3rem;
}
main .content .privacy-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1rem;
}

.checkbox-container {
  position: relative;
  margin-right: 0.1rem;
}

.privacy-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-label {
  position: relative;
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border: 3px solid #030303;
  cursor: pointer;
  transition: all 0.2s ease;
}

.privacy-checkbox:checked + .checkbox-label {
  background-color: #030303;
}

.privacy-checkbox:checked + .checkbox-label::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.15rem;
  height: 0.25rem;
  border: solid white;
  border-width: 0 0.05rem 0.05rem 0;
}

.privacy-checkbox:focus + .checkbox-label {
  box-shadow: 0 0 0.05rem #030303;
}

.privacy-box .t {
  font-size: 0.23rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.privacy-box .t .link {
  text-decoration: underline;
  cursor: pointer;
}

.privacy-box .t .error-message {
  color: #ff0000;
  font-size: 0.2rem;
  margin-left: 0.2rem;
  display: block;
  margin-top: 0.1rem;
}

main .content .btn {
  display: block;
  width: 2.5rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  font-size: 0.14rem;
  cursor: pointer;
  margin-top: 0.7rem;
  background-color: #000;
  color: #fff;
  border-radius: 0.5rem;
  font-family: "Montserrat-Bold";
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
}
main .content .btn img {
  width: 0.2rem;
}

/* Privacy Modal Close Button */
.privacy_close_box {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}
.privacy_close {
  width: 32px;
  height: 32px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.privacy_close:hover {
  opacity: 1;
}
.privacy_pop_min {
  position: relative;
}

.privacy_pop .page_title {
  font-size: 0.44rem;
  color: #333;
  text-align: center;
  font-family: "Montserrat-Bold";
  font-weight: 700;
  letter-spacing: 0.022rem;
}

.privacy_pop .page_main {
  margin-top: 0.5rem;
  font-size: 0.18rem;
  line-height: 0.4rem;
  color: #333;
  font-family: "Montserrat-Regular";
}

.privacy_pop .page {
  padding: 0.2rem 0.75rem 0.75rem;
}

.privacy_pop {
  width: 100%;
  height: 100vh;
  z-index: 50000;
  position: fixed;
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.privacy_pop .privacy_pop_min {
  position: relative;
  width: 80%;
  height: 80vh;
  background-color: #fff;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}

.privacy_pop.active {
  /* opacity: 1; */
  pointer-events: auto;
}

.privacy_pop.active .privacy_pop_min {
  top: 52%;
}

.privacy_pop.active {
  opacity: 1;
  pointer-events: auto;
}

.submit_ok_pop {
  width: 100%;
  height: 100vh;
  z-index: 50000;
  position: fixed;
  transition: all 0.4s;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.submit_ok_pop .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  padding: 0.5rem 0;
  border-radius: 0.1rem;
}
.submit_ok_pop .box .t {
  font-family: "Montserrat-Bold";
  font-size: 0.32rem;
  text-align: center;
}
.submit_ok_pop .box .btn {
  display: block;
  width: 2.5rem;
  height: 0.6rem;
  line-height: 0.6rem;
  text-align: center;
  font-size: 0.14rem;
  cursor: pointer;
  margin-top: 0.7rem;
  background-color: #000;
  color: #fff;
  border-radius: 0.5rem;
  font-family: "Montserrat-Bold";
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.5rem;
}
.submit_ok_pop .box .btn img {
  width: 0.2rem;
}

.footer {
  width: 100%;
}

/* button */
.btn-stay {
  width: 2.7rem;
  height: 0.6rem;
  border-radius: 50px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 0.7rem;
}
.btn-stay .bt_mask {
  background-color: #000;
}
.btn-stay .bt_t {
  color: #fff;
  font-weight: bold;
}

.btn-stay_1 {
  width: 2.7rem;
  height: 0.6rem;
  border-radius: 50px;
  overflow: hidden;
  margin-top: 1.1rem;
}
.btn-stay_1 .bt_mask {
  background-color: #000;
}
.btn-stay_1 .bt_t {
  color: #fff;
  font-weight: bold;
}

.only_pc {
  display: block;
}
.only_mb_wraper {
  display: none;
}
@media (max-width: 768px) {
  .only_pc {
    display: none;
  }
  .only_mb_wraper {
    display: block;
  }
  main .bg {
    height: auto;
  }
  main .bg .title {
    font-size: 0.6rem;
  }
  main .content {
    width: 84%;
    padding: 1rem 0;
  }
  main .content .t1 {
    font-size: 0.48rem;
  }
  main .content .t2 {
    font-size: 0.33rem;
    text-align: left;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
    line-height: 0.54rem;
  }
  main .content .t3 {
    margin-top: 0;
    margin-bottom: 1.2rem;
  }
  main .content .t3 a {
    color: #ff8002;
  }
  main .content .box .t {
    font-size: 0.3rem;
  }
  main .content .box .tabs {
    flex-wrap: wrap;
  }
  main .content .box .tabs .tab {
    width: 48.5%;
    flex: none;
    height: 0.9rem;
    font-size: 0.2rem;
  }
  main .content .box input {
    font-size: 0.3rem;
  }
  main .content .box textarea {
    height: 3.6rem;
  }
  main .content .privacy-box .box {
    width: 0.25rem;
    height: 0.25rem;
    border: 1px solid #000000;
  }
  main .content .btn {
    width: 100%;
    height: 0.9rem;
    font-size: 0.25rem;
    justify-content: center;
    position: relative;
  }
  main .content .btn img {
    width: 0.32rem;
    position: absolute;
    right: 0.6rem;
  }
  .submit_ok_pop .box {
    width: 55%;
  }
  .checkbox-label {
    width: 0.25rem;
    height: 0.25rem;
    border-width: 2px;
  }
  .privacy-checkbox:checked + .checkbox-label::after {
    width: 0.12rem;
    height: 0.2rem;
  }
  .privacy-box .t .error-message {
    font-size: 0.25rem;
    margin-top: 0.15rem;
  }
}

/* Modern close button for privacy modal */
.privacy_close_btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.privacy_close_btn:hover {
  opacity: 1;
}
.privacy_close_btn svg {
  display: block;
}
/* Remove old .privacy_close img styles if not needed */
.privacy_close {
  display: none;
}

/*# sourceMappingURL=contact.css.map */

/* Success Modal Styles */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.08);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-modal-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  padding: 48px 32px 32px 32px;
  text-align: center;
  min-width: 320px;
  max-width: 90vw;
}

.success-check {
  margin-bottom: 24px;
}

.success-modal-content h2 {
  font-size: 2em;
  margin-bottom: 12px;
  color: #222;
  font-weight: 500;
}

.success-modal-content p {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 32px;
}

.success-home-btn {
  background: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.2s;
}

.success-home-btn:hover {
  background: #e55a00;
}

@media (max-width: 600px) {
  .success-modal-content {
    padding: 32px 8px 24px 8px;
    min-width: 0;
  }
  .success-modal-content h2 {
    font-size: 1.3em;
  }
}
