 .cart-icon {
            color: #ffb700;
            position: relative;
        }
        
        .cart-count {
            background-color: #ff6b6b;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            position: absolute;
            top: -5px;
            right: -10px;
        }
        
        /* 顶部搜索栏 */
        .search-section {
            background-color: #fff;
            border-radius: 5px;
            padding: 15px 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .breadcrumbs {
            font-size: 14px;
            color: #6c757d;
        }
        
        .breadcrumbs a {
            color: #007bff;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumbs a:hover {
            color: #0056b3;
        }
        
        .breadcrumbs span {
            margin: 0 5px;
            color: #adb5bd;
        }
        
        .search-container {
            display: flex;
            width: 500px;
            position: relative;
        }
        
        .search-container input {
            flex-grow: 1;
            padding: 12px 15px 12px 45px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            font-size: 15px;
            transition: border-color 0.3s;
        }
        
        .search-container input:focus {
            border-color: #5cb85c;
            outline: none;
            box-shadow: 0 0 0 3px rgba(92, 184, 92, 0.2);
        }
        
        .search-container i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
        }
        
        .search-container button {
            background-color: #5cb85c;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            margin-left: 10px;
            transition: background 0.3s;
        }
        
        .search-container button:hover {
            background-color: #4da24d;
        }
        
        /* 主体布局 */
        .layout {
            display: flex;
            gap: 25px;
        }
        
        /* 侧边栏样式 - G2A风格 */
        .sidebar {
            width: 300px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            align-self: flex-start;
        }
        
        .sidebar-header {
            background: linear-gradient(90deg, #1a2530 0%, #232f3e 100%);
            color: white;
            padding: 15px 20px;
            border-radius: 5px 5px 0 0;
            font-size: 18px;
            font-weight: 600;
        }
        
        .sidebar-section {
            padding: 20px;
            border-bottom: 1px solid #f0f3f5;
        }
        
        .sidebar-section:last-child {
            border-bottom: none;
        }
        
        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #f0f3f5;
        }
        
        .section-title h3 {
            font-size: 16px;
            font-weight: 600;
            color: #232f3e;
        }
        
        .section-title a {
            color: #5cb85c;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .section-title a:hover {
            color: #4da24d;
        }
        
        .category-nav {
            display: flex;
            margin-bottom: 15px;
            border-bottom: 1px solid #f0f3f5;
        }
        
        .category-tab {
            padding: 8px 15px;
            background-color: #f8f9fa;
            border: 1px solid #eaeaea;
            border-bottom: none;
            cursor: pointer;
            font-size: 14px;
            position: relative;
            margin-right: 5px;
            border-radius: 4px 4px 0 0;
            transition: all 0.3s;
        }
        
        .category-tab.active {
            background-color: #fff;
            font-weight: 600;
            color: #5cb85c;
            border-color: #5cb85c;
        }
        
        .category-list {
            list-style: none;
            max-height: 250px;
            overflow-y: auto;
        }
        
        .category-item {
            padding: 10px 0;
            border-bottom: 1px solid #f8f9fa;
            display: flex;
            align-items: center;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .category-item:hover {
            background-color: #f8f9fa;
        }
        
        .category-item:last-child {
            border-bottom: none;
        }
        
        .category-item label {
            cursor: pointer;
            display: flex;
            align-items: center;
            width: 100%;
            position: relative;
        }
        
        .category-item input {
            margin-right: 10px;
        }
        
        .item-count {
            font-size: 13px;
            color: #6c757d;
            background-color: #f0f3f5;
            padding: 2px 8px;
            border-radius: 10px;
            position: absolute;
            right: 0;
        }
        
        /* 分页控件样式 */
        .pagination-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #f0f3f5;
            font-size: 14px;
        }
        
        .page-btn {
            background: #f8f9fa;
            color: #495057;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            padding: 6px 12px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.3s;
        }
        
        .page-btn:hover {
            background: #e9ecef;
            border-color: #ced4da;
        }
        
        .page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .page-info {
            color: #6c757d;
            font-size: 13px;
        }
        
        /* 折扣标签 */
        .discount-tag {
            display: inline-block;
            background-color: #ff6b6b;
            color: white;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 3px;
            margin-left: 10px;
            font-weight: 500;
        }
        
        /* 内容区域 */
        .content-area {
            flex-grow: 1;
        }
        
        .content-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            background: #fff;
            padding: 15px 20px;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        .result-summary {
            color: #6c757d;
            font-size: 14px;
        }
        
        .result-summary strong {
            color: #232f3e;
            font-weight: 600;
        }
        
        /* 视图切换按钮 */
        .view-toggle {
            display: flex;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .view-btn {
            background: #fff;
            color: #495057;
            border: none;
            padding: 8px 15px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .view-btn:first-child {
            border-right: 1px solid #dee2e6;
        }
        
        .view-btn:hover {
            background: #f8f9fa;
        }
        
        .view-btn.active {
            background-color: #5cb85c;
            color: white;
        }
        
        .view-btn i {
            margin-right: 5px;
        }
        
        /* 网格视图 */
        .game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .grid-card {
            background: #fff;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .grid-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        
        .card-image {
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .grid-card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .discount-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #ff6b6b;
            color: white;
            padding: 4px 10px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 3px;
        }
        
        .card-content {
            padding: 15px;
        }
        
        .platform {
            color: #5cb85c;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .game-title {
            font-size: 16px;
            font-weight: 600;
            color: #232f3e;
            margin-bottom: 8px;
            height: 44px;
            overflow: hidden;
        }
        
        .game-description {
            color: #6c757d;
            font-size: 13px;
            height: 40px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price-area .original-price {
            text-decoration: line-through;
            color: #868e96;
            font-size: 13px;
        }
        
        .price-area .current-price {
            font-weight: bold;
            font-size: 20px;
            color: #232f3e;
        }
        
        .buy-btn {
            background: #5cb85c;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
            transition: background 0.3s;
        }
        
        .buy-btn:hover {
            background: #4da24d;
        }
        
        /* 列表视图 */
        .game-list {
            display: none;
            flex-direction: column;
            margin-bottom: 30px;
        }
        
        .list-item {
            display: flex;
            background: #fff;
            border-radius: 5px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }
        
        .list-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .list-image {
            width: 180px;
            border-radius: 5px 0 0 5px;
            overflow: hidden;
        }
        
        .list-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .list-item:hover .list-image img {
            transform: scale(1.05);
        }
        
        .list-content {
            flex-grow: 1;
            padding: 15px;
            display: flex;
        }
        
        .list-info {
            flex-grow: 1;
        }
        
        .list-title {
            font-size: 18px;
            font-weight: 600;
            color: #232f3e;
            margin-bottom: 5px;
        }
        
        .list-description {
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 15px;
            max-width: 600px;
        }
        
        .list-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .list-actions {
            min-width: 150px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: center;
        }
        
        .list-price {
            font-size: 24px;
            font-weight: bold;
            color: #232f3e;
            margin-bottom: 10px;
        }
        
        .list-discount {
            color: #ff6b6b;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        /* 底部分页 */
        .bottom-pagination {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #dee2e6;
        }
        
        .pagination {
            display: flex;
            gap: 5px;
        }
        
        .pagination button {
            padding: 8px 16px;
            min-width: 40px;
            background: #fff;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            cursor: pointer;
            color: #495057;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .pagination button:hover:not(.active):not(.disabled) {
            background: #f8f9fa;
        }
        
        .pagination button.active {
            background: #5cb85c;
            color: white;
            border-color: #5cb85c;
        }
        
        .pagination button.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        /* 响应式设计 */
        @media (max-width: 1200px) {
            .layout {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
            }
            .search-container {
                width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                padding: 10px 0;
            }
            .nav-links {
                margin-top: 10px;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }
            .search-section {
                flex-direction: column;
                gap: 15px;
            }
            .search-container {
                width: 100%;
            }
            .breadcrumbs {
                align-self: flex-start;
            }
            .game-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            .list-item {
                flex-direction: column;
            }
            .list-image {
                width: 100%;
                height: 180px;
                border-radius: 5px 5px 0 0;
            }
            .list-content {
                flex-direction: column;
            }
            .list-actions {
                margin-top: 15px;
                align-items: flex-start;
            }
        }