Skip to content
ApexOnline
ApexOnline
#2090 (no title)
/* ======================================== Affiliate Page – Professional Design ======================================== */ /* CSS Variables */ :root { –primary-color: #232f3e; –accent-color: #ff9900; –accent-hover: #e88b00; –text-dark: #333; –text-light: #666; –white: #ffffff; –light-bg: #f8f9fa; –border-color: #e1e1e1; –shadow: 0 2px 10px rgba(0,0,0,0.1); –shadow-hover: 0 8px 25px rgba(0,0,0,0.15); –transition: all 0.3s ease; } /* Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* ======================================== Hero Section ======================================== */ .hero-section { background: linear-gradient(135deg, var(–primary-color) 0%, #1a252f 100%); padding: 80px 20px; text-align: center; position: relative; overflow: hidden; } .hero-section::before { content: ”; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url(‘data:image/svg+xml,
‘) repeat; background-size: 200px; opacity: 0.5; } .hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; } .hero-section h1 { font-size: 3.5rem; font-weight: 700; color: var(–white); margin-bottom: 20px; line-height: 1.2; } .hero-subtitle { font-size: 1.25rem; color: rgba(255,255,255,0.85); margin-bottom: 35px; line-height: 1.6; } .cta-button { display: inline-block; background: var(–accent-color); color: var(–primary-color); padding: 16px 40px; font-size: 1.1rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: var(–transition); text-transform: uppercase; letter-spacing: 1px; } .cta-button:hover { background: var(–accent-hover); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,153,0,0.4); } /* ======================================== Categories Section ======================================== */ .categories-section { padding: 60px 0; background: var(–light-bg); } .categories-section h2 { text-align: center; font-size: 2rem; color: var(–text-dark); margin-bottom: 40px; } .categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; } .category-card { background: var(–white); padding: 30px 20px; text-align: center; border-radius: 12px; box-shadow: var(–shadow); transition: var(–transition); cursor: pointer; border: 1px solid var(–border-color); } .category-card:hover { transform: translateY(-5px); box-shadow: var(–shadow-hover); border-color: var(–accent-color); } .category-card h3 { font-size: 1.2rem; color: var(–text-dark); margin-bottom: 10px; } .category-card p { color: var(–text-light); font-size: 0.9rem; } /* ======================================== Products Section ======================================== */ .products-section { padding: 80px 0; } .products-section h2 { text-align: center; font-size: 2.2rem; color: var(–text-dark); margin-bottom: 50px; position: relative; } .products-section h2::after { content: ”; display: block; width: 60px; height: 4px; background: var(–accent-color); margin: 15px auto 0; border-radius: 2px; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; } .product-card { background: var(–white); border-radius: 16px; overflow: hidden; box-shadow: var(–shadow); transition: var(–transition); border: 1px solid var(–border-color); display: flex; flex-direction: column; } .product-card:hover { transform: translateY(-8px); box-shadow: var(–shadow-hover); } .product-image { position: relative; padding: 20px; background: var(–light-bg); display: flex; align-items: center; justify-content: center; min-height: 220px; } .product-image img { max-width: 100%; max-height: 200px; object-fit: contain; transition: var(–transition); } .product-card:hover .product-image img { transform: scale(1.05); } .product-badge { position: absolute; top: 15px; left: 15px; background: #ff4757; color: var(–white); padding: 6px 14px; font-size: 0.75rem; font-weight: 700; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; } .product-info { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; } .product-info h3 { font-size: 1.1rem; color: var(–text-dark); margin-bottom: 10px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .product-description { color: var(–text-light); font-size: 0.9rem; line-height: 1.5; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex-grow: 1; } .product-price { margin-bottom: 20px; display: flex; align-items: center; gap: 12px; } .current-price { font-size: 1.5rem; font-weight: 700; color: #B12704; } .old-price { font-size: 1rem; color: var(–text-light); text-decoration: line-through; } .buy-button { display: block; width: 100%; padding: 14px 20px; background: var(–accent-color); color: var(–primary-color); text-align: center; text-decoration: none; font-weight: 600; border-radius: 8px; transition: var(–transition); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; } .buy-button:hover { background: var(–accent-hover); box-shadow: 0 5px 15px rgba(255,153,0,0.4); } /* ======================================== Trust Section ======================================== */ .trust-section { padding: 50px 0; background: var(–primary-color); } .trust-badges { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 50px; } .trust-item { display: flex; align-items: center; gap: 12px; color: var(–white); } .trust-icon { width: 40px; height: 40px; background: var(–accent-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: bold; color: var(–primary-color); } .trust-item span:last-child { font-size: 1rem; font-weight: 500; } /* ======================================== Newsletter Section ======================================== */ .newsletter-section { padding: 80px 0; background: var(–light-bg); text-align: center; } .newsletter-section h2 { font-size: 2rem; color: var(–text-dark); margin-bottom: 15px; } .newsletter-section p { color: var(–text-light); margin-bottom: 30px; } .newsletter-form { display: flex; justify-content: center; gap: 15px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; } .newsletter-form input { flex: 1; min-width: 250px; padding: 16px 25px; border: 2px solid var(–border-color); border-radius: 50px; font-size: 1rem; transition: var(–transition); } .newsletter-form input:focus { outline: none; border-color: var(–accent-color); } .newsletter-form button { padding: 16px 35px; background: var(–primary-color); color: var(–white); border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: var(–transition); } .newsletter-form button:hover { background: #1a252f; transform: translateY(-2px); } /* ======================================== Affiliate Disclosure ======================================== */ .affiliate-disclosure { background: #fff3cd; padding: 20px; text-align: center; border-top: 3px solid var(–accent-color); } .affiliate-disclosure p { font-size: 0.85rem; color: #856404; max-width: 800px; margin: 0 auto; line-height: 1.6; } /* ======================================== Responsive Design ======================================== */ @media (max-width: 768px) { .hero-section h1 { font-size: 2.2rem; } .hero-subtitle { font-size: 1rem; } .categories-grid { grid-template-columns: repeat(2, 1fr); } .trust-badges { flex-direction: column; gap: 25px; } .newsletter-form { flex-direction: column; padding: 0 20px; } .newsletter-form input, .newsletter-form button { width: 100%; } } @media (max-width: 480px) { .hero-section { padding: 50px 20px; } .hero-section h1 { font-size: 1.8rem; } .categories-grid { grid-template-columns: 1fr; } .products-grid { grid-template-columns: 1fr; } }
Home
/ Page 2
ShopOnline
Showing 31–60 of 2152 results
Select Category (Catalog)
Uncategorized (2)
For Her (304)
Case (10)
Belt (29)
Hat (19)
Sunglasses (37)
Dress (34)
Shorts (1)
Socks (7)
Camera (103)
Sneakers (8)
Jeans (5)
Boots (9)
Gloves (21)
Pants (3)
Jacket (9)
Skirt (1)
Sweater (2)
Charger (6)
For Him (1,703)
Fashion (1,394)
Shoes (111)
Bag (41)
Shirt (12)
Watch (140)
Hoodie (2)
Headphone (3)
Tool (143)
Buy product
Fashion
1/12 Scale Dollhouse Miniature Pastry Making Station With Egg Milk Bread Cutting Board Food Model Ki
$
10,49
Buy product
Buy product
Fashion
1/12 Scale Dollhouse Miniature Rice Cooker Machine Modle Simulation Kitchen Appliance Accessories Pr
$
10,43
Buy product
Buy product
Shoes
1/2 Pairs Memory Foam disposable Insoles for Shoes Antibacterial Deodorization Sweat Absorption Inse
$
5,49
Buy product
Buy product
Sunglasses
1/2 PC S Classic Fashion Square Plastic Frame Women Sunglasses For Men Daily Life Shades Eyewear Acc
$
7,39
Buy product
Buy product
Tool
1/2/3PCS Star Shaped Cookie Cutters, Plastic Pastry Cutter, Pentagram Biscuit Molds, Baking Tools, K
$
7,06
Buy product
Buy product
Shoes
1/2/4/16Pairs 5D Massage Memory Foam Insoles For Shoes Sole Breathable Cushion Sport Running Insoles
$
5,01
Buy product
Buy product
Fashion
1/2/4pairs Latex Sport Insoles Soft High Elasticity Shoe Pads Orthotic Breathable Shock Absorption C
$
7,45
Buy product
Buy product
Tool
1/2/4PCS High Quality Phone Repair Tools Memory Metal Tin Scraping Knife Solder Paste Mixing Knife P
$
5,11
Buy product
Buy product
Fashion
1/2/6pcs Microfiber Cleaning Towel Thicken Soft Drying Cloth Car Body Washing Towels Double Layer Cl
$
6,19
Buy product
Buy product
Fashion
1/2Inch Drive 6-Point Impact Socket Set 10-20 pcs/set 8-32mm Metric Sizes Carbon Steel Impact Socket
$
49,70
Buy product
Buy product
Watch
1/2PCS 20mm 22mm Parachute Straps for Samsung Galaxy Watch 7 6 5 4 40mm 44mm 6Classic 47mm Nylon Ban
$
8,08
Buy product
Buy product
Fashion
1/2Pcs Air Fryer Silicone Tray Reusable Ninja Dual Basket Baking Pan Oven Pot Plate Liner Air Fryer
$
11,94
Buy product
Buy product
Bag
1/2pcs PU Leather Baby Bag Stroller Hook Pram Cart Organizer 360 Degree Rotatable Hook High-quality
$
2,14
Buy product
Buy product
Fashion
1/2Pcs Shoe Stretcher Multifunctional Shoe Trees Adjustable Universal Sneaker Shoe Boot Widener Stre
$
36,47
Buy product
Buy product
Fashion
1/2Pcs Universal Shoe Stretcher Adjustable Boot Stretcher PC Sneaker Shoe Widener with Steel Shaft f
$
37,36
Buy product
Buy product
Belt
1/3/5pcs Adjuster Children Kid Car Safety Belt Universal Car Baby Safety Seat Strap Belt Buckle Seat
$
7,36
Buy product
Buy product
Fashion
1/32 Audi RS6 Toy Car Model with Sound Light Doors Opened Alloy Diecast Model Vehicle Collection Toy
$
22,39
Buy product
Buy product
Gloves
1/3PCS Baby Remote Control Teether Silicone Baby Anti-Eating Gloves Pacifier Bracelet Teething Stick
$
7,71
Buy product
Buy product
Fashion
1/3Pcs High quality Universal BGA Reballing Stencil square hole Direct heating BGA Template for Mobi
$
3,56
Buy product
Buy product
Tool
1/4 Hex Magnetic Ring Screwdriver Bits Drill Hand Tools Drill Bit Extension Rod Quick Change Holder
$
7,86
Buy product
Buy product
Tool
1/4 Pneumatic Die Grinder Air Die Grinder Grinding Mill Engraving Tool Polishing Machine for Pneumat
$
27,83
Buy product
Buy product
Shoes
1/4/8Pairs Sports Insole Orthotic Arch Support Flatfoot Running Insoles for Shoes Sole Orthopedic In
$
6,91
Buy product
Buy product
Fashion
1/5/10/30/50/100pcs 8mm Plastic Rivets Fasteners Screw Car Bumper Fender Black Rivet Car Fastener Cl
$
0,47
Buy product
Buy product
Fashion
1/5pcs Rubber Cover Motorcycle Gear Shift Shifter Lever Foot Pad Pedal Universal Moto Pedal Kick Sta
$
5,00
Buy product
Buy product
Fashion
10 in 1 Car LED Acrylic Light Strip RGB Symphony Auto Interior Strip Lights Remote/APP Control Decor
$
19,66
Buy product
Buy product
Fashion
10 Keys Wireless Steering Wheel Control Button for Car Radio DVD GPS Multimedia Navigation Head Unit
$
19,33
Buy product
Buy product
Belt
10 PCS Car Seatbelt Buckle Car Seat Belt Stop Button Clips Seatbelt Adjuster Fastener Retainer Rivet
$
5,22
Buy product
Buy product
Charger
10-100Pcs Charging Port Dock Plug For Redmi 10C 13C 14C Note 11 12 13 11S 12R 13R 4G 5G TYPE-C Charg
$
8,46
Buy product
Buy product
Charger
10-100PCS For OPPO A95 A93 A92 A55 A52 A53 A32 A16 USB Charging Port Dock Plug Charger Connector Soc
$
1,98
Buy product
Buy product
Tool
10-210N.m Torque Wrench 1/2 Precise Reversible Ratchet Torques Key Professional Bicycle Motorcycle
$
84,70
Buy product
←
1
2
3
4
5
…
70
71
72
→
Scroll to Top