@charset "UTF-8";
/* 在这里添加自定义样式 */
/* ========= ===== ===== ===== ===== =导航栏 ====== ===== ===== ===== ===== ===== ==== */
.navbar {
  height: 70px;
  background: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  /* 通用样式（所有设备） */
  /* 汉堡菜单图标 */
  /* ===== PC端样式 (≥992px) ===== */
  /* ===== 平板端样式 (768px-991.98px) ===== */
  /* ===== 手机端样式 (<768px) ===== */
  /* 滚动时导航栏变化 */
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.navbar .navbar-brand:hover {
  transform: scale(1.05);
}
.navbar .navbar-brand .logo {
  transition: all 0.3s ease;
  filter: brightness(0.9);
}
.navbar .navbar-brand .logo:hover {
  filter: brightness(1.1);
}
.navbar .navbar-collapse {
  transition: all 0.4s ease;
  overflow: hidden;
}
.navbar .navbar-collapse .navbar-nav {
  display: flex;
  align-items: center;
}
.navbar .navbar-collapse .navbar-nav .nav-item {
  position: relative;
  font-family: Oswald, sans-serif;
  font-weight: 500;
  color: #a0a0a0;
  transition: all 0.3s ease;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s ease;
  color: #a0a0a0;
  text-decoration: none;
}
.navbar .custom-toggler {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 22px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.navbar .custom-toggler:focus {
  outline: none;
}
.navbar .custom-toggler-line {
  width: 100%;
  height: 2px;
  background: #ecf0f1;
  border-radius: 10px;
  transition: all 0.3s linear;
  transform-origin: center;
}
.navbar .custom-toggler.active .custom-toggler-line:nth-child(1) {
  transform: translateY(8px) rotate(50deg);
}
.navbar .custom-toggler.active .custom-toggler-line:nth-child(2) {
  opacity: 0;
}
.navbar .custom-toggler.active .custom-toggler-line:nth-child(3) {
  transform: translateY(-6px) rotate(-50deg);
}
@media (min-width: 992px) {
  .navbar {
    padding: 0 80px;
  }
  .navbar .navbar-brand {
    width: 165px;
    height: 35px;
  }
  .navbar .navbar-brand img {
    width: 100%;
    height: auto;
  }
  .navbar .navbar-collapse {
    margin-left: 179px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item {
    margin-right: 50px;
    font-size: 18px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item:last-child {
    margin-right: 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    height: 70px;
    padding: 0 15px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #997851;
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
    color: #ffffff;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active {
    color: #ffffff;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active:before {
    width: 100%;
    background: #997851;
  }
  .navbar .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar .container {
    padding: 0 30px;
    max-width: none;
  }
  .navbar .custom-toggler {
    display: flex;
  }
  .navbar .navbar-brand .logo {
    width: 140px;
    height: 30px;
  }
  .navbar .navbar-collapse {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 99;
    margin-left: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    /* 修复：使用.show类控制菜单显示/隐藏 */
  }
  .navbar .navbar-collapse.show {
    min-height: 400px;
  }
  .navbar .navbar-collapse .navbar-nav {
    flex-direction: column;
    margin: 0 30px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item {
    padding: 10px 0;
    width: 100%;
    margin-right: 0;
    font-size: 16px;
    border-bottom: 1px solid #333;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone {
    width: 100%;
    height: 50px;
    justify-content: space-between;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone:before {
    left: 0;
    transform: none;
    width: 0;
    height: 100%;
    bottom: auto;
    background: rgba(153, 120, 81, 0.3);
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover:before, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active:before,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone:hover:before,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone.active:before {
    width: 5px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone.active {
    color: #ffffff;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item img {
    width: 7px;
    height: 12px;
  }
  .navbar .navbar-toggler {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .navbar .container {
    padding: 0 15px;
    max-width: none;
  }
  .navbar .custom-toggler {
    display: flex;
  }
  .navbar .navbar-brand {
    margin-right: 0;
  }
  .navbar .navbar-brand .logo {
    width: 111px;
    height: 23px;
  }
  .navbar .navbar-collapse {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 99;
    margin-left: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    /* 修复：使用.show类控制菜单显示/隐藏 */
  }
  .navbar .navbar-collapse.show {
    min-height: 400px;
  }
  .navbar .navbar-collapse .navbar-nav {
    flex-direction: column;
    margin: 0 15px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item {
    padding: 8px 0;
    width: 100%;
    margin-right: 0;
    font-size: 16px;
    border-bottom: 1px solid #333;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone {
    width: 100%;
    height: 50px;
    justify-content: space-between;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:before,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone:before {
    left: 0;
    transform: none;
    width: 0;
    height: 100%;
    bottom: auto;
    background: rgba(153, 120, 81, 0.3);
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover:before, .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active:before,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone:hover:before,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone.active:before {
    width: 5px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.active,
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-phone.active {
    color: #ffffff;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item img {
    width: 7px;
    height: 12px;
  }
}
.navbar.scrolled {
  height: 60px;
  background: rgba(26, 26, 26, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767.98px) {
  .navbar.scrolled {
    height: 55px;
  }
  .navbar.scrolled .navbar-collapse {
    top: 55px;
  }
}

/* 下拉菜单基础样式 */
.dropdown-menu {
  background-color: #212529;
  border: none;
  border-radius: 0;
  padding: 40px 0;
}
.dropdown-menu .dropdown-header {
  color: #997851;
  font-weight: bold;
  padding: 5px 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.dropdown-menu .has-children {
  border-left: 1px solid #999;
  padding-left: 20px;
  padding-right: 50px;
}
.dropdown-menu .has-children .title {
  font-family: Oswald, Oswald;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  padding-bottom: 40px;
}
.dropdown-menu .has-children .sub-menu .txt {
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
  font-family: Helvetica;
  font-size: 18px;
  color: #ffffff;
}
.dropdown-menu .has-children .sub-menu .txt:hover {
  color: #a78358 !important;
  text-decoration: underline;
  text-decoration-color: #a78358;
  text-underline-offset: 3px; /* 调整此值控制间隙大小 */
  -webkit-text-underline-offset: 3px; /* Safari 兼容性 */
}
.dropdown-menu .dropdown-menu .has-children .sub-menu .txt:hover {
  color: #a78358 !important;
}
.dropdown-menu .dropdown-item {
  color: #fff;
  padding: 8px 30px;
  transition: all 0.2s;
  font-size: 0.95rem;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #495057;
  color: #fff;
}

/* 桌面端悬停效果 */
@media (min-width: 992px) {
  #productsDropdown {
    position: static;
    /* 确保下拉菜单宽度不受限制 */
    /* 悬停时显示下拉菜单 */
    /* 保持下拉菜单显示状态 */
  }
  #productsDropdown .dropdown-menu {
    width: 100%;
    /* 全宽下拉菜单 */
    left: 0;
    right: 0;
    display: block;
    /* 始终渲染但默认隐藏 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  #productsDropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #productsDropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* 移动端保持默认行为 */
@media (max-width: 991px) {
  #productsDropdown .dropdown-menu {
    display: none;
    /* Bootstrap 默认行为 */
  }
  #productsDropdown.show .dropdown-menu {
    display: none;
    /* Bootstrap 展开状态 */
  }
}
.foot .pc {
  padding: 73px 0;
}
.foot .pc .up {
  padding-bottom: 28px;
  border-bottom: 1px solid #999999;
}
.foot .pc .up .inc {
  font-family: NotoSansCJKsc;
  font-weight: bold;
  font-size: 22px;
  color: #FFFFFF;
}
.foot .pc .up .dr {
  font-family: NotoSansCJKsc;
  font-weight: 300;
  font-size: 18px;
  color: #999999;
  margin-top: 13px;
}
.foot .pc .down {
  color: #999999;
}
.foot .pc .down .li {
  margin-top: 30px;
}
.foot .pc .down .logo {
  width: 165px;
  height: 35px;
  margin-right: 162px;
  margin-top: 30px;
}
.foot .pc .down .mine {
  width: 22px;
  height: auto;
  margin-right: 5px;
}
.foot .pc .down .email {
  width: 22px;
  height: auto;
  margin-right: 8px;
}
.foot .pc .down .tel {
  width: 22px;
  height: auto;
  margin-right: 5px;
}
.foot .phone {
  padding: 26px 0;
}
.foot .phone .up {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid #999999;
}
.foot .phone .up .inc {
  font-family: Arial, Arial;
  font-weight: normal;
  color: #FFFFFF;
  font-size: 13px;
}
.foot .phone .up .dr {
  font-family: ArialMT;
  color: #FFFFFF;
  margin-top: 7px;
  margin-bottom: 13px;
  font-size: 11px;
}
.foot .phone .up .ul {
  margin-left: 30px;
}
.foot .phone .up .ul .li {
  margin-top: 15px;
  font-family: ArialMT;
  color: #FFFFFF;
  font-size: 11px;
}
.foot .phone .up .ul .mine.mine, .foot .phone .up .ul .mine.tel,
.foot .phone .up .ul .email.mine,
.foot .phone .up .ul .email.tel,
.foot .phone .up .ul .tel.mine,
.foot .phone .up .ul .tel.tel {
  width: 10px;
  height: auto;
  margin-right: 8px;
}
.foot .phone .up .ul .mine.email,
.foot .phone .up .ul .email.email,
.foot .phone .up .ul .tel.email {
  width: 10px;
  height: auto;
  margin-right: 8px;
}
.foot .phone .down {
  color: #999999;
}
.foot .phone .down .logo {
  width: 81px;
  height: 17px;
  margin-top: 22px;
}
@media (min-width: 768px) {
  .foot .phone .up .inc {
    font-size: 16px;
  }
  .foot .phone .up .dr {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 16px;
  }
  .foot .phone .up .li {
    font-size: 14px;
    margin-top: 20px;
  }
  .foot .phone .up .mine,
  .foot .phone .up .tel {
    width: 14px !important;
    height: auto !important;
  }
  .foot .phone .up .email {
    width: 14px !important;
    height: auto !important;
  }
  .foot .phone .down .logo {
    margin-top: 40px;
    width: 111px;
    height: 23px;
    margin-top: 28px;
  }
}

.hero-content {
  /* ===== 平板端样式 (768px-991.98px) ===== */
  /* ===== 手机端样式 (<768px) ===== */
}
.hero-content img {
  height: auto;
  width: 100%;
}
.hero-content .title {
  margin-top: 5rem;
}
.hero-content .title .txt {
  font-family: Oswald, Oswald;
  font-size: 62px;
  color: #ffffff;
  text-align: center;
  font-weight: normal;
}
.hero-content .title .txt p {
  font-weight: normal;
}
.hero-content .menutitle {
  margin-top: 60px;
}
.hero-content .menutitle .menutxt .txt1 {
  font-family: Oswald, Oswald;
  font-size: 32px;
  color: #997851;
}
.hero-content .menutitle .menutxt .txt2 {
  font-family: Oswald, Oswald;
  font-size: 62px;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-content .container {
    max-width: none;
  }
  .hero-content .title {
    margin-top: 4rem;
  }
  .hero-content .title .txt {
    font-size: 43px;
  }
  .hero-content .menutitle {
    margin-top: 4rem;
  }
  .hero-content .menutitle .menutxt .txt1 {
    font-size: 26px;
  }
  .hero-content .menutitle .menutxt .txt2 {
    font-size: 43px;
  }
}
@media (max-width: 767.98px) {
  .hero-content .container {
    max-width: none;
  }
  .hero-content .title {
    margin-top: 3rem;
  }
  .hero-content .title .txt {
    font-size: 28px;
  }
  .hero-content .menutitle {
    margin-top: 3rem;
  }
  .hero-content .menutitle .menutxt .txt1 {
    font-size: 22px;
  }
  .hero-content .menutitle .menutxt .txt2 {
    font-size: 28px;
  }
}

/* ========= ===== ===== ===== ===== =公司简介模块 ====== ===== ===== ===== ===== ===== ==== */
/* ===== 通用样式 ===== */
.company {
  position: relative;
  background-color: #000;
  /* 示例背景色 */
}
.company .company-left,
.company .company-right {
  box-sizing: border-box;
}
.company .company-left .txt1,
.company .company-right .txt1 {
  font-family: Oswald, Oswald;
  font-weight: 500;
  color: #ffffff;
}
.company .company-left .txt2,
.company .company-right .txt2 {
  font-family: ArialMT;
  color: #ffffff;
}

/* ===== 手机端样式 (<768px) ===== */
@media (max-width: 767.98px) {
  .company {
    padding-bottom: 40px;
  }
  .company-left {
    margin-top: 30px;
  }
  .company-left .phone-img {
    padding: 0 15px;
  }
  .company-left .phone-img img {
    width: 100%;
  }
  .company-right {
    margin-top: 19px;
    padding: 0 15px;
  }
  .company-right .txt1 {
    font-size: 24px;
    text-align: left;
    padding-left: 15px;
  }
  .company-right .txt2 {
    font-size: 14px;
    margin-top: 15px;
    text-align: justify;
    padding: 0 15px;
  }
}
/* ===== 平板端样式 (768px-991px) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
  .company {
    padding-bottom: 80px;
  }
  .company .row {
    flex-direction: column;
  }
  .company .row .col-md-6 {
    width: 100%;
  }
  .company-left {
    margin-top: 50px;
  }
  .company-left .phone-img {
    padding: 0 30px;
  }
  .company-left .phone-img img {
    width: 100%;
  }
  .company-right {
    margin-top: 25px;
    padding: 0 40px;
  }
  .company-right .txt1 {
    font-size: 32px;
    text-align: left;
  }
  .company-right .txt2 {
    font-size: 16px;
    margin-top: 21px;
    text-align: justify;
    line-height: 1.6;
  }
}
/* ===== PC端样式 (≥992px) ===== */
@media (min-width: 992px) {
  .company {
    padding-bottom: 151px;
  }
  .company-left {
    margin-top: -54px;
  }
  .company-left .pc-img img {
    width: 960px;
    object-fit: cover;
  }
  .company-right {
    margin-top: 150px;
    padding-left: 50px;
    padding-right: 132px;
  }
  .company-right .txt1 {
    font-size: 40px;
    text-align: left;
  }
  .company-right .txt2 {
    font-size: 18px;
    margin-top: 30px;
    line-height: 1.7;
  }
}
/* ========= ===== ===== ===== ===== =服务模块 ====== ===== ===== ===== ===== ===== ==== */
.services {
  background: #1d1e20;
  /* 通用样式（所有设备） */
  /* ===== PC端样式 (≥992px) ===== */
  /* ===== 平板端样式 (768px-991px) ===== */
  /* ===== 手机端样式 (<768px) ===== */
}
.services .title {
  font-family: Oswald, Oswald;
  font-weight: 500;
  color: #ffffff;
}
.services .service-item {
  font-family: Arial, Arial;
  font-weight: normal;
}
.services .service-item img {
  width: 36px;
  height: 36px;
}
.services .service-item .service-title {
  color: #fffefe;
}
.services .service-item .service-description {
  color: #a78358;
}
@media (min-width: 992px) {
  .services {
    padding-bottom: 151px;
  }
  .services .title {
    margin-top: 233px;
    margin-bottom: 70px;
    font-size: 40px;
  }
  .services .services-left {
    padding-left: 130px;
  }
  .services .service-item {
    font-size: 18px;
    padding-bottom: 20px;
  }
  .services .services-right {
    margin-top: 156px;
    padding-left: 50px;
  }
  .services .services-right img {
    width: 959px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .services {
    padding-bottom: 80px;
  }
  .services .row {
    flex-direction: column;
  }
  .services .row .col-md-6 {
    width: 100%;
  }
  .services .title {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 30px;
    text-align: left;
    padding: 0 30px;
  }
  .services .list-unstyled {
    padding: 0 30px;
  }
  .services .list-unstyled .service-item {
    font-family: Arial, Arial;
    font-weight: normal;
    font-size: 17px;
    padding-bottom: 13px;
    display: flex;
    align-items: flex-start;
  }
  .services .list-unstyled .service-item img {
    margin-right: 15px;
    width: 30px;
    height: 30px;
  }
  .services .services-left {
    order: 2;
    /* 文字在下方 */
    margin-top: 30px;
  }
  .services .services-right {
    order: 1;
    /* 图片在上方 */
    margin-top: 50px;
    padding: 0 30px;
    text-align: center;
  }
  .services .services-right img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .services {
    padding-bottom: 40px;
  }
  .services .row {
    flex-direction: column;
  }
  .services .row .col-md-6 {
    width: 100%;
  }
  .services .title {
    margin-top: 23px;
    margin-bottom: 15px;
    font-size: 22px;
    text-align: left;
    padding: 0 15px;
  }
  .services .list-unstyled {
    padding: 0 15px;
  }
  .services .list-unstyled .service-item {
    font-family: Arial, Arial;
    font-weight: normal;
    font-size: 15px;
    padding-bottom: 10px;
    display: flex;
    align-items: flex-start;
  }
  .services .list-unstyled .service-item img {
    margin-right: 12px;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
  }
  .services .services-left {
    order: 2;
    /* 文字在下方 */
  }
  .services .services-right {
    order: 1;
    /* 图片在上方 */
    margin-top: 40px;
    padding: 0 15px;
    text-align: center;
  }
  .services .services-right img {
    padding: 0 15px;
    width: 100%;
    height: auto;
  }
}

/* ========= ===== ===== ===== ===== =our模块 ====== ===== ===== ===== ===== ===== ==== */
.our {
  /* 通用样式（所有设备） */
  /* ===== PC端样式 (≥992px) ===== */
  /* ===== 平板端样式 (768px-991.98px) ===== */
  /* ===== 手机端样式 (<768px) ===== */
}
.our .our-left img {
  width: 100%;
  height: auto;
}
.our .our-right .title {
  font-family: Oswald, Oswald;
  font-weight: 500;
  color: #ffffff;
}
.our .our-right .our-collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.our .our-right .our-collapse-content.show {
  max-height: 500px;
}
.our .our-right .our-item .our-header {
  font-family: Arial, Arial;
  font-weight: normal;
  color: #a78358;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.our .our-right .our-item .our-header img {
  transition: transform 0.3s ease;
}
.our .our-right .our-item .our-collapse img {
  width: 50px;
  height: 50px;
  margin-right: 19px;
}
.our .our-right .our-item .our-collapse .our-body {
  font-family: ArialMT;
  color: #ffffff;
}
.our .our-right .our-item .our-collapse .our-body .our-body-txt {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.our .our-right .our-item .our-collapse .our-body .our-body-txt .point {
  min-width: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a78358;
  margin-top: 10px;
  flex-shrink: 0;
}
.our .our-right .our-item .our-collapse .our-body .our-body-txt .txt {
  margin-left: 6px;
}
@media (min-width: 992px) {
  .our {
    padding-bottom: 131px;
  }
  .our .our-container {
    display: flex;
  }
  .our .our-left {
    flex: 0 0 50%;
    margin-top: 134px;
  }
  .our .our-left img {
    width: 960px;
    object-fit: cover;
  }
  .our .our-right {
    flex: 0 0 50%;
    padding-left: 50px;
    padding-right: 130px;
  }
  .our .our-right .title {
    margin-top: 202px;
    margin-bottom: 52px;
    font-size: 40px;
  }
  .our .our-right .our-item {
    padding-bottom: 45px;
  }
  .our .our-right .our-item .our-header {
    font-size: 22px;
  }
  .our .our-right .our-item .our-header img {
    width: 14px;
    height: 8px;
  }
  .our .our-right .our-item .our-collapse {
    margin-top: 14px;
  }
  .our .our-right .our-item .our-collapse .our-body {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .our {
    padding-bottom: 40px;
  }
  .our .our-container {
    display: block;
  }
  .our .our-container .row {
    flex-direction: column;
  }
  .our .our-container .row .col-md-6 {
    width: 100%;
  }
  .our .our-left {
    margin-top: 60px;
    text-align: center;
  }
  .our .our-left img {
    padding: 0 30px;
    height: auto;
    margin: 0 auto;
  }
  .our .our-right {
    margin-top: 30px;
  }
  .our .our-right .title {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: left;
    padding-left: 30px;
  }
  .our .our-right .ul {
    padding: 0 30px;
  }
  .our .our-right .ul .our-item {
    padding-bottom: 18px;
  }
  .our .our-right .ul .our-item .our-header {
    font-size: 18px;
  }
  .our .our-right .ul .our-item .our-header img {
    width: 15px;
    height: 8px;
    margin-left: 2px;
  }
  .our .our-right .ul .our-item .our-collapse {
    margin-top: 12px;
  }
  .our .our-right .ul .our-item .our-collapse img {
    width: 48px;
    height: 52px;
  }
  .our .our-right .ul .our-item .our-collapse .our-body {
    font-size: 17px;
  }
}
@media (max-width: 767.98px) {
  .our {
    padding-bottom: 37px;
  }
  .our .our-container {
    display: block;
  }
  .our .our-container .row {
    flex-direction: column;
  }
  .our .our-container .row .col-md-6 {
    width: 100%;
  }
  .our .our-left {
    margin-top: 40px;
  }
  .our .our-left img {
    width: 100%;
    height: auto;
    padding: 0 15px;
  }
  .our .our-right {
    margin-top: 23px;
  }
  .our .our-right .title {
    margin-bottom: 15px;
    font-size: 22px;
    text-align: left;
    padding-left: 15px;
  }
  .our .our-right .ul {
    padding: 0 15px;
  }
  .our .our-right .ul .our-item {
    padding-bottom: 15px;
  }
  .our .our-right .ul .our-item .our-header {
    font-size: 19px;
  }
  .our .our-right .ul .our-item .our-header img {
    width: 12px;
    height: 7px;
    margin-left: 2px;
  }
  .our .our-right .ul .our-item .our-collapse {
    margin-top: 10px;
  }
  .our .our-right .ul .our-item .our-collapse img {
    width: 35px;
    height: 38px;
  }
  .our .our-right .ul .our-item .our-collapse .our-body {
    font-size: 14px;
  }
}

/* ========= ===== ===== ===== ===== =联系模块 ====== ===== ===== ===== ===== ===== ==== */
.relation {
  margin-top: 72px;
  padding-bottom: 58px;
  /* 通用样式（所有设备） */
  /* ===== PC端样式 (≥992px) ===== */
  /* ===== 平板端样式 (768px-991.98px) ===== */
  /* ===== 手机端样式 (<768px) ===== */
  /* 手机端额外优化 */
}
.relation .relation-ul {
  background: #191919;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.relation .relation-ul .relation-item {
  padding: 20px;
  border-right: 1px solid #666666;
  box-sizing: border-box;
}
.relation .relation-ul .relation-item .txt1 {
  font-family: Oswald, Oswald;
  font-weight: 500;
  color: #b99c79;
}
.relation .relation-ul .relation-item .txt2 {
  font-family: ArialMT;
  color: #ffffff;
}
.relation .relation-ul .relation-item a {
  color: #ffffff;
  text-decoration: none;
}
.relation .relation-ul .relation-item a:hover {
  color: #fff !important;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .relation .relation-ul .relation-item {
    flex: 0 0 33%;
    max-width: 33%;
    margin-bottom: 20px;
  }
  .relation .relation-ul .relation-item:last-child {
    border-right: none;
  }
  .relation .relation-ul .relation-item:nth-child(3n) {
    border-right: none;
  }
  .relation .relation-ul .relation-item .txt1 {
    margin-top: 20px;
    font-size: 22px;
  }
  .relation .relation-ul .relation-item .txt2 {
    font-size: 20px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .relation {
    margin-top: 60px;
    padding-bottom: 45px;
  }
  .relation .container {
    padding: 0 30px;
    max-width: none;
  }
  .relation .relation-ul {
    margin: 39px 0px;
    padding: 10px;
  }
  .relation .relation-ul .relation-item {
    margin-top: 0;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .relation .relation-ul .relation-item img {
    width: 35px;
    height: 35px;
  }
  .relation .relation-ul .relation-item:nth-child(2n) {
    border-right: none;
  }
  .relation .relation-ul .relation-item:nth-child(3), .relation .relation-ul .relation-item:nth-child(4) {
    border-right: 1px solid #666666;
    border-top: 1px solid #666666;
  }
  .relation .relation-ul .relation-item:nth-child(4) {
    border-right: none;
  }
  .relation .relation-ul .relation-item .txt1 {
    margin-top: 15px;
    font-size: 17px;
  }
  .relation .relation-ul .relation-item .txt2 {
    margin-top: 15px;
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .relation {
    margin-top: 40px;
    padding-bottom: 30px;
  }
  .relation .container {
    padding: 0 15px;
    max-width: none;
  }
  .relation .relation-ul {
    margin: 39px 0px;
    padding: 10px;
  }
  .relation .relation-ul .relation-item {
    margin-top: 0;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 0;
    padding: 15px;
    /* 偶数项无右边框 */
    /* 最后两项无底边框 */
  }
  .relation .relation-ul .relation-item img {
    width: 26px;
    height: 26px;
  }
  .relation .relation-ul .relation-item:nth-child(2n) {
    border-right: none;
  }
  .relation .relation-ul .relation-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .relation .relation-ul .relation-item:nth-child(3), .relation .relation-ul .relation-item:nth-child(4) {
    border-top: 1px solid #666666;
  }
  .relation .relation-ul .relation-item p {
    margin-bottom: 0;
  }
  .relation .relation-ul .relation-item .txt1 {
    margin-top: 6px;
    font-size: 18px;
  }
  .relation .relation-ul .relation-item .txt2 {
    margin-top: 6px;
    font-size: 10px;
  }
}
@media (max-width: 575.98px) {
  .relation .relation-ul .relation-item {
    padding: 12px 10px;
  }
  .relation .relation-ul .relation-item .txt1 {
    font-size: 14px;
  }
  .relation .relation-ul .relation-item .txt2 {
    font-size: 13px;
  }
}

/* ========= ===== ===== ===== ===== =留言模块 ====== ===== ===== ===== ===== ===== ==== */
.leave {
  background: #000000;
  /* 通用样式（所有设备） */
  /* ===== PC端样式 (≥992px) ===== */
  /* ===== 平板端样式 (768px-991.98px) ===== */
  /* ===== 手机端样式 (<768px) ===== */
}
.leave .title {
  font-family: Oswald, Oswald;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 40px;
}
.leave .container-ul {
  /* 移除所有input和textarea的焦点边框 */
}
.leave .container-ul .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: #ced4da;
}
.leave .container-ul .container-li {
  background: #313131;
  border: 1px solid #535353;
  border-radius: 4px;
  overflow: hidden;
}
.leave .container-ul .container-li label {
  font-family: ArialMT;
  color: #ffffff;
  display: block;
  padding: 8px 15px 0;
}
.leave .container-ul .container-li input {
  background: #313131;
  font-family: ArialMT;
  color: #ffffff;
  border: none;
  width: 100%;
}
.leave .container-ul .container-textarea {
  background: #313131;
  border: 1px solid #535353;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;
}
.leave .container-ul .container-textarea label {
  font-family: ArialMT;
  color: #ffffff;
  display: block;
  padding: 15px 15px 0;
}
.leave .container-ul .container-textarea textarea {
  background: #313131;
  font-family: ArialMT;
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 0 15px 15px;
  resize: vertical;
}
.leave .container-ul .submit-btn {
  display: block;
  width: 200px;
  height: 60px;
  margin: 0 auto;
  background: #b99c79;
  border: none;
  border-radius: 4px;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.leave .container-ul .submit-btn:hover {
  background: #d4b48c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(185, 156, 121, 0.4);
}
.leave .container-ul .response-message {
  display: none;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}
.leave .container-ul .success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.leave .container-ul .error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@media (min-width: 992px) {
  .leave {
    padding: 120px 0;
  }
  .leave .title {
    font-size: 40px;
    margin-bottom: 60px;
  }
  .leave .container-ul .row-inputs {
    display: flex;
    gap: 20px;
  }
  .leave .container-ul .row-inputs .input-group {
    flex: 1;
    margin-bottom: 0;
  }
  .leave .container-ul .container-li {
    width: 100%;
    height: 64px;
    margin-bottom: 20px;
  }
  .leave .container-ul .container-li label {
    font-size: 18px;
    padding: 10px 20px 0;
  }
  .leave .container-ul .container-li input {
    font-size: 18px;
  }
  .leave .container-ul .container-textarea {
    grid-column: span 2;
  }
  .leave .container-ul .container-textarea label {
    font-size: 18px;
    padding: 20px 20px 0;
  }
  .leave .container-ul .container-textarea textarea {
    font-size: 18px;
    height: 144px;
    padding: 20px 20px 20px;
  }
  .leave .container-ul .submit-btn {
    grid-column: span 2;
    width: 240px;
    height: 70px;
    font-size: 22px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .leave .container {
    max-width: none;
    padding: 40px 30px;
  }
  .leave .title {
    font-size: 36px;
    margin-bottom: 50px;
  }
  .leave .container-ul .container-li {
    width: 100%;
    height: 60px;
    margin-bottom: 10px;
  }
  .leave .container-ul .container-li label {
    font-size: 17px;
  }
  .leave .container-ul .container-li input {
    font-size: 17px;
  }
  .leave .container-ul .container-textarea label {
    font-size: 17px;
  }
  .leave .container-ul .container-textarea textarea {
    font-size: 17px;
    height: 130px;
    padding: 15px 15px 15px;
  }
  .leave .container-ul .submit-btn {
    width: 220px;
    height: 65px;
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .leave .container {
    max-width: none;
    padding: 40px 15px;
  }
  .leave .title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .leave .container-ul .container-li {
    width: 100%;
    height: 56px;
    margin-bottom: 10px;
  }
  .leave .container-ul .container-li label {
    font-size: 16px;
  }
  .leave .container-ul .container-li input {
    font-size: 16px;
  }
  .leave .container-ul .container-textarea label {
    font-size: 16px;
  }
  .leave .container-ul .container-textarea textarea {
    font-size: 16px;
    height: 120px;
    padding: 12px 12px 12px;
  }
  .leave .container-ul .submit-btn {
    width: 180px;
    height: 55px;
    font-size: 18px;
  }
}

/* ===== PC端样式 (≥992px) ===== */
@media (min-width: 992px) {
  .map {
    margin: 50px 0;
  }
  .map img {
    width: 100%;
  }
}
/* ===== 平板端样式 (768px-991.98px) ===== */
@media (min-width: 768px) and (max-width: 991.98px) {
  .map .container {
    max-width: none;
    padding: 0;
  }
  .map .container img {
    width: 100%;
  }
}
/* ===== 手机端样式 (<768px) ===== */
@media (max-width: 767.98px) {
  .map .container {
    max-width: none;
    padding: 0;
  }
  .map .container img {
    width: 100%;
  }
}
/* ========= ===== ===== ===== ===== =自定义弹窗样式 ====== ===== ===== ===== ===== ===== ==== */
/* 自定义弹窗样式 */
.custom-modal .modal-content {
  border-radius: 8px;
  border: none;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-modal .modal-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.custom-modal .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  padding: 0.5rem;
}

.custom-modal .modal-body {
  padding: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  background-color: white;
}

.custom-modal .modal-footer {
  border-top: none;
  background-color: white;
  display: flex;
  justify-content: center;
}

.custom-modal .submit-img-btn {
  width: 100px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.custom-modal .submit-img-btn:hover {
  transform: scale(1.05);
}

.heroheader {
  /* ===== 平板端样式 (768px-991.98px) ===== */
  /* ===== 手机端样式 (<768px) ===== */
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .heroheader {
    margin-top: 57px;
  }
}
@media (max-width: 767.98px) {
  .heroheader {
    margin-top: 57px;
  }
}

/* ========= ===== ===== ===== ===== =产品详情页侧边栏样式 ====== ===== ===== ===== ===== ===== ==== */
.products {
  /* ===== PC端样式 (≥992px) ===== */
  /* ===== 平板端样式 (768px-991.98px) ===== */
  /* ===== 手机端样式 (<768px) ===== */
}
@media (min-width: 992px) {
  .products .productstab-left {
    margin-top: -85px;
    z-index: 100;
  }
  .products .productstab-left .card-header {
    background: #000;
    padding: 0 35px;
    font-family: Oswald, Oswald;
    font-weight: 500;
    font-size: 20px;
    height: 85px;
  }
  .products .productstab-left .card-body {
    padding-bottom: 40px;
  }
  .products .productstab-left .card-body .title {
    font-family: Oswald, Oswald;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    padding: 10px 0;
    margin-left: 20px;
  }
  .products .productstab-left .card-body .list-group-item {
    border: none;
    padding: 0;
    border-bottom: 1px solid #999;
  }
  .products .productstab-left .card-body .list-group-item .list-unstyled {
    padding: 0 20px;
  }
  .products .productstab-left .card-body .list-group-item .list-unstyled .txt {
    padding: 10px 0;
    font-family: Helvetica;
    font-size: 18px;
  }
  .products .productstab-left .card-body .list-group-item .list-unstyled .txt:hover {
    /* 新增悬停效果 */
    color: #997851 !important;
    /* 使用 !important 确保覆盖 text-white 类 */
    cursor: pointer;
    /* 可选：添加指针样式 */
  }
  .products .productstab-right .card {
    background: none;
    border: none;
  }
  .products .productstab-right .card-header {
    font-family: Oswald, Oswald;
    font-weight: 500;
    font-size: 40px;
    border: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .products .container {
    padding: 0;
    max-width: none;
  }
  .products .container .row {
    flex-direction: column;
  }
  .products .container .row .col-md-9 {
    width: 100%;
  }
  .products .productstab-left {
    margin-top: -85px;
    z-index: 100;
  }
  .products .productstab-left .card-header {
    background: #000;
    padding: 0 35px;
    font-family: Oswald, Oswald;
    font-weight: 500;
    font-size: 20px;
    height: 85px;
  }
  .products .productstab-left .card-body {
    padding-bottom: 40px;
  }
  .products .productstab-left .card-body .title {
    font-family: Oswald, Oswald;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    padding: 10px 0;
    margin-left: 20px;
  }
  .products .productstab-left .card-body .list-group-item {
    border: none;
    padding: 0;
    border-bottom: 1px solid #999;
  }
  .products .productstab-left .card-body .list-group-item .list-unstyled {
    padding: 0 20px;
  }
  .products .productstab-left .card-body .list-group-item .list-unstyled .txt {
    padding: 10px 0;
    font-family: Helvetica;
    font-size: 18px;
  }
  .products .productstab-right .card {
    background: none;
    border: none;
  }
  .products .productstab-right .card-header {
    margin-top: 40px;
    font-family: Oswald, Oswald;
    font-weight: 500;
    font-size: 30px;
    border: none;
  }
}
@media (max-width: 767.98px) {
  .products .heroheader {
    margin-top: 57px;
  }
  .products .container {
    padding: 0;
    max-width: none;
  }
  .products .container .row {
    flex-direction: column;
  }
  .products .container .col-md-9 {
    width: 100%;
  }
  .products .productstab-left {
    margin-top: -85px;
    z-index: 100;
  }
  .products .productstab-left .card-header {
    background: #000;
    padding: 0 15px;
    font-family: Oswald, Oswald;
    font-weight: 500;
    font-size: 20px;
    height: 85px;
  }
  .products .productstab-left .card-body {
    padding-bottom: 40px;
  }
  .products .productstab-left .card-body .title {
    font-family: Oswald, Oswald;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    padding: 10px 0;
    margin-left: 20px;
  }
  .products .productstab-left .card-body .list-group-item {
    border: none;
    padding: 0;
    border-bottom: 1px solid #999;
  }
  .products .productstab-left .card-body .list-group-item .list-unstyled {
    padding: 0 20px;
  }
  .products .productstab-left .card-body .list-group-item .list-unstyled .txt {
    padding: 10px 0;
    font-family: Helvetica;
    font-size: 18px;
  }
  .products .productstab-right .card {
    background: none;
    border: none;
  }
  .products .productstab-right .card-header {
    margin-top: 30px;
    padding: 0 15px;
    font-family: Oswald, Oswald;
    font-weight: 500;
    font-size: 26px;
    border: none;
  }
}

/* ========= ===== ===== ===== ===== =轮播图 ====== ===== ===== ===== ===== ===== ==== */
.productsimg {
  background: #000;
  /* 通用样式（所有设备） */
  /* ===== PC端样式 (≥992px) ===== */
  /* ===== 平板端样式 (768px-991.98px) ===== */
  /* ===== 手机端样式 (<768px) ===== */
}
.productsimg .productsimg-ul {
  padding: 0 20px;
}
.productsimg .swiper {
  width: 100%;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.productsimg .swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.productsimg .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}
.productsimg .swiper-slide img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.productsimg .swiper-pagination {
  position: relative;
  top: 0;
  margin-top: 20px;
}
.productsimg .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: #ccc;
  opacity: 1;
  transition: all 0.3s ease;
}
.productsimg .swiper-pagination-bullet:hover {
  background-color: #997851 !important;
  transform: scale(1.2);
}
.productsimg .swiper-pagination-bullet-active {
  background-color: #997851 !important;
  transform: scale(1.2);
}
@media (min-width: 992px) {
  .productsimg .productsimg-ul {
    margin-top: 90px;
    padding: 0 50px;
  }
  .productsimg .swiper {
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .productsimg .swiper-slide {
    width: 377px;
    height: 290px;
  }
  .productsimg .swiper-pagination {
    top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .productsimg .container {
    padding: 0 30px;
    max-width: none;
  }
  .productsimg .productsimg-ul {
    margin-top: 70px;
    padding: 0 30px;
  }
  .productsimg .swiper {
    padding-top: 70px;
    padding-bottom: 50px;
    z-index: 0;
  }
  .productsimg .swiper-slide {
    width: 100%;
    height: auto;
  }
  .productsimg .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767.98px) {
  .productsimg .container {
    padding: 0 15px;
    max-width: none;
  }
  .productsimg .productsimg-ul {
    margin-top: 50px;
    padding: 0 15px;
  }
  .productsimg .swiper {
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 0;
  }
  .productsimg .swiper-slide {
    width: 100%;
    height: auto;
  }
  .productsimg .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.productsheader {
  position: absolute;
  top: 70px;
  width: 100%;
  z-index: 1;
}
.productsheader .card {
  background: #212121;
  overflow: hidden;
  color: white;
  border: none;
  border-radius: 0;
}
.productsheader .card span {
  font-family: Oswald, Oswald;
  font-weight: 500;
  font-size: 20px;
}
.productsheader .card-header {
  height: 57px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.productsheader .card-header span {
  font-size: 1.3rem;
  font-weight: 600;
}
.productsheader .card-header img {
  width: 16px;
  height: 10px;
}
.productsheader .card-body {
  display: none;
  padding: 0 15px 15px;
  background: #1d1e20;
}
.productsheader .list-group {
  border-radius: 8px;
  overflow: hidden;
}
.productsheader .list-group .list-group-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 10px;
}
.productsheader .list-group .list-group-item .subtitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
  font-size: 1.1rem;
}
.productsheader .list-group .list-group-item .subtitle span {
  font-family: Oswald, Oswald;
  font-weight: 500;
  font-size: 14px;
  color: #a0a0a0;
}
.productsheader .list-group .list-group-item .subtitle img {
  width: 12px;
  height: 12px;
}
.productsheader .list-group .list-group-item .selected span {
  color: #fff !important;
}
.productsheader .list-group .list-group-item .sub-headermenu {
  display: none;
  padding: 10px 0 0px 15px;
}
.productsheader .list-group .list-group-item .sub-headermenu .txt {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.productsheader .list-group .list-group-item .sub-headermenu .txt span {
  font-family: Helvetica;
  font-size: 13px;
  color: #ffffff;
}
.productsheader .list-group .list-group-item .sub-headermenu .txt img {
  width: 7px;
  height: 12px;
  margin-right: 15px;
}
.productsheader .list-group .list-group-item .sub-headermenu .txt.selected span {
  color: #997851 !important;
  font-weight: 600;
}
.productsheader .list-group .list-group-item .sub-headermenu .txt:last-child {
  border-bottom: none;
}
.productsheader .list-group .list-group-item .instructions {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  color: #ddd;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.productsheader .list-group .list-group-item .instructions h3 {
  color: #ffcc00;
  margin-bottom: 15px;
  text-align: center;
}
.productsheader .list-group .list-group-item .instructions ul {
  padding-left: 20px;
}
.productsheader .list-group .list-group-item .instructions li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.productsheader .list-group .list-group-item .highlight {
  background: rgba(255, 204, 0, 0.2);
  padding: 2px 5px;
  border-radius: 4px;
}
.productsheader .list-group .list-group-item:last-child {
  border-bottom: none;
}
@media (max-width: 480px) {
  .productsheader h1 {
    font-size: 1.8rem;
  }
  .productsheader .card-header span {
    font-size: 1.2rem;
  }
  .productsheader .title {
    font-size: 1rem;
  }
}

.menuheader {
  position: absolute;
  top: 70px;
  width: 100%;
  z-index: 100;
}
.menuheader .card {
  background: #212121;
  overflow: hidden;
  color: white;
  border: none;
  border-radius: 0;
}
.menuheader .card span {
  font-family: Oswald, Oswald;
  font-weight: 500;
  font-size: 20px;
}
.menuheader .card-header {
  height: 57px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.menuheader .card-header span {
  font-size: 1.3rem;
  font-weight: 600;
}
.menuheader .card-header img {
  width: 16px;
  height: 10px;
}
.menuheader #card-body {
  display: none;
}
.menuheader .card-body {
  padding: 0 15px 15px;
  background: #1d1e20;
}
.menuheader .card-body .list-group {
  border-radius: 8px;
  overflow: hidden;
}
.menuheader .card-body .list-group .list-group-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 10px;
}
.menuheader .card-body .list-group .list-group-item .sublititle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
  font-size: 1.1rem;
}
.menuheader .card-body .list-group .list-group-item .sublititle span {
  font-family: Oswald, Oswald;
  font-weight: 500;
  font-size: 14px;
  color: #A0A0A0;
}
.menuheader .card-body .list-group .list-group-item .sublititle img {
  width: 12px;
  height: 12px;
}
.menuheader .card-body .list-group .list-group-item .selected span {
  color: #FFF !important;
}
.menuheader .card-body .list-group .list-group-item .sublimenu {
  display: none;
  padding: 10px 0 0px 15px;
}
.menuheader .card-body .list-group .list-group-item .sublimenu .txt {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.menuheader .card-body .list-group .list-group-item .sublimenu .txt a {
  font-family: Helvetica;
  font-size: 13px;
  color: #FFFFFF;
  text-decoration: none;
}
.menuheader .card-body .list-group .list-group-item .sublimenu .txt img {
  width: 7px;
  height: 12px;
  margin-right: 15px;
}
.menuheader .card-body .list-group .list-group-item .sublimenu .txt.selected a {
  color: #997851 !important;
}
.menuheader .card-body .list-group .list-group-item .sublimenu .txt:last-child {
  border-bottom: none;
}
.menuheader .card-body .list-group .list-group-item .instructions {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 20px;
  margin-top: 30px;
  color: #ddd;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.menuheader .card-body .list-group .list-group-item .instructions h3 {
  color: #ffcc00;
  margin-bottom: 15px;
  text-align: center;
}
.menuheader .card-body .list-group .list-group-item .instructions ul {
  padding-left: 20px;
}
.menuheader .card-body .list-group .list-group-item .instructions li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.menuheader .card-body .list-group .list-group-item .highlight {
  background: rgba(255, 204, 0, 0.2);
  padding: 2px 5px;
  border-radius: 4px;
}
.menuheader .card-body .menufoot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.menuheader .card-body .menufoot span {
  font-family: Oswald, Oswald;
  font-weight: 500;
  font-size: 14px;
  color: #997851;
}
.menuheader .card-body .menufoot img {
  width: 13px;
  height: 12px;
  margin-left: 4px;
}
@media (max-width: 480px) {
  .menuheader h1 {
    font-size: 1.8rem;
  }
  .menuheader .card-header span {
    font-size: 1.2rem;
  }
  .menuheader .title {
    font-size: 1rem;
  }
}

@font-face {
  font-family: "Oswald";
  /* Project id 2352310 */
  src: url("../font/Oswald-Medium.woff2?t=1622172359366") format("woff2"), url("../font/Oswald-Medium.ttf?t=1622172359366") format("truetype");
}
body {
  background: #303235;
}

/* 主要解决方案：添加顶部内边距 */
.main {
  padding-top: 70px;
  /* 等于导航栏高度 */
}

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