
/* 重点产品：左介绍 + 右产品图网格，悬停切换 */
.product-showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-showcase-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.product-showcase-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-showcase-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-showcase-inner {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 80px 5% 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* 左侧产品介绍 */
.product-showcase-left {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 420px;
}

.product-detail {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.product-detail.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-detail .cp_yw {
    font-size:40px;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'Bebas', Arial, sans-serif;
    margin-bottom: 8px;
}

.product-detail .cp_zw {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 28px;
    font-weight: bold;
}

.product-detail .pname {
    font-size: 30px;
    line-height: 33px;
    font-weight: bold;
    margin-bottom:20px;
}

.product-detail .ccp {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 36px;
    max-width: 520px;
}
.product-detail .ccp a{ color:#FFFFFF}
.product-detail .ccp a:hover{ color:#d0e1f3}

.product-detail .sdrt {
    display: inline-block;
    min-width: 120px;
    padding: 0 24px;
    line-height: 40px;
    text-align: center;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.product-detail .sdrt:hover {
    background: #fff;
    color: #0a64ba;
}

/* 右侧产品图 3×2 */
.product-showcase-right {
    width:58%;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.product-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.25s ease, border-color 0.25s ease;
    box-sizing: border-box;
}

.product-card.active,
.product-card:hover {
    background: rgba(10, 100, 186, 0.35);
    border-color: rgba(10, 100, 186, 0.5);
}

.product-card-img {
    width: 100%;
    height: 0;
    padding-bottom: 72%;
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
}

.product-card-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card-more .product-card-img {
    padding-bottom: 72%;
}

.product-card-more .product-card-img img {
    object-fit: contain;
    padding: 18%;
    box-sizing: border-box;
}

.product-card-name {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 8px 12px;
    min-height: 56px;
    box-sizing: border-box;
}

/* 手机端 */
@media only screen and (max-width: 1023px) {
    .product-showcase-inner {
        flex-direction: column;
        padding: 90px 16px 50px;
        min-height: auto;
        gap: 28px;
    }

    .product-showcase-left {
        width: 100%;
        min-height: 0;
    }

    .product-detail {
        position: relative;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .product-detail.active {
        display: block;
    }

    .product-detail .cp_yw {
        font-size: 36px;
    }

    .product-detail .cp_zw {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .product-detail .pname {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .product-detail .ccp {
        font-size: 14px;
        line-height: 26px;
        margin-bottom: 24px;
    }

    .product-showcase-right {
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .product-card-name {
        font-size: 14px;
        min-height: 48px;
    }
}

@media only screen and (max-width:768px) {
    .product-showcase-right {
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }

	
	.product-showcase-inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    margin: 0 auto;
    padding: 50px 8% 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.product-detail .cp_zw {
    font-size:20px;
    line-height: 1.2;
    margin-bottom:10px;
    font-weight: bold;
}

.product-detail .pname {
    font-size:18px;
    line-height: 33px;
    font-weight: bold;
    margin-bottom:10px;
}

.product-detail .ccp {
    font-size: 14px;
    line-height:24px;
    margin-bottom:15px;
    max-width: 100%;
}



.product-detail .sdrt {
    display: inline-block;
    min-width: 120px;
    padding: 0 0px;
    line-height:28px;
    text-align: center;
    border: 2px solid #fff;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
}

.product-detail .sdrt:hover {
    background: #fff;
    color: #0a64ba;
}


.product-showcase-right {

    gap:8px;
}


.product-card-name {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    padding:5px 8px 5px;
    min-height: 56px;
    box-sizing: border-box;
}


}
