.new_title {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  color: #000000;
  line-height: 45px;
  position: relative;
}
.soltSpan {
  position: absolute;
  bottom: -18px;
  width: 56px;
  height: 4px;
  background: #6f4f36;
  left: 50%; /* 左边距为50%，让元素位于容器的中间 */
  transform: translateX(-50%); /* 使用translateX(-50%)让元素居中 */
}
.store_card_box {
  cursor: pointer;
  margin: 60px 0;
  box-sizing: border-box;
  padding: 0 13.5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 每行 3 列，均匀分配宽度 */
  gap: 40px; /* 行间距为 30px，列间距为 40px */
}
.store_card {
  position: relative;
}

.text_center{
  text-align: center;
}

.store_tag {
  /* background: url("../images/tagOredress.png") no-repeat center; */
  background: rgba(255, 250, 246, 0.9);
  position: absolute;
  border-radius: 19px;
  padding: 8px 13px;
  height: 38px;
  line-height: 38px;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  left: 45px;
  bottom: 30px;
  text-align: right;
  padding-right: 13px;
  box-sizing: border-box;
  display: flex;
}
.store_tag span {
  transform: translateY(-8px);
  margin-left: 5px;
}
.img_box {
  max-width: 100%;
  aspect-ratio: 440/280;
}
.img_box img {
  width: 100%;
  height: 100%;
}
.card_message {
  display: flex;
  justify-content: space-between;
  height: 58px;
  line-height: 58px;
  border-bottom: 1px solid #979797;
  font-size: 20px;
  color: #000000;
}
.card_num {
  color: #666666;
}

/* 弹窗遮罩层 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* 默认隐藏 */
  justify-content: center;
  align-items: center;
}

/* 弹窗遮罩层 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; /* 默认隐藏 */
  justify-content: center;
  align-items: center;
}

/* 弹窗内容 */
.popup {
  background-color: white;
  padding: 0 30px 30px 30px;
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  width: 1000px;
  height: 600px;
  text-align: center;
  opacity: 0; /* 初始透明 */
  transform: translateY(-50px); /* 初始位置偏移 */
  animation: fadeIn 0.5s forwards; /* 动画 */
  overflow: hidden;
  overflow-y: auto;
}

.popup_content {
  width: 900px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列，宽度相等 */
  gap: 20px; /* 列与列之间的间距 */
  margin: auto;
}
.popup_img_box {
  width: 100%;
  aspect-ratio: 380/287;
}
.popup_img_box img {
  width: 100%;
  height: 100%;
}
.solt_store_text{
  display: none;
}

/* 弹窗动画效果 */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 动画类 */
.animate-slideIn {
  animation: slideIn 1s forwards;
}

.animate-fadeInUp {
  animation: fadeInUp 1s forwards;
}



@media (min-width: 1600px) and (max-width: 1919px) {
  .store_card_box {
    margin: 50px 0;
    gap: 35px;
  }
  .card_message {
    height: 50px;
    line-height: 50px;
    font-size: 19px;
  }
}
@media (min-width: 1500px) and (max-width: 1599px) {
  .store_card_box {
    margin: 45px 0;
    gap: 30px;
  }
  .card_message {
    height: 45px;
    line-height: 45px;
    font-size: 18px;
  }
}
@media (min-width: 1400px) and (max-width: 1499px) {
  .store_card_box {
    margin: 40px 0;
    gap: 28px;
  }
  .card_message {
    height: 40px;
    line-height: 40px;
    font-size: 17px;
  }
}
@media (min-width: 300px) and (max-width: 1399px) {
  .store_card_box {
    margin: 38px 0;
    gap: 25px;
  }
  .card_message {
    height: 35px;
    line-height: 35px;
    font-size: 16px;
  }
}
