* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f8f9fa; color: #333; line-height: 1.6; } a { text-decoration: none; color: inherit; } img { max-width: 100%; height: auto; } .header { background: #fff; padding: 0 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; } .header-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 70px; } .logo { font-size: 24px; font-weight: bold; color: #2c3e50; display: flex; align-items: center; gap: 8px; } .logo-icon { font-size: 28px; } .nav-pc { display: flex; gap: 32px; align-items: center; } .nav-pc a { color: #555; font-weight: 500; transition: color 0.2s; } .nav-pc a:hover { color: #409eff; } .header-actions { display: flex; align-items: center; gap: 16px; } .cart-btn { position: relative; background: none; border: none; font-size: 24px; cursor: pointer; padding: 8px; } .cart-count { position: absolute; top: 0; right: 0; background: #f56c6c; color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 10px; min-width: 18px; text-align: center; } .mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; padding: 8px; } .hero { background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%); color: #fff; padding: 60px 20px; text-align: center; } .hero-inner { max-width: 1280px; margin: 0 auto; } .hero h1 { font-size: 48px; margin-bottom: 16px; font-weight: 700; } .hero p { font-size: 20px; opacity: 0.9; margin-bottom: 32px; } .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; } .btn-primary { background: #409eff; color: #fff; padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 16px; border: none; cursor: pointer; transition: background 0.2s; } .btn-primary:hover { background: #66b1ff; } .btn-outline { background: transparent; color: #fff; padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 16px; border: 2px solid #fff; cursor: pointer; transition: all 0.2s; } .btn-outline:hover { background: #fff; color: #2c3e50; } .advantages { background: #fff; padding: 40px 20px; } .advantages-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; } .adv-item { text-align: center; padding: 20px; } .adv-icon { font-size: 40px; margin-bottom: 12px; } .adv-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: #2c3e50; } .adv-desc { font-size: 14px; color: #888; } .categories { padding: 40px 20px; max-width: 1280px; margin: 0 auto; } .section-title { font-size: 28px; text-align: center; margin-bottom: 32px; color: #2c3e50; } .cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; } .cat-item { background: #fff; border-radius: 12px; padding: 24px 16px; text-align: center; cursor: pointer; transition: all 0.2s; border: 2px solid transparent; } .cat-item:hover, .cat-item.active { border-color: #409eff; box-shadow: 0 4px 12px rgba(64, 158, 255, 0.2); } .cat-icon { font-size: 36px; margin-bottom: 8px; } .cat-name { font-weight: 500; color: #333; } .products-section { padding: 40px 20px; max-width: 1280px; margin: 0 auto; } .products-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; } .products-header h2 { margin: 0; font-size: 24px; } .search-box { display: flex; gap: 8px; } .search-box input { padding: 10px 16px; border: 1px solid #ddd; border-radius: 6px; width: 240px; font-size: 14px; } .search-box input:focus { outline: none; border-color: #409eff; } .search-box button { padding: 10px 20px; background: #409eff; color: #fff; border: none; border-radius: 6px; cursor: pointer; } .prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .prod-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.3s; } .prod-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); } .prod-img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f5f5f5; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 48px; } .prod-img img { width: 100%; height: 100%; object-fit: cover; } .prod-info { padding: 16px; } .prod-name { font-size: 16px; font-weight: 500; margin-bottom: 8px; color: #333; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 44px; } .prod-price { font-size: 20px; color: #f56c6c; font-weight: 700; margin-bottom: 12px; } .prod-price .unit { font-size: 14px; font-weight: 400; color: #999; } .prod-actions { display: flex; gap: 8px; } .prod-actions button { flex: 1; padding: 10px; border: none; border-radius: 6px; cursor: pointer; font-weight: 500; transition: all 0.2s; } .btn-cart { background: #fff; border: 1px solid #409eff !important; color: #409eff; } .btn-cart:hover { background: #409eff; color: #fff; } .btn-inquiry { background: #409eff; color: #fff; } .btn-inquiry:hover { background: #66b1ff; } .prod-sku { font-size: 12px; color: #999; margin-bottom: 4px; } .no-products { text-align: center; padding: 60px; color: #999; grid-column: 1 / -1; } .pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; } .pagination button { padding: 8px 14px; border: 1px solid #ddd; background: #fff; border-radius: 6px; cursor: pointer; } .pagination button:hover { border-color: #409eff; color: #409eff; } .pagination button.active { background: #409eff; color: #fff; border-color: #409eff; } .pagination button:disabled { opacity: 0.5; cursor: not-allowed; } .footer { background: #2c3e50; color: #fff; padding: 48px 20px; margin-top: 60px; } .footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } .footer-brand { font-size: 20px; font-weight: bold; margin-bottom: 12px; } .footer-desc { opacity: 0.7; font-size: 14px; line-height: 1.8; } .footer-title { font-weight: 600; margin-bottom: 16px; opacity: 0.9; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 8px; } .footer-links a { opacity: 0.6; font-size: 14px; transition: opacity 0.2s; } .footer-links a:hover { opacity: 1; } .footer-bottom { max-width: 1280px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; opacity: 0.5; font-size: 14px; } .modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; } .modal-overlay.active { display: flex; } .modal-content { background: #fff; padding: 32px; border-radius: 12px; width: 420px; max-width: 90%; position: relative; } .modal-close { position: absolute; right: 16px; top: 16px; font-size: 24px; background: none; border: none; cursor: pointer; color: #999; } .modal-close:hover { color: #333; } .modal h2 { margin-bottom: 24px; font-size: 22px; } .form-group { margin-bottom: 16px; } .form-group label { display: block; margin-bottom: 6px; font-weight: 500; color: #555; } .form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: #409eff; } .form-group textarea { resize: vertical; min-height: 80px; } .form-submit { width: 100%; background: #409eff; color: #fff; padding: 14px; border: none; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; } .form-submit:hover { background: #66b1ff; } .cart-modal { width: 800px; } .cart-items { max-height: 400px; overflow-y: auto; } .cart-item { display: flex; align-items: center; padding: 16px 0; border-bottom: 1px solid #eee; gap: 16px; } .cart-item-img { width: 80px; height: 80px; object-fit: cover; border-radius: 6px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; font-size: 32px; } .cart-item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; } .cart-item-info { flex: 1; } .cart-item-name { font-weight: 500; margin-bottom: 4px; } .cart-item-price { color: #f56c6c; font-weight: 600; } .cart-item-qty { display: flex; align-items: center; gap: 8px; } .cart-item-qty button { width: 28px; height: 28px; border: 1px solid #ddd; background: #fff; border-radius: 4px; cursor: pointer; } .cart-item-qty input { width: 40px; text-align: center; padding: 4px; border: 1px solid #ddd; border-radius: 4px; } .cart-item-remove { color: #f56c6c; background: none; border: none; cursor: pointer; font-size: 20px; padding: 4px 8px; } .cart-total { padding: 16px 0; display: flex; justify-content: space-between; align-items: center; font-size: 18px; font-weight: 600; margin-top: 16px; border-top: 1px solid #eee; } .cart-empty { text-align: center; padding: 40px; color: #999; } .mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 99; padding: 16px; } .mobile-nav.active { display: block; } .mobile-nav a { display: block; padding: 12px 0; border-bottom: 1px solid #eee; color: #333; } .mobile-nav a:last-child { border-bottom: none; } @media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(3, 1fr); } .cat-grid { grid-template-columns: repeat(3, 1fr); } .footer-inner { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .nav-pc { display: none; } .mobile-menu-btn { display: block; } .header-inner { height: 60px; } .hero { padding: 40px 16px; } .hero h1 { font-size: 32px; } .hero p { font-size: 16px; } .hero-btns { flex-direction: column; align-items: center; } .advantages-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; } .adv-item { padding: 16px 8px; } .adv-icon { font-size: 32px; } .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; } .cat-item { padding: 16px 8px; } .cat-icon { font-size: 28px; } .cat-name { font-size: 12px; } .products-section { padding: 24px 16px; } .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .prod-info { padding: 12px; } .prod-name { font-size: 14px; min-height: 40px; } .prod-price { font-size: 18px; } .prod-actions { flex-direction: column; } .prod-actions button { padding: 8px; font-size: 12px; } .search-box { width: 100%; } .footer-inner { grid-template-columns: 1fr; gap: 32px; } .footer { padding: 32px 16px; } .section-title { font-size: 22px; margin-bottom: 20px; } } .loading { text-align: center; padding: 40px; color: #999; font-size: 16px; }

Premium Bags & Luggage

Your trusted manufacturer for high-quality travel bags, backpacks, and custom OEM solutions

🏭
Factory Direct
Direct from manufacturer, best price guaranteed
🔧
OEM/ODM Service
Custom logo, packaging, and design available
🚚
Global Shipping
Worldwide delivery with reliable logistics partners
💰
Wholesale Price
Competitive bulk pricing for distributors

Product Categories

đŸ“Ļ
All Products

Featured Products

Loading products...
🐟
JXY Assistant
24/7 Online
Hello! 🐟 I'm JXY, your 24/7 assistant. How can I help you today?