.networkPage {
  overflow: hidden;
}

.pageTitle h1 {
  position: relative;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 500;
  font-size: 0.5rem;
  color: #000000;
  line-height: 1;
}

.pageTitle .titleLine {
  justify-content: flex-start;
}

.storeSection {
  padding: 0.63rem 0 1rem;
  background-color: #f5f5f5;
}

.storeHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.67rem;
}

.storeSearch {
  position: relative;
  width: 5.19rem;
  height: 0.65rem;
  background: #ffffff;
  border-radius: 0.15rem 0.15rem 0.15rem 0.15rem;
  border: 0.01rem solid #bcbcbc;
}

.storeSearch input {
  width: 100%;
  height: 100%;
  padding: 0 0.56rem 0 0.31rem;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.16rem;
  color: #000000;
  display: block;
}

.storeSearch button {
  position: absolute;
  right: 0.18rem;
  top: 50%;
  width: 0.33rem;
  height: 0.33rem;
  transform: translateY(-50%);
}

.storeSearch button > img {
  width: 100%;
  height: 100%;
  display: block;
}

.storeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.44rem 0.22rem;
}

.storeCard {
  height: 6.36rem;
  padding: 0.41rem 0.2rem 0.2rem;
  background: #ffffff;
  border-radius: 0.1rem;
  /* box-shadow: 0 0.08rem 0.18rem rgba(0, 0, 0, 0.04); */
  display: block;
  transition: all 0.6s;
}

.storeCard:hover {
  box-shadow: 0rem 0rem 0.3rem 0.01rem rgba(0, 0, 0, 0.16);
}

.storeCard:hover .storeCard__top > img:last-child {
  filter: none;
}

.storeCard__top {
  display: flex;
  gap: 0.16rem;
}

.storeCard__top > img:first-child {
  width: 0.4rem;
  height: 0.4rem;
}

.storeCard__top > img:last-child {
  width: 0.23rem;
  height: 0.23rem;
  margin-left: auto;
  margin-top: 0.13rem;
  filter: brightness(0);
}

.storeCard__top h2 {
  position: relative;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 500;
  font-size: 0.24rem;
  color: #000000;
  margin-top: 0.05rem;
}

.storeCard__top i {
  flex: 0 0 auto;
  width: 0.1rem;
  height: 0.1rem;
  border-right: 0.02rem solid #111111;
  border-bottom: 0.02rem solid #111111;
  transform: rotate(-45deg);
}

.storeTags {
  display: flex;
  gap: 0.12rem;
  margin-top: 0.46rem;
}

.storeTags span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0.77rem;
  height: 0.32rem;
  padding: 0 0.12rem;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 500;
  font-size: 0.16rem;
  color: #7b8fb7;
  background-color: #f6f9ff;
}

.storeInfo {
  margin-top: 0.26rem;
}

.storeInfo p {
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.16rem;
  color: #a7a7a7;
  line-height: 0.34rem;
}

.storeMap {
  height: 2.8rem;
  margin-top: 0.54rem;
  overflow: hidden;
  position: relative;
}



.storePoint {
  width: 0.27rem;
  height: 0.34rem;
  position: absolute;
  left: 2.27rem;
  top: 1.04rem;
}

.storeMap__img {
  width: 100%;
  height: 100%;
  object-fit: 100%;
}
.storeEnd {
  margin-bottom: 0.56rem;
  padding-bottom: 0.23rem;
  border-bottom: 1px solid #c1c1c1;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.18rem;
  color: #727272;
}

.storeEnd span {
  color: var(--color);
}

.joinSection {
  padding: 0.78rem 0 1.05rem;
  background: #f5f5f5;
}

.joinPanel {
  display: grid;
  grid-template-columns: 1fr 7.7rem;
  height: 5.72rem;
  margin-top: 0.83rem;
  padding: 0.18rem 0.16rem 0.2rem 0;
  background: #ffffff;
  border-radius: 0.2rem;
}

.joinPanel__copy {
  padding-top: 0.79rem;
  padding-left: 0.78rem;
}

.joinPanel__copy h2 {
  margin-bottom: 0.79rem;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.4rem;
  color: #000000;
}

.joinPhone {
  display: flex;
  align-items: center;
}

.joinPhone > img {
  width: 0.63rem;
  height: 0.63rem;
  margin-right: 0.16rem;
}

.joinPhone span {
  position: relative;
  margin-right: 0.14rem;
  /* padding-right: 0.32rem; */
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 500;
  font-size: 0.2rem;
  color: #474747;
}

.joinPhone strong {
  font-family: Oswald, Oswald;
  font-weight: 500;
  font-size: 0.7rem;
  color: #474747;
}

.joinPanel__pic {
  height: 5.34rem;
  overflow: hidden;
  border-radius: 0.2rem;
}

.joinPanel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .storeGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .joinPanel {
    grid-template-columns: 1fr;
    gap: 0.32rem;
  }

  .joinPanel__copy {
    padding: 0.55rem 0.42rem 0;
  }
}

@media (max-width: 560px) {
  .storeHead {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.24rem;
  }

  .storeSearch,
  .joinPhone strong {
    width: 100%;
  }

  .storeGrid {
    grid-template-columns: 1fr;
  }

  .joinPhone {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .joinPhone strong {
    font-size: 0.42rem;
  }
}

.storeDetailPage {
  background: #f3f3f3;
}

.storeDetailHero {
  padding: 1.24rem 0 0.72rem;
}

.detailCrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 0.36rem;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.14rem;
  color: #727272;
}

.detailCrumbs a,
.detailCrumbs span,
.detailCrumbs strong {
  color: #999999;
  font-weight: 400;
}

.storeDetailPanel {
  display: grid;
  grid-template-columns: 7.79rem 1fr;
  gap: 0.91rem;
  padding: 0.26rem 0.73rem 0.62rem 0.24rem;
  background: #ffffff;
  border-radius: 0.08rem;
}

.detailMap {
  height: 4.54rem;
  overflow: hidden;
}

.detailMap__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detailInfoBox {
  padding: 0.21rem 0 0 0;
}

.detailInfoBox h1 {
  position: relative;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 500;
  font-size: 0.28rem;
  color: #000000;
}

.detailInfoTitle {
  display: flex;
  gap: 12px;
  padding-bottom: 0.32rem;
  margin-bottom: 0.22rem;
  border-bottom: 0.01rem solid #d4d4d4;
}

.detailInfoTitle > img {
  width: 0.4rem;
  height: 0.4rem;
}

.detailTags {
  margin-top: 0;
  margin-bottom: 0.34rem;
}

.detailText {
  margin-bottom: 0.34rem;
}

.detailText p {
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.16rem;
  color: #000000;
  line-height: 0.34rem;
}

.detailActions {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}
.plateBtn,
.guideBtn {
  align-items: center;
  justify-content: center;
  height: 0.4rem;
  padding: 0 0.14rem;
  background: #f7f7f7;
  border-radius: 0.1rem;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: bold;
  font-size: 0.16rem;
  color: #000000;
  white-space: nowrap;
}

.guideBtn > img {
  width: 0.21rem;
  height: 0.21rem;
  margin-right: 0.17rem;
}

.guideBtn strong {
  margin-left: 0.08rem;
  color: #111111;
}

.plateBtn {
  background-color: #fff8f8;
  color: #ed0012;
}

.plateBtn > img {
  width: 0.21rem;
  height: 0.21rem;
  margin-right: 0.16rem;
}

.reserveBtn {
  align-items: center;
  justify-content: center;
  width: 1.38rem;
  height: 0.48rem;
  background: #e50011;
  border-radius: 0.24rem 0.24rem 0.24rem 0.24rem;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.16rem;
  color: #ffffff;
}

body.reserveModal-open {
  overflow: hidden;
}

.reserveModal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.32rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.reserveModal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reserveModal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}

.reserveDialog {
  position: relative;
  z-index: 1;
  display: none;
  width: 4.65rem;
  background: #ffffff;
  border-radius: 0.25rem;
  box-shadow: 0 0.18rem 0.5rem rgba(0, 0, 0, 0.16);
  transform: translateY(0.2rem) scale(0.98);
  opacity: 0;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.reserveModal.is-open .reserveDialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.reserveModal.is-form .reserveDialog--form,
.reserveModal.is-success .reserveDialog--success {
  display: block;
}

.reserveDialog--form {
  padding: 0.51rem 0.34rem 0.75rem;
}

.reserveDialog--success {
  padding: 0.91rem 0.5rem 0.7rem;
  text-align: center;
}

.reserveDialog__close {
  position: absolute;
  right: 0.18rem;
  top: 0.17rem;
  width: 0.24rem;
  height: 0.24rem;
}

.reserveDialog__close::before,
.reserveDialog__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.16rem;
  height: 0.02rem;
  background: #7d7d7d;
  border-radius: 0.02rem;
  transition: background 0.25s ease;
}

.reserveDialog__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.reserveDialog__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.reserveDialog__close:hover::before,
.reserveDialog__close:hover::after {
  background: var(--color);
}

.reserveDialog__title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.reserveForm {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
}

.reserveForm label {
  display: block;
}

.reserveForm span {
  display: block;
  margin-bottom: 0.08rem;
  font-family:
    Microsoft YaHei,
    Microsoft YaHei;
  font-weight: 400;
  font-size: 0.16rem;
  color: #010205;
}

.reserveForm input,
.reserveForm select {
  width: 100%;
  height: 0.45rem;
  padding: 0 0.14rem;
  background: #f8f9fb;
  border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
  border: 0.01rem solid #e6e8ec;
  font-family:
    Microsoft YaHei,
    Microsoft YaHei;
  font-weight: 400;
  font-size: 0.14rem;
  color: #333;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
  display: block;
}

.reserveForm select {
  appearance: auto;
  color: #8b8b8b;
}

.reserveForm input::placeholder {
  color: #c0c4cc;
}

.reserveForm input:focus,
.reserveForm select:focus {
  background: #ffffff;
  border-color: var(--color);
}

.reserveSubmit,
.reserveConfirm {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.48rem;
  background: var(--color);
  border-radius: 0.24rem;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 500;
  font-size: 0.15rem;
  color: #ffffff;
}

.reserveSubmit {
  width: 100%;
  margin-top: 0.18rem;
}

.reserveConfirm {
  width: 1.38rem;
  margin: 0.48rem auto 0;
}

.reserveSuccessIcon {
  position: relative;
  width: 1.38rem;
  height: 1.38em;
  margin: 0 auto 0.2rem;
}

.reserveSuccessIcon img {
  width: 100%;
  height: 100%;
}

.reserveSuccessText {
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.18rem;
  color: #000000;
}

.afterSaleSection {
  padding: 0 0 1.08rem;
}

.afterSaleSection .pageTitle {
  margin-bottom: 0.64rem;
}

.pageTitle--center {
  text-align: center;
}

.pageTitle--center .titleLine {
  justify-content: center;
}

.serviceGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
}

.serviceCard {
  min-height: 3.54rem;
  padding: 0.96rem 0.34rem 0;
  background: #ffffff;
  border-radius: 0.14rem;
  transition: all 0.6s;
}
.serviceCard > img {
  width: 0.39rem;
  height: 0.39rem;
  margin: 0 auto;
  display: block;
  margin-bottom: 0.49rem;
}

.serviceCard:hover h2,
.serviceCard:hover p {
  color: #ffffff;
}

.serviceCard:hover {
  background-color: #ff0000;
}

.serviceCard:hover > img {
  filter: brightness(0) invert(1);
}

.serviceCard h2 {
  height: 0.57rem;
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.2rem;
  color: #000000;
  text-align: center;
  transition: all 0.6s;
}

.serviceCard p {
  font-family:
    Source Han Sans CN,
    Source Han Sans CN;
  font-weight: 400;
  font-size: 0.14rem;
  color: #727272;
  line-height: 0.26rem;
  text-align: center;
  transition: all 0.6s;
}

@media (max-width: 1024px) {
  .storeDetailPanel {
    grid-template-columns: 1fr;
    gap: 0.36rem;
  }

  .serviceGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .detailCrumbs {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .detailMap {
    height: 3.2rem;
  }

  .detailActions {
    align-items: flex-start;
    flex-direction: column;
  }

  .reserveModal {
    padding: 0.2rem;
  }

  .reserveDialog {
    width: 100%;
    max-width: 4.2rem;
  }

  .reserveDialog--form {
    padding: 0.42rem 0.24rem 0.46rem;
  }

  .reserveDialog--success {
    padding: 0.72rem 0.26rem 0.5rem;
  }

  .serviceGrid {
    grid-template-columns: 1fr;
  }
}

/* responsive refinement */
@media (max-width: 1024px) {
  .networkPage {
    padding-top: 0.88rem;
  }

  .storeSection,
  .joinSection,
  .storeDetailHero,
  .afterSaleSection {
    padding-top: 0.72rem;
    padding-bottom: 0.72rem;
  }

  .pageTitle h1,
  .serviceTitle h1 {
    font-size: 0.44rem;
  }

  .storeHead,
  .detailActions {
    gap: 0.22rem;
  }

  .storeGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.22rem;
  }

  .storeCard {
    height: auto;
    min-height: 4.5rem;
    padding: 0.32rem 0.2rem 0.24rem;
  }

  .storeCard__top h2,
  .joinPanel__copy h2,
  .detailInfoBox h1,
  .serviceCard h2 {
    font-size: 0.3rem;
  }

  .storeTags span,
  .storeInfo p,
  .detailText p,
  .serviceCard p,
  .plateMarker span,
  .plateMarker em,
  .detailCrumbs,
  .detailInfoTitle,
  .guideBtn,
  .plateBtn,
  .reserveBtn {
    font-size: 0.22rem;
  }

  .storeMap {
    height: 3.4rem;
  }

  .joinPanel {
    grid-template-columns: 1fr;
    height: auto;
    gap: 0.28rem;
  }

  .joinPanel__copy {
    padding: 0.48rem 0.34rem 0;
  }

  .joinPanel__pic {
    height: 4rem;
  }

  .storeDetailPanel {
    grid-template-columns: 1fr;
    gap: 0.28rem;
    padding: 0.22rem;
  }

  .detailMap {
    height: 4.1rem;
  }

  .serviceGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .serviceCard {
    min-height: 3rem;
    padding: 0.72rem 0.24rem 0;
  }
}

@media (max-width: 560px) {
  .networkPage {
    padding-top: 0.86rem;
  }

  .storeSection,
  .joinSection,
  .storeDetailHero,
  .afterSaleSection {
    padding-top: 0.56rem;
    padding-bottom: 0.56rem;
  }

  .pageTitle h1,
  .serviceTitle h1 {
    font-size: 0.4rem;
  }

  .storeHead {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.4rem;
  }

  .storeSearch {
    width: 100%;
    height: 0.68rem;
  }

  .storeGrid {
    grid-template-columns: 1fr;
    gap: 0.18rem;
  }

  .storeCard {
    min-height: 0;
    padding: 0.26rem 0.18rem;
  }

  .storeCard__top h2,
  .joinPanel__copy h2,
  .detailInfoBox h1,
  .serviceCard h2 {
    font-size: 0.28rem;
  }

  .storeTags {
    flex-wrap: wrap;
    gap: 0.08rem;
    margin-top: 0.26rem;
  }

  .storeTags span,
  .storeInfo p,
  .detailText p,
  .serviceCard p,
  .plateMarker span,
  .plateMarker em,
  .detailCrumbs,
  .detailInfoTitle,
  .guideBtn,
  .plateBtn,
  .reserveBtn {
    font-size: 0.24rem;
  }

  .storeMap {
    height: 2.8rem;
    margin-top: 0.36rem;
  }

  .storeEnd {
    font-size: 0.22rem;
  }

  .joinPanel__copy {
    padding: 0.3rem 0.2rem 0;
  }

  .joinPhone {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.14rem;
  }

  .joinPhone strong {
    font-size: 0.42rem;
  }

  .joinPanel__pic {
    height: 3.1rem;
  }

  .detailCrumbs {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .storeDetailPanel {
    padding: 0.16rem;
  }

  .detailMap {
    height: 3rem;
  }

  .detailInfoTitle {
    flex-wrap: wrap;
  }

  .detailActions {
    align-items: flex-start;
    flex-direction: column;
  }

  .plateBtn,
  .guideBtn,
  .reserveBtn {
    width: 100%;
    min-height: 0.56rem;
  }

  .serviceGrid {
    grid-template-columns: 1fr;
    gap: 0.16rem;
  }

  .serviceCard {
    min-height: 0;
    padding: 0.46rem 0.2rem 0.24rem;
  }

  .serviceCard > img {
    width: 0.34rem;
    height: 0.34rem;
    margin-bottom: 0.24rem;
  }
}

@media (max-width: 560px) {
  .storeSearch input,
  .storeTags span,
  .storeInfo p,
  .storeEnd,
  .detailCrumbs,
  .detailCrumbs a,
  .detailCrumbs span,
  .detailCrumbs strong,
  .detailText p,
  .plateBtn,
  .guideBtn,
  .reserveBtn,
  .reserveForm span,
  .reserveForm input,
  .reserveForm select,
  .reserveSubmit,
  .reserveConfirm,
  .reserveSuccessText,
  .serviceCard p {
    font-size: 0.24rem;
  }
}
