/* 硬件产品展示区样式 */
.hardware-showcase {
    padding: 60px 0 40px 0;
    background: #f8f9fb;
}

.hardware-showcase h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.hardware-showcase p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.hardware-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(80, 80, 120, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f0f0;
}

.hardware-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(80, 80, 120, 0.16);
}

.hardware-image {
    width: 100%;
    aspect-ratio: 1.3/1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hardware-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s;
}

.hardware-card:hover .hardware-image img {
    transform: scale(1.08);
}

.hardware-content {
    padding: 28px 22px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hardware-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #666;


    width: 100%;
    text-align: center;
}

.hardware-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.hardware-features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #444;
    font-size: 1rem;
}

.hardware-features li:before {
    content: "✔";
    color: #5236ff;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.95em;
}



.hardware-btn {
    display: inline-block;
    background: #1e5799;
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hardware-btn:hover {
    background: #15467a;
}




@media (max-width: 600px) {
    .hardware-showcase {
        padding: 36px 0 20px 0;
    }

    .hardware-content {
        padding: 18px 10px 14px 10px;
    }

    .hardware-image {
        height: 120px;
        aspect-ratio: 1.2/1;
    }
}