ADVERTISEMENT

China cancels military talks with US in protest at sanctions over Russia military equipment

Published Sep 23, 2018 11:26 am
By Reuters SHANGHAI/WASHINGTON (Reuters) - China summoned the U.S. ambassador in Beijing and postponed joint military talks in protest against a U.S. decision to sanction a Chinese military agency and its director for buying Russian fighter jets and a surface-to-air missile system. FILE PHOTO: Flags of U.S. and China are placed for a meeting at the Ministry of Agriculture in Beijing, China, June 30, 2017. REUTERS/Jason Lee/File Photo/ MANILA BULLETIN FILE PHOTO: Flags of U.S. and China are placed for a meeting at the Ministry of Agriculture in Beijing, China, June 30, 2017. REUTERS/Jason Lee/File Photo/ MANILA BULLETIN Chinese Deputy Foreign Minister Zheng Zeguang summoned Ambassador Terry Branstad to lodge “stern representations”, the foreign ministry said. China’s Defence Ministry said in a statement it would recall navy chief Shen Jinlong from a visit to the United States and postpone planned talks in Beijing between Chinese and U.S. military officials that had been set for next week. It added that China’s military reserved the right to take further countermeasures, without giving further details. Ministry spokesman Wu Qian said China’s decision to buy fighter jets and missile systems from Russia was a normal act of cooperation between sovereign countries, and the United States had “no right to interfere”. On Thursday, the U.S. State Department imposed sanctions on China’s Equipment Development Department (EED), the branch of the military responsible for weapons procurement, after it engaged in “significant transactions” with Rosoboronexport, Russia’s main arms exporter. The sanctions are related to China’s purchase of 10 SU-35 combat aircraft in 2017 and S-400 surface-to-air missile system-related equipment in 2018, the State Department said. A senior U.S. State Department official on Saturday said China was the only country that had taken possession of the advanced S-400 surface-to-air missile system, in a breach of a U.S. sanctions law imposed in response to Russia’s “malign behavior”. The official, speaking to Reuters on condition of anonymity, insisted that the sanctions were aimed at Moscow, not Beijing. The so-called Countering America’s Adversaries Through Sanctions Act, or CAATSA, was signed into law in 2017 to punish Russia for meddling in U.S. elections, aggression in Ukraine and involvement in Syria’s civil war. “China is the first country in the world to use both of those systems,” the official said. “Both of those systems are extremely sophisticated and very high value.” The mobile S-400 batteries, which include radars, a control system, and missiles with a range of up to 250 miles (402 km), was first deployed in Russia in 2007 and is considered Moscow’s most effective defense against aircraft, missiles and drones. Russia has deployed S-400s in Syria, according to official Russian news media, and U.S. officials have been discussing the interest other nations, particularly NATO ally Turkey, have expressed in buying the system. Washington has expressed concern that Turkey’s planned deployment of S-400s could threaten some U.S.-made weapons and other technology used by Turkey, including the F-35 fighter jet. The official said the move against the Chinese agency was not discretionary, but was made because Beijing broke U.S. law. “We hope it will be paid attention to because ... our goal is to prevent these types of transactions,” he added. The U.S. sanctions will block the EED and its director, Li Shangfu, from applying for export licenses and participating in the U.S. financial system. “The U.S. approach is a blatant violation of the basic norms of international relations, a full manifestation of hegemony, and a serious breach of the relations between the two countries and their two militaries,” Wu said in a notice posted on the Chinese defense ministry’s official Wechat account. He warned that the United States would face “consequences” if it did not immediately revoke the sanctions.
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.