 /* 基础样式重置与全局设置 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    
    }
    
    body {
      background-color: #ffffff;
      color: #2d3748;
      line-height: 1.6;
    }
    
    /* 全局容器 - 固定宽度 1525px */
    .container {
      width: 100%;
      max-width:15.25rem;
      margin: 0 auto;
      padding: 0 0.2rem;
    }
    
    /* 颜色系统 - 主色调 #c458a8 */
    :root {
      --primary: #c458a8;
      --primary-light: #f9e8f5;
      --primary-opacity-5: rgba(16, 114, 184, 0.05);
      --primary-opacity-10: rgba(16, 114, 184, 0.1);
      --primary-gradient: linear-gradient(135deg, #c458a8 0%, #a75694 100%);
      --gray-100: #f7fafc;
      --gray-200: #edf2f7;
      --gray-300: #e2e8f0;
      --gray-600: #718096;
      --gray-800: #2d3748;
      --white: #ffffff;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 12px 32px rgba(16, 114, 184, 0.1);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-full: 50%;
      --transition-fast: 0.2s ease;
      --transition-normal: 0.3s ease;
      --transition-slow: 0.5s ease;
    }
    
    /* 页面主体样式 */
    .contact-page {
      padding: 1rem 0;
      background-color: var(--gray-100);
    }
    
    /* 标题区域样式 */
    .page-header {
      text-align: center;
      margin-bottom: 0.8rem;
      position: relative;
    }
    
    .page-subtitle {
      font-size: 0.14rem;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.02rem;
      margin-bottom: 0.12rem;
      display: inline-block;
    }
    
    .page-title {
      font-size: 0.42rem;
      font-weight: 700;
      color: var(--gray-800);
      margin-bottom: 0.16rem;
      line-height: 1.2;
	  font-family: 'PingFangBold';
    }
    
    .page-desc {
      font-size: 0.19rem;
      color: var(--gray-600);
      max-width: 6rem;
      margin: 0 auto;
      line-height: 1.8;
    }
    
    /* 联系内容布局 */
    .contact-content {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 0.5rem;
      align-items: stretch;
	  margin-bottom: 1rem;
    }
    
    /* 联系信息卡片 */
    .contact-card {
      background-color: var(--white);
      border-radius: var(--radius-lg);
      padding: 0.6rem 0.5rem;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
      transition: var(--transition-normal);
    }
    
    .contact-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0.04rem;
      height: 100%;
      background: var(--primary-gradient);
    }
    
    .contact-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-0.05rem);
    }
    
    .company-brand {
      margin-bottom: 0.5rem;
    }
    
    .company-name {
      font-size: 0.26rem;
      font-weight: 700;
      color: var(--gray-800);
      margin-bottom: 0.08rem;
    }
    
    .company-tagline {
      font-size: 0.14rem;
      color: var(--primary);
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    
    .contact-list {
      list-style: none;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 0.35rem;
      transition: var(--transition-fast);
      padding-left: 0.1rem;
      border-left:0.02rem solid transparent;
    }
    
    .contact-item:hover {
      border-left: 0.02rem solid var(--primary);
      padding-left: 0.1rem;
    }
    
    .contact-icon {
      width: 0.6rem;
      height: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--primary-light);
      color: var(--primary);
      border-radius: var(--radius-full);
      margin-right: 0.2rem;
      flex-shrink: 0;
      font-size: 0.22rem;
      transition: var(--transition-normal);
    }
    
    .contact-item:hover .contact-icon {
      background: var(--primary-gradient);
      color: var(--white);
      transform: scale(1.05);
      box-shadow: 0 4px 15px var(--primary-opacity-20);
    }
    
    .contact-info {
      flex: 1;
    }
    
    .contact-label {
      font-size: 0.13rem;
      font-weight: 600;
      color: var(--gray-600);
      margin-bottom: 0.04rem;
      text-transform: uppercase;
      letter-spacing:0.01rem;
    }
    
    .contact-value {
      font-size: 0.18rem;
      font-weight: 500;
      color: var(--gray-800);
	  font-family: 'PingFangBold';
    }
    
    .contact-value a {
      color: var(--gray-800);
      text-decoration: none;
      transition: var(--transition-fast);
      position: relative;
    }
    
    .contact-value a::after {
      content: '';
      position: absolute;
      bottom: -0.02rem;
      left: 0;
      width: 0;
      height: 0.01rem;
      background-color: var(--primary);
      transition: var(--transition-fast);
    }
    
    .contact-value a:hover {
      color: var(--primary);
    }
    
    .contact-value a:hover::after {
      width: 100%;
    }
    
    /* 地图区域样式 */
    .map-wrapper {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    
    .map-card {
      background-color: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      flex: 1;
      transition: var(--transition-normal);
    }
    
    .map-card:hover {
      box-shadow: var(--shadow-lg);
    }
    
    .map-header {
      padding: 0.25rem 0.3rem;
      background-color: var(--primary-light);
      border-bottom: 1px solid var(--primary-opacity-10);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .map-title {
      font-size: 0.19rem;
      font-weight: 600;
      color: var(--primary);
      display: flex;
      align-items: center;
    }
    
    .map-title i {
      margin-right: 0.1rem;
      font-size: 0.2rem;
    }
    
    .map-actions {
      display: flex;
      gap: 0.15rem;
    }
    
    .map-btn {
      background-color: var(--white);
      color: var(--primary);
      border: none;
      border-radius: var(--radius-sm);
      padding: 0.06rem .12rem;
      font-size: 0.13rem;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition-fast);
      display: flex;
      align-items: center;
      gap: 0.05rem;
    }
    .map-btn a{
		color: var(--primary);
	}
    .map-btn:hover {
      background-color: var(--primary);
      color: var(--white);
    }
    .map-btn:hover a{
		 color: var(--white);
	}
    .map-container {
      width: 100%;
      height: calc(100% - 0.73rem);
      position: relative;
      overflow: hidden;
    }
    
    .map-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition-slow);
    }
    
    .map-card:hover .map-image {
      transform: scale(1.02);
    }
    
    .map-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.03) 0%, transparent 100%);
      pointer-events: none;
    }
    
    /* 装饰元素 */
    .decor-dot {
      position: absolute;
      width: 2rem;
      height: 2rem;
      border-radius: var(--radius-full);
      background-color: var(--primary-opacity-5);
      z-index: 0;
      filter: blur(0.6rem);
    }
    
    .dot-1 {
      top: -0.5rem;
      right: -0.5rem;
    }
    
    .dot-2 {
      bottom: -0.8rem;
      left: -0.8rem;
    }
    
    /* 服务保障板块样式 - 统一主色调 */
      .service-guarantee {
        background-color: var(--white);
        border-radius: var(--radius-lg);
        padding:0.5rem;
        box-shadow: var(--shadow-md);
        position: relative;
        overflow: hidden;
        margin-bottom: 0.4rem;
      }
      
      .service-guarantee::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0.04rem;
        background: var(--primary-gradient);
      }
      
      .service-header {
        display: flex;
        align-items: center;
        margin-bottom: 0.3rem;
        position: relative;
      }
      
      .service-icon {
        width: 0.5rem;
        height: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary-light);
        color: var(--primary);
        border-radius: var(--radius-full);
        margin-right: 0.18rem;
        flex-shrink: 0;
        font-size: 0.24rem;
        box-shadow: 0 4px 12px var(--primary-opacity-10);
      }
      
      .service-title {
        font-size: 0.24rem;
        font-weight: 700;
        color: var(--gray-800);
      }
      
      .service-subtitle {
        font-size: 0.14rem;
        color: var(--gray-600);
        margin-top:0.04rem;
      }
      
      .guarantee-list {
        list-style: none;
        counter-reset: guarantee-counter;
      }
      
      .guarantee-item {
        position: relative;
        padding-left: 0.4rem;
        margin-bottom: 0.2rem;
        line-height: 1.8;
        color: var(--gray-800);
        transition: var(--transition-fast);
		font-size: 0.14rem;
      }
      
      .guarantee-item:last-child {
        margin-bottom: 0;
      }
      
      .guarantee-item:hover {
        color: var(--primary);
        padding-left: 0.45rem;
      }
      
      .guarantee-item::before {
        counter-increment: guarantee-counter;
        content: counter(guarantee-counter) '.';
        position: absolute;
        left: 0;
        top: 0;
        font-size: 0.19rem;
        font-weight: 600;
        color: var(--primary);
      }
      
      .guarantee-note {
        margin-top: 0.3rem;
        padding: 0.2rem;
        background-color: var(--primary-light);
        border-radius: var(--radius-md);
        border-left: 0.03rem solid var(--primary);
      }
      
      .note-title {
        font-size: 0.16rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 0.08rem;
        display: flex;
        align-items: center;
      }
      
      .note-title i {
        margin-right: 0.08rem;
      }
      
      .note-content {
        color: var(--gray-800);
        line-height: 1.8;
        font-weight: 500;
		font-size: 0.14rem;
      }
      
      /* 装饰元素 */
      .decor-dot {
        position: absolute;
        width: 2rem;
        height:2rem;
        border-radius: var(--radius-full);
        background-color: var(--primary-opacity-5);
        z-index: 0;
        filter: blur(0.6rem);
      }
      
      .dot-1 {
        top: -0.5rem;
        right: -0.5rem;
      }
      
      .dot-2 {
        bottom: -0.8rem;
        left: -0.8rem;
      }
      
      .dot-3 {
        top: 50%;
        right: -1rem;
        background-color: var(--primary-opacity-5);
        transform: translateY(-50%);
      }
      
      /* 响应式设计 - 精细适配 */
      @media (max-width: 1525px) {
        .container {
          padding: 0 0.3rem;
        }
      }
      
      @media (max-width: 1200px) {
        .contact-content {
          grid-template-columns: 1fr;
          gap:0.4rem;
        }
        
        .map-container {
          height:4.5rem;
        }
        
        .service-guarantee {
          padding: 0.4rem;
        }
      }
      
      @media (max-width: 768px) {
        .contact-page {
          padding: 0.7rem 0;
        }
        
        .page-header {
          margin-bottom: 0.6rem;
        }
        
        .page-title {
          font-size: 0.32rem;
        }
        
        .contact-card {
          padding: 0.45rem 0.35rem;
        }
        
        .company-name {
          font-size: 0.22rem;
        }
        
        .contact-item {
          margin-bottom: 0.25rem;
        }
        
        .contact-icon {
          width: 0.5rem;
          height: 0.5rem;
          font-size: 0.18rem;
          margin-right: 0.15rem;
        }
        
        .contact-value {
          font-size: 0.16rem;
        }
        
        .map-header {
          padding: 0.2rem 0.25rem;
        }
        
        .map-container {
          height:4rem;
        }
        
        .service-guarantee {
          padding: 0.3rem 0.25rem;
        }
        
        .service-title {
          font-size: 0.22rem;
        }
        
        .guarantee-item {
          padding-left: 0.35rem;
          font-size: 0.15rem;
        }
        
        .guarantee-item:hover {
          padding-left: 0.4rem;
        }
        
        .guarantee-note {
          padding: 0.15rem;
        }
      }
      
      @media (max-width: 480px) {
        .container {
          padding: 0 0.15rem;
        }
        
        .contact-page {
          padding: 0.5rem 0;
        }
        
        .page-title {
          font-size: 0.26rem;
        }
        
        .page-subtitle {
          font-size: 0.12rem;
          letter-spacing: 0.01rem;
        }
        
        .contact-card {
          padding: 0.35rem 0.25rem;
        }
        
        .contact-item {
          flex-direction: column;
          align-items: flex-start;
        }
        
        .contact-icon {
          margin-bottom: 0.12rem;
        }
        
        .map-actions {
          display: none;
        }
        
        .map-container {
          height: 3rem;
        }
        
        .service-header {
          flex-direction: column;
          align-items: flex-start;
        }
        
        .service-icon {
          margin-bottom: 0.12rem;
        }
        
        .guarantee-item {
          padding-left: 0.3rem;
        }
        
        .guarantee-item:hover {
          padding-left: 0.35rem;
        }
        
        .note-content {
          font-size:0.14rem;
        }
      }