        .index-cell {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            padding: 12px 5px;
            text-align: center;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .index-cell:hover {
            background: #e9f2fa;
            border-color: #3498db;
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .index-title {
            text-align: center;
            color: #2c3e50;
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 0px;
            margin-top: 3px;
        }

        .index-container {
            width: 100%;
            max-width: 900px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin: 20px auto;
        }
        .index-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
        }

        .wtable-container {
            width: 100%;
            max-width: 900px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            padding: 25px;
            margin: 20px auto;
        }
        
        .wtable-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: 600;
            padding-bottom: 15px;
        }
        
        .wtable-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }
        
        .wtable-cell {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            padding: 12px 5px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        
        .wtable-cell:hover {
            background: #e9f2fa;
            border-color: #3498db;
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        
        .wtable-cell-s {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 6px;
            padding: 1px 5px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .wtable-cell-s:hover {
            background: #e9f2fa;
            border-color: #3498db;
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .wtable-header {
            background: #2c3e50;
            color: white;
            font-weight: 600;
        }
        
        .wtable-header:hover {
            background: #2c3e50;
            border-color: #2c3e50;
            transform: none;
            box-shadow: none;
        }
        
        .wtable-highlight {
            background: #e9f7fe;
            border-color: #3498db;
            color: #3498db;
            font-weight: 600;
        }
        
        .wtable-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eaeaea;
            font-size: 13px;
            color: #7f8c8d;
        }
        
        .wtable-pagination {
            display: flex;
            gap: 5px;
        }
        
        .wtable-page-btn {
            padding: 6px 12px;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 13px;
        }
        
        .wtable-page-btn:hover {
            background: #e9ecef;
        }
        
        .wtable-page-btn-active {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        /* 响应式 */
        @media (max-width: 992px) {
            .wtable-grid {
                grid-template-columns: repeat(6, 1fr);
            }
            .index-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .wtable-grid {
                grid-template-columns: repeat(5, 1fr);
            }
            .index-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .wtable-container {
                padding: 20px 15px;
            }
        }
        
        @media (max-width: 576px) {
            .wtable-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .index-grid {
                grid-template-columns: repeat(1, 1fr);
            }
            .wtable-cell {
                padding: 10px 3px;
                font-size: 13px;
            }
        }
        
        @media (max-width: 400px) {
            .wtable-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .wtable-info {
            text-align: center;
            margin-top: 20px;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 6px;
            font-size: 13px;
            color: #6c757d;
        }
        
        .vehicle-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 20px;
        }
        
        .vehicle-card-wrapper {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .vehicle-card-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .vehicle-model {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: left;
            padding-left: 5px;
            border-left: 4px solid #3498db;
            
        }
        
        .vehicle-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
        }
        
        .vehicle-image {
            width: 100%;
            height: 0;
            padding-bottom: 67.5%; /* 比例 */
            background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
            position: relative;
            overflow: hidden;
        }
        
        .vehicle-image img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
        }
        
        .vehicle-info {
            padding: 15px;
        }
        
        .vehicle-date-line {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .vehicle-date {
            display: flex;
            align-items: center;
            color: #7f8c8d;
            font-size: 14px;
        }

        .offline-date {
            text-align: right;
            justify-content: flex-end;
        }

        .vehicle-date i {
            margin-right: 8px;
            color: #3498db;
        }

        .offline-date i {
            color: #e74c3c; /* 使用不同的颜色区分下线日期 */
        }

        .vehicle-date {
            color: #7f8c8d;
            font-size: 14px;
            text-align: left;
            display: flex;
            align-items: center;
        }
        
        .vehicle-date i {
            margin-right: 8px;
            color: #3498db;
        }
        
        .vehicle-specs {
            display: flex;
            justify-content: space-between;
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #eaeaea;
        }
        
        .spec-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 13px;
            color: #7f8c8d;
        }
        
        .spec-value {
            font-weight: 600;
            color: #2c3e50;
            margin-top: 4px;
        }
        
        .vehicle-status {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-top: 12px;
        }
        
        .status-active {
            background: #e9f7fe;
            color: #3498db;
        }
        
        .status-inactive {
            background: #fef2e9;
            color: #f39c12;
        }

        .status-stop {
            background: #e04848;
            color: #fff;
        }
        
        .wtable-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eaeaea;
        }
        
        .wtable-pagination {
            display: flex;
            gap: 8px;
        }
        
        .wtable-page-btn {
            padding: 8px 16px;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
        }
        
        .wtable-page-btn:hover {
            background: #e9ecef;
        }
        
        .wtable-page-btn-active {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }
        
        .wtable-info {
            color: #6c757d;
            font-size: 14px;
        }
        

        @media (max-width: 992px) {
            .vehicle-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .vehicle-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .wtable-container {
                padding: 20px 15px;
            }
        }
        

        .wtable-filter {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 8px 16px;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 14px;
        }
        
        .filter-btn:hover, .filter-btn-active {
            background: #3498db;
            color: white;
            border-color: #3498db;
        }