.full-screen-swiper {
    position: relative;
    height: 100vh;
    /* 扣除header高度 */
    width: 100%;
    overflow: hidden;

}

.swiper {
    height: 100%;
    width: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 保持图片比例填满容器 */
}

/* 自定义分页样式 */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #ff4d4f;
    opacity: 1;
}

/* 导航按钮样式 */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    padding: 0 30px;
    transition: opacity 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    opacity: 0.8;
}

/*产品*/
.product-showcase {
    display: flex;
    /* gap: 30px; */
    /* padding: 40px 5%; */
    width: 1344px;
    margin: 0 auto;
    padding-top: 107px;

    background: #fff;
}

/* 左侧分类面板 */
.category-panel {
    flex: 0 0 268px;
    /* height: 100vh; */
}

.category-group {
    /* margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08); */
}

.category-title {
    font-weight: bold;
    font-size: 28px;
    color: #333333;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.category-list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}

.category-item {
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

/* .category-item:hover {
    background: #F6F7F9;
    color: #333;
} */

.category-item.active {
    background: #F6F7F9;
    font-weight: 800;
    font-size: 18px;
    color: #4696F5;
    position: relative;
}

/* 右侧产品列表 */
.product-list2 {
    flex: 1;
    margin-left: 95px;
}

.current-category {
    margin: 0 0 24px;
    font-weight: bold;
    font-size: 22px;
    color: #333333;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 2%;
    /* 行间距24px，列间距2% */
  
}

.product-item {
    width: calc(25% - 1.5%);
    /* 4列布局 */
    background: white;
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 218px;
    background: #f0f0f0;
}

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

.product-info {
    height: 52px;
    padding-top: 5px;
    background: #4696F5;
    text-align: center;
    box-sizing: border-box;
}

.product-name {
    font-weight: 800;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-model {
    font-weight: 800;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 23px;
}



.footer {
    position: initial;
}

/*.footer .hotline {*/
/*    color: #a0a3a8;*/
/*    font-size: 12px;*/
/*}*/

/*.footer .phone {*/
/*    font-size: 18px;*/
/*    font-weight: bold;*/
/*}*/

/*!* 底部备案信息 *!*/
/*.footer-bottom {*/
/*    padding: 20px 0;*/
/*}*/

/*.icp-info {*/
/*    text-align: center;*/
/*    color: #a0a3a8;*/
/*    font-size: 12px;*/
/*    line-height: 1.8;*/
/*}*/

