/* 分类产品主容器 */
.category-product {
    position: relative;
    text-align: center;
    font-size: 18px;
    height: 610px;
    background: linear-gradient(#c8dfee, #d8e8f3);
}

/* 横幅背景图 */
.category-product__banner-img {
    width: 100%;
    display: block;
}

.category-banner-wave {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 215px;
    color: var(--cproj-color-white);
}

/* 高分辨率屏幕适配 */
@media (min-width: 1400px) {
    .category-banner-wave {
        height: 285px;
    }
}

@media (min-width: 1900px) {
    .category-banner-wave {
        height: 355px;
    }
}

/* 标题内容容器（绝对定位在横幅上） */
.category-product__title-wrap {
    /* position: absolute; */
    /* left: 0; */
    /* top: 0; */
    /* width: 100%; */
    height: 100%;
    /* padding: 2% 0; */
    z-index: 1;
}

/* 单个标题项（默认隐藏，仅active显示） */
.category-product__title-item {
    display: none;
    text-align: left;
    height: 100%;
    align-items: center;
    gap: 20px;
    position: relative;
}

/* 默认显示第一个 */
.category-product__title-item.is-active {
    display: flex;
}

.category-product__title-content {
    width: 50%;
    position: absolute;
    top: 20%;
    left: 0%;
}

/* 标题文本内容 */
.category-product__title-content h5 {
    color: #1B3F5F;
    margin: 0 0 10px 0;
    font-size: 58px;
}

.category-product__title-content p {
    margin: 0;
    color: #1B3F5F;
    line-height: 1.6;
    font-size: 24px;
}

/* 详情链接 */
/* .category-product__link {
    background-color: var(--cproj-color-white);
    box-shadow: 0px 0px 15px var(--cproj-color-border-1);
    color: #1B3F5F;
    font-size: 24px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding: 10px 40px;
    width: 225px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.category-product__link:hover {
    color: #3874EC;
} */

.category-product__title-content .category-product__link {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    width: 225px;
    margin-top: 30px;
    padding: 10px 40px;
    background-color: #ffffff00;
    color: #1B3F5F;
    border: 2px solid #1B3F5F;
    border-radius: 5px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.category-product__title-content .category-product__link span,
.category-product__title-content .category-product__link i {
    position: relative;
    z-index: 10;
}

.category-product__title-content .category-product__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.5, 1);
    transform: scale(0.5, 1);
}

.category-product__title-content .category-product__link:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.category-product__title-content .category-product__link:hover {
    border: 2px solid #ffffff;
}

/* 标题项图片 */
.category-product__title-img {
    max-width: 556px;
    position: absolute;
    bottom: -12%;
    right: 0%;
}

/* 产品项列表容器 */
.product-list {
    /* width: 80%; */
    margin: 0 auto;
    padding: 150px 0;
}

.product-list__inner {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

/* 单个产品项 */
.product-list__item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 80px;
    padding: 15px;
    transition: all 0.3s;
    width: 380px;
    min-height: 150px;
    box-shadow: 0px 0px 15px var(--cproj-color-border-1);
    background-color: var(--cproj-color-bg-1);
    transition: background-color 0.3s, border-radius 0.3s;
    display: flex;
    align-items: center;
}

/* 点击/默认激活状态 */
.product-list__item.is-active {
    border-radius: 8px 8px 30px 8px;
    background-color: #ffffff;
}

.product-list__item:hover {
    border-radius: 8px 8px 30px 8px;
    background-color: #ffffff;
}

/* 产品项图片 */
.product-list__img {
    width: 160px;
    position: absolute;
    top: -50%;
    right: 15px;
    max-width: 100%;
}

/* 产品项信息 */
.product-list__info h5 {
    margin: 20px 15px 15px 15px;
    color: #1B3F5F;
    font-weight: 500;
}

/* 响应式适配：992px - 1400px（补充区间） */
@media (min-width: 992px) and (max-width: 1400px) {

    /* 标题文本：比大屏小，比平板大 */
    .category-product__title-content h5 {
        font-size: 48px;
        /* 较1400px以上的58px缩小 */
    }

    .category-product__title-content p {
        font-size: 22px;
        /* 较24px缩小 */
        line-height: 1.5;
    }

    /* 标题内容区：适当加宽 */
    .category-product__title-content {
        width: 55%;
        /* 比50%宽，利用更多空间 */
        /* margin-left: 5%; */
        /* 减少左距，避免过挤 */
    }

    /* 标题项图片：缩小尺寸适配屏幕 */
    .category-product__title-img {
        width: 420px;
        /* 较500px缩小 */
    }

    /* 详情链接：微调尺寸 */
    .category-product__link {
        font-size: 22px;
        width: 210px;
        padding: 10px 35px;
    }

    /* 产品列表容器：加宽适配 */
    .product-list {
        width: 85%;
        /* 比80%宽，减少左右留白 */
        padding: 130px 0;
    }

    /* 产品项间距：适当加大，避免拥挤 */
    .product-list__inner {
        gap: 40px;
    }
}

/* 响应式适配：平板及以下（≤991px） */
@media (max-width: 991px) {
    .category-product__title-wrap {
        width: 100%;
        position: static;
        padding: 20px;
    }

    .category-product__title-item {
        flex-direction: column;
        text-align: center;
    }

    .category-product__title-content {
        width: 100%;
        /* margin-left: 0; */
        top: 15%;
        left: auto;
    }

    .category-product__title-img {
        bottom: -17%;
        right: auto;
        max-width: 350px;
    }

    .category-product__link {
        margin-left: 0;
        margin-top: 15px;
    }

    .product-list__inner {
        flex-direction: column;
        align-items: center;
    }
}

/* 响应式适配：手机端（≤767px） */
@media (max-width: 767px) {
    .category-product__title-content h5 {
        font-size: 32px;
        line-height: 1.3;
    }

    .category-product__title-content p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .category-product__link {
        font-size: 18px;
        width: 180px;
        padding: 8px 30px;
        margin-top: 20px;
    }

    .category-product__title-img {
        max-width: 320px;
        width: 100%;
        height: auto;
        margin: 20px auto 0;
        bottom: 0%;
    }

    .product-list {
        width: 95%;
        padding: 100px 0 50px;
    }

    .product-list__item {
        width: 90%;
        min-height: 130px;
        max-width: 280px;
        margin-bottom: 40px;
        padding: 15px 10px;
    }

    .product-list__img {
        width: 130px;
        top: -40%;
    }

    .product-list__info h5 {
        font-size: 16px;
        margin: 15px 10px 10px;
    }
}