@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-SemiBold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Light.ttf");
  font-weight: 300;
}
* {
  box-sizing: border-box;
}
body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: "Rubik";
}
main .container {
  box-sizing: border-box;
  max-width: 1200px;
  width: unset;
}
.banner {
  padding: 70px 0 0;
  background: url('../img/contact/contact-banner-bg.png') no-repeat top center / contain;
}
.banner .container {
  display: flex;
  gap: 84px;
}
.banner .contact-left {
  flex: 0 0 456px;
}
.banner h1 {
  margin-top: 20px;
  color: #061c3d;
  font-size: 52px;
  font-weight: 600;
  line-height: 146.682%;
  /* 76.03px */
}
.banner .contact-desc {
  margin-top: 30px;
  color: #313741;
  font-size: 20px;
  font-weight: 500;
  line-height: 200%;
  /* 40px */
}
.banner .contact-info {
  display: block;
  padding: 24px;
  margin-top: 30px;
  border-radius: 8px;
  background: #f2f5ff;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.banner .contact-info:hover {
  border-color: #91aaf3;
}
.banner .contact-info span {
  margin-left: 12px;
  color: #202123;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  /* 30px */
}
.banner .contact-info p {
  display: flex;
  align-items: center;
  margin-top: 14px;
  color: #626262;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  /* 30px */
}
.banner .contact-right {
  flex: 1;
}
.banner .zsFormClass {
  width: 100%;
}
.banner tbody {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 16px;
}
.banner .tips {
  font-size: 16px;
  color: #dd2725;
  font-weight: 500;
}
.banner tr {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 30px;
}
.banner tr .zsFontClass {
  font-size: 18px;
  font-weight: 600;
  color: #232927;
  line-height: 1.2;
  padding: 0;
  margin-bottom: 14px;
}
.banner tr .zsFontClass.submit {
  width: 100%;
  padding: 14px 28px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 4px;
  background: linear-gradient(0deg, #235afa 0%, #235afa 100%), #979797;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner tr .zsFontClass.submit:hover {
  background: linear-gradient(0deg, #1342cc 0%, #1342cc 100%), #979797;
}
.banner tr .zsFontClass.submit .submit-text {
  display: block;
}
.banner tr .zsFontClass.submit .submit-loading {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.41);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.banner tr .zsFontClass.submit.loading {
  background: linear-gradient(0deg, #3057ca 0%, #3057ca 100%), #979797;
  cursor: not-allowed;
  pointer-events: none;
}
.banner tr .zsFontClass.submit.loading .submit-text {
  display: none;
}
.banner tr .zsFontClass.submit.loading .submit-loading {
  display: block;
}
.banner tr .zsFontClass.submit.loading:hover {
  background: linear-gradient(0deg, #3057ca 0%, #3057ca 100%), #979797;
}
.banner tr td:last-child {
  width: 100%;
  padding: 0;
  display: block;
}
.banner tr td:last-child input {
  width: 100%;
  height: 48px;
  padding: 0;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  padding: 18px;
  padding-right: 40px;
  box-sizing: border-box;
  color: #414141;
  transition: border-color 0.3s;
}
.banner tr td:last-child input::placeholder {
  color: #979da9;
}
.banner tr td:last-child input:focus {
  outline: none;
  border-color: #bebebe;
}
.banner tr td:last-child input.table-item_error {
  border-color: #f65757;
  background: url('../img/contact/error.png') #fff no-repeat right 12px center;
  background-size: 16px 16px;
}
.banner tr select {
  display: none;
}
.banner tr .custom-select {
  position: relative;
  width: 100%;
}
.banner tr .custom-select .custom-select-text {
  color: #262626;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}
.banner tr .custom-select .custom-select-trigger {
  width: 100%;
  height: 48px;
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  padding: 0 18px 0 18px;
  font-weight: 300;
  color: #333;
  line-height: 48px;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s;
}
.banner tr .custom-select .custom-select-trigger.open .custom-select-arrow {
  transform: rotate(180deg);
}
.banner tr .custom-select.open .custom-select-trigger::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
}
.banner tr .custom-select .custom-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(66, 87, 103, 0.18);
  padding: 10px 6px;
  box-sizing: border-box;
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 transparent;
}
.banner tr .custom-select .custom-select-options::-webkit-scrollbar {
  width: 2px;
}
.banner tr .custom-select .custom-select-options::-webkit-scrollbar-track {
  background: transparent;
}
.banner tr .custom-select .custom-select-options::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 6px;
}
.banner tr .custom-select.open .custom-select-options {
  display: block;
}
.banner tr .custom-select.open .custom-select-trigger img {
  transform: rotate(180deg) translateY(50%);
}
.banner tr .custom-select .custom-select-option {
  display: flex;
  align-items: center;
  height: 48px;
  color: #262626;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
}
.banner tr .custom-select .custom-select-option:hover {
  background: #f7f9fa;
}
.banner tr .custom-select .custom-select-option.selected {
  background: #f7f9fa;
}
.banner tr .custom-select.open .custom-select-trigger .select-arrow {
  transform: rotate(180deg) translateY(50%);
}
.banner tr .select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  pointer-events: none;
}
.banner tr textarea {
  width: 100%;
  height: 116px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 18px;
  padding-right: 40px;
  resize: vertical;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.banner tr textarea,
.banner tr input {
  font-family: 'Rubik';
}
.banner tr textarea {
  resize: none;
  overflow-y: auto;
  overflow-x: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.banner tr textarea::-webkit-scrollbar {
  width: 4px;
}
.banner tr textarea::-webkit-scrollbar-track {
  width: 4px;
  background: transparent;
}
.banner tr textarea::-webkit-scrollbar-thumb {
  width: 4px;
  background: #a4a3a3;
  border-radius: 10px;
}
.banner tr textarea::placeholder {
  color: #979da9;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
}
.banner tr textarea:focus {
  outline: none;
  border-color: #bebebe;
}
.banner tr textarea.table-item_error {
  border-color: #f65757;
  background: url('../img/contact/error.png') no-repeat right 12px top 18px;
  background-size: 16px 16px;
}
.banner tr .table-captcha {
  display: flex;
  gap: 14px;
  align-items: center;
}
.banner tr .table-error {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  position: absolute;
  color: #f65757;
  font-size: 14px;
  font-weight: 300;
  margin-top: 6px;
  white-space: nowrap;
  opacity: 0;
}
.banner tr .table-error.opacity-1 {
  opacity: 1;
}
.banner tr #refresh-vcode {
  flex: 0 0 36px;
  display: inline-block;
  width: 36px;
  height: 36px;
  background: url('../img/contact/refresh.png') no-repeat center;
  border: unset;
  cursor: pointer;
  padding: 0;
}
.banner #product-required,
.banner #email-required,
.banner #firstName-required,
.banner #lastName-required {
  flex: 0 0 322px;
}
.banner #attachment-box {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.banner #attachment-box td:first-child {
  margin-bottom: 0;
}
.banner #attachment-box td:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.banner #attachment-box .table-file {
  display: none;
}
.banner #attachment-box .table-file-btn {
  margin-left: 30px;
  border-radius: 5px;
  border: 1px solid #dcdfeb;
  padding: 8px 12px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s;
}
.banner #attachment-box .table-file-btn:hover {
  background: #eff2f7;
  border-color: #dcdfeb;
}
.banner #attachment-box .attachment-tips {
  width: 100%;
  margin-top: 14px;
  color: #909399;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}
.banner #attachment-box #zsFileBrowseAttachments {
  width: 100%;
  margin-top: 14px;
}
.banner #attachment-box .file-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 8px;
  transition: background 0.2s;
}
.banner #attachment-box .file-item:last-child {
  margin-bottom: 0;
}
.banner #attachment-box .file-item:hover {
  background: #fafafa;
}
.banner #attachment-box .file-item:hover .file-delete {
  opacity: 1;
}
.banner #attachment-box .file-item .file-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.banner #attachment-box .file-item .file-name {
  margin-left: 8px;
  color: #1890ff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  flex: 1;
  word-break: break-all;
}
.banner #attachment-box .file-item .file-delete {
  flex-shrink: 0;
  margin-left: 12px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
}
.banner #attachment-box .file-item .file-delete svg path {
  transition: fill 0.2s;
}
.banner #attachment-box .file-item .file-delete:hover svg path {
  fill: rgba(0, 0, 0, 0.65);
}
.banner #attachment-box .file-item.file-error .file-name {
  color: #ff4d4f;
}
.banner #attachment-box .file-item.file-error .file-delete svg path {
  fill: #ff4d4f;
}
.banner #attachment-box .clboth {
  display: none;
}
.message .message-box {
  display: none;
  position: fixed;
  top: 110px;
  left: 50%;
  width: 520px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #ea5050;
  background: #fee2e2;
  box-sizing: border-box;
  z-index: 1001;
  opacity: 0;
  transform: translate(-50%, -50px);
  transition: all 0.3s ease;
}
.message .message-box.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.message .message-box.visible {
  display: flex;
}
.message .message-box p {
  font-family: Inter;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.09px;
}
.message .message-box svg {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.message .message-success {
  width: 476px;
  border: 1px solid #43ce62;
  background: #e8ffec;
  color: #2d6b45;
}
.message .message-upload {
  align-items: flex-start;
  width: 784px;
  border: 1px solid transparent;
  background: #2563eb;
  color: #fff;
}
.message .message-format {
  width: 924px;
  align-items: flex-start;
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.message .message-format p {
  padding-right: 36px;
}
.message .message-error {
  width: 618px;
  align-items: flex-start;
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.message .message-error p {
  padding-right: 36px;
}
.message .message-info {
  width: 600px;
  align-items: flex-start;
  background: #fef9c3;
  border: 1px solid #fef08a;
  color: #854d0e;
}
.tips {
  margin-top: 100px;
}
.tips .wrap-cont {
  padding: 22px 46px;
  border-radius: 16px;
  background: #fbfbfc;
}
.tips .tips-tit {
  color: #7b7b7b;
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  /* 28px */
}
.tips ul {
  padding-left: 16px;
}
.tips li {
  list-style: disc;
  color: #7b7b7b;
  font-size: 14px;
  font-weight: 400;
  line-height: 200%;
}
.sns {
  margin-top: 48px;
}
.sns .wrap-cont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 54px;
  border-radius: 16px;
  background: #fbfbfc;
}
.sns .sns-tit {
  color: #061c3d;
  font-size: 28px;
  font-weight: 600;
  line-height: 146.682%;
  /* 41.071px */
}
.sns .sns-desc {
  margin-top: 18px;
  color: #313741;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}
.sns .sns-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.sns .sns-right a {
  display: block;
}
.other-info {
  margin-top: 74px;
}
.other-info .wrap-cont {
  padding: 36px 0 60px;
  border-top: 1px solid #dcdfeb;
}
.other-info p {
  color: #7b7b7b;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 200%;
  /* 28px */
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1200px) {
  main .container {
    padding: 0 15px;
    width: 100%;
  }
  .banner .container {
    gap: 30px;
  }
  .banner .contact-left {
    flex: 0 0 440px;
  }
  .banner #product-required,
  .banner #email-required,
  .banner #firstName-required,
  .banner #lastName-required {
    flex: auto;
    width: 100%;
  }
}
@media (max-width: 996px) {
  .banner .container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .banner {
    background: url('../img/contact/banner-mb.webp') no-repeat top center;
    padding: 44px 0 0;
  }
  .banner .contact-left {
    text-align: center;
    flex: auto;
  }
  .banner .contact-left img {
    width: 60px;
    height: 60px;
  }
  .banner .contact-left h1 {
    margin-top: 12px;
    font-size: 28px;
  }
  .banner .contact-left .contact-desc {
    margin-top: 10px;
    font-size: 16px;
  }
  .banner .contact-left .contact-info {
    margin-top: 24px;
    padding: 20px;
  }
  .banner .contact-left .contact-info img {
    width: 30px;
    height: 30px;
  }
  .banner .contact-left .contact-info span {
    margin-left: 8px;
    font-size: 16px;
  }
  .banner .contact-left .contact-info p {
    text-align: left;
    margin-top: 10px;
    font-size: 14px;
  }
  .banner .contact-right {
    padding: 28px 24px;
    margin-top: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 20px 6px rgba(42, 60, 96, 0.14);
  }
  .banner tr .zsFontClass {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .banner tr textarea,
  .banner tr input {
    font-size: 14px;
  }
  .banner tr textarea::placeholder,
  .banner tr input::placeholder {
    font-size: 14px;
  }
  .banner tr .table-vcode {
    width: 130px;
  }
  .banner tr .table-captcha {
    gap: 0;
  }
  .banner tr .table-error {
    font-size: 12px;
  }
  .tips {
    margin-top: 42px;
  }
  .tips .wrap-cont {
    padding: 16px;
  }
  .sns .wrap-cont {
    flex-direction: column;
    padding: 0;
    align-items: flex-start;
    background: transparent;
  }
  .sns .sns-tit {
    font-size: 24px;
  }
  .sns .sns-desc {
    font-size: 16px;
  }
  .sns .sns-right {
    margin-top: 22px;
    gap: 18px;
  }
  .sns .sns-right img {
    width: 50px;
    height: 50px;
  }
  .other-info {
    margin-top: 40px;
    border-top: 1px solid #dcdfeb;
  }
  .other-info .wrap-cont {
    border: 0;
    padding: 22px 0;
  }
  .other-info p {
    font-size: 12px;
  }
  .message .message-box {
    width: 100%;
    max-width: 344px;
    right: 15px;
    gap: 8px;
    padding: 10px;
  }
  .message .message-box p {
    font-size: 14px;
  }
  .message .message-box img {
    width: 18px;
    height: 18px;
  }
}
