
.breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #112131;
}

.breadcrumb span {
    color: #999;
}

.breadcrumb .current {
    color: #112131;
    font-weight: 500;
}


.contact-section {
    padding: 50px 0;
}

/* 椤堕儴浠嬬粛鍖哄煙 */
.contact-intro {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: stretch;
    padding: 30px;
     background: #fff;;
}
/* 外层容器基准定位 */
.hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  overflow: hidden; /* 隐藏图片溢出部分 */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #fff; /* 文字白色适配背景图，按需修改 */
}

/* 循环出来的图片统一底层处理 */
.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 图片等比例铺满不拉伸 */
  z-index: -1; /* 核心：放到最底层 */
}
.page-header-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 图片等比例铺满不拉伸 */
  z-index: -1; /* 核心：放到最底层 */
}
/* 文字、链接、按钮层级自动在上，无需额外z-index */
.hero h1,
.hero p,
.hero .hero-tel,
.hero .tel-button,
.hero .cta-button {
  position: relative;
  z-index: 1; /* 强化上层显示，避免兼容问题 */
}
.hero h1 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    letter-spacing: 2px;
    opacity: 0.9;
}
.intro-image {
    flex: 0 0 45%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h1 {
    font-size: 26px;
    color: #112131;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.intro-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 25px 0;
   
}

.intro-info {
    border-top: 1px dashed #e2e8f0;
    padding-top: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.info-label {
    color: #999;
    min-width: 90px;
}

.info-value {
    color: #333;
}

.info-value.phone {
    color: #112131;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.store-list-wrapper {
    background-color: #fff;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.store-list {
    display: flex;
    flex-direction: column;
}

.store-item {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.store-item:last-child {
    border-bottom: none;
}

.store-item:hover {
    background-color: #f8f9fa;
}

.store-name {
    flex: 0 0 320px;
    color: #112131;
    font-size: 14px;
    font-weight: 500;
}

.store-address {
    flex: 1;
    color: #666;
    font-size: 14px;
}


@media (max-width: 1024px) {
    .contact-intro {
        flex-direction: column;
    }

    .intro-image {
        flex: none;
        height: 280px;
    }

    .store-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .store-name {
        flex: none;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-intro {
        gap: 20px;
        margin-bottom: 30px;
    }

    .intro-content h1 {
        font-size: 22px;
    }

    .intro-content p {
        text-indent: 0;
    }

    .info-value.phone {
        font-size: 18px;
    }

    .store-item {
        padding: 15px 20px;
    }
}