@font-face {
  font-family: "FZLanTing";
  /* 给字体起个名字，随便起 */
  src: url("../fonts/FZL2JW.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.index {
  position: relative;
}
.index .banners {
  width: 100%;
  /* 宽度撑满 */
  max-width: 1920px;
  /* 最大宽度，按设计图最大宽度限制 */
  margin: 0 auto;
  /* 居中 */
  position: relative;
  min-height: 250px;
  /* 800/1920 * 100% = 41.66%，按比例撑高 */
  overflow: hidden;
}
.index .banners .swiper-horizontal {
  height: 100%;
}
.index .banners .swiper-slide img {
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 5s ease;
}
.index .banners .swiper-slide:hover img {
  transform: scale(1.1);
}
.index .banners .swiper-pagination {
  bottom: 47px;
}
.index .banners .swiper-pagination .swiper-pagination-bullet {
  width: 38px;
  height: 28px;
  background: url(../images/list/banner.webp) no-repeat center center;
  background-size: auto;
}
.index .banners .swiper-pagination .swiper-pagination-bullet-active {
  background: url(../images/list/banner-active.webp) no-repeat center center;
}
.index .ititle {
  width: 1200px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index .ititle span {
  width: 114px;
  height: 21px;
}
.index .ititle .left {
  background: url(../images/list/title-left.png) no-repeat;
}
.index .ititle .right {
  background: url(../images/list/title-right.png) no-repeat;
}
.index .ititle .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0.05rem;
}
.index .ititle .title h2 {
  color: #171614;
  font-size: 28px;
  font-weight: bold;
}
.index .ititle .title em {
  font-size: 15px;
  color: #171614;
  font-weight: 300;
}
.index .more {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 182px;
  height: 47px;
  border-radius: 24px;
  background-color: #313131;
  color: #fff;
  transition: background-color 0.3s ease;
}
.index .more i {
  margin-top: 2px;
  color: #fff;
  margin-left: 14px;
}
.index .more:hover {
  background-color: #CAA274;
}
.index .collections {
  padding: 76px 0 93px 0;
  background: url(../images/bg/collections-index.webp) no-repeat center center;
  background-position: center bottom;
  background-size: auto;
}
.index .collections .w1200 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.index .collections .collectionsList {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  margin: 70px 0;
}
.index .collections .collectionsList .coll-item {
  flex: 0 0 calc(25% - 20px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.index .collections .collectionsList .coll-item .img {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
.index .collections .collectionsList .coll-item .img .img-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 0.6s ease;
}
.index .collections .collectionsList .coll-item .name {
  margin-top: 21px;
  font-size: 20px;
  color: #000;
  width: fit-content;
  position: relative;
  transition: margin-left 0.3s ease;
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 隐藏超出部分 */
  text-overflow: ellipsis;
  /* 超出显示省略号 */
}
.index .collections .collectionsList .coll-item .tag {
  margin-top: 6px;
  color: #BDBDBD;
  font-size: 14px;
  transition: margin-left 0.3s ease;
  height: 20px;
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 隐藏超出部分 */
  text-overflow: ellipsis;
  /* 超出显示省略号 */
}
.index .collections .collectionsList .coll-item:hover .img .img-mask {
  transform: scale(1.1);
}
.index .collections .collectionsList .coll-item:hover .name,
.index .collections .collectionsList .coll-item:hover .tag {
  color: #CAA274;
}
.index .collections .mo_collectionsList {
  display: none;
}
.index .customization {
  padding: 92px 0 98px 0;
  background: url(../images/bg/customizationBg.webp) no-repeat center center;
  height: 780px;
  background-size: auto;
  background-position: center top;
}
.index .customization .cus-cont {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
.index .customization .cus-cont .customization-grid {
  width: 625px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: left;
}
.index .customization .cus-cont .customization-grid .list-item {
  position: relative;
  z-index: 1;
  margin-top: -12px;
  padding: 40px 103px;
  display: flex;
  align-items: center;
  height: 124px;
  background: #fff;
  box-shadow: 0px 1px 24px 1px rgba(27, 16, 9, 0.1);
  /* 添加过渡效果 */
  transition: all 0.3s ease;
}
.index .customization .cus-cont .customization-grid .list-item:nth-child(0) {
  margin-top: 0;
}
.index .customization .cus-cont .customization-grid .list-item .iconfont {
  font-size: 48px;
  color: #313131;
  transition: color 0.3s ease;
  /* 单独给字体颜色也加 */
}
.index .customization .cus-cont .customization-grid .list-item .list-con {
  margin-left: 19px;
  display: flex;
  flex-direction: column;
  justify-content: left;
}
.index .customization .cus-cont .customization-grid .list-item .list-con p {
  font-size: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}
.index .customization .cus-cont .customization-grid .list-item .list-con span {
  font-size: 14px;
  transition: color 0.3s ease;
}
.index .customization .cus-cont .customization-grid .active {
  background: #CAA274;
  box-shadow: 0px 1px 24px 1px rgba(27, 16, 9, 0.1);
}
.index .customization .cus-cont .customization-grid .active p,
.index .customization .cus-cont .customization-grid .active span {
  color: #fff;
}
.index .customization .cus-cont .customization-grid .active .iconfont {
  color: #fff;
}
.index .customization .cus-cont .customization-from {
  background: url(../images/bg/customization-from.webp) -3px -3px no-repeat;
  width: 621px;
  height: 400px;
  padding: 50px;
  border-radius: 5px;
  z-index: 2;
  margin-left: -40px;
  margin-top: 30px;
  font-size: 16px;
  /* 添加这一段用于“启用”状态下的视觉反馈 */
  /* 修改 location-group 样式：白色背景 + 固定宽度下拉框 + 无边框 */
}
.index .customization .cus-cont .customization-from .top {
  display: flex;
  gap: 14px;
}
.index .customization .cus-cont .customization-from input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  color: #545454;
}
.index .customization .cus-cont .customization-from select {
  padding: 14px 24px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-size: 12px;
  color: #545454;
}
.index .customization .cus-cont .customization-from .location-input,
.index .customization .cus-cont .customization-from .location-group,
.index .customization .cus-cont .customization-from .mo_location-group {
  display: flex;
  align-items: center;
}
.index .customization .cus-cont .customization-from .location-input span,
.index .customization .cus-cont .customization-from .location-group span,
.index .customization .cus-cont .customization-from .mo_location-group span {
  font-size: 16px;
  margin-right: 10px;
  white-space: nowrap;
  color: #545454;
  flex-shrink: 0;
}
.index .customization .cus-cont .customization-from .location-input {
  margin-bottom: 16px;
  border-radius: 4px;
  height: 55px;
  box-sizing: border-box;
  background: #fff;
}
.index .customization .cus-cont .customization-from .location-input span {
  padding-left: 20px;
  display: flex;
}
.index .customization .cus-cont .customization-from .location-input span i {
  color: #FF0000;
  font-style: normal;
  margin-top: -5px;
  display: block;
}
.index .customization .cus-cont .customization-from .location-group {
  margin-bottom: 31px;
  border-radius: 4px;
  height: 55px;
  box-sizing: border-box;
}
.index .customization .cus-cont .customization-from .location-group select {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  width: 133px;
  background: #fff url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
  background-size: inherit;
}
.index .customization .cus-cont .customization-from .location-group select:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.index .customization .cus-cont .customization-from .location-group .select {
  height: 100%;
  display: flex;
  align-items: center;
  background-size: 12px;
  color: #545454;
  margin-right: 14px;
  padding-left: 20px;
  box-sizing: border-box;
  border-radius: 4px;
}
.index .customization .cus-cont .customization-from .location-group .select:last-child {
  margin-right: 0;
}
.index .customization .cus-cont .customization-from .location-group .map {
  background-color: #fff;
}
.index .customization .cus-cont .customization-from .mo_location-group {
  display: none;
}
.index .customization .cus-cont .customization-from .submitBtn {
  width: 100%;
  padding: 18px;
  background-color: #313131;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}
.index .customization .cus-cont .customization-from .submitBtn:hover {
  background-color: #CAA274;
}
.index .customization .cus-cont .customization-from .error {
  border-color: red;
}
.index .customization .cus-cont .customization-from .error-message {
  color: red;
  font-size: 12px;
  margin-top: -10px;
  margin-bottom: 10px;
  display: none;
}
.index .culturalSpace {
  padding: 92px 0;
}
.index .culturalSpace .w1200 {
  /* 淡出动画 */
  /* 淡入从下往上动画 */
  /* 二级菜单切换：底部展开 */
}
.index .culturalSpace .w1200 .carousel_lists {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list {
  width: 285px;
  display: flex;
  height: 78px;
  gap: 14px;
  cursor: pointer;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list .carousel_item {
  display: flex;
  align-items: center;
  height: 78px;
  width: 100%;
  justify-content: center;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list .carousel_item i {
  font-size: 54px;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list .carousel_item .icon-qiye1 {
  font-size: 46px;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list .carousel_item .icon-xuexiao,
.index .culturalSpace .w1200 .carousel_lists .carousel_list .carousel_item .icon-falvfagui {
  font-size: 40px;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list .carousel_item span {
  margin-left: 14px;
  font-size: 20px;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list .carousel_item i,
.index .culturalSpace .w1200 .carousel_lists .carousel_list .carousel_item span {
  color: #fff;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list:nth-child(1) {
  background: url(../images/culturalSpace/cuit1.webp) no-repeat;
  background-size: 100%;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list:nth-child(2) {
  background: url(../images/culturalSpace/cuit2.webp) no-repeat;
  background-size: 100%;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list:nth-child(3) {
  background: url(../images/culturalSpace/cuit3.webp) no-repeat;
  background-size: 100%;
}
.index .culturalSpace .w1200 .carousel_lists .carousel_list:nth-child(4) {
  background: url(../images/culturalSpace/cuit4.webp) no-repeat;
  background-size: 100%;
}
.index .culturalSpace .w1200 .carousel_lists .active {
  height: 88px;
}
.index .culturalSpace .w1200 .carousel_lists .active span {
  font-weight: bold;
}
.index .culturalSpace .w1200 .carousel_lists_mo {
  display: none;
}
.index .culturalSpace .w1200 .carousel {
  margin-top: 50px;
  position: relative;
  width: 100%;
  height: 664px;
  perspective: 100%;
  overflow: hidden;
  /* 二级菜单切换：底部展开，从下往下 */
}
.index .culturalSpace .w1200 .carousel .swiper {
  height: 100%;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-wrapper .swiper-slide .wenactive {
  cursor: pointer;
  position: absolute;
  bottom: 80px;
  left: 50%;
  opacity: 1;
  transition: transform 1s ease;
  transform: translateX(-50%);
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 9px 5px;
  background-color: rgba(202, 162, 116, 0.6);
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-wrapper .swiper-slide .wenactive img {
  width: 100%;
  height: 100%;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-wrapper .swiper-slide .wenactive:hover {
  transform: translateX(-50%) translateY(-30px);
  transition: all 0.5s ease;
  /* 覆盖为 0.5s */
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-wrapper .swiper-slide .wenactive:hover + .wentext {
  opacity: 1;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-wrapper .swiper-slide .wentext {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #fff;
  transition: opacity 0.5s ease;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-wrapper .swiper-slide-active .wentext {
  opacity: 0;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-pagination {
  bottom: 20px;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #fff;
  opacity: 0.3;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.index .culturalSpace .w1200 .carousel .swiper .swiper-button-next,
.index .culturalSpace .w1200 .carousel .swiper .swiper-button-prev {
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.index .culturalSpace .w1200 .carousel .swiper:hover .swiper-button-prev,
.index .culturalSpace .w1200 .carousel .swiper:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}
.index .culturalSpace .w1200 .carousel .swiper.expand-enter {
  animation: fadeOut 1s forwards;
}
.index .culturalSpace .w1200 .carousel .swiper.expand-enter.expand-enter-active {
  animation: fadeIn 1s forwards;
}
.index .culturalSpace .w1200 .fade-out {
  animation: fadeOut 1s forwards;
}
.index .culturalSpace .w1200 .fade-up.show {
  animation: fadeIn 1s forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(50px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.index .culturalSpace .w1200 .carousel.expand-enter {
  height: 0;
  opacity: 0;
  transform: translateY(100%);
}
.index .culturalSpace .w1200 .carousel.expand-enter.expand-enter-active {
  height: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}
.index .culturalSpace .w1200 .carousel_ul {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.index .culturalSpace .w1200 .carousel_ul li {
  height: 36px;
  line-height: 36px;
  width: 117px;
  text-align: center;
  margin: 0 20px;
  font-size: 16px;
  cursor: pointer;
}
.index .culturalSpace .w1200 .carousel_ul em {
  height: 36px;
  width: 1px;
  background-color: #313131;
}
.index .culturalSpace .w1200 .carousel_ul .active {
  color: #fff;
  border-radius: 18px;
  background: #313131;
}
.index .imformation .w1200 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index .imformation .w1200 .more {
  margin-bottom: 134px;
}
.index .imformation .imf-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 65px;
  margin: 80px 0;
}
.index .imformation .imf-content .imf-left {
  width: 590px;
}
.index .imformation .imf-content .imf-left img {
  width: 100%;
  height: 361px;
}
.index .imformation .imf-content .imf-left .content {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  display: block;
}
.index .imformation .imf-content .imf-left .content .time {
  color: #545454;
  font-size: 14px;
}
.index .imformation .imf-content .imf-left .content .title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 22px;
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 隐藏超出部分 */
  text-overflow: ellipsis;
  /* 超出显示省略号 */
}
.index .imformation .imf-content .imf-left .content .con {
  font-size: 16px;
  color: #545454;
  margin-top: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制最多显示2行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index .imformation .imf-content .imf-left:hover .content .title {
  color: #CAA274;
  font-weight: bold;
}
.index .imformation .imf-content .imf-right {
  width: 545px;
}
.index .imformation .imf-content .imf-right li {
  position: relative;
  padding: 33.5px 19px;
  overflow: hidden;
}
.index .imformation .imf-content .imf-right li::before,
.index .imformation .imf-content .imf-right li::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 0;
  border-top: 1px solid #EEEEEE;
}
.index .imformation .imf-content .imf-right li::before {
  top: 0;
  left: 0;
}
.index .imformation .imf-content .imf-right li::after {
  bottom: 0;
  right: 0;
}
.index .imformation .imf-content .imf-right li a {
  border-top: 1px;
  display: block;
}
.index .imformation .imf-content .imf-right li a .time {
  color: #545454;
  font-size: 14px;
}
.index .imformation .imf-content .imf-right li a .title {
  font-size: 18px;
  margin-top: 14px;
  color: #171614;
  /* 省略号相关属性 */
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 超出隐藏 */
  text-overflow: ellipsis;
  /* 超出显示省略号 */
}
.index .imformation .imf-content .imf-right li a .con {
  font-size: 14px;
  color: #545454;
  margin-top: 19px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制最多显示2行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index .imformation .imf-content .imf-right li:hover {
  background: rgba(255, 255, 255, 0.7) url(../images/list/list5_b1.png) no-repeat;
  background-position: right 8px top 8px;
}
.index .imformation .imf-content .imf-right li:hover .title {
  color: #CAA274;
  font-weight: bold;
}
.index .imformation .mo_imf-content {
  display: none;
}
.index .page-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1665px;
  background: url(../images/bg/Information-index.webp) no-repeat center center;
  background-position: center bottom;
  background-size: auto;
}
.index .imformation,
.index .culturalSpace {
  z-index: 9;
  position: sticky;
}
.collections .banner {
  width: 100%;
  background: url(../images/bg/list1.webp) no-repeat center center;
  background-size: auto;
  background-position: center top;
  height: 600px;
}
.collections .breadcrumb .w1200 {
  padding: 0.05rem 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  color: #545454;
}
.collections .breadcrumb .w1200 .iconfont {
  color: #646464;
  margin-right: 5px;
  font-size: 22px;
}
.collections .breadcrumb .w1200 span {
  margin: 0 5px;
}
.collections .coll-cont .w1200 .tabs {
  display: flex;
  justify-content: center;
}
.collections .coll-cont .w1200 .tabs .swiper-wrapper {
  justify-content: center;
}
.collections .coll-cont .w1200 .tabs .swiper-wrapper .swiper-slide {
  width: 20%;
  padding: 0.03rem 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  cursor: pointer;
}
.collections .coll-cont .w1200 .tabs .swiper-wrapper .swiper-slide a {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.collections .coll-cont .w1200 .tabs .swiper-wrapper .swiper-slide i {
  font-size: 65px;
}
.collections .coll-cont .w1200 .tabs .swiper-wrapper .swiper-slide span {
  font-size: 20px;
}
.collections .coll-cont .w1200 .tabs .swiper-wrapper .swiper-slide:hover i,
.collections .coll-cont .w1200 .tabs .swiper-wrapper .swiper-slide:hover span {
  color: #CAA274;
}
.collections .coll-cont .w1200 .tabs .swiper-wrapper .active i,
.collections .coll-cont .w1200 .tabs .swiper-wrapper .active span {
  color: #CAA274;
}
.collections .coll-cont .w1200 .general {
  display: block;
  margin-bottom: 78px;
}
.collections .coll-cont .w1200 .general .collections-List {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 324px;
  gap: 17px;
  margin-top: 65px;
}
.collections .coll-cont .w1200 .general .collections-List .coll-item {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.collections .coll-cont .w1200 .general .collections-List .coll-item .img {
  display: block;
  width: 100%;
  height: 262px;
  overflow: hidden;
}
.collections .coll-cont .w1200 .general .collections-List .coll-item .img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collections .coll-cont .w1200 .general .collections-List .coll-item:nth-child(1) .img {
  width: 100%;
  height: 100%;
}
.collections .coll-cont .w1200 .general .collections-List .coll-item .name {
  font-size: 20px;
  position: relative;
  color: #000;
}
.collections .coll-cont .w1200 .general .collections-List .coll-item .tag {
  color: #BDBDBD;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collections .coll-cont .w1200 .general .collections-List .coll-item:hover img {
  transform: scale(1.1);
}
.collections .coll-cont .w1200 .general .collections-List .coll-item:hover .name,
.collections .coll-cont .w1200 .general .collections-List .coll-item:hover .tag {
  color: #CAA274;
}
.collections .coll-cont .w1200 .general .collections-List .coll-item.big {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}
.collections .coll-cont .w1200 .general .collections-List .coll-item.big img {
  height: 100%;
}
.collections .coll-cont .w1200 .space {
  display: none;
  margin-bottom: 80px;
  /* 淡出动画 */
  /* 淡入从下往上动画 */
  /* 二级菜单切换：底部展开 */
}
.collections .coll-cont .w1200 .space .space_mo {
  display: none;
}
.collections .coll-cont .w1200 .space .carousel_lists {
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list {
  width: 285px;
  display: flex;
  height: 78px;
  gap: 14px;
  cursor: pointer;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list .carousel_item {
  display: flex;
  align-items: center;
  height: 78px;
  justify-content: center;
  width: 100%;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list .carousel_item i {
  font-size: 54px;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list .carousel_item .icon-qiye1 {
  font-size: 46px;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list .carousel_item .icon-xuexiao,
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list .carousel_item .icon-falvfagui {
  font-size: 40px;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list .carousel_item span {
  font-size: 20px;
  margin-left: 14px;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list .carousel_item i,
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list .carousel_item span {
  color: #fff;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list:nth-child(1) {
  background: url(../images/culturalSpace/cuit1.png) no-repeat;
  background-size: 100%;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list:nth-child(2) {
  background: url(../images/culturalSpace/cuit2.png) no-repeat;
  background-size: 100%;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list:nth-child(3) {
  background: url(../images/culturalSpace/cuit3.png) no-repeat;
  background-size: 100%;
}
.collections .coll-cont .w1200 .space .carousel_lists .carousel_list:nth-child(4) {
  background: url(../images/culturalSpace/cuit4.png) no-repeat;
  background-size: 100%;
}
.collections .coll-cont .w1200 .space .carousel_lists .active {
  height: 88px;
}
.collections .coll-cont .w1200 .space .carousel_lists .active span {
  font-weight: bold;
}
.collections .coll-cont .w1200 .space .carousel {
  margin-top: 50px;
  position: relative;
  width: 100%;
  height: 664px;
  perspective: 100%;
  overflow: hidden;
}
.collections .coll-cont .w1200 .space .carousel .swiper {
  height: 100%;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-wrapper .swiper-slide .wenactive {
  cursor: pointer;
  position: absolute;
  bottom: 80px;
  left: 50%;
  opacity: 1;
  transition: transform 1s ease;
  transform: translateX(-50%);
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 9px 5px;
  background-color: rgba(202, 162, 116, 0.6);
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-wrapper .swiper-slide .wenactive img {
  width: 100%;
  height: 100%;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-wrapper .swiper-slide .wenactive:hover {
  transform: translateX(-50%) translateY(-30px);
  transition: all 0.5s ease;
  /* 覆盖为 0.5s */
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-wrapper .swiper-slide .wenactive:hover + .wentext {
  opacity: 1;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-wrapper .swiper-slide .wentext {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #fff;
  transition: opacity 0.5s ease;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-wrapper .swiper-slide-active .wentext {
  opacity: 0;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-pagination {
  bottom: 20px;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #fff;
  opacity: 0.3;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-button-next,
.collections .coll-cont .w1200 .space .carousel .swiper .swiper-button-prev {
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.collections .coll-cont .w1200 .space .carousel .swiper:hover .swiper-button-prev,
.collections .coll-cont .w1200 .space .carousel .swiper:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}
.collections .coll-cont .w1200 .space .carousel .swiper.expand-enter {
  animation: fadeOut 1s forwards;
}
.collections .coll-cont .w1200 .space .carousel .swiper.expand-enter.expand-enter-active {
  animation: fadeIn 1s forwards;
}
.collections .coll-cont .w1200 .space .fade-out {
  animation: fadeOut 1s forwards;
}
.collections .coll-cont .w1200 .space .fade-up.show {
  animation: fadeIn 1s forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(50px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.collections .coll-cont .w1200 .space .carousel.expand-enter {
  height: 0;
  opacity: 0;
  transform: translateY(100%);
}
.collections .coll-cont .w1200 .space .carousel.expand-enter.expand-enter-active {
  height: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}
.collections .coll-cont .w1200 .space .carousel_ul {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.collections .coll-cont .w1200 .space .carousel_ul li {
  height: 36px;
  line-height: 36px;
  width: 117px;
  text-align: center;
  margin: 0 20px;
  font-size: 16px;
  cursor: pointer;
}
.collections .coll-cont .w1200 .space .carousel_ul em {
  height: 36px;
  width: 1px;
  background-color: #313131;
}
.collections .coll-cont .w1200 .space .carousel_ul .active {
  color: #fff;
  border-radius: 18px;
  background: #313131;
}
.collections .coll-cont .w1200 .more,
.collections .coll-cont .w1200 .nomore {
  margin: 0 0 78px 0;
  text-align: center;
  font-size: 16px;
  color: #545454;
  display: none;
}
.collections .coll-cont .w1200 .pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  margin: 110px 0 110px 0;
}
.collections .coll-cont .w1200 .pagination li span {
  width: 41px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  display: block;
  border-radius: 5px;
  color: #171614;
  text-decoration: none;
  font-size: 16px;
}
.collections .coll-cont .w1200 .pagination li span a {
  width: 100%;
  height: 100%;
}
.collections .coll-cont .w1200 .pagination li span.ellipsis {
  padding: 6px 10px;
  color: #999;
}
.collections .coll-cont .w1200 .pagination .active span {
  background: #313131;
  color: #fff;
}
.collections .coll-cont .w1200 .pagination .first,
.collections .coll-cont .w1200 .pagination .last {
  padding: 6px 12px;
  border-radius: 4px;
  color: #171614;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
.collections .coll-cont .w1200 .pagination .first span,
.collections .coll-cont .w1200 .pagination .last span {
  width: 100%;
  height: 100%;
  line-height: 100%;
}
.collections .coll-cont .w1200 .pagination .disabled {
  color: #C6CAD1;
}
.collections .coll-cont .w1200 .pagination .goto {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #171614;
}
.collections .coll-cont .w1200 .pagination .goto input {
  width: 66.5px;
  height: 40.5pxpx;
  line-height: 40.5px;
  border: 1px solid #E5E5E5;
  background: none;
  border-radius: 4px;
  text-align: center;
  margin: 0 8px;
}
.collections .coll-cont .w1200 .pagination .goto button {
  padding: 4px 10px;
  background: #CAA274;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.collections .coll-cont .w1200 .pagination .goto button:hover {
  background: #b58950;
}
.collections-keys .coll-cont .w1200 .general {
  display: block;
  margin-bottom: 78px;
}
.collections-keys .coll-cont .w1200 .general .collections-List {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 324px;
  gap: 17px;
  margin-top: 65px;
}
.collections-keys .coll-cont .w1200 .general .collections-List .coll-item {
  width: 100% !important;
  height: 100% !important;
  box-sizing: border-box;
  overflow: hidden;
}
.collections-keys .coll-cont .w1200 .general .collections-List .coll-item:nth-child(1) {
  width: 100%;
  height: 100%;
}
.collections-keys .coll-cont .w1200 .general .collections-List .coll-item .img {
  display: block;
  width: 100% !important;
  height: 262px !important;
  overflow: hidden;
}
.collections-keys .coll-cont .w1200 .general .collections-List .coll-item .img img {
  transition: transform 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collections-keys .coll-cont .w1200 .general .collections-List .coll-item .name {
  font-size: 20px;
  position: relative;
  color: #000;
}
.collections-keys .coll-cont .w1200 .general .collections-List .coll-item .tag {
  color: #BDBDBD;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collections-keys .coll-cont .w1200 .general .collections-List .coll-item:hover img {
  transform: scale(1.1);
}
.collections-keys .coll-cont .w1200 .more,
.collections-keys .coll-cont .w1200 .nomore {
  margin: 0 0 78px 0;
  text-align: center;
  font-size: 16px;
  color: #545454;
  display: none;
}
.collections-keys .coll-cont .w1200 .pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  margin: 110px 0 110px 0;
}
.collections-keys .coll-cont .w1200 .pagination li span {
  width: 41px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  display: block;
  border-radius: 5px;
  color: #171614;
  text-decoration: none;
  font-size: 16px;
}
.collections-keys .coll-cont .w1200 .pagination li span a {
  width: 100%;
  height: 100%;
}
.collections-keys .coll-cont .w1200 .pagination li span.ellipsis {
  padding: 6px 10px;
  color: #999;
}
.collections-keys .coll-cont .w1200 .pagination .active span {
  background: #313131;
  color: #fff;
}
.collections-keys .coll-cont .w1200 .pagination .first,
.collections-keys .coll-cont .w1200 .pagination .last {
  padding: 6px 12px;
  border-radius: 4px;
  color: #171614;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
.collections-keys .coll-cont .w1200 .pagination .first span,
.collections-keys .coll-cont .w1200 .pagination .last span {
  width: 100%;
  height: 100%;
  line-height: 100%;
}
.collections-keys .coll-cont .w1200 .pagination .disabled {
  color: #C6CAD1;
}
.collections-keys .coll-cont .w1200 .pagination .goto {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #171614;
}
.collections-keys .coll-cont .w1200 .pagination .goto input {
  width: 66.5px;
  height: 40.5pxpx;
  line-height: 40.5px;
  border: 1px solid #E5E5E5;
  background: none;
  border-radius: 4px;
  text-align: center;
  margin: 0 8px;
}
.collections-keys .coll-cont .w1200 .pagination .goto button {
  padding: 4px 10px;
  background: #CAA274;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.collections-keys .coll-cont .w1200 .pagination .goto button:hover {
  background: #b58950;
}
.collections-detail .breadcrumb {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  color: #545454;
  margin: 20px 0;
}
.collections-detail .breadcrumb i {
  margin-right: 8px;
  color: #646464;
  font-size: 22px;
}
.collections-detail .breadcrumb span {
  margin: 0 2px;
}
.collections-detail .commodity {
  background: url(../images/bg/detail.webp) no-repeat center center;
  background-size: auto;
  background-position: center top;
  height: 702px;
  padding: 70px 0;
}
.collections-detail .commodity .w1200 {
  display: flex;
  gap: 20px;
  /* 左侧缩略图区域 */
  /* 中间主图区域 */
  /* 右侧产品信息区域 */
}
.collections-detail .commodity .w1200 .thumbnail-section {
  min-width: 80px;
  height: 530px;
  /* 6个图+5个gap，570px改为合适高度 */
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.collections-detail .commodity .w1200 .thumbnail-section .thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}
.collections-detail .commodity .w1200 .thumbnail-section .thumbnail-item {
  width: 80px;
  height: 80px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.collections-detail .commodity .w1200 .thumbnail-section .thumbnail-item:hover {
  opacity: 1;
  border: 1px solid #313131;
  padding: 3px;
}
.collections-detail .commodity .w1200 .thumbnail-section .thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collections-detail .commodity .w1200 .thumbnail-section .active {
  opacity: 1;
  border: 1px solid #313131;
  padding: 3px;
}
.collections-detail .commodity .w1200 .thumbnail-section .btn-prev,
.collections-detail .commodity .w1200 .thumbnail-section .btn-next {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  text-align: center;
}
.collections-detail .commodity .w1200 .thumbnail-section .btn-prev {
  top: 0;
  background: linear-gradient(180deg, #fff, #fff 50%, hsla(0, 0%, 100%, 0));
}
.collections-detail .commodity .w1200 .thumbnail-section .btn-next {
  bottom: 0;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), #fff 50%, #fff);
}
.collections-detail .commodity .w1200 .thumbnail-section .nav-btn {
  background: #FDFCF8;
  border: 1px solid #E1E1E1;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}
.collections-detail .commodity .w1200 .thumbnail-section .nav-btn i {
  font-size: 12px;
}
.collections-detail .commodity .w1200 .thumbnail-section .nav-btn:hover {
  background-color: #f0f0f0;
  border-color: #d4a574;
}
.collections-detail .commodity .w1200 .thumbnail-section .nav-btn:disabled {
  opacity: 0;
  cursor: not-allowed;
}
.collections-detail .commodity .w1200 .main-image-section {
  width: 530px;
  height: 530px;
  position: relative;
  flex: none;
}
.collections-detail .commodity .w1200 .main-image-section .zoom-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.collections-detail .commodity .w1200 .main-image-section .zoom-container .main-image {
  width: 100%;
  height: 100%;
  object-position: center;
  /* 居中对齐 */
  cursor: crosshair;
  transition: transform 0.3s ease;
}
.collections-detail .commodity .w1200 .main-image-section .zoom-container .zoom-lens {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  width: 200px;
  height: 300px;
  display: none;
  pointer-events: none;
}
.collections-detail .commodity .w1200 .main-image-section .zoom-container .zoom-result {
  position: absolute;
  right: -355px;
  top: 0;
  min-width: 350px;
  height: 530px;
  background: white;
  overflow: hidden;
  display: none;
  z-index: 1000;
}
.collections-detail .commodity .w1200 .main-image-section .zoom-container .zoom-result img {
  position: absolute;
  max-width: none;
  max-height: none;
}
.collections-detail .commodity .w1200 .mo_main-image {
  display: none;
}
.collections-detail .commodity .w1200 .product-info {
  padding: 0 20px;
  flex: auto;
}
.collections-detail .commodity .w1200 .product-info hr {
  height: 1px;
  margin: 20px 0;
  width: 100%;
  background-color: #EEEEEE;
}
.collections-detail .commodity .w1200 .product-info .product-title {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}
.collections-detail .commodity .w1200 .product-info .product-price {
  color: #313131;
  margin: 5px 0;
}
.collections-detail .commodity .w1200 .product-info .product-price .price-symbol {
  font-size: 24px;
}
.collections-detail .commodity .w1200 .product-info .product-price .price-symbol em {
  font-size: 16px;
}
.collections-detail .commodity .w1200 .product-info .product-price .btn-secondary,
.collections-detail .commodity .w1200 .product-info .product-price .share-box {
  display: none;
}
.collections-detail .commodity .w1200 .product-info .action-buttons {
  display: flex;
  gap: 10px;
}
.collections-detail .commodity .w1200 .product-info .action-buttons .btn-primary {
  width: 154px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background: url(../images/list/detail1.png) no-repeat;
  background-size: 100% 100%;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}
.collections-detail .commodity .w1200 .product-info .action-buttons .btn-secondary {
  position: relative;
  width: 154px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  color: #313131;
  background: none;
}
.collections-detail .commodity .w1200 .product-info .action-buttons .btn-secondary i {
  margin-right: 6px;
}
.collections-detail .commodity .w1200 .product-info .action-buttons .share-box {
  display: none;
  position: absolute;
  top: 50px;
  width: 148px;
  height: 228px;
  background: #fff;
  box-shadow: 0px 1px 14px 1px rgba(27, 16, 9, 0.3);
  border-radius: 5px;
}
.collections-detail .commodity .w1200 .product-info .action-buttons .share-box ul {
  padding: 26px 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.collections-detail .commodity .w1200 .product-info .action-buttons .share-box ul::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.collections-detail .commodity .w1200 .product-info .action-buttons .share-box ul li {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #313131;
  font-size: 15px;
  padding: 0 21px;
}
.collections-detail .commodity .w1200 .product-info .action-buttons .share-box ul li svg {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.collections-detail .commodity .w1200 .product-info .product-box {
  margin: 35px 0;
}
.collections-detail .commodity .w1200 .product-info .product-box .product-description {
  font-size: 14px;
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* 限制显示4行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collections-detail .commodity .w1200 .product-info .product-specs {
  font-size: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 两列 */
  column-gap: 40px;
  /* 左右列间距 */
}
.collections-detail .commodity .w1200 .product-info .product-specs .spec-row {
  display: flex;
  margin-bottom: 12px;
  padding-bottom: 8px;
  break-inside: avoid;
  /* 避免被拆开到两列 */
}
.collections-detail .commodity .w1200 .product-info .product-specs .spec-row .spec-label {
  margin-right: 40px;
}
.collections-detail .modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 50%;
  top: 15%;
  width: 625px;
  height: 518px;
  border-radius: 10px;
  transform: translateX(-50%);
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 1px 24px 1px rgba(27, 16, 9, 0.1);
}
.collections-detail .modal .modal-content {
  width: 100%;
  height: 100%;
  padding: 20px 60px;
  position: relative;
}
.collections-detail .modal .modal-content h3 {
  margin-top: 0;
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}
.collections-detail .modal .modal-content .close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
}
.collections-detail .modal .modal-content .form-group {
  background-color: #FFFFFF;
  margin-bottom: 12px;
  padding: 0;
  border: 1px solid #E5E5E5;
  height: 55px;
}
.collections-detail .modal .modal-content .form-group input {
  width: 100%;
  padding: 19px;
}
.collections-detail .modal .modal-content .form-group select {
  flex: 1;
  padding: 19px 0;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  min-width: 100px;
}
.collections-detail .modal .modal-content .form-group .location-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.collections-detail .modal .modal-content .form-group span {
  padding: 0 20px;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
}
.collections-detail .modal .modal-content .form-group span em {
  width: 100px;
  font-size: 14px;
  color: #545454;
}
.collections-detail .modal .modal-content .form-group span select {
  border: none;
}
.collections-detail .modal .modal-content .form-group .iconfont {
  font-size: 13px;
  color: #313131;
  cursor: pointer;
}
.collections-detail .modal .modal-content .form-group:nth-child(4),
.collections-detail .modal .modal-content .form-group:nth-child(5) {
  border: none;
}
.collections-detail .modal .modal-content .btn-primary {
  width: 100%;
  padding: 10px;
  background-color: #d4a574;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.collections-detail .modal .modal-content .btn-primary:hover {
  background-color: #c09050;
}
.collections-detail .recommendations {
  padding: 100px 0;
}
.collections-detail .recommendations .recommendations-title {
  font-size: 20px;
  margin-bottom: 35px;
  color: #000;
}
.collections-detail .recommendations .recommendations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}
.collections-detail .recommendations .recommendations-grid .recommendation-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.collections-detail .recommendations .recommendations-grid .recommendation-item .recommendation-image {
  width: 100%;
  height: 262px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}
.collections-detail .recommendations .recommendations-grid .recommendation-item .recommendation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.collections-detail .recommendations .recommendations-grid .recommendation-item .recommendation-image img:hover {
  transform: scale(1.05);
}
.collections-detail .recommendations .recommendations-grid .recommendation-item .recommendation-title {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 8px;
}
.collections-detail .recommendations .recommendations-grid .recommendation-item .recommendation-subtitle {
  font-size: 14px;
  color: #BDBDBD;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.collections-detail .footerBuy {
  display: none;
}
.collections-detail .detail {
  background-color: #fff;
  padding: 0.2rem 0;
}
.collections-detail .detail .w1200 {
  display: flex;
}
.collections-detail .detail .w1200 .detail-left {
  display: flex;
}
.collections-detail .detail .w1200 .detail-left .detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: hidden;
  margin-right: 20px;
  height: 516px;
}
.collections-detail .detail .w1200 .detail-left .detail-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  margin-bottom: 10px;
  cursor: pointer;
  border: 1px solid red;
}
.collections-detail .detail .w1200 .detail-left .bigImg {
  width: 516px;
  height: 516px;
  border: 1px solid red;
  object-fit: cover;
}
.collections-detail .detail .w1200 .list {
  flex: 1;
  padding-left: 0.2rem;
}
.collections-detail .detail .w1200 .list li {
  border-bottom: 1px solid #ccc;
  padding: 0.1rem 0;
}
.collections-detail .detail .w1200 .list li .price {
  font-size: 0.09rem;
}
.collections-detail .detail .w1200 .list li .fun {
  display: flex;
  margin-top: 0.06rem;
  position: relative;
}
.collections-detail .detail .w1200 .list li .fun .purchase,
.collections-detail .detail .w1200 .list li .fun .share {
  font-size: 0.07rem;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.collections-detail .detail .w1200 .list li .fun .iconfont {
  font-size: 16px;
  margin-right: 0.02rem;
}
.collections-detail .detail .w1200 .list li .fun .share-item {
  position: absolute;
  left: 130px;
  top: 36px;
  width: 200px;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.collections-detail .detail .w1200 .list .title {
  font-size: 0.08rem;
}
.collections-detail .detail .w1200 .list .brief {
  font-size: 0.06rem;
  line-height: 1.6;
}
.wechatQrModal {
  display: none;
  position: fixed;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  z-index: 9999;
}
.wechatQrModal .title {
  display: flex;
  justify-content: flex-end;
}
.wechatQrModal .title button {
  background: none;
  cursor: pointer;
}
.wechatQrModal .title i {
  font-size: 12px;
  color: #313131;
}
.wechatQrModal #wechatQrCode {
  width: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wechatQrModal p {
  font-size: 12px;
  text-align: left;
  line-height: 22px;
  color: #313131;
}
.information {
  position: relative;
}
.information .banner {
  width: 100%;
  background: url(../images/bg/list2.webp) no-repeat center center;
  background-size: auto;
  background-position: center top;
  height: 600px;
}
.information .breadcrumb .w1200 {
  padding: 0.05rem 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  color: #545454;
}
.information .breadcrumb .w1200 .iconfont {
  color: #646464;
  margin-right: 5px;
  font-size: 22px;
}
.information .breadcrumb .w1200 span {
  margin: 0 5px;
}
.information .coll-cont {
  margin: 0.1rem 0;
}
.information .coll-cont .w1200 .tabs {
  display: flex;
}
.information .coll-cont .w1200 .tabs li {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  width: 176px;
  padding: 7px 0;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.information .coll-cont .w1200 .tabs li::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 22px;
  background-size: contain;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.05as ease;
  will-change: transform;
}
.information .coll-cont .w1200 .tabs .active {
  font-weight: bold;
  color: #CAA274;
}
.information .coll-cont .w1200 .tabs .active::after {
  background: url(../images/list/list1-1.png) center no-repeat;
  transform: scaleX(1);
}
.information .coll-cont .w1200 .news {
  margin-top: 50px;
  border-bottom: 1px solid #ccc;
}
.information .coll-cont .w1200 .news .swiper {
  height: 400px;
}
.information .coll-cont .w1200 .news .swiper .swiper-pagination {
  bottom: 50px;
}
.information .coll-cont .w1200 .news .swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 8px;
}
.information .coll-cont .w1200 .news .swiper .swiper-pagination-bullet-active {
  background: #333;
}
.information .coll-cont .w1200 .news .swiper-slide {
  display: flex;
  justify-content: space-between;
  height: 284px;
}
.information .coll-cont .w1200 .news .swiper-slide img {
  width: 485px;
  height: 100%;
}
.information .coll-cont .w1200 .news .swiper-slide .con {
  padding: 21px 38px;
  flex: auto;
}
.information .coll-cont .w1200 .news .swiper-slide .con .title {
  font-size: 22px;
  color: #171614;
  font-weight: bold;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出内容 */
  text-overflow: ellipsis;
  /* 超出部分显示省略号 */
}
.information .coll-cont .w1200 .news .swiper-slide .con .tag {
  font-size: 16px;
  color: #545454;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出内容 */
  text-overflow: ellipsis;
  /* 超出部分显示省略号 */
  margin-bottom: 0.07rem;
}
.information .coll-cont .w1200 .news .swiper-slide .con .gonn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.information .coll-cont .w1200 .news .swiper-slide .con .gonn .time {
  font-size: 16px;
  color: #545454;
}
.information .coll-cont .w1200 .news .swiper-slide .con .gonn .more {
  cursor: pointer;
  font-size: 14px;
  width: 156px;
  height: 52px;
  border-radius: 26px;
  background-color: #313131;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.05rem 0 0.1rem;
  margin: 0;
  transition: background-color 0.3s ease;
}
.information .coll-cont .w1200 .news .swiper-slide .con .gonn .more span {
  color: #fff;
}
.information .coll-cont .w1200 .news .swiper-slide .con .gonn .more .iconfont {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 22px;
  border-radius: 20px;
  background-color: #fff;
  color: #313131;
}
.information .coll-cont .w1200 .news .swiper-slide .con .gonn .active {
  background-color: #CAA274;
}
.information .coll-cont .w1200 .news .swiper-slide .con .gonn .active span {
  color: #fff;
}
.information .coll-cont .w1200 .news .swiper-slide .con .gonn .active .iconfont {
  background-color: #fff;
  color: #333;
}
.information .coll-cont .news-list {
  height: 295px;
  transition: background-color 0.3s ease;
  padding: 52px 0;
}
.information .coll-cont .news-list:nth-child(1) .w1200 img:nth-child(1) {
  display: none;
}
.information .coll-cont .news-list .w1200 {
  display: flex;
  justify-content: space-between;
  position: relative;
  transition: background 0.5s ease;
}
.information .coll-cont .news-list .w1200 img {
  width: 390px;
  height: 191px;
  object-fit: cover;
}
.information .coll-cont .news-list .w1200 .con {
  width: calc(100% - 410px);
  transition: transform 0.5s ease, width 0.5s ease;
}
.information .coll-cont .news-list .w1200 .con .title {
  font-size: 18px;
  color: #171614;
  font-weight: bold;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.information .coll-cont .news-list .w1200 .con .tag {
  font-size: 14px;
  color: #545454;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 14px;
}
.information .coll-cont .news-list .w1200 .con .gonn {
  font-size: 14px;
  color: #545454;
}
.information .coll-cont .news-list.active {
  background-color: rgba(255, 255, 255, 0.7);
}
.information .coll-cont .news-list.active .w1200 {
  background: url(../images/list/list5_b2.png) 0 0 no-repeat;
}
.information .coll-cont .news-list.active .w1200 .con {
  transform: translateX(0.3rem);
  flex: none;
  width: calc(100% - 410px - 0.3rem);
}
.information .coll-cont .news-list.active .w1200 .con .title {
  color: #CAA274;
  font-weight: bold;
}
.information .coll-cont .more,
.information .coll-cont .nomore {
  margin: 78px 0;
  text-align: center;
  font-size: 16px;
  color: #545454;
  display: none;
}
.information .coll-cont .pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  margin: 110px 0 110px 0;
}
.information .coll-cont .pagination li span {
  width: 41px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  display: block;
  border-radius: 5px;
  color: #171614;
  text-decoration: none;
  font-size: 16px;
}
.information .coll-cont .pagination li span a {
  width: 100%;
  height: 100%;
}
.information .coll-cont .pagination li span.ellipsis {
  padding: 6px 10px;
  color: #999;
}
.information .coll-cont .pagination .active span {
  background: #313131;
  color: #fff;
}
.information .coll-cont .pagination .first,
.information .coll-cont .pagination .last {
  padding: 6px 12px;
  border-radius: 4px;
  color: #171614;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
.information .coll-cont .pagination .first span,
.information .coll-cont .pagination .last span {
  width: 100%;
  height: 100%;
  line-height: 100%;
}
.information .coll-cont .pagination .disabled {
  color: #C6CAD1;
}
.information .coll-cont .pagination .goto {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #171614;
}
.information .coll-cont .pagination .goto input {
  width: 66.5px;
  height: 40.5px;
  line-height: 40.5px;
  border: 1px solid #E5E5E5;
  background: none;
  border-radius: 4px;
  text-align: center;
  margin: 0 8px;
}
.information .coll-cont .pagination .goto button {
  padding: 4px 10px;
  background: #CAA274;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
.information .coll-cont .pagination .goto button:hover {
  background: #b58950;
}
.information .page-bg1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 600px;
  height: 686px;
  background: url(../images/bg/collections-index.webp) no-repeat center center;
  background-position: center bottom;
  background-size: auto;
}
.information .page-bg2 {
  position: absolute;
  right: 109px;
  top: 714px;
  width: 212px;
  height: 146px;
  background: url(../images/bg/bird.webp) no-repeat center center;
  background-position: center bottom;
  background-size: auto;
}
.information .page-bg3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1665px;
  background: url(../images/bg/Information-index.webp) no-repeat center center;
  background-position: center bottom;
  background-size: auto;
}
.information .banner,
.information .breadcrumb,
.information .coll-cont,
.information .empty {
  z-index: 9;
  position: sticky;
}
.information_detail .w1200 .detail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.information_detail .w1200 .detail-top .goList {
  cursor: pointer;
  padding-left: 0.05rem;
  display: flex;
  align-items: center;
  width: 157px;
  height: 45px;
  border-radius: 26px;
  border: 1px solid #C9C9C9;
  font-size: 16px;
  color: #3E3E3E;
}
.information_detail .w1200 .detail-top .goList .iconfont {
  font-size: 17px;
  margin-right: 0.05rem;
}
.information_detail .w1200 .detail-top .breadcrumb {
  color: #545454;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.information_detail .w1200 .detail-top .breadcrumb .iconfont {
  color: #646464;
  margin-right: 5px;
  font-size: 22px;
}
.information_detail .w1200 .detail-top .breadcrumb span {
  margin: 0 5px;
}
.information_detail .w1200 .content {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.information_detail .w1200 .content .title {
  font-weight: bold;
  font-size: 24px;
  color: #171614;
}
.information_detail .w1200 .content .time-come {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #646464;
}
.information_detail .w1200 .content .time-come li {
  margin: 0 20px;
}
.information_detail .w1200 .content hr {
  margin: 55px 0;
  width: 100%;
  height: 1px;
  background-color: #EEEEEE;
}
.information_detail .w1200 .content .con {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.information_detail .w1200 .content .con img {
  height: auto;
  margin: 30px 0;
}
.information_detail .w1200 .content .con p,.information_detail .w1200 .content .con h2,.information_detail .w1200 .content .con h3 ,.information_detail .w1200 .content .con section{
  width: 100%;
  font-size: 16px;
  color: #171614;
  line-height: 1.75;
  font-weight: normal;
}
.information_detail .w1200 .content .thumbsUp {
  cursor: pointer;
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}
.information_detail .w1200 .content .thumbsUp .iconfont {
  width: 98px;
  height: 98px;
  line-height: 98px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 36px;
  background-color: #313131;
  transition: transform 0.2s ease;
  position: relative;
}
.information_detail .w1200 .content .thumbsUp .active {
  background-color: #000;
}
.information_detail .w1200 .content .thumbsUp .share-box {
  display: none;
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 148px;
  height: 228px;
  background: #fff;
  box-shadow: 0px 1px 14px 1px rgba(27, 16, 9, 0.3);
  border-radius: 5px;
}
.information_detail .w1200 .content .thumbsUp .share-box ul {
  padding: 26px 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.information_detail .w1200 .content .thumbsUp .share-box ul::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.information_detail .w1200 .content .thumbsUp .share-box ul li {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #313131;
  font-size: 15px;
  padding: 0 21px;
  line-height: normal;
}
.information_detail .w1200 .content .thumbsUp .share-box ul li svg {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.information_detail .w1200 .content .thumbsUp .enlarged {
  transform: scale(1.2);
}
.information_detail .w1200 .content .thumbsUp .shake {
  animation: shake 0.5s ease;
}
.information_detail .w1200 .content .thumbsUp span {
  margin: 0.05rem 0;
  font-size: 0.07rem;
  color: #333;
}
.con a{
  color: initial;
  font-weight: bolder;
  text-decoration: none;
}
.con a:hover{
  color: #ff0000;
  text-decoration: none;
}
@keyframes shake {
  0% {
    transform: translateX(0) scale(1.2);
  }
  25% {
    transform: translateX(-0.05rem) scale(1.2);
  }
  50% {
    transform: translateX(0.05rem) scale(1.2);
  }
  75% {
    transform: translateX(-0.05rem) scale(1.2);
  }
  100% {
    transform: translateX(0) scale(1.2);
  }
}
.nbat {
  position: relative;
}
.nbat .banner {
  width: 100%;
  background: url(../images/bg/list3.webp) no-repeat center center;
  background-size: auto;
  background-position: center top;
  height: 600px;
}
.nbat .breadcrumb .w1200 {
  padding: 0.05rem 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  color: #545454;
}
.nbat .breadcrumb .w1200 .iconfont {
  color: #646464;
  margin-right: 5px;
  font-size: 22px;
}
.nbat .breadcrumb .w1200 span {
  margin: 0 5px;
}
.nbat .ititle {
  width: 1200px;
  margin: 90px auto 73px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nbat .ititle .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 17px;
}
.nbat .ititle .title h2 {
  color: #171614;
  font-size: 30px;
  font-weight: bold;
}
.nbat .nbat-cont .content .w1200 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nbat .nbat-cont .content .w1200 .about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nbat .nbat-cont .content .w1200 .about-text p {
  line-height: 36px;
  color: #171614;
  font-size: 16px;
}
.nbat .nbat-cont .content .w1200 .nbt_img {
  margin: 75px 0 0 0;
  width: 326px;
  height: 227px;
}
.nbat .nbat-cont .content .w1200 .ititle {
  margin: 90px 0 60px;
}
.nbat .nbat-cont .content .w1200 .nbt_nbt3 {
  width: 647px;
  height: 63px;
}
.nbat .nbat-cont .content .w1200 .vertical {
  display: flex;
  flex-direction: row-reverse;
  /* 整列从右向左排列（右边第一列） */
  gap: 60px;
  /* 列间距，可按需调整 */
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: flex-start;
}
.nbat .nbat-cont .content .w1200 .vertical li {
  writing-mode: vertical-rl;
  /* 关键：纵向排版，文字从上到下，列从右到左 */
  text-orientation: upright;
  /* 保持汉字直立（标点会较合理） */
  white-space: nowrap;
  /* 避免自动换行 */
  font-size: 24px;
  /* 字体大小，可调 */
  padding: 23px 0 16px;
  /* 列内上下留白 */
  margin: 0;
  display: block;
  /* 字体/风格（可替换为你喜欢的书法字体） */
  font-family: "FZLanTing", "Microsoft YaHei", sans-serif;
  text-align: center;
  /* 如果想让竖排文字居中 */
}
.nbat .nbat-cont .content .w1200 .core {
  font-size: 24px;
  font-family: "FZLanTing", "Microsoft YaHei", sans-serif;
}
.nbat .more {
  margin: 62px 0 90px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  width: 182px;
  height: 47px;
  border-radius: 24px;
  background-color: #313131;
  color: #fff;
  transition: background-color 0.3s ease;
}
.nbat .more i {
  margin-top: 2px;
  color: #fff;
  margin-left: 14px;
}
.nbat .more:hover {
  background-color: #CAA274;
}
.nbat .page-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1665px;
  background: url(../images/bg/Information-index.webp) no-repeat center center;
  background-position: center bottom;
  background-size: auto;
}
.nbat .page-bg1 {
  position: absolute;
  right: 140px;
  top: 135px;
  width: 365px;
  height: 131px;
  background: url(../images/list/nbt2.webp) no-repeat center center;
  background-position: center bottom;
  background-size: cover;
}
.nbat .page-bg2 {
  position: absolute;
  left: -150px;
  top: 375px;
  width: 365px;
  height: 131px;
  background: url(../images/list/nbt2.webp) no-repeat center center;
  background-position: center bottom;
  background-size: cover;
}
.nbat .nbat-cont {
  z-index: 9;
  position: sticky;
}
.nbat-detail .banner {
  width: 100%;
  background: url(../images/bg/list3.webp) no-repeat center center;
  background-size: auto;
  background-position: center top;
  height: 600px;
}
.nbat-detail .breadcrumb .w1200 {
  padding: 0.05rem 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  color: #545454;
}
.nbat-detail .breadcrumb .w1200 .iconfont {
  color: #646464;
  margin-right: 5px;
  font-size: 22px;
}
.nbat-detail .breadcrumb .w1200 span {
  margin: 0 5px;
}
.nbat-detail .ititle {
  width: 1200px;
  margin: 90px auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nbat-detail .ititle span {
  width: 88px;
  height: 11px;
}
.nbat-detail .ititle .left {
  background: url(../images/list/nbat-left.png) no-repeat;
}
.nbat-detail .ititle .right {
  background: url(../images/list/nbat-right.png) no-repeat;
}
.nbat-detail .ititle .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 17px;
}
.nbat-detail .ititle .title h2 {
  color: #171614;
  font-size: 24px;
  font-weight: bold;
}
.nbat-detail .ititle .title em {
  font-size: 16px;
  color: #D1D1D1;
  font-weight: 400;
}
.nbat-detail .nbat-cont .content .yuzhou {
  width: 100%;
  height: 341px;
  background: url(../images/bg/collections1.webp) no-repeat center center;
  background-size: auto;
  background-position: center top;
}
.nbat-detail .nbat-cont .content .w1200_img {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -341px;
  padding-left: 50px;
}
.nbat-detail .nbat-cont .content .w1200_img .briefIntroduction {
  width: 344px;
}
.nbat-detail .nbat-cont .content .w1200_img .briefIntroduction p {
  margin-top: 25px;
  font-size: 16px;
  color: #171614;
  line-height: 1.9;
  text-align: justify;
  text-justify: inter-ideograph;
}
.nbat-detail .nbat-cont .content .w1200_img .briefIntroduction p:nth-child(1) {
  margin-top: 5px;
}
.nbat-detail .nbat-cont .content .w1200_img .briefIntroduction img {
  display: none;
}
.nbat-detail .nbat-cont .content .w1200_img .img {
  margin-top: 360px;
  width: 774px;
  height: 501px;
  background: url(../images/bg/collections2.webp) no-repeat;
  background-size: cover;
}
.nbat-detail .nbat-cont .content .w1200_con {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nbat-detail .nbat-cont .content .w1200_con h2 {
  margin-top: 80px;
  font-size: 32px;
  color: #171614;
  font-weight: bold;
  height: 69px;
  line-height: 69px;
  background: url(../images/list/nbat.png) center center no-repeat;
}
.nbat-detail .nbat-cont .content .w1200_con .mud,
.nbat-detail .nbat-cont .content .w1200_con .eight,
.nbat-detail .nbat-cont .content .w1200_con .space {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.nbat-detail .nbat-cont .content .w1200_con .title {
  width: 209px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/list/nbat1.png) no-repeat;
  color: #fff;
  font-size: 20px;
  margin: 70px 0 39px 0;
}
.nbat-detail .nbat-cont .content .w1200_con .title span {
  font-size: 24px;
  color: #fff;
  margin-left: -13px;
}
.nbat-detail .nbat-cont .content .w1200_con .eight .title {
  margin: 70px 0 57px 0;
}
.nbat-detail .nbat-cont .content .w1200_con .text {
  color: #171614;
  font-size: 16px;
  line-height: 28px;
}
.nbat-detail .nbat-cont .content .w1200_con .ba_items {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.nbat-detail .nbat-cont .content .w1200_con .ba_items .item {
  width: 271px;
  height: 331px;
  position: relative;
}
.nbat-detail .nbat-cont .content .w1200_con .ba_items .item .title {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 111px;
  height: 35px;
  background-color: #313131;
  font-size: 22px;
  border-radius: 18px;
  margin: 0;
}
.nbat-detail .nbat-cont .content .w1200_con .ba_items .item span {
  display: block;
  margin: 78px 33px 0;
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.nbat-detail .nbat-cont .content .w1200_con .ba_items .item:nth-child(1) {
  background: url(../images/bg/collections3.png) no-repeat;
}
.nbat-detail .nbat-cont .content .w1200_con .ba_items .item:nth-child(2) {
  background: #FDFCF8 url(../images/list/nbat2.webp) no-repeat;
  background-position: right bottom -37px;
}
.nbat-detail .nbat-cont .content .w1200_con .ba_items .item:nth-child(3) {
  background: #FDFCF8 url(../images/list/nbat3.webp) no-repeat;
  background-position: right -132px bottom -43px;
}
.nbat-detail .nbat-cont .content .w1200_con .ba_items .item:nth-child(4) {
  background: #FDFCF8 url(../images/list/nbat4.webp) no-repeat;
  background-position: right -42px bottom -33px;
}
.nbat-detail .nbat-cont .content .w1200_con .subheading {
  color: #171614;
  font-size: 20px;
  margin-top: -26px;
}
.nbat-detail .nbat-cont .content .w1200_con .space_items {
  margin-top: 39px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 12px;
}
.nbat-detail .nbat-cont .content .w1200_con .space_items .space_item {
  width: 598px;
  height: 412px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.nbat-detail .nbat-cont .content .w1200_con .space_items .space_item:nth-child(1) {
  background: url(../images/bg/space1.webp) no-repeat;
  background-size: cover;
}
.nbat-detail .nbat-cont .content .w1200_con .space_items .space_item:nth-child(2) {
  background: url(../images/bg/space2.webp) no-repeat;
  background-size: cover;
}
.nbat-detail .nbat-cont .content .w1200_con .space_items .space_item:nth-child(3) {
  background: url(../images/bg/space3.webp) no-repeat;
  background-size: cover;
}
.nbat-detail .nbat-cont .content .w1200_con .space_items .space_item:nth-child(4) {
  background: url(../images/bg/space4.webp) no-repeat;
  background-size: cover;
}
.nbat-detail .nbat-cont .content .w1200_con .space_items .space_item h3 {
  margin: 0 27px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.nbat-detail .nbat-cont .content .w1200_con .space_items .space_item p {
  margin: 12px 27px 28px;
  font-size: 16px;
  color: #fff;
}
.nbat-detail .nbat-cont .content .w1200_con .space_text {
  color: #171614;
  font-size: 16px;
  line-height: 2;
  margin-top: 30px;
  width: 100%;
}
.nbat-detail .nbat-cont .content .now {
  margin: 110px 0 90px 0;
  padding: 90px 0 0 0;
  width: 100%;
  height: 643px;
  background: url(../images/bg/nowBg.webp) no-repeat center center;
  background-size: auto;
  background-position: center top;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nbat-detail .nbat-cont .content .now .ititle {
  margin: 0 0 60px 0;
}
.nbat-detail .nbat-cont .content .now .now_con {
  display: flex;
  gap: 50px;
}
.nbat-detail .nbat-cont .content .now .now_con img {
  width: 656px;
  height: 333px;
}
.nbat-detail .nbat-cont .content .now .now_con .now_text {
  width: 500px;
}
.nbat-detail .nbat-cont .content .now .now_con .now_text p {
  font-size: 16px;
  color: #171614;
  line-height: 2;
  margin-top: 20px;
}
.contact .banner {
  width: 100%;
  background: url(../images/bg/list4.webp) no-repeat center center;
  background-size: auto;
  background-position: center top;
  height: 600px;
}
.contact .breadcrumb .w1200 {
  padding: 0.05rem 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  color: #545454;
}
.contact .breadcrumb .w1200 .iconfont {
  color: #646464;
  margin-right: 5px;
  font-size: 22px;
}
.contact .breadcrumb .w1200 span {
  margin: 0 5px;
}
.contact .address {
  margin-top: 77px;
  height: 479px;
}
.contact .address img {
  width: 100%;
  height: 100%;
}
.contact .map {
  margin-top: 23px;
  padding: 52px 44px;
  background-color: #FDFCF8;
}
.contact .map .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact .map .title h2 {
  font-size: 32px;
  line-height: 25px;
}
.contact .map .title span {
  font-size: 20px;
}
.contact .map hr {
  margin: 35px 0;
  width: 100%;
  height: 1px;
  background-color: #EEEEEE;
}
.contact .map .con {
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}
.contact .map .con .con-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.contact .map .con .con-item .iconfont {
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  font-size: 34px;
  border-radius: 32px;
  background-color: #313131;
  color: #F5F5F5;
  flex: none;
}
.contact .map .con .con-item .icon-text {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact .map .con .con-item .icon-text span {
  font-size: 16px;
  color: #171614;
}
.contact .name {
  font-size: 18px;
  line-height: 2;
  margin: 95px auto 60px;
}
.contact .recruit {
  margin-bottom: 100px;
}
.contact .recruit .swiper {
  --swiper-navigation-color: #313131;
  /* 单独设置按钮颜色 */
  --swiper-navigation-size: 12px;
  /* 设置按钮大小 */
}
.contact .recruit .swiper-button-next,
.contact .recruit .swiper-button-prev {
  top: 40px;
  border: 1px solid #E1E1E1;
  /* 圆形边框颜色 */
  border-radius: 50%;
  /* 圆形 */
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.6);
  /* 半透明背景，可根据需要调整 */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E1E1E1;
  /* 图标颜色 */
  font-size: var(--swiper-navigation-size);
  transition: all 0.3s;
}
.contact .recruit .swiper-button-next:hover,
.contact .recruit .swiper-button-prev:hover {
  background-color: #CAA274;
  /* 鼠标悬停背景色 */
  color: #fff;
}
.contact .recruit .swiper-button-next.swiper-button-disabled,
.contact .recruit .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}
.contact .recruit .tabs .swiper-wrapper {
  margin: 5px;
}
.contact .recruit .tabs .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 6px;
  width: 279px;
  height: 89px;
  cursor: pointer;
  background-color: #FDFCF8;
}
.contact .recruit .tabs .swiper-wrapper .swiper-slide div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact .recruit .tabs .swiper-wrapper .swiper-slide div span {
  font-size: 18px;
  font-weight: bold;
}
.contact .recruit .tabs .swiper-wrapper .swiper-slide div em {
  font-size: 12px;
}
.contact .recruit .tabs .swiper-wrapper .swiper-slide:hover {
  background: #FFFFFF url(../images/list/contact5.webp) no-repeat;
  box-shadow: 0px 1px 10px 1px rgba(2, 10, 9, 0.1);
  background-position: left 5px top 6px;
}
.contact .recruit .tabs .swiper-wrapper .swiper-slide:hover::before {
  background: #CAA274;
}
.contact .recruit .tabs .swiper-wrapper .active {
  background: #FFFFFF url(../images/list/contact5.webp) no-repeat;
  box-shadow: 0px 1px 10px 1px rgba(2, 10, 9, 0.1);
  background-position: left 5px top 6px;
}
.contact .recruit .tabs .swiper-wrapper .active::before {
  background: #CAA274;
}
.contact .recruit .content .duty {
  margin: 20px 0;
  font-size: 16px;
  font-weight: bold;
}
.contact .recruit .content .text {
  font-size: 16px;
  line-height: 2;
}
.contact .recruit .content .ability p {
  font-size: 16px;
  line-height: 2;
}
.contact .recruit .content hr {
  margin: 30px 0;
  background: #545454;
  height: 1px;
  width: 100%;
}
.contact .recruit .content .mail {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 1500px) {
  .nbat .page-bg1 {
    right: 0;
  }
}
@media screen and (max-width: 1200px) {
  .index .page-bg {
    background: none;
  }
  .index .banners {
    height: auto;
    padding: 0.3rem;
  }
  .index .banners .swiper {
    height: 4.2rem;
  }
  .index .banners .swiper-pagination {
    bottom: 0.27rem;
  }
  .index .banners .swiper-pagination .swiper-pagination-bullet {
    width: 53px;
    height: 3px;
    background: #DDDDDD;
    border-radius: 0;
  }
  .index .banners .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
  }
  .index .ititle {
    display: block;
    padding: 0.49rem 0.3rem 0.69rem 0.3rem;
    margin: 0 auto;
  }
  .index .ititle span {
    display: none;
  }
  .index .ititle .title {
    display: block;
  }
  .index .ititle .title h2 {
    font-size: 0.34rem;
    color: #313131;
  }
  .index .ititle .title em {
    display: none;
  }
  .index .more {
    margin: 0.69rem 0 0.79rem;
    width: 1.72rem;
    height: 0.7rem;
    font-size: 0.22rem;
    border-radius: 0.35rem;
  }
  .index .more i {
    display: none;
  }
  .index .collections {
    padding: 0;
    width: 100%;
    overflow: hidden;
  }
  .index .collections .ititle {
    display: none;
  }
  .index .collections .collectionsList {
    display: none;
  }
  .index .collections .mo_collectionsList {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
  }
  .index .collections .mo_collectionsList .ititle {
    display: block;
    padding: 0.49rem 0;
  }
  .index .collections .mo_collectionsList .swiper-slide {
    display: flex;
    justify-content: space-between;
  }
  .index .collections .mo_collectionsList .swiper-slide .coll-item img {
    width: 3.25rem;
    height: 3.1rem;
    object-fit: cover;
  }
  .index .collections .mo_collectionsList .swiper-slide .coll-item .name {
    font-size: 0.28rem;
    color: #000000;
    font-weight: 400;
  }
  .index .collections .mo_collectionsList .swiper-slide .coll-item .tag {
    font-size: 0.22rem;
    color: #BDBDBD;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .index .collections .mo_collectionsList .swiper-pagination {
    position: absolute;
    top: 0.49rem;
    left: 50%;
    transform: translateX(-51%);
    z-index: 10;
    height: fit-content;
  }
  .index .collections .mo_collectionsList .custom-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.28rem;
  }
  .index .collections .mo_collectionsList .page-info {
    font-size: 14px;
    color: #333;
  }
  .index .collections .mo_collectionsList .swiper-btn-prev,
  .index .collections .mo_collectionsList .swiper-btn-next,
  .index .collections .mo_collectionsList .swiper-btn-next2,
  .index .collections .mo_collectionsList .swiper-btn-prev2 {
    width: 0.73rem;
    height: 0.73rem;
  }
  .index .collections .mo_collectionsList .swiper-btn-next,
  .index .collections .mo_collectionsList .swiper-btn-next2 {
    transform: rotate(180deg);
  }
  .index .culturalSpace {
    padding: 0.32rem 0 0 0;
  }
  .index .culturalSpace .w1200 .carousel_lists,
  .index .culturalSpace .w1200 .carousel,
  .index .culturalSpace .w1200 .carousel_ul {
    display: none;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo {
    margin-top: 0;
    flex-wrap: wrap;
    display: block;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list {
    width: 100%;
    height: 1.92rem;
    justify-content: space-between;
    border-radius: 0.18rem;
    margin-top: 0.27rem;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list:nth-child(1) {
    margin-top: 0;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list .carousel_item {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    position: relative;
    padding: 0 0.65rem 0 0.47rem;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list .carousel_item .icon {
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list .carousel_item .icon .iconfont {
    font-size: 1rem;
    margin-left: 0;
    color: #FFF;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list .carousel_item .icon .icon-fobiaozhi {
    font-size: 1.1rem;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list .carousel_item .icon .icon-xuexiao {
    font-size: 0.9rem;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list .carousel_item .icon .icon-falvfagui {
    font-size: 0.8rem;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list .carousel_item span {
    font-size: 0.36rem;
    color: #FFF;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list:nth-child(1) {
    position: relative;
    background: url(../images/list/mo_index2.webp) no-repeat;
    background-size: 100% 100%;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.18rem;
    background: #F6AD02;
    opacity: 0.5;
    z-index: 0;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list:nth-child(2) {
    position: relative;
    background: url(../images/list/mo_index3.webp) no-repeat;
    background-size: 100% 100%;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.18rem;
    background: #0192FF;
    opacity: 0.5;
    z-index: 0;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list:nth-child(3) {
    position: relative;
    background: url(../images/list/mo_index5.webp) no-repeat;
    background-size: 100% 100%;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.18rem;
    background: #0F8087;
    opacity: 0.5;
    z-index: 0;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list:nth-child(4) {
    position: relative;
    background: url(../images/list/mo_index4.webp) no-repeat;
    background-size: 100% 100%;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .carousel_list:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.18rem;
    background: #703513;
    opacity: 0.5;
    z-index: 0;
  }
  .index .culturalSpace .w1200 .carousel_lists_mo .active span {
    font-weight: 400;
  }
  .index .customization {
    background: url(../images/bg/mocustomizationBg.webp) no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: auto;
    padding: 0.3rem 0 0 0;
  }
  .index .customization .cus-cont {
    flex-wrap: wrap;
    margin-top: 0;
  }
  .index .customization .cus-cont .customization-grid {
    width: 100%;
  }
  .index .customization .cus-cont .customization-grid .list-item {
    padding: 0 10%;
    margin-top: 0;
    height: 93px;
  }
  .index .customization .cus-cont .customization-grid .list-item .list-con p {
    font-size: 0.28rem;
  }
  .index .customization .cus-cont .customization-grid .list-item .list-con span {
    font-size: 0.22rem;
  }
  .index .customization .cus-cont .customization-from {
    width: 100%;
    background: none;
    margin: 0.68rem 0 1.15rem 0;
    padding: 0;
    height: auto;
  }
  .index .customization .cus-cont .customization-from .top {
    display: block;
  }
  .index .customization .cus-cont .customization-from input[type="text"],
  .index .customization .cus-cont .customization-from select {
    box-sizing: border-box;
    font-size: 0.28rem;
    color: #545454;
    border-radius: 0.05rem;
    padding: 0.2rem;
    margin-bottom: 0;
  }
  .index .customization .cus-cont .customization-from .location-input {
    height: 0.91rem;
    margin-bottom: 0.22rem;
  }
  .index .customization .cus-cont .customization-from .location-input span {
    padding-left: 0.18rem;
    font-size: 0.28rem;
  }
  .index .customization .cus-cont .customization-from .location-group {
    display: none;
  }
  .index .customization .cus-cont .customization-from .location-group .select {
    flex: 1;
  }
  .index .customization .cus-cont .customization-from .mo_location-group {
    display: flex;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 0.05rem;
    margin-bottom: 0.2rem;
    border-radius: 4px;
    height: 0.91rem;
  }
  .index .customization .cus-cont .customization-from .mo_location-group span {
    display: block;
    color: #545454;
    font-size: 0.28rem;
    margin-bottom: 0;
    padding-left: 0.18rem;
  }
  .index .customization .cus-cont .customization-from .mo_location-group input[type="text"] {
    border: none;
    margin: 0;
    background: none;
  }
  .index .customization .cus-cont .customization-from .submitBtn {
    height: 0.9rem;
    padding: 0.32rem;
    font-size: 0.28rem;
  }
  .index .imformation {
    padding: 0.32rem 0 0 0;
  }
  .index .imformation .w1200 .imf-content {
    display: none;
  }
  .index .imformation .w1200 .mo_imf-content {
    display: block;
    width: 100%;
    overflow-y: visible;
    overflow-x: clip;
  }
  .index .imformation .w1200 .mo_imf-content .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 4rem;
    margin-bottom: 0.35rem;
  }
  .index .imformation .w1200 .mo_imf-content .swiper-wrapper .swiper-slide .content {
    margin-top: 0.35rem;
  }
  .index .imformation .w1200 .mo_imf-content .swiper-wrapper .swiper-slide .content .title {
    color: #171614;
    font-size: 0.28rem;
  }
  .index .imformation .w1200 .mo_imf-content .swiper-pagination {
    position: absolute;
    top: -1.2rem;
    left: 50%;
    transform: translateX(-51%);
    z-index: 10;
    height: fit-content;
  }
  .index .imformation .w1200 .mo_imf-content .custom-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.28rem;
  }
  .index .imformation .w1200 .mo_imf-content .page-info {
    font-size: 14px;
    color: #333;
  }
  .index .imformation .w1200 .mo_imf-content .swiper-btn-prev1,
  .index .imformation .w1200 .mo_imf-content .swiper-btn-next1 {
    width: 0.73rem;
    height: 0.73rem;
  }
  .index .imformation .w1200 .mo_imf-content .swiper-btn-next1 {
    transform: rotate(180deg);
  }
  .index .imformation .w1200 .more {
    margin-bottom: 1.11rem;
  }
  .collections .banner {
    position: relative;
    width: 100%;
    background: none;
    height: 4.28rem;
    z-index: 0;
  }
  .collections .banner::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.3rem;
    right: 0.3rem;
    bottom: 0.2rem;
    background: url(../images/bg/list1_mo.webp) no-repeat;
    background-size: cover;
    z-index: -1;
  }
  .collections .breadcrumb .w1200 {
    margin: 0.3rem 0 0 0;
    font-size: 0.24rem;
    padding: 0 0.3rem;
  }
  .collections .breadcrumb .w1200 .iconfont {
    display: none;
  }
  .collections .coll-cont .w1200 .tabs {
    overflow: hidden;
  }
  .collections .coll-cont .w1200 .tabs .swiper-wrapper {
    width: 100%;
    justify-content: flex-start;
  }
  .collections .coll-cont .w1200 .tabs .swiper-wrapper .swiper-slide i {
    font-size: 0.65rem;
  }
  .collections .coll-cont .w1200 .tabs .swiper-wrapper .swiper-slide span {
    font-size: 0.3rem;
  }
  .collections .coll-cont .w1200 .general {
    margin-bottom: 0.5rem;
  }
  .collections .coll-cont .w1200 .general .collections-List {
    margin-top: 0.6rem;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
    grid-auto-rows: auto;
  }
  .collections .coll-cont .w1200 .general .collections-List .coll-item {
    height: auto;
  }
  .collections .coll-cont .w1200 .general .collections-List .coll-item .img {
    height: 3.1rem;
  }
  .collections .coll-cont .w1200 .general .collections-List .coll-item .name {
    margin-top: 0.25rem;
    font-size: 0.28rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .collections .coll-cont .w1200 .general .collections-List .coll-item .tag {
    font-size: 0.22rem;
  }
  .collections .coll-cont .w1200 .general .collections-List .coll-item:nth-child(1) {
    width: 100%;
    height: auto;
    grid-column: span 2;
  }
  .collections .coll-cont .w1200 .general .collections-List .coll-item:nth-child(1) img {
    height: 100%;
  }
  .collections .coll-cont .w1200 .general .collections-List .coll-item.big {
    grid-column: span 2;
    grid-row: auto;
    height: 6.2rem;
  }
  .collections .coll-cont .w1200 .general .collections-List .pagination {
    display: none !important;
  }
  .collections .coll-cont .w1200 .general .collections-List .more {
    margin: 30px 0;
    font-size: 14px;
  }
  .collections .coll-cont .w1200 .space .space_pc {
    display: none;
  }
  .collections .coll-cont .w1200 .space .space_mo {
    display: block;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists {
    margin-top: 0.6rem;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper {
    width: 100%;
    align-items: center;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .swiper-slide {
    width: 5.5rem;
    height: 1.6rem;
    border-radius: 0.1rem;
    overflow: hidden;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .swiper-slide span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    font-size: 0.32rem;
    color: #FDFDFD;
    font-weight: bold;
    z-index: 1;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .swiper-slide span::after {
    margin-top: 0.1rem;
    display: block;
    width: 1.26rem;
    height: 0.03rem;
    content: "";
    background-color: #FEFEFE;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .icon-sengni {
    background: url(../images/list/mo_index2.webp) no-repeat;
    background-size: cover;
    position: relative;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .icon-sengni::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.18rem;
    background: #F6AD02;
    opacity: 0.5;
    z-index: 0;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .icon-qiye {
    background: url(../images/list/mo_index3.webp) no-repeat;
    background-size: cover;
    position: relative;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .icon-qiye::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.18rem;
    background: #0192FF;
    opacity: 0.5;
    z-index: 0;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .icon-xiaoyuan {
    background: url(../images/list/mo_index4.webp) no-repeat;
    background-size: cover;
    position: relative;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .icon-xiaoyuan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.18rem;
    background: #0F8087;
    opacity: 0.5;
    z-index: 0;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .icon-falv1 {
    background: url(../images/list/mo_index5.webp) no-repeat;
    background-size: cover;
    position: relative;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .icon-falv1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.18rem;
    background: #703513;
    opacity: 0.5;
    z-index: 0;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_lists .swiper-wrapper .swiper-slide-active {
    width: 5.8rem;
    height: 1.9rem;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_ul {
    margin: 1rem 0 0.25rem 0;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_ul li {
    width: 1.26rem;
    height: 0.36rem;
    line-height: 0.36rem;
    border-radius: 0.18rem;
    font-size: 0.24rem;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel_ul em {
    height: 0.31rem;
    margin-top: 0.01rem;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel {
    margin-top: 0;
    width: 100%;
    height: auto;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel .swiper-wrapper .swiper-slide {
    height: 6.11rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* 关键：裁切超出内容 */
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel .swiper-wrapper .swiper-slide a {
    width: 100%;
    height: 100%;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel .swiper-wrapper .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* 保持高度填满，裁切宽度 */
    object-position: center center;
    /* 显示中间部分 */
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel .swiper-wrapper .swiper-slide .wenactive {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    padding: 0.09rem 0.05rem;
    background-color: rgba(202, 162, 116, 0.6);
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel .swiper-wrapper .swiper-slide .wentext {
    position: absolute;
    left: 50%;
    bottom: 0.5rem;
    transform: translateX(-50%);
    font-size: 0.2rem;
    color: #fff;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0.1rem;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel .swiper-pagination .swiper-pagination-bullet {
    background: #545454;
    opacity: 1;
    width: 8px;
    height: 8px;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
    position: relative;
    width: 10px;
    height: 10px;
  }
  .collections .coll-cont .w1200 .space .space_mo .carousel .swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .collections .coll-cont .w1200 .more,
  .collections .coll-cont .w1200 .nomore {
    margin: 0 0 0.5rem 0;
  }
  .collections-detail .breadcrumb {
    margin: 0.3rem 0;
    font-size: 0.24rem;
  }
  .collections-detail .breadcrumb i {
    display: none;
  }
  .collections-detail .commodity {
    height: auto;
    padding: 0.3rem 0 0 0;
    background: #FDFCF8;
  }
  .collections-detail .commodity .w1200 {
    display: block;
  }
  .collections-detail .commodity .w1200 .thumbnail-section,
  .collections-detail .commodity .w1200 .main-image-section {
    display: none;
  }
  .collections-detail .commodity .w1200 .mo_main-image {
    display: block;
  }
  .collections-detail .commodity .w1200 .mo_main-image .swiper-wrapper {
    width: 100%;
  }
  .collections-detail .commodity .w1200 .mo_main-image .swiper-wrapper .swiper-slide {
    width: 100%;
    height: auto;
  }
  .collections-detail .commodity .w1200 .mo_main-image .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
  }
  .collections-detail .commodity .w1200 .mo_main-image .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .collections-detail .commodity .w1200 .mo_main-image .swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #545454;
  }
  .collections-detail .commodity .w1200 .mo_main-image .swiper-pagination .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #000;
    border: 2px solid #fff;
    /* 白色背景 */
    box-shadow: none;
    /* 去除阴影（如有） */
    position: relative;
  }
  .collections-detail .commodity .w1200 .product-info {
    padding: 0.45rem 0;
  }
  .collections-detail .commodity .w1200 .product-info .product-title {
    font-size: 0.3rem;
  }
  .collections-detail .commodity .w1200 .product-info .product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
  }
  .collections-detail .commodity .w1200 .product-info .product-price section {
    width: 100%;
    justify-content: space-between;
  }
  .collections-detail .commodity .w1200 .product-info .product-price .price-symbol {
    font-size: 0.48rem;
  }
  .collections-detail .commodity .w1200 .product-info .product-price .price-symbol em {
    font-size: 0.3rem;
  }
  .collections-detail .commodity .w1200 .product-info .product-price .btn-secondary {
    background: none;
  }
  .collections-detail .commodity .w1200 .product-info .product-price .btn-secondary i {
    font-size: 0.25rem;
  }
  .collections-detail .commodity .w1200 .product-info .action-buttons {
    display: none;
  }
  .collections-detail .commodity .w1200 .product-info .product-box {
    margin: 0.2rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
  }
  .collections-detail .commodity .w1200 .product-info .product-box .product-description {
    font-size: 0.24rem;
  }
  .collections-detail .commodity .w1200 .product-info .product-specs {
    padding: 0.5rem 0;
  }
  .collections-detail .commodity .w1200 .product-info .product-specs .spec-row {
    margin-bottom: 0;
    font-size: 0.26rem;
    line-height: 2;
  }
  .collections-detail .commodity .w1200 .product-info hr {
    display: none;
  }
  .collections-detail .recommendations {
    padding: 0;
    margin-bottom: 2rem;
  }
  .collections-detail .recommendations .w1200 .recommendations-title {
    margin-top: 0.7rem;
    font-size: 0.28rem;
    font-weight: 400;
  }
  .collections-detail .recommendations .w1200 .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
  }
  .collections-detail .recommendations .w1200 .recommendations-grid .recommendation-item .recommendation-image {
    height: 3.1rem;
  }
  .collections-detail .recommendations .w1200 .recommendations-grid .recommendation-item .recommendation-title {
    font-size: 0.28rem;
    margin-bottom: 0;
  }
  .collections-detail .recommendations .w1200 .recommendations-grid .recommendation-item .recommendation-subtitle {
    font-size: 0.22rem;
  }
  .collections-detail .footerBuy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }
  .collections-detail .footerBuy a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #313131;
    width: 3rem;
    height: 0.7rem;
    border-radius: 0.35rem;
    color: #fff;
    font-size: 0.26rem;
  }
  .collections-keys .coll-cont .w1200 .general .collections-List .coll-item {
    height: auto !important;
  }
  .collections-keys .coll-cont .w1200 .general .collections-List .coll-item .img {
    height: 3.1rem !important;
  }
  .collections-keys .coll-cont .w1200 .general .collections-List .coll-item:nth-child(1) {
    grid-row: auto !important;
    height: 8.2rem !important;
  }
  .collections-keys .coll-cont .w1200 .general .collections-List .coll-item:nth-child(1) .img {
    height: auto !important;
  }
  .information .page-bg1,
  .information .page-bg2,
  .information .page-bg3 {
    display: none;
  }
  .information .banner {
    position: relative;
    width: 100%;
    background: none;
    height: 4.28rem;
    z-index: 0;
  }
  .information .banner::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.3rem;
    right: 0.3rem;
    bottom: 0.2rem;
    background: url(../images/bg/list2_mo.webp) no-repeat;
    background-size: cover;
    z-index: -1;
  }
  .information .breadcrumb .w1200 {
    margin: 0.3rem 0 0 0;
    font-size: 0.24rem;
    padding: 0 0.3rem;
  }
  .information .breadcrumb .w1200 .iconfont {
    display: none;
  }
  .information .coll-cont .w1200 .tabs li {
    font-size: 0.3rem;
    line-height: 2;
  }
  .information .coll-cont .w1200 .tabs .active {
    color: #CAA274;
    font-weight: bold;
  }
  .information .coll-cont .w1200 .tabs .active::after {
    background: #CAA274;
    height: 0.04rem;
  }
  .information .coll-cont .w1200 .news {
    display: none;
  }
  .information .coll-cont .collections-List {
    padding: 0 0.3rem;
  }
  .information .coll-cont .collections-List .news-list {
    height: auto;
    padding: 0.34rem 0;
    position: relative;
  }
  .information .coll-cont .collections-List .news-list::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: #E5E5E5;
    content: "";
  }
  .information .coll-cont .collections-List .news-list .w1200 {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .information .coll-cont .collections-List .news-list .w1200 img {
    width: 100%;
    height: 4.28rem;
    margin-bottom: 0.45rem;
    display: none;
  }
  .information .coll-cont .collections-List .news-list .w1200 .con {
    width: 100%;
  }
  .information .coll-cont .collections-List .news-list .w1200 .con .title {
    font-size: 0.28rem;
    color: #171614;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
    font-weight: 400;
  }
  .information .coll-cont .collections-List .news-list .w1200 .con .tag {
    display: none;
  }
  .information .coll-cont .collections-List .news-list .w1200 .con .gonn {
    color: #545454;
    font-size: 0.24rem;
  }
  .information .coll-cont .collections-List .news-list:nth-child(1) .w1200 img:nth-child(1) {
    display: block;
  }
  .information .coll-cont .collections-List .news-list:nth-child(1) .w1200 img:nth-child(2) {
    display: none;
  }
  .information .coll-cont .collections-List .news-list.active {
    background-color: none;
  }
  .information .coll-cont .collections-List .news-list.active .w1200 {
    background: none;
  }
  .information .coll-cont .collections-List .news-list.active .w1200 .con {
    transform: none;
    flex: none;
    width: 100%;
  }
  .information .coll-cont .more,
  .information .coll-cont .nomore {
    margin: 0.5rem 0;
  }
  .information_detail .w1200 .detail-top {
    justify-content: end;
  }
  .information_detail .w1200 .detail-top .goList {
    display: none;
  }
  .information_detail .w1200 .detail-top .breadcrumb {
    margin: 0.3rem 0;
    font-size: 0.24rem;
  }
  .information_detail .w1200 .detail-top .breadcrumb .iconfont {
    display: none;
  }
  .information_detail .w1200 .content {
    margin-top: 0;
  }
  .information_detail .w1200 .content .title {
    font-size: 0.3rem;
    line-height: 1.6;
  }
  .information_detail .w1200 .content .time-come {
    width: 100%;
    margin-top: 0.24rem;
  }
  .information_detail .w1200 .content .time-come li {
    margin: 0;
    color: #646464;
    font-size: 0.2rem;
    margin-right: 0.4rem;
  }
  .information_detail .w1200 .content .time-come li span {
    display: none;
  }
  .information_detail .w1200 .content .time-come li:last-child {
    margin-right: 0;
  }
  .information_detail .w1200 .content hr {
    margin: 0.3rem 0;
    background: #E5E5E5;
  }
  .information_detail .w1200 .content .con p,.information_detail .w1200 .content .con h2,.information_detail .w1200 .content .con h3 ,.information_detail .w1200 .content .con section{
    font-size: 0.26rem;
    line-height: 1.846;
  }
  .information_detail .w1200 .content .con p img {
    max-width: 100% !important;
  }
  .information_detail .w1200 .content .con img {
    max-width: 100% !important;
    margin: 1.69em 0;
  }
  .information_detail .w1200 .content .thumbsUp {
    margin: 0.57rem 0;
  }
  .information_detail .w1200 .content .thumbsUp .iconfont {
    width: 1.26rem;
    height: 1.26rem;
    line-height: 1.26rem;
    border-radius: 0.63rem;
    font-size: 0.47rem;
  }
  .information_detail .w1200 .content .thumbsUp .share-box {
    display: none;
    position: absolute;
    top: 1.6rem;
    left: 50%;
    transform: translate(-50%, 0);
    width: 2.03rem;
    height: 2.9rem;
    background: #fff;
    box-shadow: 0px 1px 14px 1px rgba(27, 16, 9, 0.3);
    border-radius: 0.05rem;
  }
  .information_detail .w1200 .content .thumbsUp .share-box ul {
    padding: 0.26rem 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .information_detail .w1200 .content .thumbsUp .share-box ul::before {
    content: "";
    position: absolute;
    top: -0.1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 0.1rem solid transparent;
    border-right: 0.1rem solid transparent;
    border-bottom: 0.1rem solid #fff;
  }
  .information_detail .w1200 .content .thumbsUp .share-box ul li {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #313131;
    font-size: 0.24rem;
    padding: 0 0.2rem;
    line-height: normal;
  }
  .information_detail .w1200 .content .thumbsUp .share-box ul li svg {
    width: 0.26rem;
    height: 0.27rem;
    margin-right: 0.1rem;
  }
  .nbat {
    height: auto;
  }
  .nbat .banner {
    position: relative;
    width: 100%;
    background: none;
    height: 4.28rem;
    z-index: 0;
  }
  .nbat .banner::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.3rem;
    right: 0.3rem;
    bottom: 0.2rem;
    background: url(../images/bg/list3_mo.webp) no-repeat;
    background-size: cover;
    z-index: -1;
  }
  .nbat .breadcrumb .w1200 {
    margin: 0.3rem 0 0 0;
    font-size: 0.24rem;
    padding: 0 0.3rem;
  }
  .nbat .breadcrumb .w1200 .iconfont {
    display: none;
  }
  .nbat .nbat-cont .content .w1200 .ititle {
    width: 100%;
    justify-content: flex-start;
    position: relative;
    margin: 0.93rem 0 0.54rem 0;
  }
  .nbat .nbat-cont .content .w1200 .ititle::before {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 0.04rem;
    background: #CAA274;
    content: "";
  }
  .nbat .nbat-cont .content .w1200 .ititle .title {
    align-items: flex-start;
  }
  .nbat .nbat-cont .content .w1200 .ititle .title h2 {
    font-size: 0.3rem;
  }
  .nbat .nbat-cont .content .w1200 .about-text p {
    font-size: 0.26rem;
    display: contents;
    line-height: 2;
  }
  .nbat .nbat-cont .content .w1200 .nbt_img {
    margin-top: 0.75rem;
    width: 3.26rem;
    height: 2.27rem;
  }
  .nbat .nbat-cont .content .w1200 .nbt_nbt3 {
    width: 6.47rem;
    height: 0.63rem;
  }
  .nbat .nbat-cont .content .w1200 .vertical {
    gap: 0.4rem;
  }
  .nbat .nbat-cont .content .w1200 .vertical li {
    font-size: 0.3rem;
    padding: 0.23rem 0 0.16rem;
  }
  .nbat .nbat-cont .content .w1200 .core {
    font-size: 0.3rem;
  }
  .nbat .nbat-cont .content .w1200 .more {
    margin: 0.69rem 0 0.79rem;
    width: 1.72rem;
    height: 0.7rem;
    font-size: 0.22rem;
    border-radius: 0.35rem;
  }
  .nbat .nbat-cont .content .w1200 .more i {
    display: none;
  }
  .nbat .page-bg1,
  .nbat .page-bg2 {
    display: none;
  }
  .nbat-detail {
    height: auto;
  }
  .nbat-detail .banner {
    position: relative;
    width: 100%;
    background: none;
    height: 4.28rem;
    z-index: 0;
  }
  .nbat-detail .banner::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.3rem;
    right: 0.3rem;
    bottom: 0.2rem;
    background: url(../images/bg/list3_mo.webp) no-repeat;
    background-size: cover;
    z-index: -1;
  }
  .nbat-detail .breadcrumb .w1200 {
    margin: 0.3rem 0 0 0;
    font-size: 0.24rem;
    padding: 0 0.3rem;
  }
  .nbat-detail .breadcrumb .w1200 .iconfont {
    display: none;
  }
  .nbat-detail .ititle {
    width: 100%;
    justify-content: flex-start;
    position: relative;
    margin: 0.93rem 0 0.54rem 0;
  }
  .nbat-detail .ititle::before {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 0.04rem;
    background: #CAA274;
    content: "";
  }
  .nbat-detail .ititle .left,
  .nbat-detail .ititle .right {
    display: none;
  }
  .nbat-detail .ititle .title {
    align-items: flex-start;
  }
  .nbat-detail .ititle .title h2 {
    font-size: 0.3rem;
  }
  .nbat-detail .ititle .title em {
    font-size: 0.24rem;
  }
  .nbat-detail .nbat-cont {
    width: 100%;
    padding: 0 0.3rem;
  }
  .nbat-detail .nbat-cont .content .yuzhou {
    height: 3.89rem;
    background: url(../images/bg/collections1_mo.webp) no-repeat;
    background-size: 100% 100%;
  }
  .nbat-detail .nbat-cont .content .w1200_img {
    width: calc(100% - 0.56rem);
    background-color: #FDFCF8;
    padding: 0.38rem 0.35rem;
    margin-top: -1rem;
  }
  .nbat-detail .nbat-cont .content .w1200_img .briefIntroduction {
    width: 6.35rem;
  }
  .nbat-detail .nbat-cont .content .w1200_img .briefIntroduction p {
    font-size: 0.26rem;
  }
  .nbat-detail .nbat-cont .content .w1200_img .briefIntroduction img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0.7rem 0;
  }
  .nbat-detail .nbat-cont .content .w1200_img .img {
    display: none;
  }
  .nbat-detail .nbat-cont .content .w1200_con {
    width: calc(100% - 0.56rem);
    background-color: #FDFCF8;
    padding: 0.38rem 0.35rem;
  }
  .nbat-detail .nbat-cont .content .w1200_con h2 {
    margin-top: 0;
    font-size: 0.32rem;
    height: auto;
  }
  .nbat-detail .nbat-cont .content .w1200_con .title {
    width: 2.37rem;
    height: 0.56rem;
    margin: 1rem 0 0.2rem;
    font-size: 0.28rem;
    background-size: cover;
  }
  .nbat-detail .nbat-cont .content .w1200_con .title span {
    font-size: 0.28rem;
  }
  .nbat-detail .nbat-cont .content .w1200_con .mud .text {
    font-size: 0.26rem;
    line-height: 2;
  }
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items {
    flex-direction: column;
  }
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item {
    margin-bottom: 0.66rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    position: static;
  }
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item .title {
    position: static;
    top: 0;
    background: none;
    color: #313131;
    font-size: 0.28rem;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.13rem;
    width: auto;
  }
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item .title::before,
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item .title::after {
    content: "";
    flex-shrink: 0;
    width: 0.6rem;
    height: 1px;
    background: #313131;
  }
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item span {
    margin: 0;
    font-size: 0.26rem;
    line-height: 2;
  }
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item:nth-child(1),
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item:nth-child(2),
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item:nth-child(3),
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item:nth-child(4) {
    background: none;
  }
  .nbat-detail .nbat-cont .content .w1200_con .eight .ba_items .item:nth-child(4) {
    margin-bottom: 0;
  }
  .nbat-detail .nbat-cont .content .w1200_con .space .subheading {
    font-size: 0.24rem;
    margin-top: 0;
  }
  .nbat-detail .nbat-cont .content .w1200_con .space .space_items {
    margin-top: 0.5rem;
  }
  .nbat-detail .nbat-cont .content .w1200_con .space .space_items .space_item {
    width: 100%;
    height: 4.12rem;
    background-size: 100% 100%;
  }
  .nbat-detail .nbat-cont .content .w1200_con .space .space_items .space_item h3 {
    font-size: 0.3rem;
    margin: 0 0.27rem;
  }
  .nbat-detail .nbat-cont .content .w1200_con .space .space_items .space_item p {
    margin: 0.12rem 0.27rem 0.28rem;
    font-size: 0.22rem;
  }
  .nbat-detail .nbat-cont .content .w1200_con .space .space_text {
    font-size: 0.26rem;
    line-height: 2;
  }
  .nbat-detail .nbat-cont .content .now {
    height: auto;
    margin: 0 0 2rem 0;
    padding: 0.98rem 0 0 0;
    background: none;
  }
  .nbat-detail .nbat-cont .content .now .ititle {
    margin: 0 0 0.78rem 0;
  }
  .nbat-detail .nbat-cont .content .now .now_con {
    display: block;
    width: 100%;
  }
  .nbat-detail .nbat-cont .content .now .now_con img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .nbat-detail .nbat-cont .content .now .now_con .now_text {
    width: 100%;
  }
  .nbat-detail .nbat-cont .content .now .now_con .now_text p {
    font-size: 0.26rem;
    line-height: 2;
  }
  .contact .banner {
    position: relative;
    width: 100%;
    background: none;
    height: 4.28rem;
    z-index: 0;
  }
  .contact .banner::before {
    content: "";
    position: absolute;
    top: 0.2rem;
    left: 0.3rem;
    right: 0.3rem;
    bottom: 0.2rem;
    background: url(../images/bg/list4_mo.webp) no-repeat;
    background-size: cover;
    z-index: -1;
  }
  .contact .breadcrumb .w1200 {
    margin: 0.3rem 0 0 0;
    padding: 0 0.3rem;
    font-size: 0.24rem;
  }
  .contact .breadcrumb .w1200 .iconfont {
    display: none;
  }
  .contact .address {
    margin-top: 0.9rem;
    height: 3.47rem;
  }
  .contact .address img {
    width: 100%;
    height: 100%;
  }
  .contact .map {
    background: none;
    padding: 0 0.3rem;
    height: auto;
  }
  .contact .map .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.6rem 0;
  }
  .contact .map .title h2 {
    font-size: 0.48rem;
    line-height: normal;
  }
  .contact .map .title span {
    font-size: 0.28rem;
  }
  .contact .map hr {
    display: none;
  }
  .contact .map .con {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact .map .con .con-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.26rem 0;
  }
  .contact .map .con .con-item .iconfont {
    width: 0.8rem;
    height: 0.8rem;
    line-height: 0.8rem;
    border-radius: 0.4rem;
    font-size: 0.41rem;
  }
  .contact .map .con .con-item .icon-text {
    margin-top: 0.33rem;
    margin-left: 0;
    display: flex;
    flex-direction: column;
  }
  .contact .map .con .con-item .icon-text em {
    display: none;
  }
  .contact .map .con .con-item .icon-text span {
    text-align: center;
    padding: 0 0.5rem;
    font-size: 0.28rem;
  }
  .contact .name {
    margin: 1rem auto;
    font-size: 0.26rem;
  }
  .contact .recruit {
    margin-bottom: 1.7rem;
  }
  .contact .recruit .swiper-button-prev,
  .contact .recruit .swiper-button-next {
    display: none;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide {
    height: auto;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide:hover {
    background: #FDFCF8;
    box-shadow: none;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide div {
    margin-left: 0;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide::before {
    background: none;
    height: 0;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide .rec-title {
    width: 3.65rem;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0.25rem 0 0.2rem 0;
    background: url(../images/list/contact5.webp) no-repeat;
    background-size: 100% 100%;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide .rec-title span {
    font-size: 0.32rem;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide .rec-title em {
    font-size: 0.14rem;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide .content-box {
    align-items: flex-start;
    padding: 0 0.1rem;
    margin-bottom: 1.5rem;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide .content-box .duty {
    font-size: 0.26rem;
    margin: 0.3rem 0;
    font-weight: bold;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide .content-box .text,
  .contact .recruit .tabs .swiper-wrapper .swiper-slide .content-box .ability,
  .contact .recruit .tabs .swiper-wrapper .swiper-slide .content-box .mail {
    font-size: 0.26rem;
    margin-left: 0;
    align-items: flex-start;
  }
  .contact .recruit .tabs .swiper-wrapper .swiper-slide .content-box hr {
    margin: 0.27rem 0;
    background: #E5E5E5;
  }
  .contact .recruit .custom-pagination {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
  }
  .contact .recruit .custom-pagination .swiper-btn-prev,
  .contact .recruit .custom-pagination .swiper-btn-next {
    width: 0.73rem;
    height: 0.73rem;
  }
  .contact .recruit .custom-pagination .swiper-btn-next {
    transform: rotate(180deg);
  }
  .kefu {
    padding-top: 0.5rem;
  }
  .kefu .kefu_tips {
    font-size: 0.3rem;
    margin-bottom: 0.1rem;
    color: #000;
  }
  .kefu .kefu_text li {
    margin: 0.15rem 0;
    font-size: 0.28rem;
  }
  .kefu .kefu_text li .iconfont {
    font-size: 0.28rem;
  }
}
