* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #f5f5f5;
  --dark-gray: #dddddd;
}

body {
  font-family: 'Arial', sans-serif;
  /*font-family: "Minion Variable Concept", "STZhongsong", "华文宋体", 'Arial', serif;*/
  color: var(--text-color);
  font-size: 14px;
}

@font-face {
  font-family: 'MVCFont';
  src: local("Minion Variable Concept");
  unicode-range: U+000-5FF; /* 基本拉丁字母范围 */
}

@font-face {
  font-family: 'STZSFont';
  src: local("STZhongsong");
  unicode-range: U+4E00-9FFF; /* 中日韩统一表意文字范围 */
}

.cn-font {
  font-family: 'STZSFont', serif;
}

.en-font {
  font-family: 'MVCFont', serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

button:focus,
*:focus {
  outline: none;
}

button {
  background: transparent;
  border: none;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #666;
  transition: .5s;
}

img {
  max-width: 100%;
}

.display-flex {
  display: flex;
}

header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 100%;
  height: 64px;
  position: fixed;
  top: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
}

header .container-fluid {
  padding: 0 50px;
}

@media (max-width: 768px) {
  header .container-fluid {
    padding: 0 15px;
  }
}

.main_logo img {
  max-height: 22px;
}

.search-toggle {
  background: none;
  border: none;
  font-size: 18px;
  color: #000;
  cursor: pointer;
  margin-left: 20px;
}

.search-toggle i {
  font-size: 16px;
}

.search-box {
  position: absolute;
  right: 0;
  top: 64px;
  width: 340px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1001;
}

.search-box.active {
  display: flex;
}

.search-box form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.search-box .search-input {
  box-sizing: border-box;
  width: calc(100% - 40px);
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.search-box .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}


/* 移动端菜单开始 */
.mobile-header-box {
  height: 50px;
  width: 100%;
  display: none;
  padding: 0 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
}

.mobile-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-top-item {
  flex: 1;
  display: flex;
  line-height: 1;
}

.mobile-top-logo {
  max-height: 20px;
}

.mobile-top-item:nth-child(2) {
  justify-content: center;
}

.mobile-top-item:nth-child(3) {
  justify-content: end;
}

.mobile-top-icon {
  font-size: 18px;
  color: #000;
}

.mobile-top-item:nth-child(1) .mobile-top-icon:nth-child(2),
.mobile-top-item:nth-child(3) .mobile-top-icon:nth-child(2) {
  margin-left: 30px;
}

/* 移动端搜索 */
.mobile-search-box {
  display: none;
  position: fixed;
  top: 49px;
  left: 0;
  width: 100%;
  height: calc(100vh - 49px);
  background-color: #fff;
  padding: 15px;
}

.mobile-search-box.active {
  display: block;
}

.mobile-search-box form {
  display: flex;
}

.mobile-search-box .search-input {
  box-sizing: border-box;
  width: calc(100% - 40px);
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.mobile-search-box .search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.mobile-menu-container {
  position: fixed;
  top: 49px;
  left: 0;
  width: 100%;
  height: calc(100vh - 49px);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-container.active {
  visibility: visible;
  opacity: 1;
}

/* 菜单遮罩层 */
.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* 菜单面板 */
.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  color: #000;
  /* 黑色字体 */
}

.mobile-menu-container.active .mobile-menu-panel {
  transform: translateX(0);
}

/* 菜单头部 */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-menu .menu-title {
  font-size: 18px;
  font-weight: bold;
}

.mobile-menu .menu-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #000;
  cursor: pointer;
}

/* 菜单列表 */
.mobile-menu .mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu .menu-item {
  border-bottom: 1px solid #eee;
  margin: 0;
  padding: 0;
}

.mobile-menu .menu-item a {
  line-height: 1;
}

.mobile-menu .menu-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  cursor: pointer;
}

.mobile-menu .menu-item-content>a {
  padding: 0 !important;
}

.mobile-menu .menu-item a {
  display: block;
  padding: 12px 15px;
  color: #000;
  text-decoration: none;
}

.mobile-menu .submenu-toggle {
  transition: transform 0.3s ease;
}

.mobile-menu .has-submenu.active>.menu-item-content>.submenu-toggle {
  transform: rotate(180deg);
}

/* 子菜单 */
.mobile-menu .submenu {
  list-style: none;
  padding-left: 15px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu .has-submenu.active>.submenu {
  max-height: 1000px;
  /* 足够大的值确保展开 */
}

/* 子菜单层级缩进 */
.mobile-menu .submenu .menu-item-content,
.mobile-menu .submenu a {
  padding-left: 15px;
}

.mobile-menu .submenu .submenu .menu-item-content,
.mobile-menu .submenu .submenu a {
  padding-left: 15px;
}

.mobile-menu .submenu .submenu .submenu .menu-item-content,
.mobile-menu .submenu .submenu .submenu a {
  padding-left: 15px;
}

.mobile-menu .menu-item-content a,
.mobile-menu .menu-item-content span {
  width: calc(100% - 30px);
}

.mobile-menu .menu-item-content i {
  width: 14px;
}

/* 移动端菜单结束 */

/* 轮播图 */
.slider-box-pc {
  width: 100%;
  padding-top: 64px;
}

.slider-box-pc .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.slider-box-mobile {
  width: 100%;
  padding-top: 50px;
}

.slider-box-mobile {
  display: none;
}

@media (max-width: 1299px) {
  .pc-header-box {
    display: none;
  }

  .mobile-header-box {
    display: flex;
    align-items: center;
  }

  .submenu-container {
    display: none;
  }

  .slider-box-pc {
    width: 100%;
    padding-top: 50px;
  }

  .index-swiper .slider-container {
    width: 100%;
    height: calc(100vh - 50px);
  }
}

@media (max-width: 750px) {
  .slider-box-pc {
    display: none;
  }

  .slider-box-mobile {
    display: block;
  }
}

.slider-box-pc .slider-container {
  width: 100%;
  height: calc(100vh - 64px);
}

.slider-box-mobile .slider-container {
  width: 100%;
  height: calc(100vh - 50px);
}

.index-swiper .swiper {
  width: 100%;
  height: 100%;
}

.index-swiper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.index-swiper .swiper-slide-info {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.index-swiper .swiper-slide-info h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--gray);
  line-height: 2;
}

.slider-box-mobile .swiper-pagination-bullet-active {
  background: white !important;
}

.slider-box-mobile .swiper-pagination-bullet {
  width: 20px;
  /* 宽度变大，变成条状 */
  height: 3px;
  /* 高度变小，变成细条 */
  border-radius: 2px;
  /* 圆角变小，接近矩形 */
  background: #999;
  /* 默认颜色 */
  opacity: 1;
  transition: all 0.3s ease;
  /* 平滑过渡动画 */
}


/* 列表页 */
.page-content {
  box-sizing: border-box;
  width: 100%;
  padding-top: 100px;
}

/* .page-content .container-fluid {
  padding: 0 80px;
} */

@media (min-width: 576px) {
  .page-content .container-fluid {
    padding: 0 15px;
  }
}

@media (min-width: 768px) {
  .page-content .container-fluid {
    padding: 0 45px;
  }
}

@media (min-width: 992px) {
  .page-content .container-fluid {
    padding: 0 60px;
  }
}

@media (min-width: 1200px) {
  .page-content .container-fluid {
    padding: 0 120px;
  }
}

.page-h1 {
  font-weight: 400;
}

.page-h2 {
  font-weight: 400;
}

/* 子栏目 */
.sub-column-title {
  padding: 20px 0;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #e2e2e2;
  position: relative;
}

.sub-column-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.sub-column-list-item {
  margin-right: 50px;
  margin-bottom: 10px;
}

.sub-column-list-item a:hover {
  color: #000;
}

.sub-column-list-item a.active {
  color: #000;
}

@media (max-width: 992px) {
  .sub-column-list-item {
    margin-right: 20px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .sub-column-title {
    text-align: center;
    border: none;
  }

  .sub-column-title::after {
    position: absolute;
    content: "";
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: #000;
  }
}

.sub-column-list-item:first-child a {
  color: #000;
}

/* 产品列表 */
.list-item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.list-item-info {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--black);
}

.list-item-info-tit {
  width: 100%;
  /*text-overflow: ellipsis;*/
  /*overflow: hidden;*/
  /*white-space: nowrap;*/
  text-align: center;
}

.list-item-link {
  display: block;
  transition: transform 0.3s ease;
}

.list-item-link:hover {
  transform: translateY(-10px);
}


/* 关于我们 */
.page-content-details {
  font-size: 16px;
  color: #666;
  line-height: 2;
  /* min-height: calc(100vh - 235px); */
  padding: 0 35px;
  margin-bottom: 40px;
}

.page-content-title {
  text-align: center;
  font-weight: 400;
  color: #000;
}

.page-content-details p {
  margin: 0;
}

.page-content-details img {
  max-width: 100%;
}


/* 联系我们 */
.contact-info-item {
  display: flex;
  flex-direction: column;
  padding: 0 35px;
  margin-bottom: 40px;
  color: #666;
}

info-item-img {
  width: 100%;
}

.info-item-desc {
  margin: 20px 0;
  line-height: 1.5;
  color: #666;
}

.info-item-ewm {
  max-width: 110px;
}

.contact-box .page-content-details {
  font-size: 14px;
}

@media (max-width: 1199px) {

  .contact-info-item,
  .page-content-details {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {

  .contact-info-item,
  .page-content-details {
    padding: 0;
  }
}


/* 产品内页 */
.product-content {
  box-sizing: border-box;
  width: 100%;
  padding-top: 118px;
  margin-bottom: 50px;
}

.product-content .container-fluid {
  padding: 0 50px;
}

.product-container {
  margin-top: 30px;
  margin-bottom: 50px;
}

.thumbnail-slider {
  margin: 0;
  width: 80px;
  height: calc(100px * 5);
}

/* 响应式高度调整 */
/* @media (max-width: 1199.98px) {
  .thumbnail-slider {
    height: calc(100px * 4);
  }
} */

@media (max-width: 991.98px) {
  .thumbnail-slider {
    height: calc(100px * 4);
  }
}

.thumbnail-slider .swiper-slide {
  /* height: 80px; */
  max-height: 80px;
  margin-bottom: 10px;
  cursor: pointer;
  /* border: 1px solid #eee; */
  opacity: 0.6;
  transition: all 0.3s;
}

.thumbnail-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-slider .swiper-slide:hover {
  opacity: 0.8;
}

.thumbnail-slider .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #000;
}

/* 中间大图样式 */
.main-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.main-slider {
  height: 500px;
}

.main-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.main-slider .swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* 大图导航按钮 */
.main-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.main-nav-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 0.3s;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 12px;
}

.main-image-container:hover .main-nav-btn {
  opacity: 1;
}

.main-nav-pagination {
  display: none;
}

@media (max-width: 768px) {
  .main-nav-pagination {
    display: block;
  }
}

/* 右侧产品详情样式 */
.product-details {
  color: rgba(3, 3, 3, .5);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-details-head {
  border-bottom: solid 1px rgba(3, 3, 3, .3);
}

.product-details-head h3 {
  font-size: 20px;
  line-height: 1.6;
  color: var(--black);
  font-weight: 400;
}

.product-details-head h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.product-details-text a {
  color: rgba(3, 3, 3, .5);
} 

.product-details-text p {
  margin: 0;
  line-height: 1.8;
}

.product-details-btns {
  display: flex;
  justify-content: space-between;
}

.product-details-btn {
  display: block;
  width: calc(50% - 5px);
  min-height: 50px;
  padding: 10px;
  background-color: #f3efe5;
  color: #696666;
  font-size: 16px;
  line-height: 1.2;
}

.product-details-btn:first-child {
  background-color: #696666;
  color: #ffffff;
}

/* 栏目简介 */
.column-title {
  padding: 20px 0;
  font-size: 28px;
  line-height: 1.4;
  font-weight: 700;
  /* border-top: 1px solid #e2e2e2; */
  text-align: center;
}

.column-swiper {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.column-name {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.column-desc {
  font-size: 14px;
  color: rgba(3, 3, 3, .5);
}

.product-information {
  width: 100%;
}

.product-information tr:nth-child(odd) {
  background-color: #F4F4F4;
}

.product-information tr td span {
  min-width: 64px;
  display: inline-block;
  padding: 12px 16px;
}

/* 推荐产品 */
.recommendations {
  /* padding: 40px 0 0; */
}

.recommend .product-card {
  overflow: hidden;
  margin: 10px;
  transition: transform 0.3s;
}

.recommend .product-card:hover {
  transform: translateY(-5px);
}

.recommend .product-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend .product-image img {
  width: 100%;
}

.recommend .product-info {
  padding: 15px;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recommend .product-name {
  width: 100%;
  margin-bottom: 5px;
  /*white-space: nowrap;*/
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
  text-align: center;
}

.recommend .product-price {
  color: #d32f2f;
  font-size: 18px;
  font-weight: bold;
}


.recommend-nav-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s;
}

/* 隐藏状态的按钮 */
.recommend .swiper-button-hidden {
  display: none !important;
}

.see-more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.see-more a {
  color: var(--black);
}

/* 产品内页响应式调整 */
@media (max-width: 992px) {
  .thumbnail-slider {
    max-width: 60px;
  }

  .main-slider {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .product-content .container-fluid {
    padding: 0 15px;
  }

  .thumbnail-box {
    display: none;
  }

  .thumbnail-slider {
    width: 100%;
    height: 80px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .thumbnail-slider .swiper-slide {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-right: 10px;
    margin-bottom: 0;
  }

  .product-details {
    margin-top: 30px;
  }

  /* .column-swiper {
    margin-bottom: 20px;
  } */
}


/* footer */
footer {
  padding: 20px 0;
  border-top: solid 1px var(--dark-gray);
  font-size: 14px;
}

footer .container-fluid {
  padding: 0 50px;
}

footer .copyright {
  color: var(--black);
  margin-bottom: 0;
}

.footer-link-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-link-box a {
  color: #000;
  transition: color 0.3s;
  margin: 0 10px;
  line-height: 1;
}

.footer-link-box a:hover {
  color: #007bff;
}

@media (max-width: 768px) {
  footer .container-fluid {
    padding: 0 15px;
  }

  .footer-copyright {
    order: 2;
  }

  footer-link {
    order: 1;
  }

  .copyright {
    text-align: center;
  }

  .footer-link-box {
    margin-bottom: 20px;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }

  .footer-link-box .lm-links {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/* 筛选&排序 */
.filter-box {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: solid 1px var(--dark-gray);
  border-bottom: solid 1px var(--dark-gray);
}

.filter-container {
  position: relative;
  border-left: solid 1px var(--dark-gray);
  width: 180px;
  height: 100%;
}

@media (max-width: 768px) {
  .filter-container {
    width: 50%;
  }

  .filter-box .filter-container:first-child {
    order: 2;
  }

  .filter-box .filter-container:nth-child(2) {
    order: 1;
    border-left: none;
  }
}

.filter-btn {
  display: block;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  color: #999;
}

.sort-options {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.sort-option {
  display: block;
  width: 100%;
  padding: 8px 20px;
  clear: both;
  font-weight: 400;
  color: #999;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}

.filter-btn:hover,
.sort-option:hover {
  color: var(--black);
}

.sort-option i {
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.filter-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

@media (max-width: 450px) {
  .filter-sidebar {
    right: -80%;
    width: 80%;
  }
}

.filter-sidebar.show {
  right: 0;
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}

.filter-sidebar .filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.filter-sidebar .filter-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.filter-sidebar .close-filter {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.filter-sidebar .filter-section {
  margin-bottom: 25px;
}

.filter-sidebar .section-title {
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.filter-sidebar .section-title i {
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}

.filter-sidebar .section-content {
  padding-left: 10px;
}

.filter-sidebar .filter-option {
  margin-bottom: 10px;
}

.filter-sidebar .filter-option label {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.filter-sidebar .view-results {
  width: 100%;
  padding: 10px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}

/* 收藏须知 */
.scxz-content,
.scxz-content div,
.scxz-content p {
  font-size: 12px;
  color: rgba(3, 3, 3, .5);
}


/* 展厅页面 */
.zqshSwiper,
.zqanySwiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.zqshSwiper:hover .main-nav-btn,
.zqanySwiper:hover .main-nav-btn {
  opacity: 1;
}

.zqshSwiper .swiper-slide,
.zqanySwiper .swiper-slide {
  text-align: center;
}

.zqshSwiper .swiper-slide img,
.zqanySwiper .swiper-slide img {
  width: 60%;
}

/* @media (max-width: 992px) {
  .zqshSwiper .main-nav-btn,
  .zqanySwiper .main-nav-btn {
    opacity: 1;
  }
} */

@media (max-width: 768px) {
  .zqshSwiper .swiper-slide img,
  .zqanySwiper .swiper-slide img {
    width: auto;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .zqshSwiper  {
    /* margin-bottom: ; */
  }
}




/* 微信弹窗样式 */
.wechat-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}

.wechat-modal-content {
  background-color: #fefefe;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
}

.wechat-modal-close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
}

.wechat-modal-close:hover {
  color: #000;
}

.wechat-qrcode img {
  width: 200px;
  height: 200px;
  margin: 15px auto;
  display: block;
}

.wechat-id {
  margin: 15px 0;
  font-size: 16px;
}

#copy-wechat-id {
  background-color: #07C160;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
  font-size: 14px;
}

#copy-wechat-id:hover {
  background-color: #06AD56;
}

.wechat-tips {
  color: #888;
  font-size: 14px;
  margin-top: 15px;
}



/* 上新订阅弹窗 */
.subscribe-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}

.subscribe-modal-content {
  background-color: #fefefe;
  padding: 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  position: relative;
}

.subscribe-close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
}

.subscribe-close:hover {
  color: #000;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #07C160;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #06AD56;
}


.page-banner {
  width: 100%;
  text-align: center;
}

.page-banner img{
  max-width: 180px;
}

.page-banner1 img{
  max-width: 160px;
}

.zt-content p {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .zt-content-top {
    margin-top: 40px;
  }
}

/*@media (max-width: 767.9px) {*/
/*  .zt-content {*/
/*    padding: 0 40px;*/
/*  }*/
/*}*/


















