ELECTRIC DESERT BIKE

44 sold
$19.99
$123.95
-84%
Range:  25km
Quantity

Description

3DUAL-MOTOR ELECTRIC BIKE (750W MOTORS*2)

Dual 48V 750W Brushless Motor has high performance, more power and faster acceleration. The rear and front hub motors offer unmatched performance on climbs, deep snow, and even mud. The powerful motor allow the max speed up to 25km/h (top speed can be unlocked).

15AH 48V REMOVABLE BATTERY

Long range: 65-110km by assist mode, 35-65km by pure electric mode. Only 2.4kg weight, it’s one of the lightest battery packs on the market for electric bikes. Its simple design and compact size make the bicycle beautiful and generous. And also, it is easy to install and disassemble as well as convenient transportation and safe use.
 Waterproof design
√ Long cycle life
√ Compact Size
 Lightweight

5 SPEED LEVELS WITH MECHANICAL SHIFT 7 GEARS

7-speed bikes can travel on different terrains. Riders can adjust the bike’s gear according to personal preference to adapt to different road conditions, such as tilt, bumps, or other difficulties. The lower gears make it easier to pedal, and the higher gears make it easier to move downhill.

3 RIDING MODES

00: Manpower only
01: Electric only
02: Both Pedal assist and electric

UPGRADED LIGHT SYSTEM

Front Head Beam Lamp, Manual Seat back light, Tail light. Big beam light for clearer vision at night

COLORFUL SCREEN LCD METER

Display Real-time speed :“RT SPEED“, “MAX SPEED“, average speed :“AVG SPEED“, and Km/h or mile/h. The new color display can be set according to your habits.
Intelligent battery indicator that provides stable battery reminders through an optimization algorithm. 5 levels of backlight brightness so you can change it to be a comfortable brightness at night. And it still has a Mileage display, Output power indication, Walk assist function, Speed measuring magnets number adjustment, and so on. Walk boost mode is very helpful when you want to walk for a while.

UPGRADED FAST 4A CHARGER

54.6V / 4A super quick charger allows fully charged in 3.5-4 hours per times.

MORE DETAILS:

MECHANICAL DISC BRAKES PROS

Mechanical disc brakes are operated by a steel cable that connects the brake lever to the brake caliper. Easier to replace, cheaper and easy to maintenance.

COMFORT SEAT WITH LED LIGHT (MANUAL WITH BATTERY CELL)

Our this Folding dual motor fat tire electric bike installed an oversized Comfort seat with lightweight foam seat made of high-quality waterproof artificial leather and filled with decompression function, bringing you a different comfort experience. (Manual with battery cell)

LOCKABLE SUSPENSION FORK

The high-strength shock absorber front fork allows you to be more relaxed and comfortable when riding, and no longer afraid of bumps. Meanwhile, the lock switch can be manually locked or opened depending on riding conditions. The separate fork-shaped bridge design makes the outer tube of the front fork stronger and effectively prevents dust pollution during riding.

4.0" CUT-RESISTANT AND WEAR-RESISTANT WIDE TIRES

The deep and wide tread design provides good grip and stability. Make it perfect for driving on snow, sand, mountain, and rugged roads, and even hunting.

FRONT AND REAR SHOCK ABSORBER

Bike has front and rear shock absorbers. The full shockproof system keeps your tires stay in contact with the ground when riding on rugged ground, and bumps. Meanwhile, it will improve traction, instead of rebounding from bumps and losing grip, and reducing the risk of making mistakes on rough terrain for long distances riding with smoother riding.

FOLDABLE

MORE PICTURES

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.