:root {
  font-family: Inter, sans-serif;
  font-feature-settings: "liga" 1, "calt" 1;
  /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
  :root {
    font-family: InterVariable, sans-serif;
  }
}

html {
  scroll-behavior: smooth;
  padding: 0;
  width: 100%;
}

body {
  background-color: rgba(223, 221, 217, 1);
  width: 100%;
  min-height: 100vh;
  height: auto;
}

body.mobile-menu-active {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999999999999999999;
}

.container-full {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  max-height: 100%;
}

ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header styles */
.site-header {
  background: url(../images/header-bg.jpg) no-repeat top center;
  background-size: cover;
  width: 100%;
  padding-top: 32px;
  box-sizing: border-box;
  position: relative;
}

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

.header-content .logo {
  width: 52px;
  z-index: 11;
}
.header-content .main-nav {
  display: flex;
  gap: 20px;
}

.header-content .main-nav .nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  color: #fff;
  gap: 10px;
}

.header-content .main-nav .nav-list .nav-item {
  width: max-content;
  text-align: center;
  height: 35px;
  padding: 0 15px;
  box-sizing: border-box;
  border-bottom: 2px solid transparent;
}

.header-content .main-nav .nav-list .nav-item.active,
.header-content .main-nav .nav-list .nav-item:hover {
  border-bottom-color: #fff;
}

.header-content .main-nav .nav-list a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 33px;
  color: #fff;
}

.header-content .main-nav .nav-list a:hover {
  text-decoration: none;
}

.header-content .main-nav .nav-login {
  height: 32px;
  width: 120px;
  display: flex;
  background-color: #ff914d;
  color: #fff;
  box-sizing: border-box;
  border-radius: 20px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
}
.header-content .main-nav .nav-login:hover {
  text-decoration: none;
  opacity: 0.9;
}

.menu-toggle {
  position: relative;
  background: url(../images/h5-menu.png) no-repeat center center;
  background-size: contain;
  height: 28px;
  width: 28px;
  z-index: 11;
  display: none;
}

.menu-toggle.active {
  background: unset;
  background-size: contain;
}

.menu-toggle.active::after {
  content: "X";
  display: block;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  height: 28px;
  width: 28px;
  line-height: 28px;
  position: absolute;
  left: 0;
  top: 0;
  text-align: center;
}

.mobile-menu {
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 10;
  background: url(../images/header-bg.jpg) no-repeat top center;
  background-size: cover;
  height: 0px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.mobile-menu.active {
  height: 100vh;
}

.mobile-nav-list {
  margin-top: 125px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 35px;
}

.mobile-nav-list .mobile-nav-item {
  width: 100%;
  text-align: center;
  height: 35px;
  padding: 0 25px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
  color: #fff;
}

.mobile-nav-list .mobile-nav-item a {
  color: #fff;
}

.mobile-nav-list .mobile-nav-item-login {
  width: 100%;
  text-align: center;
  padding: 0 35px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 24px;
  height: 45px;
  margin-top: 20px;
  margin-right: 25px;
  line-height: 150%;
  letter-spacing: 0%;
  background: #ff914d;
  color: #000;
  border: 1px solid #000;
  width: max-content;
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Footer styles */
.site-footer {
  background-color: #dfddd9;
}

.site-footer .container {
  padding: 76px 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
}

.site-footer .container::before {
  content: " ";
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 40px;
  left: 0;
}

.site-footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.site-footer .footer-logo {
  font-size: 20px;
  line-height: 100%;
}

.site-footer .footer-logo img {
  height: 28px;
  display: block;
  margin-bottom: 16px;
}

.site-footer .footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.site-footer .footer-address {
  padding-top: 20px;
  font-size: 14px;
  line-height: 100%;
  text-align: right;
}

.site-footer .footer-nav {
  font-size: 20px;
  line-height: 100%;
  width: auto;
}

.site-footer .footer-nav .footer-nav-list {
  display: flex;
  gap: 32px;
}

/* Common animations */
.hover-grow {
  transition: transform 0.3s ease;
}

.hover-grow:hover {
  transform: scale(1.05);
}

/* Common utility classes */
.text-shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Common components */
.custom-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.custom-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.custom-btn:hover:after {
  left: 100%;
}

.site-m-footer {
  display: none;
  border-top: 1px solid #111;
  padding-top: 40px;
  margin-top: 40px;
  padding-bottom: 30px;
}

.site-m-footer .container {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0 24px;
}

.site-m-footer .container .footer-email-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  flex-direction: column;
  gap:5px;
}

.site-m-footer .container .footer-email-info .footer-email-info-title {
  font-weight: 600;
  font-size: 16px;
}


.site-m-footer .container .footer-email-info .footer-email-info-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: url(../images/footer-email-btn.png) no-repeat 3px center #918d78;
  background-size: auto 60%;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 3px 5px 20px;
  font-size: 10px;
  outline: none;
  border: 1px solid #918d78;
}
.site-m-footer
  .container
  .footer-email-info
  .footer-email-info-contact::placeholder {
  color: #333; /* 设置为红色 */
  opacity: 1; /* 确保完全不透明（某些浏览器默认有透明度） */
}

.site-m-footer .container .footer-email-info .footer-email-info-address {
  font-size: 8px;
}

.site-m-footer .footer-nav {
  font-size: 10px;
  line-height: 100%;
  width: 50%;
}

.site-m-footer .footer-nav .footer-nav-list .footer-nav-item{
  width: 40px;
}

.site-m-footer .footer-nav .footer-nav-list {
  display: flex;
  gap: 10px;
  flex-flow: wrap;
}

.site-m-footer .footer-content {
  display: flex;
  width: 50%;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.site-m-footer .footer-content .footer-logo img {
  height: 12px;
  display: block;
}

.site-m-footer .footer-content .footer-socials {
  display: flex;
  gap: 10px;
}
.site-m-footer .footer-content .footer-socials a {
  display: block;
  width: 14px;
  height: 14px;
}

.site-m-footer .footer-content .footer-socials img {
  width: 14px;
  height: 14px;
}
/* 750宽度以下 */
@media screen and (max-width: 1200px) {
  .header-content {
    padding: 0 24px;
  }
}

/* 750宽度以下 */
@media screen and (max-width: 750px) {
  body {
    font-size: 10px;
  }

  .header-content {
    height: 32px;
  }

  .header-content .logo {
    width: 34px;
    height: 21px;
    z-index: 11;
  }

  .header-content .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header {
    padding-top: 37px;
  }

  .site-footer {
    display: none;
  }

  .site-m-footer {
    display: block;
  }
}
