﻿/* ------------------------------吸入粉尘颗粒—释放新鲜空气 */
.section-container {
    padding-top: 140px;
}

/* 标题样式 */
.section-title {
    font-family: Microsoft YaHei;
    font-weight: 700;
    font-size: 32px;
    color: #206BB7;
}

/* 描述文本 */
.section-desc {
    font-family: Microsoft YaHei;
    font-size: 24px;
    color: #4D4D4D;
    padding-top: 31px;
}

.company-intro {
    font-family: Microsoft YaHei;
    font-size: 24px;
    line-height: 40px;
    padding-top: 22px;
    color: #4D4D4D;
    text-align: justify;
}
.company-intro span {
    font-weight: bold;
}

/* 视频容器 */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 比例 */
    background-color: #000;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 31px;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* -------------------------------------------------产品中心 */
.product {
    height: 926px;
    background: #fff;
    /*margin-top: 113px;*/
}

/* 产品中心整体容器：控制宽度、居中、内边距 */
.product-center {
    padding-top: 84px;
}

.main-title {
    font-family: Microsoft YaHei;
    font-weight: 700;
    font-size: 32px;
    color: #206BB7;
}

.sub-title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 24px;
    color: #4D4D4D;
    padding-top: 22px;
}

/* 产品列表：核心Flex布局，实现自动换行 */
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* gap: 30px; */
    justify-content: space-between;
    padding-top: 60px;
}

/* 单个产品项：固定宽高比，居中对齐 */
.product-item {
    width: calc(19.666% - 25px);
    /* 6列排列，减去gap的影响 */
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding-bottom: 87px;
    /* 鼠标悬浮轻微放大，提升交互 */
}

/* 鼠标悬浮效果（可选，增强体验） */
.product-item:hover {
    transform: scale(1.03);
}

/* 产品图片容器：确保圆形裁剪，溢出隐藏 */
.product-img {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    /* 核心：圆形效果 */
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #eee;
    /* 轻微边框，还原截图质感 */
}

/* 产品图片：覆盖容器，保持比例 */
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 关键：图片居中裁剪，不拉伸 */
    display: block;
    /* 消除图片底部空白 */
}

.product-name {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #656565;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* 响应式适配：屏幕小于1024px时，改为4列排列 */
@media (max-width: 1024px) {
    .product-item {
        width: calc(25% - 22.5px);
    }
}

/* 响应式适配：屏幕小于768px时，改为2列排列 */
@media (max-width: 768px) {
    .product-item {
        width: calc(50% - 15px);
    }

    .product-img {
        width: 100px;
        height: 100px;
    }
}
/* ----------------------------------解决方案 */
.solution {
    height: 589px;
}