13871387766

我们只用绿色的食品原料

现代化粮食加工厂,只为您的健康着想

早稻米

外观与口感

特有种植于中国南方地区的一种大米,米粒细长,质地较硬,口感略显粗糙,易产 生饱腹感。


营养价值

富含碳水化合物、蛋白质、膳食纤维以及多种维生素和矿物质等。


适应场景

适合制作肠粉,米豆腐等传统中华美食。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Detail</title>

<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f8fa;
    color: #1f2933;
}

.product-detail {
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 24px;
}

/* =========================
   Product Main
========================= */

.product-main {
    display: grid;
    grid-template-columns: 55% 45%;
    background: #fff;
    border: 1px solid #e5e7eb;
}

/* =========================
   Gallery
========================= */

.product-gallery {
    padding: 30px;
    border-right: 1px solid #e5e7eb;
}

.product-main-image {
    width: 100%;
    height: 520px;
    background: #f5f6f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    cursor: pointer;
    overflow: hidden;
}

.product-thumbnail.active {
    border: 2px solid #005b8f;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   Product Info
========================= */

.product-info {
    padding: 45px 45px 40px;
}

.product-category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #006b9c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
    color: #17212b;
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #66717c;
    margin-bottom: 30px;
}

.product-meta {
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    margin-bottom: 14px;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-label {
    width: 120px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.meta-value {
    flex: 1;
    font-size: 14px;
    color: #697586;
}

/* =========================
   CTA
========================= */

.product-actions {
    display: flex;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s;
}

.btn-primary {
    background: #005b8f;
    color: #fff;
}

.btn-primary:hover {
    background: #00456d;
}

.btn-outline {
    border: 1px solid #005b8f;
    color: #005b8f;
    background: #fff;
}

.btn-outline:hover {
    background: #005b8f;
    color: #fff;
}

/* =========================
   Detail Content
========================= */

.product-content {
    margin-top: 30px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

.product-tabs {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
}

.product-tab {
    padding: 20px 30px;
    font-size: 14px;
    font-weight: 600;
    color: #697586;
    cursor: pointer;
}

.product-tab.active {
    color: #005b8f;
    border-bottom: 2px solid #005b8f;
}

.product-description-content {
    padding: 40px;
}

.product-description-content h2 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #17212b;
}

.product-description-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #66717c;
    margin-bottom: 20px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
}

.spec-table th,
.spec-table td {
    padding: 15px 18px;
    text-align: left;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.spec-table th {
    width: 30%;
    background: #f7f9fa;
    font-weight: 600;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {

    .product-main {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .product-info {
        padding: 35px 30px;
    }

    .product-title {
        font-size: 30px;
    }
}

@media (max-width: 600px) {

    .product-detail {
        margin: 30px auto;
        padding: 0 15px;
    }

    .product-gallery {
        padding: 15px;
    }

    .product-main-image {
        height: 350px;
    }

    .product-info {
        padding: 30px 20px;
    }

    .product-title {
        font-size: 26px;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .product-description-content {
        padding: 25px 20px;
    }

    .product-tabs {
        overflow-x: auto;
    }

    .product-tab {
        white-space: nowrap;
        padding: 16px 20px;
    }
}
</style>
</head>

<body>

<div>

    <!-- Product Main -->
    <div>

        <!-- Left: Gallery -->
        <div>

            <div>
                <img
                    id="mainProductImage"
                    src="https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=1200&q=80"
                    alt="Industrial Fire Hose Reel">
            </div>

            <div>

                <div class="product-thumbnail active"
                     onclick="changeImage(this, 'https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=1200&q=80')">
                    <img src="https://images.unsplash.com/photo-1586864387967-d02ef85d93e8?auto=format&fit=crop&w=300&q=80">
                </div>

                <div
                     onclick="changeImage(this, 'https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=1200&q=80')">
                    <img src="https://images.unsplash.com/photo-1581094794329-c8112a89af12?auto=format&fit=crop&w=300&q=80">
                </div>

                <div
                     onclick="changeImage(this, 'https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1200&q=80')">
                    <img src="https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=300&q=80">
                </div>

            </div>

        </div>


        <!-- Right: Product Info -->
        <div>

            <span>
                Fire Protection Equipment
            </span>

            <h1>
                Fire Hose Reel Cabinet
            </h1>

            <p>
                Professional fire hose reel cabinet designed for commercial,
                industrial and public buildings. Built with durable materials
                and engineered for reliable emergency fire protection.
            </p>

            <div>

                <div>
                    <div>Product Code</div>
                    <div>VTCON-FHR-001</div>
                </div>

                <div>
                    <div>Material</div>
                    <div>Steel</div>
                </div>

                <div>
                    <div>Application</div>
                    <div>
                        Commercial / Industrial
                    </div>
                </div>

                <div>
                    <div>Certification</div>
                    <div>
                        CE / EN Standard
                    </div>
                </div>

            </div>


            <div>

                <a href="#" class="btn btn-primary">
                    Request a Quote
                </a>

                <a href="#" class="btn btn-outline">
                    Send Inquiry
                </a>

            </div>

        </div>

    </div>


    <!-- Product Details -->
    <div>

        <div>

            <div class="product-tab active">
                Product Description
            </div>

            <div>
                Specifications
            </div>

            <div>
                Applications
            </div>

        </div>


        <div>

            <h2>Product Overview</h2>

            <p>
                This fire hose reel cabinet provides a reliable and
                professional solution for fire protection systems.
                The cabinet is designed to accommodate fire hose reels,
                valves and related firefighting equipment.
            </p>

            <p>
                Manufactured using high-quality materials, the product
                offers excellent durability, easy maintenance and
                long-term performance in demanding environments.
            </p>


            <h2>Technical Specifications</h2>

            <table>

                <tr>
                    <th>Material</th>
                    <td>Cold Rolled Steel</td>
                </tr>

                <tr>
                    <th>Finish</th>
                    <td>Powder Coated</td>
                </tr>

                <tr>
                    <th>Color</th>
                    <td>Red / Custom RAL Color</td>
                </tr>

                <tr>
                    <th>Installation</th>
                    <td>Wall Mounted / Recessed</td>
                </tr>

                <tr>
                    <th>Application</th>
                    <td>Commercial Buildings, Factories, Warehouses</td>
                </tr>

                <tr>
                    <th>Certification</th>
                    <td>CE / EN Standard</td>
                </tr>

            </table>

        </div>

    </div>

</div>


<script>

function changeImage(element, imageUrl) {

    document.getElementById('mainProductImage').src = imageUrl;

    document
        .querySelectorAll('.product-thumbnail')
        .forEach(function(item) {
            item.classList.remove('active');
        });

    element.classList.add('active');
}

</script>

</body>
</html>