✦ Verified product
RedMagic 11S Pro (Global)
GBP 939.00
Average Dad Tech
Verified independent store
→
body { font-family: 'Varela Round', sans-serif; background-color: #f9f9f9; margin: 0; padding: 0; } .accordion { max-width: 900px; margin: 40px auto; border-radius: 12px; box-shado
w: 0 4px 10px rgba(0, 0, 0, 0.1); background: white; overflow: hidden; } .accordion-item { border-top: 1px solid #4a58a6; } .accordion-header { background-color: #137de4; color: #ffffff; padding: 20px 24px; width: 100%; text-align: left; font-size: 18px; font-weight: bold; border: none; outline: none; cursor: pointer; transition: background 0.3s ease, color 0.3s ease; } .accordion-header:hover { background-color: #fcdc23; color: #000; } .accordion-content { display: none; background-color: #f7f3d7; padding: 0 24px; } .accordion-content.active { display: block; padding: 20px 24px; } .accordion-content ul { list-style: none; padding-left: 0; font-size: 16px; line-height: 1.6; } .accordion-content li { margin-bottom: 10px; } .accordion-content strong { display: inline-block; width: 160px; } table { width: 100%; border-collapse: collapse; font-size: 16px; margin-top: 15px; } table thead { background-color: #137de4; color: #fff; } table th, table td { padding: 10px; text-align: left; border: 1px solid #ccc; } Global Version What's included? Charging Brick: Yes USB Cable: Yes Protective case: Yes Network Technology:GSM / HSPA / LTE / 5G 2G Bands: GSM 850 / 900 / 1800 / 1900 3G Bands:HSDPA 800 / 850 / 900 / 1700(AWS) / 1900 / 2100 4G Bands: LTE 5G Bands:SA/NSA Speed: HSPA, LTE, 5G SIM: Nano-SIM + Nano-SIM Durability:IPX8 water resistant (immersible up to 1.5m for 30 min) Body Dimensions: 163.8 x 76.5 x 8.9 mm (6.45 x 3.01 x 0.35 in) Weight: 230 g (8.11 oz) Build: Glass front (Gorilla Glass), aluminum frame, glass back Display Type:AMOLED, 1B colors, 144Hz, 2592Hz PWM, 1800 nits (peak) Size:6.85 inches, 113.7 cm2 (~90.7% screen-to-body ratio) Resolution:1216 x 2688 pixels (~431 ppi density) Platform OS:Android 16, Redmagic OS 11.5 Chipset: Qualcomm SM8850-1-AD Snapdragon 8 Elite Gen 5 (3 nm) CPU: Octa-core (2x4.74 GHz Oryon V3 Phoenix L + 6x3.62 GHz Oryon V3 Phoenix M) GPU: Adreno 840 (1.3GHz) Memory Card Slot: No Internal: 512GB 16GB RAM Main Camera Dual 50 MP, f/1.9, 23mm (wide), 1/1.55", 1.0µm, multi-directional PDAF, OIS 50 MP, f/2.0, 13mm (ultrawide), 1/2.88", 0.61µm, AF Auxiliary lens Features: LED flash, HDR, panorama Video:8K@30fps, 4K@30/60fps, 1080p@30/60/120/240fps Selfie Camera Single:16 MP, f/2.0, 26mm (wide), 1/3.06", 1.12µm, under display Features:HDR Video: 1080p@30/60fps Sound Speakers:Yes, with stereo speakers 3.5mm Jack: Yes Comms WLAN:Wi-Fi 802.11 a/b/g/n/ac/6e/7, tri-band, Wi-Fi Direct Bluetooth:5.4, A2DP, LE Positioning:GPS (L1+L5), GLONASS, BDS, GALILEO NFC: Yes Infrared: Yes Radio: No USB:USB Type-C 3.2 Gen 2, OTG, accessory connector, DisplayPort Features Sensors:Fingerprint (under display, ultrasonic), accelerometer, gyro, proximity, compass Battery Type:Si/C Li-Ion 7500 mAh Charging: 80W wired ,80W wireless , Reverse wireless const headers = document.querySelectorAll(".accordion-header"); headers.forEach(header => { header.addEventListener("click", () => { const content = header.nextElementSibling; document.querySelectorAll(".accordion-content").forEach(item => { if (item !== content) { item.classList.remove("active"); } }); content.classList.toggle("active"); }); });