/* this website */
/* flex */
/* font-size */
/* color */
/* margin */
/* padding */
/* 动画 */
/* other */
.whmax {
  width: 100%;
  height: 100%;
}
/* Contact Info & Map */
.contact-us {
  background-color: #fff;
  padding-top: 2rem;
}
.contact-us .contact-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6rem;
}
.contact-us .contact-box .contact-left {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
}
.contact-us .contact-box .contact-left .mtitle {
  margin-bottom: 4rem;
  text-align: left;
}
.contact-us .contact-box .contact-left .mtitle .mtitle-h2 {
  font-size: 3.6rem;
  color: #333;
  margin-bottom: 1.5rem;
}
.contact-us .contact-box .contact-left .mtitle .mtitle-p {
  font-size: 1.6rem;
  color: #666;
}
.contact-us .contact-box .contact-left .info-list {
  margin-bottom: 2rem;
}
.contact-us .contact-box .contact-left .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 2rem 0;
}
.contact-us .contact-box .contact-left .info-list .info-item .label {
  font-size: 1.6rem;
  color: #666;
  flex-shrink: 0;
  white-space: nowrap;
}
.contact-us .contact-box .contact-left .info-list .info-item .value {
  font-size: 1.8rem;
  color: #333;
  font-weight: 500;
  display: block;
}
.contact-us .contact-box .contact-left .info-list .info-item .value.lg {
  font-size: 2.4rem;
  color: #333;
  font-family: numfont;
  font-weight: bold;
}
.contact-us .contact-box .contact-left .info-list .info-full {
  border-bottom: 1px solid #eee;
  padding: 2rem 0;
}
.contact-us .contact-box .contact-left .info-list .info-full .label {
  display: block;
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 1rem;
}
.contact-us .contact-box .contact-left .info-list .info-full .value {
  display: block;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.6;
}
.contact-us .contact-box .contact-left .qr-codes {
  display: flex;
  gap: 4rem;
}
.contact-us .contact-box .contact-left .qr-codes .qr-item {
  text-align: center;
}
.contact-us .contact-box .contact-left .qr-codes .qr-item img,
.contact-us .contact-box .contact-left .qr-codes .qr-item object {
  width: 12rem;
  height: 12rem;
  display: block;
  margin-bottom: 1rem;
  background: #f5f5f5;
}
.contact-us .contact-box .contact-left .qr-codes .qr-item span {
  font-size: 1.4rem;
  color: #666;
}
.contact-us .contact-box .contact-right {
  flex: 1;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.05);
  aspect-ratio: 6/4;
}
.contact-us .contact-box .contact-right #map_box {
  width: 100%;
  height: 100% !important;
  background: #f0f2f5;
  border-radius: 1rem;
}
.map-info-window {
  width: 30rem;
  padding: 1.6rem 2rem;
  background: #fff;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-all;
}
.map-info-window h4 {
  font-size: 1.6rem;
  color: #FE7310;
  font-weight: bold;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.map-info-window p {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
/* 天地图容器整体样式 */
.contact_map {
  position: relative;
}
.contact_map::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FE7310 0%, #FF9A4D 50%, #FE7310 100%);
  border-radius: 0 0 1rem 1rem;
  z-index: 10;
}
/* 地图加载前的骨架屏 */
#map_box {
  position: relative;
}
#map_box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid #eee;
  border-top-color: #FE7310;
  border-radius: 50%;
  animation: mapLoading 0.8s linear infinite;
  z-index: 1;
}
@keyframes mapLoading {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
/* 天地图信息窗体样式覆盖 */
.tdt-infowindow {
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12) !important;
  border: none !important;
}
.tdt-infowindow-content-wrapper {
  border-radius: 8px !important;
  padding: 0 !important;
}
.tdt-popup-close {
  display: none !important;
}
/* 比例尺样式 */
.tdt-control-scale {
  margin-bottom: 8px !important;
  margin-left: 8px !important;
}
.tdt-control-scale-line {
  background: rgba(255,255,255,0.9) !important;
  border: none !important;
  border-top: 2px solid #FE7310 !important;
  color: #333 !important;
  font-size: 11px !important;
  padding: 2px 6px !important;
  line-height: 1.4 !important;
  font-weight: 500;
}
/* 缩放控件 */
.tdt-control-zoom {
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1) !important;
  border: none !important;
}
.tdt-control-zoom a {
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  font-size: 16px !important;
  color: #333 !important;
  background: rgba(255,255,255,0.95) !important;
  border-bottom: 1px solid #eee !important;
  transition: all 0.2s;
}
.tdt-control-zoom a:hover {
  background: #FE7310 !important;
  color: #fff !important;
}
/* 版权信息 */
.tdt-control-copyright {
  background: rgba(255,255,255,0.7) !important;
  border-radius: 4px !important;
  padding: 2px 6px !important;
  font-size: 10px !important;
  color: #999 !important;
}
/* Office Locations */
.contact-addr {
  background-color: #F8F9FB;
}
.contact-addr .addr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 2rem;
}
.contact-addr .addr-header .mtitle {
  margin-bottom: 0;
  text-align: left;
}
.contact-addr .addr-header .addr-tabs {
  display: flex;
  gap: 6rem;
}
.contact-addr .addr-header .addr-tabs .tab-item {
  font-size: 1.8rem;
  color: #666;
  cursor: pointer;
  padding-bottom: 1rem;
  position: relative;
  transition: color 0.3s;
}
.contact-addr .addr-header .addr-tabs .tab-item.active,
.contact-addr .addr-header .addr-tabs .tab-item:hover {
  color: #FE7310;
  font-weight: bold;
}
.contact-addr .addr-header .addr-tabs .tab-item.active:after,
.contact-addr .addr-header .addr-tabs .tab-item:hover:after {
  content: '';
  position: absolute;
  bottom: -2.1rem;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FE7310;
}
.contact-addr .addr-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}
.contact-addr .addr-list .addr-item {
  width: calc(33.333% - 3rem);
  margin: 1.5rem;
  background: #fff;
  padding: 2rem 2.6rem;
  border-radius: 0.8rem;
  transition: all 0.4s ease;
  cursor: default;
  position: relative;
  top: 0;
}
.contact-addr .addr-list .addr-item h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: bold;
}
.contact-addr .addr-list .addr-item p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 5.2rem;
}
.contact-addr .addr-list .addr-item .nav-btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.6rem;
  color: #FE7310;
  text-decoration: none;
}
.contact-addr .addr-list .addr-item .nav-btn i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}
.contact-addr .addr-list .addr-item:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.1);
}
/* Online Message */
.contact-message {
  background-color: #fff;
}
.contact-message .mtitle {
  text-align: center;
  margin-bottom: 6rem;
}
.contact-message .mtitle .mtitle-h2 {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
}
.contact-message .mtitle .mtitle-p {
  font-size: 1.6rem;
  color: #999;
}
.contact-message .msg-form {
  max-width: 120rem;
  margin: 0 auto;
}
.contact-message .msg-form .form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 4rem;
}
.contact-message .msg-form .form-row.full {
  display: block;
}
.contact-message .msg-form .form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-message .msg-form .form-row .form-group label {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 500;
}
.contact-message .msg-form .form-row .form-group.required label:before {
  content: '*';
  color: #FF4D4F;
  margin-right: 0.5rem;
}
.contact-message .msg-form .form-row .form-group .minput {
  width: 100%;
  height: 5rem;
  background: #F8F9FB;
  border: 1px solid transparent;
  padding: 0 2rem;
  font-size: 1.6rem;
  color: #333;
  border-radius: 0.4rem;
  transition: all 0.3s;
}
.contact-message .msg-form .form-row .form-group .minput:focus {
  background: #fff;
  border-color: #FE7310;
  outline: none;
}
.contact-message .msg-form .form-row .form-group .minput::placeholder {
  color: #ccc;
}
.contact-message .msg-form .form-row .form-group .minput.textarea {
  height: 16rem;
  padding-top: 1.5rem;
  resize: none;
}
.contact-message .msg-form .form-btns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 6rem;
}
.contact-message .msg-form .form-btns button {
  width: 18rem;
  height: 5rem;
  font-size: 1.8rem;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.contact-message .msg-form .form-btns button.btn-reset {
  background: #F5F5F5;
  color: #666;
}
.contact-message .msg-form .form-btns button.btn-reset:hover {
  background: #e0e0e0;
}
.contact-message .msg-form .form-btns button.btn-submit {
  background: #FE7310;
  color: #fff;
}
.contact-message .msg-form .form-btns button.btn-submit:hover {
  background: #da5b01;
  box-shadow: 0 0.5rem 1.5rem rgba(254, 115, 16, 0.3);
}
/* Responsive */
@media screen and (max-width: 1024px) {
  .contact-us .contact-box {
    flex-direction: column;
  }
  .contact-us .contact-box .contact-left,
  .contact-us .contact-box .contact-right {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .contact-addr .addr-list .addr-item {
    width: calc(50% - 3rem);
  }
  .contact-message .msg-form .form-row {
    gap: 2rem;
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .contact-message .msg-form .form-row .form-group {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact-addr .addr-list .addr-item {
    width: calc(50% - 1rem);
    margin: 0rem 0;
  }
  .contact-addr .addr-list {
    margin: 0;
    gap: 1rem;
  }
  .contact-addr .addr-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
  .contact-addr .addr-header .addr-tabs .tab-item.active:after {
    bottom: -0.5rem;
  }
  .contact-us .contact-box .contact-left .mtitle .mtitle-h2 {
    font-size: 2.4rem;
  }
  .contact-message .mtitle .mtitle-h2 {
    font-size: 2.4rem;
  }
  .contact-addr .addr-list .addr-item h3 {
    font-size: 2rem;
  }
}
