    /* 电商物流基础样式重置 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .wuliu { /* 修正：将wuliu标签改为类选择器 */
      font-family: Arial, sans-serif;
      background-color: #f5f5f5;
      padding: 40px;
    }
	  
	  .logistics-tab {
      width: 100%; /* 修正：占页面宽度的80%，而非100% */
      margin: 0 auto;   /* 水平居中 */
    }
	  
    /* 标题栏样式 */
    .tab-header {
      display: flex;
      border-bottom: 2px solid #007bff;
      margin-bottom: 20px;
    }
    .tab-item {
      padding: 10px 20px;
      font-size: 16px;
      color: #333;
      cursor: pointer;
      margin-right: 10px;
      border-top-left-radius: 4px;
      border-top-right-radius: 4px;
      transition: background-color 0.3s ease;
    }
    .tab-item.active {
      background-color: #007bff;
      color: #fff;
    }
    /* 内容容器样式 */
    .tab-content {
      background-color: #fff;
      padding: 20px;
      border-radius: 4px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* 优化：自适应列数 */
      gap: 20px; /* 优化：调整间距 */
    }
    .card {
      border: 1px solid #eee;
      border-radius: 4px;
      overflow: hidden;
      transition: box-shadow 0.3s ease;
    }
    .card:hover {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    .card img {
      width: 100%;
      height: 150px; /* 优化：设置固定高度 */
      object-fit: cover; /* 优化：图片填充方式 */
      display: block;
    }
    .card-text {
      padding: 12px;
      text-align: center;
    }
    .card-text h3 {
      font-size: 16px;
      margin-bottom: 8px;
      color: #333;
    }
    .card-text p {
      font-size: 14px;
      color: #666;
      margin-bottom: 8px;
    }
    .highlight {
      display: inline-block;
      padding: 2px 6px;
      background-color: #ff4d4f;
      color: white;
      font-size: 12px;
      border-radius: 4px;
    }