... | 🕐 --:--
-- -- --
عاجل
⚡ عاجل: كريستيانو رونالدو يُتوّج كأفضل لاعب كرة قدم في العالم ⚡ أخبار عاجلة تتابعونها لحظة بلحظة على خبر ⚡ تابعوا آخر المستجدات والأحداث من حول العالم
⌘K
AI مباشر
29700 مقال 232 مصدر نشط 38 قناة مباشرة 7304 خبر اليوم
آخر تحديث: منذ ثانية

ليبيا والصين تعززان الشراكة الاستراتيجية

العالم
عين ليبيا
2026/03/24 - 12:44 503 مشاهدة

عُقد في العاصمة الصينية بكين اجتماع مهم جمع رئيس اللجنة العليا للإشراف على التعاون الليبي الصيني والمبعوث الخاص لرئيس الوزراء لشؤون الساحة الآسيوية، عبدالمجيد مليقطة، إلى جانب وزير الاقتصاد والتجارة المكلف بحكومة الوحدة الوطنية، سهيل أبوشيحة، مع نائب وزير الخارجية الصيني، مياو ده يو، بحضور وفدي البلدين.

وجاء الاجتماع في إطار دفع مسار الشراكة الاستراتيجية بين ليبيا وجمهورية الصين الشعبية، وتعزيز التعاون الثنائي في مختلف المجالات.

وخلال اللقاء، تم تسليم رسالة خطية من رئيس حكومة الوحدة الوطنية، عبدالحميد الدبيبة، إلى رئيس مجلس الدولة الصيني، لي تشيانغ، تناولت توطيد العلاقات الثنائية وتوسيع الشراكات، إلى جانب تنسيق المواقف بشأن القضايا الإقليمية والدولية.

وأكد الجانب الصيني عمق العلاقات التاريخية بين البلدين، مشيرًا إلى أن إعلان الشراكة الاستراتيجية في سبتمبر 2024 منح زخماً جديداً للتعاون، مع التأكيد على الاستعداد لتعزيز الدعم المتبادل وتطوير العمل المشترك على أسس مستقرة.

وتركزت المباحثات على تعميق التعاون في القطاعات الحيوية المرتبطة بالتنمية الاقتصادية في ليبيا، بما في ذلك البنية التحتية والطاقة. وشدد الاجتماع على أهمية عودة الشركات الصينية للمساهمة في مشاريع الإعمار، ومعالجة أوضاع الشركات السابقة، وفتح المجال أمام شراكات فعالة بين القطاعين العام والخاص لدعم تنفيذ مشاريع تنموية ملموسة.

كما ناقش الجانبان تعزيز دور ليبيا كمحور إقليمي في مجالي النقل والطاقة، مستفيدة من موقعها الاستراتيجي، إلى جانب تسهيل إجراءات منح التأشيرات لمواطني البلدين، وتفعيل عمل اللجنة المشتركة وعقد اجتماعاتها في أقرب وقت، لتعزيز الطابع المؤسسي للعلاقات الثنائية.

من جانبه، أعرب الجانب الليبي عن تقديره للتجربة التنموية الصينية، مؤكداً متابعة ليبيا لخطط الصين المستقبلية، وتطلعه إلى تعزيز التواصل رفيع المستوى وتوسيع مجالات التعاون بما يدفع الشراكة الاستراتيجية نحو آفاق أوسع.

وختم الاجتماع بالتأكيد على إحالة التوصيات المتفق عليها إلى القيادتين السياسيتين لتسريع تنفيذها، ومواصلة التنسيق والتشاور خلال المرحلة المقبلة، بما يضمن تحويل التفاهمات إلى مشاريع عملية ملموسة على أرض الواقع.

The post ليبيا والصين تعززان الشراكة الاستراتيجية appeared first on عين ليبيا | آخر أخبار ليبيا.

مشاركة:
\n

مقالات ذات صلة

// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 26035; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 26035; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
AI
يا هلا! اسألني أي شي 🎤