<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Продукты &#8212; Главная | Медицинское оборудование | ООО &quot;АйДиЭЛ&quot; &#8212; IDL LLC | Россия</title>
	<atom:link href="https://www.idl-medica.com/category/produkty/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.idl-medica.com</link>
	<description>Медицинское оборудование</description>
	<lastBuildDate>Tue, 09 Dec 2025 17:11:42 +0000</lastBuildDate>
	<language>ru-RU</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>

<image>
	<url>https://www.idl-medica.com/wp-content/uploads/2023/12/cropped-781715-32x32.png</url>
	<title>Продукты &#8212; Главная | Медицинское оборудование | ООО &quot;АйДиЭЛ&quot; &#8212; IDL LLC | Россия</title>
	<link>https://www.idl-medica.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Микробиология</title>
		<link>https://www.idl-medica.com/mikrobiologiya/</link>
					<comments>https://www.idl-medica.com/mikrobiologiya/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 09 Dec 2025 15:34:34 +0000</pubDate>
				<category><![CDATA[Продукты]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=1520</guid>

					<description><![CDATA[Микробиологические анализаторы &#124; ООО «АЙДИЭЛ» МИКРОБИОЛОГИЧЕСКИЕ АНАЛИЗАТОРЫ]]></description>
										<content:encoded><![CDATA[
<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Микробиологические анализаторы | ООО «АЙДИЭЛ»</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
            border-radius: 8px;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            width: 100%;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 280px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 300px;
            padding: 15px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }
        
        .detail-value {
            color: #666;
            font-size: 13px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 13px;
        }
        
        .btn:hover {
            background: #006663;
        }
        
        .expand-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
        }
    </style>
</head>
<body>
    <!-- Manufacturer logo -->
    <div class="manufacturer-logo">
        <img decoding="async" src="https://helicon.ru/upload/iblock/2d3/rqpd80ukijj33kwugw135c1qscrilx15/medika%20800.jpg" alt="Medica Logo">
    </div>
    
    <!-- Main content -->
    <div class="container">
        <h1 class="page-title">МИКРОБИОЛОГИЧЕСКИЕ АНАЛИЗАТОРЫ</h1>
        
        <div class="product-cards-container" id="products-container">
            <!-- Карточки будут добавляться автоматически через JavaScript -->
        </div>
    </div>

    <script>
        // Массив карточки товаров
        const productCards = [
            {
                title: "Микробиологический анализатор Юнона ХК-II",
                imageUrl: "https://gkvector.com/wp-content/uploads/2024/08/Анализатор-Юнона.webp",
                linkUrl: "https://www.idl-medica.com/mikrobiologicheskij-analizator-yunona-hk-ii/",
                description: "Современный микробиологический анализатор для автоматизированного проведения исследований в клинико-диагностических лабораториях.",
                details: [
                    { label: "Тип анализа", value: "Микробиологический" },
                    { label: "Производительность", value: "Высокая" },
                    { label: "Автоматизация", value: "Полная" },
                    { label: "Применение", value: "Клинические лаборатории" }
                ]
            },
            {
                title: "ЮНОНА Labstar 50 Бактериологический анализатор",
                imageUrl: "https://gkvector.com/wp-content/uploads/2021/08/0008594772e715e929eb29e613a37a36.jpg",
                linkUrl: "https://www.idl-medica.com/chernovik/",
                description: "Компактный бактериологический анализатор для лабораторий среднего размера с расширенным функционалом.",
                details: [
                    { label: "Вместимость", value: "50 образцов" },
                    { label: "Тип", value: "Бактериологический" },
                    { label: "Управление", value: "Сенсорный экран" },
                    { label: "Габариты", value: "Компактные" }
                ]
            },
            {
                title: "Бактериологический анализатор ЮНОНА Labstar 100",
                imageUrl: "https://gkvector.com/wp-content/uploads/2021/08/1010.png",
                linkUrl: "https://www.idl-medica.com/bakteriologicheskij-analizator-yunona-labstar-100/",
                description: "Профессиональный бактериологический анализатор высокой производительности для крупных лабораторий и исследовательских центров.",
                details: [
                    { label: "Вместимость", value: "100 образцов" },
                    { label: "Производительность", value: "Высокая" },
                    { label: "Точность", value: "Повышенная" },
                    { label: "Энергопотребление", value: "Экономичное" }
                ]
            }
        ];
        
        // Функция для отображения карточек
        function renderProductCards() {
            const container = document.getElementById('products-container');
            container.innerHTML = ''; // Очищаем контейнер
            
            productCards.forEach((card, index) => {
                const cardElement = document.createElement('div');
                cardElement.className = 'product-card';
                cardElement.setAttribute('data-id', index);
                
                // Формируем HTML для деталей товара
                let detailsHTML = '';
                if (card.details) {
                    card.details.forEach(detail => {
                        detailsHTML += `
                            <div class="detail-item">
                                <span class="detail-label">${detail.label}:</span>
                                <span class="detail-value">${detail.value}</span>
                            </div>
                        `;
                    });
                }
                
                cardElement.innerHTML = `
                    <div class="product-image">
                        <img decoding="async" src="${card.imageUrl}" alt="${card.title}">
                    </div>
                    <div class="product-content">
                        <div class="product-title">${card.title}</div>
                        <div class="product-description">${card.description}</div>
                        <div class="product-details">
                            ${detailsHTML}
                            <div class="action-buttons">
                                <a href="${card.linkUrl}" target="_blank" class="btn">
                                    <i class="fas fa-info-circle"></i> Подробнее
                                </a>
                            </div>
                        </div>
                    </div>
                    <div class="expand-icon">
                        <i class="fas fa-chevron-down"></i>
                    </div>
                `;
                
                // Добавляем обработчик клика для раскрытия карточки
                cardElement.addEventListener('click', function(e) {
                    // Игнорируем клики по кнопкам
                    if (e.target.tagName === 'A' || e.target.parentElement.tagName === 'A') {
                        return;
                    }
                    
                    const cardId = this.getAttribute('data-id');
                    const isActive = this.classList.contains('active');
                    
                    // Закрываем все другие карточки
                    document.querySelectorAll('.product-card').forEach(otherCard => {
                        otherCard.classList.remove('active');
                    });
                    
                    // Открываем текущую карточку, если она была закрыта
                    if (!isActive) {
                        this.classList.add('active');
                        // Прокручиваем к карточке, если она не в поле зрения
                        this.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                    }
                });
                
                container.appendChild(cardElement);
            });
        }
        
        // Запуск при загрузке страницы
        window.addEventListener('DOMContentLoaded', function() {
            renderProductCards();
        });
    </script>
</body>
</html>
]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/mikrobiologiya/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Определение группы крови</title>
		<link>https://www.idl-medica.com/opredelenie-gruppy-krovi/</link>
					<comments>https://www.idl-medica.com/opredelenie-gruppy-krovi/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 05 Aug 2025 19:32:09 +0000</pubDate>
				<category><![CDATA[Без рубрики]]></category>
		<category><![CDATA[Продукты]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=1161</guid>

					<description><![CDATA[← Назад к продуктам   Медицинское оборудование &#124; ООО «АЙДИЭЛ» ПРОДУКТЫ]]></description>
										<content:encoded><![CDATA[
<div class="back-button-container">
    <a href="https://www.idl-medica.com/category/produkty/" class="back-button">
        <span class="back-arrow">←</span>
        Назад к продуктам
    </a>
</div>

<style>
.back-button-container {
    margin: 25px 0;
    padding: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* текст белый */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: #5E9886;
    border-radius: 8px;
    border: 2px solid #497769;
    transition: transform 0.3s ease;
}

/* запрещаем синюю подсветку текста при наведении */
.back-button:hover,
.back-button:focus,
.back-button:active {
    color: #ffffff;
    background: #5E9886;
    border-color: #497769;
    transform: translateX(-5px);
}

/* стрелка как текст */
.back-arrow {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff !important; /* белая стрелка */
    transition: transform 0.3s ease;
}

/* стрелка как SVG */
.back-arrow svg,
.back-arrow svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}
</style>


<h4> </h4>


<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Медицинское оборудование | ООО «АЙДИЭЛ»</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            width: 100%;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 280px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 300px;
            padding: 15px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }
        
        .detail-value {
            color: #666;
            font-size: 13px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #007c7a; /* Сине-зеленый цвет */
            color: white;
            text-decoration: none;
            font-size: 13px;
        }
        
        .btn:hover {
            background: #006663; /* Более темный сине-зеленый для ховера */
        }
        
        .expand-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            background: #007c7a; /* Сине-зеленый цвет */
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663; /* Более темный сине-зеленый для активного состояния */
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
        }
    </style>
</head>
<body>
    <!-- Manufacturer logo -->
    <div class="manufacturer-logo">
        <img decoding="async" src="https://www.penlon.com/app/uploads/2023/11/Medcaptain-LOGO_RGB_2023_720x480px.png" alt="Medcaptain Logo">
    </div>
    
    <!-- Main content -->
    <div class="container">
        <h1 class="page-title">ПРОДУКТЫ</h1>
        
        <div class="product-cards-container" id="products-container">
            <!-- Карточки будут добавляться автоматически через JavaScript -->
        </div>
    </div>

    <script>
        // Массив карточки товаров
        const productCards = [
            {
                title: "Автоматический иммуногематологический анализатор BT-70",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2025/08/74ef6359ee4a534b89a7d0cf226a0054.jpg",
                linkUrl: "https://www.idl-medica.com/avtomaticheskij-immunogematologicheskij-analizator-bt-70/",
                description: "Современный автоматический анализатор для иммуногематологических исследований с высокой точностью и производительностью.",
                details: [
                    { label: "Производительность", value: "120 тестов/час" },
                    { label: "Тип", value: "Автоматический анализатор" },
                    { label: "Габариты", value: "650 × 650 × 530 мм" },
                    { label: "Вес", value: "85 кг" }
                ]
            },
            {
                title: "Карты гелевые Runpu",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2025/08/7ea67e8c0f6e159da9ba172a67be99c2.jpg",
                linkUrl: "https://www.idl-medica.com/karty-gelevye-runpu/",
                description: "Высококачественные гелевые карты для иммуногематологических исследований с высокой точностью результатов.",
                details: [
                    { label: "Тип", value: "Расходные материалы" },
                    {label: "Количество тестов", value: "12 тестов на карту" },
                    { label: "Хранение", value: "При +2°C - +8°C" },
                    { label: "Срок годности", value: "18 месяцев" }
                ]
            },
            {
                title: "Центрифуга TXK4",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2025/08/efcefcc7bf05acef106d0aa196dc74d5.png",
                linkUrl: "https://www.idl-medica.com/czentrifuga-txk4/",
                description: "Надежная лабораторная центрифуga для разделения образцов с современной системой управления.",
                details: [
                    { label: "Макс. скорость", value: "4000 об/мин" },
                    { label: "Таймер", value: "0-60 мин" },
                    { label: "Мощность", value: "100 Вт" },
                    { label: "Габариты", value: "380 × 380 × 280 мм" }
                ]
            },
            {
                title: "Инкубатор FYQ",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2025/08/2c02357f370665142aeedfa0d484e9ca.png",
                linkUrl: "https://www.idl-medica.com/inkubator-fyq/",
                description: "Профессиональный инкубатор для лабораторных исследований с точным поддержанием температуры.",
                details: [
                    { label: "Температура", value: "+5°C - +60°C" },
                    { label: "Объем", value: "50 л" },
                    { label: "Точность", value: "±0.5°C" },
                    { label: "Мощность", value: "200 Вт" }
                ]
            }
        ];
        
        // Функция для отображения карточек
        function renderProductCards() {
            const container = document.getElementById('products-container');
            container.innerHTML = ''; // Очищаем контейнер
            
            productCards.forEach((card, index) => {
                const cardElement = document.createElement('div');
                cardElement.className = 'product-card';
                cardElement.setAttribute('data-id', index);
                
                // Формируем HTML для деталей товара
                let detailsHTML = '';
                if (card.details) {
                    card.details.forEach(detail => {
                        detailsHTML += `
                            <div class="detail-item">
                                <span class="detail-label">${detail.label}:</span>
                                <span class="detail-value">${detail.value}</span>
                            </div>
                        `;
                    });
                }
                
                cardElement.innerHTML = `
                    <div class="product-image">
                        <img decoding="async" src="${card.imageUrl}" alt="${card.title}">
                    </div>
                    <div class="product-content">
                        <div class="product-title">${card.title}</div>
                        <div class="product-description">${card.description}</div>
                        <div class="product-details">
                            ${detailsHTML}
                            <div class="action-buttons">
                                <a href="${card.linkUrl}" target="_blank" class="btn">
                                    <i class="fas fa-info-circle"></i> Подробнее
                                </a>
                            </div>
                        </div>
                    </div>
                    <div class="expand-icon">
                        <i class="fas fa-chevron-down"></i>
                    </div>
                `;
                
                // Добавляем обработчик клика для раскрытия карточки
                cardElement.addEventListener('click', function(e) {
                    // Игнорируем клики по кнопкам
                    if (e.target.tagName === 'A' || e.target.parentElement.tagName === 'A') {
                        return;
                    }
                    
                    const cardId = this.getAttribute('data-id');
                    const isActive = this.classList.contains('active');
                    
                    // Закрываем все другие карточки
                    document.querySelectorAll('.product-card').forEach(otherCard => {
                        otherCard.classList.remove('active');
                    });
                    
                    // Открываем текущую карточку, если она была закрыта
                    if (!isActive) {
                        this.classList.add('active');
                        // Прокручиваем к карточке, если она не в поле зрения
                        this.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                    }
                });
                
                container.appendChild(cardElement);
            });
        }
        
        // Запуск при загрузке страницы
        window.addEventListener('DOMContentLoaded', function() {
            renderProductCards();
        });
    </script>
</body>
</html>
]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/opredelenie-gruppy-krovi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Системы взятия образцов</title>
		<link>https://www.idl-medica.com/sistemy-vzyatiya-obrazczov-2/</link>
					<comments>https://www.idl-medica.com/sistemy-vzyatiya-obrazczov-2/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 22 Dec 2023 09:17:32 +0000</pubDate>
				<category><![CDATA[Без рубрики]]></category>
		<category><![CDATA[Продукты]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=498</guid>

					<description><![CDATA[← Назад к продуктам Является крупнейшим мировым производителем систем взятия крови и пластиковых изделий для медицинских лабораторий. Компания представлена по всему миру уже более 60 лет.]]></description>
										<content:encoded><![CDATA[
<div class="back-button-container">
    <a href="https://www.idl-medica.com/category/produkty/" class="back-button">
        <span class="back-arrow">←</span>
        Назад к продуктам
    </a>
</div>

<style>
.back-button-container {
    margin: 25px 0;
    padding: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* текст белый */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: #5E9886;
    border-radius: 8px;
    border: 2px solid #497769;
    transition: transform 0.3s ease;
}

/* запрещаем синюю подсветку текста при наведении */
.back-button:hover,
.back-button:focus,
.back-button:active {
    color: #ffffff;
    background: #5E9886;
    border-color: #497769;
    transform: translateX(-5px);
}

/* стрелка как текст */
.back-arrow {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff !important; /* белая стрелка */
    transition: transform 0.3s ease;
}

/* стрелка как SVG */
.back-arrow svg,
.back-arrow svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}
</style>


<h3><img decoding="async" class="alignleft size-full wp-image-503" src="https://www.idl-medica.com/wp-content/uploads/2023/12/sarstedt.webp" alt="" width="391" height="76" srcset="https://www.idl-medica.com/wp-content/uploads/2023/12/sarstedt.webp 391w, https://www.idl-medica.com/wp-content/uploads/2023/12/sarstedt-300x58.webp 300w, https://www.idl-medica.com/wp-content/uploads/2023/12/sarstedt-250x49.webp 250w" sizes="(max-width: 391px) 100vw, 391px" />Является крупнейшим мировым производителем систем взятия крови и пластиковых изделий для медицинских лабораторий. Компания представлена по всему миру уже более 60 лет.</h3>
<div class="su-row"><div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<ol>
<li>Системы взятия биоматериала</li>
<li>Пробирки, микропробирки, пипетки, наконечники, оборудование для ПЦР, микробиологии, анализа адгезивных клеток и суспензионных культур</li>
<li>Инструменты для инфузии и переливания крови, отведения мочи, местной анестезии, маркировки шприцев и прочие процедурные принадлежности</li>
<li>Оборудование для переливания крови</li>
<li>Системы автоматизации лабораторий</li>
</ol>
<p><img decoding="async" class="alignleft wp-image-516" src="https://www.idl-medica.com/wp-content/uploads/2023/12/impruve_edited.webp" alt="" width="200" height="114" srcset="https://www.idl-medica.com/wp-content/uploads/2023/12/impruve_edited.webp 269w, https://www.idl-medica.com/wp-content/uploads/2023/12/impruve_edited-250x142.webp 250w" sizes="(max-width: 200px) 100vw, 200px" /><br />
</div></div>
<div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<img decoding="async" class="alignleft size-full wp-image-509" src="https://www.idl-medica.com/wp-content/uploads/2023/12/11-2.webp" alt="" width="182" height="76" /></p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-510" src="https://www.idl-medica.com/wp-content/uploads/2023/12/22-2.webp" alt="" width="182" height="76" /></p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-511" src="https://www.idl-medica.com/wp-content/uploads/2023/12/33-2.webp" alt="" width="182" height="76" /></p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-512" src="https://www.idl-medica.com/wp-content/uploads/2023/12/44-2.webp" alt="" width="182" height="76" /></p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-513" src="https://www.idl-medica.com/wp-content/uploads/2023/12/55.webp" alt="" width="182" height="76" /></p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-514" src="https://www.idl-medica.com/wp-content/uploads/2023/12/66.webp" alt="" width="182" height="76" /><br />
</div></div></div>
<div class="su-row"><div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<ol>
<li>Пробирки для взятия капиллярной крови</li>
<li>Иглы для взятия крови</li>
<li>Вакуумные пробирки</li>
<li>Автоматические ланцеты</li>
<li>Лабораторный пластик</li>
<li>Принадлежности для взятия биоматериала (штативы, жгуты, держатели)</li>
</ol>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-520" src="https://www.idl-medica.com/wp-content/uploads/2023/12/11-3.webp" alt="" width="101" height="101" /></p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-521" src="https://www.idl-medica.com/wp-content/uploads/2023/12/22-3.webp" alt="" width="101" height="101" /></p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-522" src="https://www.idl-medica.com/wp-content/uploads/2023/12/33-3.webp" alt="" width="101" height="101" /><br />
</div></div>
<div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<strong>А также лабораторный пластик:</strong></p>
<ol>
<li>Контейнеры для биоматериалов</li>
<li>Микроцентрифужные пробирки</li>
<li>Штативы для лабораторных пробирок</li>
<li>Конические пробирки</li>
<li>Пробирки круглодонные</li>
<li>Наконечники для дозаторов</li>
</ol>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-524" src="https://www.idl-medica.com/wp-content/uploads/2023/12/44-3.webp" alt="" width="101" height="101" /></p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-525" src="https://www.idl-medica.com/wp-content/uploads/2023/12/55-1.webp" alt="" width="101" height="101" /></p>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-526" src="https://www.idl-medica.com/wp-content/uploads/2023/12/66-1.webp" alt="" width="101" height="101" /><br />
</div></div></div>]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/sistemy-vzyatiya-obrazczov-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Иммунохимические анализаторы</title>
		<link>https://www.idl-medica.com/immunohimicheskie-analizatory/</link>
					<comments>https://www.idl-medica.com/immunohimicheskie-analizatory/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 22 Dec 2023 08:57:13 +0000</pubDate>
				<category><![CDATA[Иммунохимические Анализаторы]]></category>
		<category><![CDATA[Продукты]]></category>
		<category><![CDATA[Иммунохимические анализаторы]]></category>
		<category><![CDATA[Иммунохимия]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=480</guid>

					<description><![CDATA[← Назад к продуктам &#160; &#160; &#160; ПРОДУКТЫ Автоматический иммуноанализатор CM-320 Современный автоматический иммуноанализатор с высокой производительностью для лабораторной диагностики. Производительность 320 тестов/час Тип Иммуноанализатор Метод Хемилюминесценция Память 100 000 результатов Подробнее   Автоматический иммуноанализатор CM-180 Компактный автоматический иммуноанализатор для лабораторий с небольшим и средним объемом исследований. Производительность 180 тестов/час Тип Иммуноанализатор Метод Хемилюминесценция Память [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="back-button-container"><a class="back-button" href="https://www.idl-medica.com/category/produkty/"> <span class="back-arrow">←</span> Назад к продуктам </a></div>
<p><style>
.back-button-container {
    margin: 25px 0;
    padding: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* текст белый */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: #5E9886;
    border-radius: 8px;
    border: 2px solid #497769;
    transition: transform 0.3s ease;
}

/* запрещаем синюю подсветку текста при наведении */
.back-button:hover,
.back-button:focus,
.back-button:active {
    color: #ffffff;
    background: #5E9886;
    border-color: #497769;
    transform: translateX(-5px);
}

/* стрелка как текст */
.back-arrow {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff !important; /* белая стрелка */
    transition: transform 0.3s ease;
}

/* стрелка как SVG */
.back-arrow svg,
.back-arrow svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}
</style></p>



<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
            width: 100%;
            max-width: 1200px;
            flex-direction: column;
            align-items: center;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
            margin-bottom: 10px;
        }
        
        .products-label {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-align: center;
            margin-top: 10px;
            padding: 8px 20px;
            display: inline-block;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
            margin-top: 20px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 280px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 300px;
            padding: 15px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }
        
        .detail-value {
            color: #666;
            font-size: 13px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 13px;
        }
        
        .btn:hover {
            background: #006663;
        }
        
        .expand-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .products-label {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
        }
    </style></p>
<!-- Manufacturer logo -->
<div class="manufacturer-logo"><img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/p1.webp" alt="DIRUI Logo" />
<div class="products-label">ПРОДУКТЫ</div>
</div>
<!-- Main content -->
<div class="container">
<div id="products-container" class="product-cards-container"><!-- Карточка 1 -->
<div class="product-card" data-id="0">
<div class="product-image"><img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/09/izobrazhenie.jpeg" alt="Автоматический иммуноанализатор CM-320" /></div>
<div class="product-content">
<div class="product-title">Автоматический иммуноанализатор CM-320</div>
<div class="product-description">Современный автоматический иммуноанализатор с высокой производительностью для лабораторной диагностики.</div>
<div class="product-details">
<div class="detail-item"><span class="detail-label">Производительность</span> <span class="detail-value">320 тестов/час</span></div>
<div class="detail-item"><span class="detail-label">Тип</span> <span class="detail-value">Иммуноанализатор</span></div>
<div class="detail-item"><span class="detail-label">Метод</span> <span class="detail-value">Хемилюминесценция</span></div>
<div class="detail-item"><span class="detail-label">Память</span> <span class="detail-value">100 000 результатов</span></div>
<div class="action-buttons"><a class="btn" href="https://www.idl-medica.com/avtomaticheskij-immunoanalizator-cm-320/" target="_blank" rel="noopener"> <i class="fas fa-info-circle"></i> Подробнее </a></div>
</div>
</div>
<div class="expand-icon"> </div>
</div>
<!-- Карточка 2 -->
<div class="product-card" data-id="1">
<div class="product-image"><img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/09/izobrazhenie-1.jpeg" alt="Автоматический иммуноанализатор CM-180" /></div>
<div class="product-content">
<div class="product-title">Автоматический иммуноанализатор CM-180</div>
<div class="product-description">Компактный автоматический иммуноанализатор для лабораторий с небольшим и средним объемом исследований.</div>
<div class="product-details">
<div class="detail-item"><span class="detail-label">Производительность</span> <span class="detail-value">180 тестов/час</span></div>
<div class="detail-item"><span class="detail-label">Тип</span> <span class="detail-value">Иммуноанализатор</span></div>
<div class="detail-item"><span class="detail-label">Метод</span> <span class="detail-value">Хемилюминесценция</span></div>
<div class="detail-item"><span class="detail-label">Память</span> <span class="detail-value">50 000 результатов</span></div>
<div class="action-buttons"><a class="btn" href="https://www.idl-medica.com/avtomaticheskij-immunoanalizator-cm-180/" target="_blank" rel="noopener"> <i class="fas fa-info-circle"></i> Подробнее </a></div>
</div>
</div>
<div class="expand-icon"> </div>
</div>
</div>
</div>
<p><script>
        // Добавляем обработчик клика для раскрытия карточки
        document.querySelectorAll('.product-card').forEach(card => {
            card.addEventListener('click', function(e) {
                // Игнорируем клики по кнопкам
                if (e.target.tagName === 'A' || e.target.parentElement.tagName === 'A') {
                    return;
                }
                
                const cardId = this.getAttribute('data-id');
                const isActive = this.classList.contains('active');
                
                // Закрываем все другие карточки
                document.querySelectorAll('.product-card').forEach(otherCard => {
                    otherCard.classList.remove('active');
                });
                
                // Открываем текущую карточку, если она была закрыта
                if (!isActive) {
                    this.classList.add('active');
                    // Прокручиваем к карточке, если она не в поле зрения
                    this.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                }
            });
        });
    </script></p>


<div class="su-spacer" style="height:50px"></div>



<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            width: 100%;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 280px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 500px;
            padding: 15px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }
        
        .detail-value {
            color: #666;
            font-size: 13px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 13px;
        }
        
        .btn:hover {
            background: #006663;
        }
        
        .expand-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
        }
    </style></p>
<!-- Manufacturer logo -->
<div class="manufacturer-logo"><img decoding="async" src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSfavOzqK9f4GJAaNWRdL1O6eEdAnXsnYq8Lw&amp;s" alt="Производитель" /></div>
<!-- Main content -->
<div class="container">
<h1 class="page-title">ПРОДУКТЫ</h1>
<div class="product-cards-container"><!-- Карточка товара -->
<div class="product-card">
<div class="product-image"><img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/9f49ac_461b5f3d077046e08b5be5415d3e4c06mv2.webp" alt="Автоматический анализатор электрохемилюминесцентного иммуноанализа eCL8000" /></div>
<div class="product-content">
<div class="product-title">Автоматический анализатор электрохемилюминесцентного иммуноанализа eCL8000</div>
<div class="product-description">Современный автоматический анализатор для электрохемилюминесцентного иммуноанализа с высокой точностью и производительностью.</div>
<div class="product-details">
<div class="detail-item"><span class="detail-label">Производительность</span> <span class="detail-value">до 180 тестов/час</span></div>
<div class="detail-item"><span class="detail-label">Тип</span> <span class="detail-value">Иммуноанализатор</span></div>
<div class="detail-item"><span class="detail-label">Технология</span> <span class="detail-value">Электрохемилюминесценция</span></div>
<div class="detail-item"><span class="detail-label">Габариты</span> <span class="detail-value">950 × 750 × 650 мм</span></div>
<div class="detail-item"><span class="detail-label">Вес</span> <span class="detail-value">120 кг</span></div>
<div class="action-buttons"><a class="btn" href="https://www.idl-medica.com/avtomaticheskij-analizator-elektrohemilyuminesczentnogo-immunoanaliza-ecl8000/" target="_blank" rel="noopener"> <i class="fas fa-info-circle"></i> Подробнее </a></div>
</div>
</div>
<div class="expand-icon"> </div>
</div>
</div>
</div>
<p><script>
        // Добавляем обработчики клика для карточек
        document.addEventListener('DOMContentLoaded', function() {
            const productCards = document.querySelectorAll('.product-card');
            
            productCards.forEach(card => {
                card.addEventListener('click', function(e) {
                    // Игнорируем клики по кнопкам и ссылкам
                    if (e.target.tagName === 'A' || 
                        e.target.tagName === 'I' || 
                        e.target.parentElement.tagName === 'A') {
                        return;
                    }
                    
                    const isActive = this.classList.contains('active');
                    
                    // Закрываем все другие карточки
                    productCards.forEach(otherCard => {
                        if (otherCard !== this) {
                            otherCard.classList.remove('active');
                        }
                    });
                    
                    // Открываем/закрываем текущую карточку
                    if (!isActive) {
                        this.classList.add('active');
                    } else {
                        this.classList.remove('active');
                    }
                });
            });
        });
    </script></p>


<div class="su-spacer" style="height:50px"></div>



<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
            width: 100%;
            max-width: 1200px;
            flex-direction: column;
            align-items: center;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
            margin-bottom: 10px;
        }
        
        .products-label {
            font-size: 28px; /* Увеличено с 24px до 28px */
            font-weight: 700;
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-align: center;
            margin-top: 10px;
            padding: 8px 20px;
            display: inline-block;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
            margin-top: 20px;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 280px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 300px;
            padding: 15px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }
        
        .detail-value {
            color: #666;
            font-size: 13px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 13px;
        }
        
        .btn:hover {
            background: #006663;
        }
        
        .expand-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .products-label {
                font-size: 24px; /* Увеличено для мобильных устройств */
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
        }
    </style></p>
<!-- Manufacturer logo -->
<div class="manufacturer-logo"><img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/09/image-4.png" alt="Lidlab Logo" />
<div class="products-label">ПРОДУКТЫ</div>
</div>
<!-- Main content -->
<div class="container">
<div id="products-container" class="product-cards-container"><!-- Карточка 1 -->
<div class="product-card" data-id="0">
<div class="product-image"><img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/1800_1-e1752576780931.jpg" alt="Хемилюминесцентный анализатор Лидлаб Амур 1800" /></div>
<div class="product-content">
<div class="product-title">Хемилюминесцентный анализатор Лидлаб Амур 1800</div>
<div class="product-description">Современный хемилюминесцентный анализатор для иммуноанализа с высокой производительностью и точностью результатов.</div>
<div class="product-details">
<div class="detail-item"><span class="detail-label">Производительность</span> <span class="detail-value">180 тестов/час</span></div>
<div class="detail-item"><span class="detail-label">Тип</span> <span class="detail-value">Хемилюминесцентный анализатор</span></div>
<div class="detail-item"><span class="detail-label">Габариты</span> <span class="detail-value">1250 × 750 × 1150 мм</span></div>
<div class="detail-item"><span class="detail-label">Вес</span> <span class="detail-value">280 кг</span></div>
<div class="action-buttons"><a class="btn" href="https://www.idl-medica.com/hemilyuminesczentnyj-analizator-lidlab-amur-1800/" target="_blank" rel="noopener"> <i class="fas fa-info-circle"></i> Подробнее </a></div>
</div>
</div>
<div class="expand-icon"> </div>
</div>
<!-- Карточка 2 -->
<div class="product-card" data-id="1">
<div class="product-image"><img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/3000-e1752576760356.jpg" alt="Хемилюминесцентный анализатор Лидлаб Амур 3000" /></div>
<div class="product-content">
<div class="product-title">Хемилюминесцентный анализатор Лидлаб Амур 3000</div>
<div class="product-description">Высокопроизводительный анализатор для лабораторий с большим объемом исследований.</div>
<div class="product-details">
<div class="detail-item"><span class="detail-label">Производительность</span> <span class="detail-value">300 тестов/час</span></div>
<div class="detail-item"><span class="detail-label">Тип</span> <span class="detail-value">Хемилюминесцентный анализатор</span></div>
<div class="detail-item"><span class="detail-label">Габариты</span> <span class="detail-value">1350 × 850 × 1250 мм</span></div>
<div class="detail-item"><span class="detail-label">Вес</span> <span class="detail-value">320 кг</span></div>
<div class="action-buttons"><a class="btn" href="https://www.idl-medica.com/hemilyuminesczentnyj-analizator-lidlab-amur-3000/" target="_blank" rel="noopener"> <i class="fas fa-info-circle"></i> Подробнее </a></div>
</div>
</div>
<div class="expand-icon"> </div>
</div>
<!-- Карточка 3 -->
<div class="product-card" data-id="2">
<div class="product-image"><img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/amur-1200.jpg" alt="Хемилюминесцентный анализатор Лидлаб Амур 1200" /></div>
<div class="product-content">
<div class="product-title">Хемилюминесцентный анализатор Лидлаб Амур 1200</div>
<div class="product-description">Компактный анализатор для лабораторий с небольшим и средним объемом исследований.</div>
<div class="product-details">
<div class="detail-item"><span class="detail-label">Производительность</span> <span class="detail-value">120 тестов/час</span></div>
<div class="detail-item"><span class="detail-label">Тип</span> <span class="detail-value">Хемилюминесцентный анализатор</span></div>
<div class="detail-item"><span class="detail-label">Габариты</span> <span class="detail-value">1100 × 700 × 1050 мм</span></div>
<div class="detail-item"><span class="detail-label">Вес</span> <span class="detail-value">240 кг</span></div>
<div class="action-buttons"><a class="btn" href="https://www.idl-medica.com/hemilyuminesczentnyj-analizator-lidlab-amur-1200/" target="_blank" rel="noopener"> <i class="fas fa-info-circle"></i> Подробнее </a></div>
</div>
</div>
<div class="expand-icon"> </div>
</div>
<!-- Карточка 4 -->
<div class="product-card" data-id="3">
<div class="product-image"><img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/9000_1-e1752576679249.jpg" alt="Хемилюминесцентный анализатор Лидлаб Амур 9000" /></div>
<div class="product-content">
<div class="product-title">Хемилюминесцентный анализатор Лидлаб Амур 9000</div>
<div class="product-description">Флагманская модель с максимальной производительностью для крупных лабораторий.</div>
<div class="product-details">
<div class="detail-item"><span class="detail-label">Производительность</span> <span class="detail-value">900 тестов/час</span></div>
<div class="detail-item"><span class="detail-label">Тип</span> <span class="detail-value">Хемилюминесцентный анализатор</span></div>
<div class="detail-item"><span class="detail-label">Габариты</span> <span class="detail-value">1500 × 900 × 1350 мм</span></div>
<div class="detail-item"><span class="detail-label">Вес</span> <span class="detail-value">380 кг</span></div>
<div class="action-buttons"><a class="btn" href="https://www.idl-medica.com/hemilyuminesczentnyj-analizator-lidlab-amur-9000/" target="_blank" rel="noopener"> <i class="fas fa-info-circle"></i> Подробнее </a></div>
</div>
</div>
<div class="expand-icon"> </div>
</div>
</div>
</div>
<p><script>
        // Добавляем обработчик клика для раскрытия карточки
        document.querySelectorAll('.product-card').forEach(card => {
            card.addEventListener('click', function(e) {
                // Игнорируем клики по кнопкам
                if (e.target.tagName === 'A' || e.target.parentElement.tagName === 'A') {
                    return;
                }
                
                const cardId = this.getAttribute('data-id');
                const isActive = this.classList.contains('active');
                
                // Закрываем все другие карточки
                document.querySelectorAll('.product-card').forEach(otherCard => {
                    otherCard.classList.remove('active');
                });
                
                // Открываем текущую карточку, если она была закрыта
                if (!isActive) {
                    this.classList.add('active');
                    // Прокручиваем к карточке, если она не в поле зрения
                    this.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                }
            });
        });
    </script></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/immunohimicheskie-analizatory/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Биохимические анализаторы</title>
		<link>https://www.idl-medica.com/biohimicheskie-analizatory/</link>
					<comments>https://www.idl-medica.com/biohimicheskie-analizatory/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 22 Dec 2023 08:41:34 +0000</pubDate>
				<category><![CDATA[Без рубрики]]></category>
		<category><![CDATA[Продукты]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=458</guid>

					<description><![CDATA[← Назад к продуктам   Биохимические анализаторы DIRUI &#124; ООО «АЙДИЭЛ» БИОХИМИЧЕСКИЕ АНАЛИЗАТОРЫ]]></description>
										<content:encoded><![CDATA[
<div class="back-button-container">
    <a href="https://www.idl-medica.com/category/produkty/" class="back-button">
        <span class="back-arrow">←</span>
        Назад к продуктам
    </a>
</div>

<style>
.back-button-container {
    margin: 25px 0;
    padding: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* текст белый */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: #5E9886;
    border-radius: 8px;
    border: 2px solid #497769;
    transition: transform 0.3s ease;
}

/* запрещаем синюю подсветку текста при наведении */
.back-button:hover,
.back-button:focus,
.back-button:active {
    color: #ffffff;
    background: #5E9886;
    border-color: #497769;
    transform: translateX(-5px);
}

/* стрелка как текст */
.back-arrow {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff !important; /* белая стрелка */
    transition: transform 0.3s ease;
}

/* стрелка как SVG */
.back-arrow svg,
.back-arrow svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}
</style>


<h3> </h3>


<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Биохимические анализаторы DIRUI | ООО «АЙДИЭЛ»</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            width: 100%;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 320px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 220px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            padding: 15px;
        }
        
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 300px;
            padding: 15px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }
        
        .detail-value {
            color: #666;
            font-size: 13px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 13px;
        }
        
        .btn:hover {
            background: #006663;
        }
        
        .expand-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
        }
    </style>
</head>
<body>
    <!-- Manufacturer logo -->
    <div class="manufacturer-logo">
        <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/p1.webp" alt="DIRUI Logo">
    </div>
    
    <!-- Main content -->
    <div class="container">
        <h1 class="page-title">БИОХИМИЧЕСКИЕ АНАЛИЗАТОРЫ</h1>
        
        <div class="product-cards-container" id="products-container">
            <!-- Карточки будут добавляться автоматически через JavaScript -->
        </div>
    </div>

    <script>
        // Массив карточки товаров
        const productCards = [
            {
                title: "Напольный Биохимический Автоматический анализатор DIRUI CS-300B",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2023/12/cs_300b.webp",
                linkUrl: "https://www.idl-medica.com/napolnyj-biohimicheskij-avtomaticheskij-analizator-dirui-cs-300b/",
                description: "Компактный напольный биохимический анализатор с высокой производительностью для лабораторий с ограниченным пространством.",
                details: [
                    { label: "Производительность", value: "300 тестов/час" },
                    { label: "Тип", value: "Напольный анализатор" },
                    { label: "Методы", value: "Фотометрия, ионселективные электроды" },
                    { label: "Память", value: "10000 результатов" }
                ]
            },
            {
                title: "Автоматический Биохимический анализатор DIRUI CS-6400",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2023/12/b3.webp",
                linkUrl: "https://www.idl-medica.com/avtomaticheskij-biohimicheskij-analizator-dirui-cs-6400/",
                description: "Высокопроизводительный биохимический анализатор для крупных лабораторий с расширенными возможностями.",
                details: [
                    { label: "Производительность", value: "6400 тестов/час" },
                    { label: "Тип", value: "Автоматический анализатор" },
                    { label: "Параметры", value: "До 120 биохимических параметров" },
                    { label: "Пробоемкость", value: "200 проб одновременно" }
                ]
            },
            {
                title: "Автоматический Биохимический анализатор DIRUI CS-1200",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2023/12/dirui-1200_1.webp",
                linkUrl: "https://www.idl-medica.com/avtomaticheskij-biohimicheskij-analizator-dirui-cs-1200/",
                description: "Среднепроизводительный анализатор для лабораторий среднего размера с оптимальным соотношением цены и качества.",
                details: [
                    { label: "Производительность", value: "1200 тестов/час" },
                    { label: "Тип", value: "Автоматический анализатор" },
                    { label: "Реагенты", value: "Открытая система" },
                    { label: "Мощность", value: "1.5 кВт" }
                ]
            }
        ];
        
        // Функция для отображения карточек
        function renderProductCards() {
            const container = document.getElementById('products-container');
            container.innerHTML = ''; // Очищаем контейнер
            
            productCards.forEach((card, index) => {
                const cardElement = document.createElement('div');
                cardElement.className = 'product-card';
                cardElement.setAttribute('data-id', index);
                
                // Формируем HTML для деталей товара
                let detailsHTML = '';
                if (card.details) {
                    card.details.forEach(detail => {
                        detailsHTML += `
                            <div class="detail-item">
                                <span class="detail-label">${detail.label}:</span>
                                <span class="detail-value">${detail.value}</span>
                            </div>
                        `;
                    });
                }
                
                cardElement.innerHTML = `
                    <div class="product-image">
                        <img decoding="async" src="${card.imageUrl}" alt="${card.title}">
                    </div>
                    <div class="product-content">
                        <div class="product-title">${card.title}</div>
                        <div class="product-description">${card.description}</div>
                        <div class="product-details">
                            ${detailsHTML}
                            <div class="action-buttons">
                                <a href="${card.linkUrl}" target="_blank" class="btn">
                                    <i class="fas fa-info-circle"></i> Подробнее
                                </a>
                            </div>
                        </div>
                    </div>
                    <div class="expand-icon">
                        <i class="fas fa-chevron-down"></i>
                    </div>
                `;
                
                // Добавляем обработчик клика для раскрытия карточки
                cardElement.addEventListener('click', function(e) {
                    // Игнорируем клики по кнопкам
                    if (e.target.tagName === 'A' || e.target.parentElement.tagName === 'A') {
                        return;
                    }
                    
                    const cardId = this.getAttribute('data-id');
                    const isActive = this.classList.contains('active');
                    
                    // Закрываем все другие карточки
                    document.querySelectorAll('.product-card').forEach(otherCard => {
                        otherCard.classList.remove('active');
                    });
                    
                    // Открываем текущую карточку, если она была закрыта
                    if (!isActive) {
                        this.classList.add('active');
                        // Прокручиваем к карточке, если она не в поле зрения
                        this.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                    }
                });
                
                container.appendChild(cardElement);
            });
        }
        
        // Запуск при загрузке страницы
        window.addEventListener('DOMContentLoaded', function() {
            renderProductCards();
        });
    </script>
</body>
</html>
]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/biohimicheskie-analizatory/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Гематологические анализаторы</title>
		<link>https://www.idl-medica.com/gematologicheskie-analizatory/</link>
					<comments>https://www.idl-medica.com/gematologicheskie-analizatory/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 22 Dec 2023 08:06:56 +0000</pubDate>
				<category><![CDATA[Гематологические Анализаторы]]></category>
		<category><![CDATA[Продукты]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=439</guid>

					<description><![CDATA[← Назад к продуктам   Медицинское оборудование &#124; ООО «АЙДИЭЛ» ПРОДУКТЫ Гематологические анализаторы &#124; ООО «АЙДИЭЛ» ГЕМАТОЛОГИЧЕСКИЕ АНАЛИЗАТОРЫ Автоматический гематологический анализатор F 560 Компактный автоматический гематологический анализатор для малых и средних лабораторий с 22 параметрами крови. Идеальное решение для клиник и диагностических центров. Производительность: 60 образцов/час Параметры: 22 параметра + 3 гистограммы Память: 10 000 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="back-button-container">
    <a href="https://www.idl-medica.com/category/produkty/" class="back-button">
        <span class="back-arrow">←</span>
        Назад к продуктам
    </a>
</div>

<style>
.back-button-container {
    margin: 25px 0;
    padding: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* текст белый */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: #5E9886;
    border-radius: 8px;
    border: 2px solid #497769;
    transition: transform 0.3s ease;
}

/* запрещаем синюю подсветку текста при наведении */
.back-button:hover,
.back-button:focus,
.back-button:active {
    color: #ffffff;
    background: #5E9886;
    border-color: #497769;
    transform: translateX(-5px);
}

/* стрелка как текст */
.back-arrow {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff !important; /* белая стрелка */
    transition: transform 0.3s ease;
}

/* стрелка как SVG */
.back-arrow svg,
.back-arrow svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}
</style>


<h3> </h3>


<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Медицинское оборудование | ООО «АЙДИЭЛ»</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            width: 100%;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 320px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 220px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            padding: 15px;
        }
        
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 300px;
            padding: 15px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }
        
        .detail-value {
            color: #666;
            font-size: 13px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 13px;
        }
        
        .btn:hover {
            background: #006663;
        }
        
        .expand-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
        }
    </style>
</head>
<body>
    <!-- Manufacturer logo -->
    <div class="manufacturer-logo">
        <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/p1.webp" alt="DIRUI Logo">
    </div>
    
    <!-- Main content -->
    <div class="container">
        <h1 class="page-title">ПРОДУКТЫ</h1>
        
        <div class="product-cards-container" id="products-container">
            <!-- Карточки будут добавляться автоматически через JavaScript -->
        </div>
    </div>

    <script>
        // Массив карточки товаров (только один продукт)
        const productCards = [
            {
                title: "Автоматический гематологический анализатор DIRUI BF-6800",
                imageUrl: "https://www.tiaramed.ru/upload/iblock/2dd/2dd2a5dde642fd48fe574eb5cc867da1.jpg",
                linkUrl: "https://www.idl-medica.com/avtomaticheskij-gematologicheskij-analizator-dirui-bf-6800/",
                description: "Современный 5-дифференциальный гематологический анализатор с высокой производительностью и точностью результатов.",
                details: [
                    { label: "Производительность", value: "до 80 образцов/час" },
                    { label: "Параметры", value: "22 основных параметра + 3 гистограммы" },
                    { label: "Память", value: "10 000 образцов с гистограммами" },
                    { label: "Метод", value: "Электрическое сопротивление + цветометрия" }
                ]
            }
        ];
        
        // Функция для отображения карточек
        function renderProductCards() {
            const container = document.getElementById('products-container');
            container.innerHTML = ''; // Очищаем контейнер
            
            productCards.forEach((card, index) => {
                const cardElement = document.createElement('div');
                cardElement.className = 'product-card';
                cardElement.setAttribute('data-id', index);
                
                // Формируем HTML для деталей товара
                let detailsHTML = '';
                if (card.details) {
                    card.details.forEach(detail => {
                        detailsHTML += `
                            <div class="detail-item">
                                <span class="detail-label">${detail.label}:</span>
                                <span class="detail-value">${detail.value}</span>
                            </div>
                        `;
                    });
                }
                
                cardElement.innerHTML = `
                    <div class="product-image">
                        <img decoding="async" src="${card.imageUrl}" alt="${card.title}">
                    </div>
                    <div class="product-content">
                        <div class="product-title">${card.title}</div>
                        <div class="product-description">${card.description}</div>
                        <div class="product-details">
                            ${detailsHTML}
                            <div class="action-buttons">
                                <a href="${card.linkUrl}" target="_blank" class="btn">
                                    <i class="fas fa-info-circle"></i> Подробнее
                                </a>
                            </div>
                        </div>
                    </div>
                    <div class="expand-icon">
                        <i class="fas fa-chevron-down"></i>
                    </div>
                `;
                
                // Добавляем обработчик клика для раскрытия карточки
                cardElement.addEventListener('click', function(e) {
                    // Игнорируем клики по кнопкам
                    if (e.target.tagName === 'A' || e.target.parentElement.tagName === 'A') {
                        return;
                    }
                    
                    const cardId = this.getAttribute('data-id');
                    const isActive = this.classList.contains('active');
                    
                    // Закрываем все другие карточки
                    document.querySelectorAll('.product-card').forEach(otherCard => {
                        otherCard.classList.remove('active');
                    });
                    
                    // Открываем текущую карточку, если она была закрыта
                    if (!isActive) {
                        this.classList.add('active');
                        // Прокручиваем к карточке, если она не в поле зрения
                        this.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                    }
                });
                
                container.appendChild(cardElement);
            });
        }
        
        // Запуск при загрузке страницы
        window.addEventListener('DOMContentLoaded', function() {
            renderProductCards();
        });
    </script>
</body>
</html>


<div class="su-spacer" style="height:30px"></div>



<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Гематологические анализаторы | ООО «АЙДИЭЛ»</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            width: 100%;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            width: 100%;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            width: 390px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #f1f1f1 0%, #e1e1e1 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            padding: 15px;
        }
        
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.08);
        }
        
        .product-content {
            padding: 20px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 15px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
            line-height: 1.5;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 500px;
            padding: 20px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eaeaea;
            flex-wrap: wrap;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 14px;
            flex: 1;
            min-width: 45%;
            padding-right: 10px;
        }
        
        .detail-value {
            color: #666;
            font-size: 14px;
            flex: 1;
            text-align: right;
            min-width: 50%;
            word-break: break-word;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 14px;
        }
        
        .btn:hover {
            background: #006663;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .expand-icon {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 32px;
            height: 32px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 14px;
            z-index: 5;
            cursor: pointer;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Новый стиль для лучшего отображения на мобильных */
        @media (max-width: 1100px) {
            .product-card {
                width: 360px;
            }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 420px;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
            
            .product-image {
                height: 220px;
            }
            
            .detail-item {
                flex-direction: column;
            }
            
            .detail-label, .detail-value {
                min-width: 100%;
                text-align: left;
            }
            
            .detail-value {
                margin-top: 5px;
                text-align: left;
            }
        }
        
        @media (max-width: 480px) {
            .product-image {
                height: 200px;
            }
            
            .product-content {
                padding: 15px;
            }
            
            .product-title {
                font-size: 16px;
            }
            
            .detail-label, .detail-value {
                font-size: 13px;
            }
        }
    </style>
</head>
<body>
    <!-- Manufacturer logo -->
    <div class="manufacturer-logo">
        <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/09/image-4.png" alt="Гематологические анализаторы">
    </div>
    
    <!-- Main content -->
    <div class="container">
        <h1 class="page-title">ГЕМАТОЛОГИЧЕСКИЕ АНАЛИЗАТОРЫ</h1>
        
        <div class="product-cards-container" id="products-container">
            <!-- Карточка 1 -->
            <div class="product-card" data-id="0">
                <div class="product-image">
                    <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/f560_1-1-1-e1754496778381.jpg" alt="Автоматический гематологический анализатор F 560">
                </div>
                <div class="product-content">
                    <div class="product-title">Автоматический гематологический анализатор F 560</div>
                    <div class="product-description">Компактный автоматический гематологический анализатор для малых и средних лабораторий с 22 параметрами крови. Идеальное решение для клиник и диагностических центров.</div>
                </div>
                <div class="product-details">
                    <div class="detail-item">
                        <span class="detail-label">Производительность:</span>
                        <span class="detail-value">60 образцов/час</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Параметры:</span>
                        <span class="detail-value">22 параметра + 3 гистограммы</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Память:</span>
                        <span class="detail-value">10 000 результатов</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Объем пробы:</span>
                        <span class="detail-value">20 мкл (режим предилюции)</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Габариты:</span>
                        <span class="detail-value">520 × 420 × 380 мм</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Вес:</span>
                        <span class="detail-value">38 кг</span>
                    </div>
                    <div class="action-buttons">
                        <a href="https://www.idl-medica.com/avtomaticheskij-gematologicheskij-analizator-f-560/" target="_blank" class="btn" rel="noopener">
                            <i class="fas fa-info-circle"></i> Подробнее
                        </a>
                    </div>
                </div>
                <div class="expand-icon">
                    <i class="fas fa-chevron-down"></i>
                </div>
            </div>
            
            <!-- Карточка 2 -->
            <div class="product-card" data-id="1">
                <div class="product-image">
                    <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/f580_1.jpg" alt="Автоматический гематологический анализатор F 580">
                </div>
                <div class="product-content">
                    <div class="product-title">Автоматический гематологический анализатор F 580</div>
                    <div class="product-description">Современный 3-дифный гематологический анализатор с расширенными возможностями для клинической диагностики. Обеспечивает высокую точность результатов.</div>
                </div>
                <div class="product-details">
                    <div class="detail-item">
                        <span class="detail-label">Производительность:</span>
                        <span class="detail-value">80 образцов/час</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Параметры:</span>
                        <span class="detail-value">23 параметра + 3 гистограммы</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Автоподача:</span>
                        <span class="detail-value">60 проб</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Метод:</span>
                        <span class="detail-value">Импедансный + фотометрия</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Габариты:</span>
                        <span class="detail-value">650 × 520 × 480 мм</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Вес:</span>
                        <span class="detail-value">55 кг</span>
                    </div>
                    <div class="action-buttons">
                        <a href="https://www.idl-medica.com/avtomaticheskij-gematologicheskij-analizator-f-580/" target="_blank" class="btn" rel="noopener">
                            <i class="fas fa-info-circle"></i> Подробнее
                        </a>
                    </div>
                </div>
                <div class="expand-icon">
                    <i class="fas fa-chevron-down"></i>
                </div>
            </div>
            
            <!-- Карточка 3 -->
            <div class="product-card" data-id="2">
                <div class="product-image">
                    <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/f800_1.jpg" alt="Автоматический гематологический анализатор F 800">
                </div>
                <div class="product-content">
                    <div class="product-title">Автоматический гематологический анализатор F 800</div>
                    <div class="product-description">Профессиональный 5-дифный гематологический анализатор с высокой производительностью для крупных лабораторий. Обеспечивает максимальную точность диагностики.</div>
                </div>
                <div class="product-details">
                    <div class="detail-item">
                        <span class="detail-label">Производительность:</span>
                        <span class="detail-value">120 образцов/час</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Параметры:</span>
                        <span class="detail-value">27 параметров + 5 гистограмм</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Автоподача:</span>
                        <span class="detail-value">100 проб</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Метод:</span>
                        <span class="detail-value">Лазерная проточная цитометрия</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Габариты:</span>
                        <span class="detail-value">720 × 580 × 520 мм</span>
                    </div>
                    <div class="detail-item">
                        <span class="detail-label">Вес:</span>
                        <span class="detail-value">68 кг</span>
                    </div>
                    <div class="action-buttons">
                        <a href="https://www.idl-medica.com/analizator-f-800/" target="_blank" class="btn" rel="noopener">
                            <i class="fas fa-info-circle"></i> Подробнее
                        </a>
                    </div>
                </div>
                <div class="expand-icon">
                    <i class="fas fa-chevron-down"></i>
                </div>
            </div>
        </div>
    </div>

    <script>
        // Добавляем обработчик клика только для иконки раскрытия
        document.querySelectorAll('.expand-icon').forEach(icon => {
            icon.addEventListener('click', function(e) {
                e.stopPropagation(); // Останавливаем всплытие события
                const card = this.closest('.product-card');
                const cardId = card.getAttribute('data-id');
                const isActive = card.classList.contains('active');
                
                // Закрываем все другие карточки
                document.querySelectorAll('.product-card').forEach(otherCard => {
                    if (otherCard.getAttribute('data-id') !== cardId) {
                        otherCard.classList.remove('active');
                    }
                });
                
                // Открываем/закрываем текущую карточку
                card.classList.toggle('active');
                
                // Прокручиваем к карточке, если она открывается
                if (card.classList.contains('active')) {
                    card.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                }
            });
        });
        
        // Убрана инициализация с автоматическим открытием первой карточки
    </script>
</body>
</html>


<div class="su-spacer" style="height:30px"></div>



<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Гематологические анализаторы | ООО «АЙДИЭЛ»</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            width: 100%;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
            width: 100%;
        }
        
        .product-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            width: 350px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #f1f1f1 0%, #e1e1e1 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
            padding: 15px;
        }
        
        .product-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.08);
        }
        
        .product-content {
            padding: 20px;
            border-top: 1px solid #eaeaea;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .product-title {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            text-align: center;
            line-height: 1.4;
            min-height: 56px; /* Фиксированная высота для заголовков */
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-description {
            color: #666;
            font-size: 15px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
            line-height: 1.5;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
            position: relative;
        }
        
        .product-card.active .product-details {
            max-height: 500px; /* Увеличил высоту для размещения кнопки */
            padding: 20px;
            overflow-y: auto; /* Добавил прокрутку если контент слишком длинный */
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 14px;
            flex: 1;
        }
        
        .detail-value {
            color: #666;
            font-size: 14px;
            flex: 1;
            text-align: right;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            position: sticky;
            bottom: 0;
            background: #f8f9fa;
            padding: 15px 0 5px;
            z-index: 5;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 10px 20px;
            border-radius: 5px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 14px;
            white-space: nowrap;
        }
        
        .btn:hover {
            background: #006663;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .expand-icon {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 32px;
            height: 32px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 14px;
            z-index: 5;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Новый стиль для лучшего отображения на мобильных */
        @media (max-width: 1100px) {
            .product-card {
                width: 320px;
            }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 400px;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
            
            .product-image {
                height: 220px;
            }
            
            .product-title {
                min-height: auto;
                padding: 5px 0;
            }
            
            .product-card.active .product-details {
                max-height: 600px; /* Больше высота на мобильных */
            }
        }
        
        @media (max-width: 480px) {
            .product-image {
                height: 200px;
            }
            
            .product-content {
                padding: 15px;
            }
            
            .product-title {
                font-size: 16px;
            }
            
            .detail-item {
                flex-direction: column;
            }
            
            .detail-value {
                text-align: left;
                margin-top: 5px;
            }
        }
    </style>
</head>
<body>
    <!-- Manufacturer logo -->
    <div class="manufacturer-logo">
        <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/09/image-1.png" alt="Гематологические анализаторы">
    </div>
    
    <!-- Main content -->
    <div class="container">
        <h1 class="page-title">ГЕМАТОЛОГИЧЕСКИЕ АНАЛИЗАТОРЫ</h1>
        
        <div class="product-cards-container" id="products-container">
            <!-- Карточка 1 -->
            <div class="product-card" data-id="0">
                <div class="product-image">
                    <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/08/exz-6000-1-768x761.png" alt="Гематологический анализатор EXZ6000">
                </div>
                <div class="product-content">
                    <div class="product-title">Гематологический анализатор EXZ6000</div>
                    <div class="product-description">Современный автоматический гематологический анализатор с расширенными возможностями для клинической диагностики. Обеспечивает высокую точность и скорость анализа.</div>
                    <div class="product-details">
                        <div class="detail-item">
                            <span class="detail-label">Производительность:</span>
                            <span class="detail-value">до 60 образцов/час</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Параметры:</span>
                            <span class="detail-value">22 основных параметра + 3 гистограммы</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Память:</span>
                            <span class="detail-value">до 10 000 результатов</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Объем пробы:</span>
                            <span class="detail-value">20 мкл (капиллярная кровь)</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Габариты:</span>
                            <span class="detail-value">500 × 400 × 350 мм</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Вес:</span>
                            <span class="detail-value">35 кг</span>
                        </div>
                        <div class="action-buttons">
                            <a href="https://www.idl-medica.com/gematologicheskij-analizator-exz6000/" target="_blank" class="btn" rel="noopener">
                                <i class="fas fa-info-circle"></i> Подробнее
                            </a>
                        </div>
                    </div>
                </div>
                <div class="expand-icon">
                    <i class="fas fa-chevron-down"></i>
                </div>
            </div>
            
            <!-- Карточка 2 -->
            <div class="product-card" data-id="1">
                <div class="product-image">
                    <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/08/i24f0aka48v4d51n5vxglqyaetkl5vgd-e1754336877515.png" alt="Гематологический анализатор Z50">
                </div>
                <div class="product-content">
                    <div class="product-title">Гематологический анализатор Z50</div>
                    <div class="product-description">Компактный и надежный гематологический анализатор для малых лабораторий и пунктов забора крови. Прост в использовании и обслуживании.</div>
                    <div class="product-details">
                        <div class="detail-item">
                            <span class="detail-label">Производительность:</span>
                            <span class="detail-value">до 50 образцов/час</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Параметры:</span>
                            <span class="detail-value">19 параметров + 3 гистограммы</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Память:</span>
                            <span class="detail-value">5 000 результатов</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Объем пробы:</span>
                            <span class="detail-value">15 мкл (капиллярная кровь)</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Габариты:</span>
                            <span class="detail-value">450 × 380 × 320 мм</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Вес:</span>
                            <span class="detail-value">28 кг</span>
                        </div>
                        <div class="action-buttons">
                            <a href="https://www.idl-medica.com/gematologicheskij-analizator-z50/" target="_blank" class="btn" rel="noopener">
                                <i class="fas fa-info-circle"></i> Подробнее
                            </a>
                        </div>
                    </div>
                </div>
                <div class="expand-icon">
                    <i class="fas fa-chevron-down"></i>
                </div>
            </div>
        </div>
    </div>

    <script>
        // Добавляем обработчик клика для раскрытия карточки
        document.querySelectorAll('.product-card').forEach(card => {
            card.addEventListener('click', function(e) {
                // Игнорируем клики по кнопкам
                if (e.target.tagName === 'A' || e.target.parentElement.tagName === 'A') {
                    return;
                }
                
                const cardId = this.getAttribute('data-id');
                const isActive = this.classList.contains('active');
                
                // Закрываем все другие карточки
                document.querySelectorAll('.product-card').forEach(otherCard => {
                    otherCard.classList.remove('active');
                });
                
                // Открываем текущую карточку, если она была закрыта
                if (!isActive) {
                    this.classList.add('active');
                    // Прокручиваем к карточке, если она не в поле зрения
                    this.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                }
            });
        });
    </script>
</body>
</html>
]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/gematologicheskie-analizatory/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Мочевые анализаторы</title>
		<link>https://www.idl-medica.com/mochevye-analizatory/</link>
					<comments>https://www.idl-medica.com/mochevye-analizatory/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 22 Dec 2023 07:20:07 +0000</pubDate>
				<category><![CDATA[Продукты]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=399</guid>

					<description><![CDATA[← Назад к продуктам   Анализаторы мочи DIRUI &#124; ООО «АЙДИЭЛ» АНАЛИЗАТОРЫ МОЧИ DIRUI Анализаторы мочи Zybio &#124; ООО «АЙДИЭЛ» АНАЛИЗАТОРЫ МОЧИ ZYBIO Автоматический анализатор мочи U1600 Современный автоматический анализатор мочи для точного и быстрого проведения общеклинических исследований мочи. Производительность до 120 тестов/час Тип Автоматический анализатор Параметры 11 химических параметров Память до 100 000 результатов [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="back-button-container">
    <a href="https://www.idl-medica.com/category/produkty/" class="back-button">
        <span class="back-arrow">←</span>
        Назад к продуктам
    </a>
</div>

<style>
.back-button-container {
    margin: 25px 0;
    padding: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* текст белый */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: #5E9886;
    border-radius: 8px;
    border: 2px solid #497769;
    transition: transform 0.3s ease;
}

/* запрещаем синюю подсветку текста при наведении */
.back-button:hover,
.back-button:focus,
.back-button:active {
    color: #ffffff;
    background: #5E9886;
    border-color: #497769;
    transform: translateX(-5px);
}

/* стрелка как текст */
.back-arrow {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff !important; /* белая стрелка */
    transition: transform 0.3s ease;
}

/* стрелка как SVG */
.back-arrow svg,
.back-arrow svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}
</style>


<h3> </h3>


<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Анализаторы мочи DIRUI | ООО «АЙДИЭЛ»</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            width: 100%;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 280px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 300px;
            padding: 15px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }
        
        .detail-value {
            color: #666;
            font-size: 13px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 13px;
        }
        
        .btn:hover {
            background: #006663;
        }
        
        .expand-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
        }
    </style>
</head>
<body>
    <!-- Manufacturer logo -->
    <div class="manufacturer-logo">
        <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2023/12/p1.webp" alt="DIRUI Logo">
    </div>
    
    <!-- Main content -->
    <div class="container">
        <h1 class="page-title">АНАЛИЗАТОРЫ МОЧИ DIRUI</h1>
        
        <div class="product-cards-container" id="products-container">
            <!-- Карточки будут добавляться автоматически через JavaScript -->
        </div>
    </div>

    <script>
        // Массив карточки товаров
        const productCards = [
            {
                title: "Гибридный анализатор мочи DIRUI FUS-2000",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2023/12/fus-2000_gl_edited.webp",
                linkUrl: "https://www.idl-medica.com/gibridnyj-analizator-mochi-dirui-fus-2000/",
                description: "Современный гибридный анализатор мочи, сочетающий технологию сухой химии и метод проточной цитометрии для точной диагностики.",
                details: [
                    { label: "Тип", value: "Гибридный анализатор" },
                    { label: "Производительность", value: "до 100 тестов/час" },
                    { label: "Методы анализа", value: "Сухая химия + проточная цитометрия" },
                    { label: "Память результатов", value: "до 100,000 записей" }
                ]
            },
            {
                title: "Полуавтоматический анализатор мочи DIRUI H-100",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2023/12/h100_7.webp",
                linkUrl: "https://www.idl-medica.com/poluavtomaticheskij-analizator-mochi-dirui-h-100/",
                description: "Компактный полуавтоматический анализатор мочи для небольших лабораторий и медицинских кабинетов.",
                details: [
                    { label: "Тип", value: "Полуавтоматический анализатор" },
                    { label: "Производительность", value: "до 60 тестов/час" },
                    { label: "Дисплей", value: "Цветной LCD" },
                    { label: "Подключение", value: "USB, RS-232" }
                ]
            },
            {
                title: "Полуавтоматический анализатор мочи DIRUI H-500",
                imageUrl: "https://www.idl-medica.com/wp-content/uploads/2023/12/h-500_7.webp",
                linkUrl: "https://www.idl-medica.com/poluavtomaticheskij-analizator-mochi-dirui-h-500/",
                description: "Надежный полуавтоматический анализатор мочи с расширенными функциями для средних лабораторий.",
                details: [
                    { label: "Тип", value: "Полуавтоматический анализатор" },
                    { label: "Производительность", value: "до 80 тестов/час" },
                    { label: "Параметры анализа", value: "14 параметров" },
                    { label: "Память пациентов", value: "до 10,000 записей" }
                ]
            }
        ];
        
        // Функция для отображения карточек
        function renderProductCards() {
            const container = document.getElementById('products-container');
            container.innerHTML = ''; // Очищаем контейнер
            
            productCards.forEach((card, index) => {
                const cardElement = document.createElement('div');
                cardElement.className = 'product-card';
                cardElement.setAttribute('data-id', index);
                
                // Формируем HTML для деталей товара
                let detailsHTML = '';
                if (card.details) {
                    card.details.forEach(detail => {
                        detailsHTML += `
                            <div class="detail-item">
                                <span class="detail-label">${detail.label}:</span>
                                <span class="detail-value">${detail.value}</span>
                            </div>
                        `;
                    });
                }
                
                cardElement.innerHTML = `
                    <div class="product-image">
                        <img decoding="async" src="${card.imageUrl}" alt="${card.title}">
                    </div>
                    <div class="product-content">
                        <div class="product-title">${card.title}</div>
                        <div class="product-description">${card.description}</div>
                        <div class="product-details">
                            ${detailsHTML}
                            <div class="action-buttons">
                                <a href="${card.linkUrl}" target="_blank" class="btn">
                                    <i class="fas fa-info-circle"></i> Подробнее
                                </a>
                            </div>
                        </div>
                    </div>
                    <div class="expand-icon">
                        <i class="fas fa-chevron-down"></i>
                    </div>
                `;
                
                // Добавляем обработчик клика для раскрытия карточки
                cardElement.addEventListener('click', function(e) {
                    // Игнорируем клики по кнопкам
                    if (e.target.tagName === 'A' || e.target.parentElement.tagName === 'A') {
                        return;
                    }
                    
                    const cardId = this.getAttribute('data-id');
                    const isActive = this.classList.contains('active');
                    
                    // Закрываем все другие карточки
                    document.querySelectorAll('.product-card').forEach(otherCard => {
                        otherCard.classList.remove('active');
                    });
                    
                    // Открываем текущую карточку, если она была закрыта
                    if (!isActive) {
                        this.classList.add('active');
                        // Прокручиваем к карточке, если она не в поле зрения
                        this.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                    }
                });
                
                container.appendChild(cardElement);
            });
        }
        
        // Запуск при загрузке страницы
        window.addEventListener('DOMContentLoaded', function() {
            renderProductCards();
        });
    </script>
</body>
</html>


<div class="su-spacer" style="height:30px"></div>



<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Анализаторы мочи Zybio | ООО «АЙДИЭЛ»</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Manufacturer logo */
        .manufacturer-logo {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            width: 100%;
            max-width: 1200px;
        }
        
        .manufacturer-logo img {
            max-width: 300px;
            height: auto;
        }
        
        /* Main content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .page-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            width: 100%;
        }
        
        /* Product cards */
        .product-cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
        }
        
        .product-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            width: 280px;
            padding: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .product-card.active {
            transform: scale(1.02);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            background: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-content {
            padding: 15px;
            border-top: 1px solid #eaeaea;
        }
        
        .product-title {
            font-size: 16px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.4;
        }
        
        .product-description {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
            text-align: center;
            display: none;
        }
        
        .product-card.active .product-description {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .product-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            background: #f8f9fa;
        }
        
        .product-card.active .product-details {
            max-height: 300px;
            padding: 15px;
        }
        
        .detail-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;
        }
        
        .detail-label {
            font-weight: 600;
            color: #2c3e50;
            font-size: 13px;
        }
        
        .detail-value {
            color: #666;
            font-size: 13px;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            margin-top: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card.active .action-buttons {
            opacity: 1;
        }
        
        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            background: #007c7a;
            color: white;
            text-decoration: none;
            font-size: 13px;
        }
        
        .btn:hover {
            background: #006663;
        }
        
        .expand-icon {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 26px;
            height: 26px;
            background: #007c7a;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 12px;
        }
        
        .product-card.active .expand-icon {
            transform: rotate(180deg);
            background: #006663;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .product-card {
                width: 100%;
                max-width: 320px;
            }
            
            .page-title {
                font-size: 24px;
            }
            
            .manufacturer-logo img {
                max-width: 250px;
            }
        }
    </style>
</head>
<body>
    <!-- Manufacturer logo -->
    <div class="manufacturer-logo">
        <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/09/image-1.png" alt="Zybio Logo">
    </div>
    
    <!-- Main content -->
    <div class="container">
        <h1 class="page-title">АНАЛИЗАТОРЫ МОЧИ ZYBIO</h1>
        
        <div class="product-cards-container" id="products-container">
            <!-- Карточка 1 -->
            <div class="product-card" data-id="0">
                <div class="product-image">
                    <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/08/zybio-u1600-1536x885.png" alt="Автоматический анализатор мочи U1600">
                </div>
                <div class="product-content">
                    <div class="product-title">Автоматический анализатор мочи U1600</div>
                    <div class="product-description">Современный автоматический анализатор мочи для точного и быстрого проведения общеклинических исследований мочи.</div>
                    <div class="product-details">
                        <div class="detail-item">
                            <span class="detail-label">Производительность</span>
                            <span class="detail-value">до 120 тестов/час</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Тип</span>
                            <span class="detail-value">Автоматический анализатор</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Параметры</span>
                            <span class="detail-value">11 химических параметров</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Память</span>
                            <span class="detail-value">до 100 000 результатов</span>
                        </div>
                        <div class="action-buttons">
                            <a href="https://www.idl-medica.com/avtomaticheskij-analizator-mochi-u1600/" target="_blank" class="btn" rel="noopener">
                                <i class="fas fa-info-circle"></i> Подробнее
                            </a>
                        </div>
                    </div>
                </div>
                <div class="expand-icon">
                    <i class="fas fa-chevron-down"></i>
                </div>
            </div>
            
            <!-- Карточка 2 -->
            <div class="product-card" data-id="1">
                <div class="product-image">
                    <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/08/zybio-u2610-1536x1311.png" alt="Автоматический анализатор осадка мочи U 2610">
                </div>
                <div class="product-content">
                    <div class="product-title">Автоматический анализатор осадка мочи U 2610</div>
                    <div class="product-description">Высокоточный анализатор для автоматического исследования осадка мочи с технологией цифровой визуализации.</div>
                    <div class="product-details">
                        <div class="detail-item">
                            <span class="detail-label">Производительность</span>
                            <span class="detail-value">до 60 образцов/час</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Тип</span>
                            <span class="detail-value">Анализатор осадка мочи</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Камера</span>
                            <span class="detail-value">Цифровая камера высокого разрешения</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Классификация</span>
                            <span class="detail-value">12 категорий элементов</span>
                        </div>
                        <div class="action-buttons">
                            <a href="https://www.idl-medica.com/avtomaticheskij-analizator-osadka-mochi-u-2610/" target="_blank" class="btn" rel="noopener">
                                <i class="fas fa-info-circle"></i> Подробнее
                            </a>
                        </div>
                    </div>
                </div>
                <div class="expand-icon">
                    <i class="fas fa-chevron-down"></i>
                </div>
            </div>
            
            <!-- Карточка 3 -->
            <div class="product-card" data-id="2">
                <div class="product-image">
                    <img decoding="async" src="https://www.idl-medica.com/wp-content/uploads/2025/08/zybio-u3600-1536x1317.png" alt="Автоматическая гибридная система анализа мочи U3600">
                </div>
                <div class="product-content">
                    <div class="product-title">Автоматическая гибридная система анализа мочи U3600</div>
                    <div class="product-description">Инновационная гибридная система для комплексного анализа мочи, объединяющая химический анализ и исследование осадка.</div>
                    <div class="product-details">
                        <div class="detail-item">
                            <span class="detail-label">Производительность</span>
                            <span class="detail-value">до 180 тестов/час</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Тип</span>
                            <span class="detail-value">Гибридная система</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Параметры</span>
                            <span class="detail-value">11+12 параметров</span>
                        </div>
                        <div class="detail-item">
                            <span class="detail-label">Автоподача</span>
                            <span class="detail-value">до 100 проб</span>
                        </div>
                        <div class="action-buttons">
                            <a href="https://www.idl-medica.com/avtomaticheskaya-gibridnaya-sistema-analiza-mochi-u3600/" target="_blank" class="btn" rel="noopener">
                                <i class="fas fa-info-circle"></i> Подробнее
                            </a>
                        </div>
                    </div>
                </div>
                <div class="expand-icon">
                    <i class="fas fa-chevron-down"></i>
                </div>
            </div>
        </div>
    </div>

    <script>
        // Добавляем обработчики событий для карточек
        document.addEventListener('DOMContentLoaded', function() {
            const productCards = document.querySelectorAll('.product-card');
            
            productCards.forEach(card => {
                card.addEventListener('click', function(e) {
                    // Игнорируем клики по кнопкам
                    if (e.target.tagName === 'A' || e.target.parentElement.tagName === 'A') {
                        return;
                    }
                    
                    const isActive = this.classList.contains('active');
                    
                    // Закрываем все другие карточки
                    document.querySelectorAll('.product-card').forEach(otherCard => {
                        otherCard.classList.remove('active');
                    });
                    
                    // Открываем текущую карточку, если она была закрыта
                    if (!isActive) {
                        this.classList.add('active');
                        // Прокручиваем к карточке, если она не в поле зрения
                        this.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
                    }
                });
            });
        });
    </script>
</body>
</html>
]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/mochevye-analizatory/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Анализаторы газов крови</title>
		<link>https://www.idl-medica.com/analizatory-gazov-krovi/</link>
					<comments>https://www.idl-medica.com/analizatory-gazov-krovi/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 22 Dec 2023 07:01:53 +0000</pubDate>
				<category><![CDATA[Продукты]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=384</guid>

					<description><![CDATA[← Назад к продуктам Система анализа газов и химического состава крови i15 Помимо легкости, компактности и простоты использования, анализатор i15 обладает удобной конструкцией, не требующей обслуживания. Это делает анализ крови эффективным и удобным в любом месте. В отличие от других анализаторов, в нем используется автоматический отбор проб, что снижает риск загрязнения образца и получения неточных [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="back-button-container">
    <a href="https://www.idl-medica.com/category/produkty/" class="back-button">
        <span class="back-arrow">←</span>
        Назад к продуктам
    </a>
</div>

<style>
.back-button-container {
    margin: 25px 0;
    padding: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* текст белый */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: #5E9886;
    border-radius: 8px;
    border: 2px solid #497769;
    transition: transform 0.3s ease;
}

/* запрещаем синюю подсветку текста при наведении */
.back-button:hover,
.back-button:focus,
.back-button:active {
    color: #ffffff;
    background: #5E9886;
    border-color: #497769;
    transform: translateX(-5px);
}

/* стрелка как текст */
.back-arrow {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff !important; /* белая стрелка */
    transition: transform 0.3s ease;
}

/* стрелка как SVG */
.back-arrow svg,
.back-arrow svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}
</style>


<h3>Система анализа газов и химического состава крови i15</h3>
<p>Помимо легкости, компактности и простоты использования, анализатор i15 обладает удобной конструкцией, не требующей обслуживания. Это делает анализ крови эффективным и удобным в любом месте.</p>
<p>В отличие от других анализаторов, в нем используется автоматический отбор проб, что снижает риск загрязнения образца и получения неточных результатов. Благодаря комплектам оригинальных стандартизированных реагентов, внутреннему контролю качества и электронному симулятору анализатор i15 позволяет получить точные результаты за считанные минуты, а одноразовые картриджи помогают врачам улучшить качество и повысить эффективность оказания медицинской помощи. Усовершенствованная технология биосенсора позволяет тестировать до 15 параметров одновременно.</p>
<div class="su-row"><div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-390" src="https://www.idl-medica.com/wp-content/uploads/2023/12/inlogo.webp" alt="" width="112" height="67" /><br />
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-385" src="https://www.idl-medica.com/wp-content/uploads/2023/12/gaz.webp" alt="" width="331" height="287" srcset="https://www.idl-medica.com/wp-content/uploads/2023/12/gaz.webp 331w, https://www.idl-medica.com/wp-content/uploads/2023/12/gaz-300x260.webp 300w, https://www.idl-medica.com/wp-content/uploads/2023/12/gaz-173x150.webp 173w" sizes="auto, (max-width: 331px) 100vw, 331px" /><br />
</div></div>
<div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<p style="text-align: center;">Меню анализа:</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-393" src="https://www.idl-medica.com/wp-content/uploads/2023/12/menyu-testov.webp" alt="" width="403" height="144" srcset="https://www.idl-medica.com/wp-content/uploads/2023/12/menyu-testov.webp 403w, https://www.idl-medica.com/wp-content/uploads/2023/12/menyu-testov-300x107.webp 300w, https://www.idl-medica.com/wp-content/uploads/2023/12/menyu-testov-250x89.webp 250w, https://www.idl-medica.com/wp-content/uploads/2023/12/menyu-testov-400x144.webp 400w" sizes="auto, (max-width: 403px) 100vw, 403px" /></p>
<p style="text-align: center;">Параметры анализа:</p>
<p>cH+, HCO3-act, HCO3-std, BE(ecf), BE(B), BB(B), ctCO2, sO2(est), Ca++(7.4), AnGap, tHb(est), pO2(A-a),<br />
pO2(a/A), RI, pO2/FIO2, cH+(T), pH(T), pCO2(T), pO2(T), pO2(A-a)(T), pO2(a/A)(T), RI(T), pO2(T)/FIO2 , mOsm</p>
</div></div></div>]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/analizatory-gazov-krovi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Преаналитика</title>
		<link>https://www.idl-medica.com/preanalitika/</link>
					<comments>https://www.idl-medica.com/preanalitika/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 22 Dec 2023 06:47:26 +0000</pubDate>
				<category><![CDATA[Продукты]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=367</guid>

					<description><![CDATA[← Назад к продуктам HCTS2000 MK2 для регистрации и сортировки первичных пробирок Спроектирован для регистрации и сортировки первичных пробирок (закрытых крышками и нерассортированных по штативам) с использованием информации штрих-кода или полученной из информационной лабораторной системы (ЛИС). Система оптимизирует рабочий процесс в зоне приема образцов биохимической или гематологической лабораторий и помогает сократить время проведения анализов. С [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="back-button-container">
    <a href="https://www.idl-medica.com/category/produkty/" class="back-button">
        <span class="back-arrow">←</span>
        Назад к продуктам
    </a>
</div>

<style>
.back-button-container {
    margin: 25px 0;
    padding: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* текст белый */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: #5E9886;
    border-radius: 8px;
    border: 2px solid #497769;
    transition: transform 0.3s ease;
}

/* запрещаем синюю подсветку текста при наведении */
.back-button:hover,
.back-button:focus,
.back-button:active {
    color: #ffffff;
    background: #5E9886;
    border-color: #497769;
    transform: translateX(-5px);
}

/* стрелка как текст */
.back-arrow {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff !important; /* белая стрелка */
    transition: transform 0.3s ease;
}

/* стрелка как SVG */
.back-arrow svg,
.back-arrow svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}
</style>


<h3>HCTS2000 MK2 для регистрации и сортировки первичных пробирок</h3>
<p>Спроектирован для регистрации и сортировки первичных пробирок (закрытых крышками и нерассортированных по штативам) с использованием информации штрих-кода или полученной из информационной лабораторной системы (ЛИС). Система оптимизирует рабочий процесс в зоне приема образцов биохимической или гематологической лабораторий и помогает сократить время проведения анализов.</p>
<p>С дополнительной функцией идентификация по цвету крышки, цвет крышки первичной пробирки используется как дополнительный критерий сортировки и/или для проверки корректности путем сравнения информации по штрих-коду и цвету крышки пробирки. Система способна различать до 20 монохромных цветов крышек. Дополнительно система обеспечивает определение типа пробирок, сканируя их. Это гарантирует надежную дифференцировку отельных пробирок и определение их размеров даже при использовании большого количества разнообразных типов пробирок.</p>
<div class="su-row"><div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<p><strong>Характеристики:</strong></p>
<ol>
<li>Размер пробирки: длина 75-120 мм (с крышкой), Ø 11-19 мм (с крышкой)</li>
<li>Производительность: до 2000 проб в час</li>
<li>Опции сортировки: 7 лотков, возможно увеличение до 12, 17 или 22 лотков</li>
<li>Логика сортировки: оффлайн: 10 редактируемых вариантов сортировки, онлайн: определяется ЛИС</li>
<li>Штрих-коды: все виды, до 30 знаков</li>
<li>Регистрация: через ЛИС для улучшения контроля ТАТ.</li>
</ol>
</div></div>
<div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-373" src="https://www.idl-medica.com/wp-content/uploads/2023/12/mk2.webp" alt="" width="343" height="230" srcset="https://www.idl-medica.com/wp-content/uploads/2023/12/mk2.webp 343w, https://www.idl-medica.com/wp-content/uploads/2023/12/mk2-300x201.webp 300w, https://www.idl-medica.com/wp-content/uploads/2023/12/mk2-224x150.webp 224w" sizes="auto, (max-width: 343px) 100vw, 343px" /><br />
</div></div></div>
<div class="su-row"><div class="su-column su-column-size-2-3"><div class="su-column-inner su-u-clearfix su-u-trim">
<h3>FELIX LABBELER ROBOT</h3>
<p><strong>Быстрый настольный маркировщик пробирок</strong></p>
<ol>
<li>Позволяет выстроить работу процедурного кабинета в формате электронной очереди</li>
<li>Работает как принтер пробирок</li>
<li>Встроенная фиксация ТАТ (Turn Around Time)</li>
<li>Возможность печатать из МИС напрямую</li>
<li>Возможность печати по QR-коду автономно</li>
<li>Возможность автономной печати госпитальных профилей</li>
</ol>
</div></div>
<div class="su-column su-column-size-1-3"><div class="su-column-inner su-u-clearfix su-u-trim">
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-374" src="https://www.idl-medica.com/wp-content/uploads/2023/12/bezymyannyj-2-2.webp" alt="" width="529" height="481" srcset="https://www.idl-medica.com/wp-content/uploads/2023/12/bezymyannyj-2-2.webp 529w, https://www.idl-medica.com/wp-content/uploads/2023/12/bezymyannyj-2-2-300x273.webp 300w, https://www.idl-medica.com/wp-content/uploads/2023/12/bezymyannyj-2-2-165x150.webp 165w" sizes="auto, (max-width: 529px) 100vw, 529px" /></p>
</div></div></div>
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-375" src="https://www.idl-medica.com/wp-content/uploads/2023/12/shtrihkody.webp" alt="" width="370" height="251" srcset="https://www.idl-medica.com/wp-content/uploads/2023/12/shtrihkody.webp 370w, https://www.idl-medica.com/wp-content/uploads/2023/12/shtrihkody-300x204.webp 300w, https://www.idl-medica.com/wp-content/uploads/2023/12/shtrihkody-221x150.webp 221w" sizes="auto, (max-width: 370px) 100vw, 370px" /></p>]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/preanalitika/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>АСТ-мониторинг антикоагуляции</title>
		<link>https://www.idl-medica.com/ast-monitoring-antikoagulyaczii/</link>
					<comments>https://www.idl-medica.com/ast-monitoring-antikoagulyaczii/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 21 Dec 2023 14:02:00 +0000</pubDate>
				<category><![CDATA[Продукты]]></category>
		<guid isPermaLink="false">https://www.idl-medica.com/?p=350</guid>

					<description><![CDATA[← Назад к продуктам]]></description>
										<content:encoded><![CDATA[
<div class="back-button-container">
    <a href="https://www.idl-medica.com/category/produkty/" class="back-button">
        <span class="back-arrow">←</span>
        Назад к продуктам
    </a>
</div>

<style>
.back-button-container {
    margin: 25px 0;
    padding: 10px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* текст белый */
    font-weight: 600;
    font-size: 16px;
    padding: 12px 20px;
    background: #5E9886;
    border-radius: 8px;
    border: 2px solid #497769;
    transition: transform 0.3s ease;
}

/* запрещаем синюю подсветку текста при наведении */
.back-button:hover,
.back-button:focus,
.back-button:active {
    color: #ffffff;
    background: #5E9886;
    border-color: #497769;
    transform: translateX(-5px);
}

/* стрелка как текст */
.back-arrow {
    font-size: 20px;
    margin-right: 10px;
    color: #ffffff !important; /* белая стрелка */
    transition: transform 0.3s ease;
}

/* стрелка как SVG */
.back-arrow svg,
.back-arrow svg * {
    fill: #ffffff !important;
    stroke: #ffffff !important;
    color: #ffffff !important;
}

.back-button:hover .back-arrow {
    transform: translateX(-3px);
}
</style>


<div class="su-row">
<div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<p><strong>Анализатор активированного времени свертывания<br />
Hemochron Signature Elite</strong></p>
</div></div>
<div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-356" src="https://www.idl-medica.com/wp-content/uploads/2023/12/llg.webp" alt="" width="220" height="67" /><br />
</div></div>
</div>
<div class="su-row"><div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-359" src="https://www.idl-medica.com/wp-content/uploads/2023/12/hemochron-and-cuvettes-newfaceplate-and-il-logo-hero-11_8_edited.webp" alt="" width="507" height="251" srcset="https://www.idl-medica.com/wp-content/uploads/2023/12/hemochron-and-cuvettes-newfaceplate-and-il-logo-hero-11_8_edited.webp 507w, https://www.idl-medica.com/wp-content/uploads/2023/12/hemochron-and-cuvettes-newfaceplate-and-il-logo-hero-11_8_edited-300x149.webp 300w, https://www.idl-medica.com/wp-content/uploads/2023/12/hemochron-and-cuvettes-newfaceplate-and-il-logo-hero-11_8_edited-250x124.webp 250w" sizes="auto, (max-width: 507px) 100vw, 507px" /><br />
<img loading="lazy" decoding="async" class="aligncenter size-full wp-image-360" src="https://www.idl-medica.com/wp-content/uploads/2023/12/bezymyannyj-2-1.webp" alt="" width="525" height="158" srcset="https://www.idl-medica.com/wp-content/uploads/2023/12/bezymyannyj-2-1.webp 525w, https://www.idl-medica.com/wp-content/uploads/2023/12/bezymyannyj-2-1-300x90.webp 300w, https://www.idl-medica.com/wp-content/uploads/2023/12/bezymyannyj-2-1-250x75.webp 250w" sizes="auto, (max-width: 525px) 100vw, 525px" /><br />
</div></div>
<div class="su-column su-column-size-1-2"><div class="su-column-inner su-u-clearfix su-u-trim">
<p><em><strong>Анализатор активированного времени свертывания Hemochron Signature Elite &#8212; оптимальное решение для оперативного мониторинга антикоагуляции гепарином.</strong></em><br />
​<br />
• Оперативный и точный ACT-мониторинг антикоагуляции гепарином<br />
• Простая картриджная технология<br />
• Инновации и опыт основателя технологии ACT<br />
​<br />
1) Технология максимально активированного ACT (maxACT) Тестовый картридж содержит каолин и диоксид кремния, что по сравнению с тестами, использующими один активатор снижает чувствительность результата ACT:<br />
• к гипертермии и гипотермии,<br />
• эффекту от апротинина,<br />
• влиянию гемодилюции,<br />
• тесно коррелирует с активностью фактора Xa</p>
<p>2) Технология RapidCount<img src="https://s.w.org/images/core/emoji/16.0.1/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" /><br />
• Измеряет целевое время ACT+ в 450 секунд ~ за 4,5 минуты.<br />
• Даёт возможность запустить искусственное кровообращение на 3,5 минуты ранее.<br />
• Позволяет раньше подключить пациента к контуру и сократить общее время процедуры.<br />
</div></div></div>]]></content:encoded>
					
					<wfw:commentRss>https://www.idl-medica.com/ast-monitoring-antikoagulyaczii/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
