ORLMS TS60 Electric Bike

ORLMS TS60 Dual Motor Electric Bike – 2000W (3000 Peak) Power, 60V 25AH, Hydraulic Disc Brake, 45-Mile Range (USA Stock)
Free shipping
Hot
Sold 0 only 999999999 item(s) left
$1,399.99 $1,899.99 Save $500.00
Color:  Black&White
Quantity
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Share the love

Watch the creative process behind the product

Click to watch
See how it works
Description

Description

🚴‍♀️ ​Powerful Dual-Motor Ebike: Featuring a 1000W brushless front motor and a 1000W rear motor, totaling 2000W of power. Paired with a 60V 25AH removable lithium battery, the high-speed 2000W brushless Shimano 7-speed gear motor ensures effortless riding, with a maximum speed of up to ​38MPH. It can also reach ​35MPH in idle mode.

🚴‍♀️ ​High-Performance Lithium Battery: Equipped with a durable, waterproof 60V 25AH detachable lithium battery, this e-bike offers convenience and flexibility. The battery can be charged directly or removed for charging, with a charging time of approximately 8-9 hours and up to 2000 charge cycles.

🚴‍♀️ ​26-Inch Fat Tires for All Terrains: The bike is fitted with 4-inch-wide puncture-resistant fat tires and front suspension, making it suitable for various terrains, including downtown streets, rocky roads, sandy beaches, snowy suburbs, country lanes, and urban jungles.

🚴‍♀️ ​Smart Digital LCD Display: A 5-speed LCD display provides real-time data on speed, total distance traveled, and remaining battery power. The 5-speed mode offers more customization options compared to standard modes.

🚴‍♀️ ​Three Riding Modes for Superior Performance: Enjoy three riding modes—electric-only, human-only, and pedal-assist—customized with Shimano 7-speed performance. The perfect double disc brakes and integrated lighting system ensure your safety on every ride.

🚴‍♀️ ​Full Suspension for Comfort: The lockable aluminum front suspension fork offers 100mm of travel for shock absorption, complemented by rear suspension to reduce external impact. This design protects your knees, ankles, and lower back, providing a comfortable ride on all road types.

🚴‍♀️ ​Excellent Service & Warranty: The e-bike comes with essential accessories, including a shelf, fender, lock, pump, and controller bag. It includes a 12-month warranty for the battery, charger, motor, and controller, with 24-hour quick response support.

🚴‍♀️ ​Upgraded Features Based on Feedback: We've enhanced the electric bicycle with upgraded headlights and a color screen instrument panel, ensuring a better riding experience based on buyer feedback and experience.

Specifications

Frame: Aluminum Alloy
Front fork: Suspension fork
Battery: 60V25Ah
Motor: 60V 1000W*2 (3000W Peak Dual motor)
Display: Color LCD landscape display
Max speed: 62KM/h
Endurance: 26-80 Miles (Top speed/range vary by terrain, temperature, etc.)
Braking System: Hydraulic disc brakes
Driving Mode: Pure Electrical / Human riding / PAS
Tire size: 24*4.0
Color: Black&Yellow / Black&Green / Dark Blue&Green / Black&White
Gear Lever: 7-Speed Gears
Slope: <45º
Charging Time: 8-9H
Load Weight: 330 LBS / 150KG
Certification: CE, UL, GCC
Package size: 148×29×77 cm
Gross weight: 44.8kg

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.

Frequently asked questions

Is there a discount coupon I can use?

Sure! Use ​ORLMS20 for $20 off. Enjoy your shopping!

How long does it take for the delivery to arrive?

We have stock available locally. Delivery will take 5-8 days at the earliest, depending on the specific circumstances.

What is the warranty period?

Warranty Details:

Consumable parts: 1 month

Major components: 1 year

Battery: 6 months

What is the return and refund policy?

12-month warranty covers defects (you pay shipping).

14-day returns – buyer covers shipping, must be unopened/unused.

Damaged items? Contact courier immediately + provide photos for claim.