.metal-text span {
    font-family: Arial, sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    
    /* 冷色金属渐变 */
    background: linear-gradient(135deg,
        #0d6c9c 10%,        /* 深蓝基底 */
        #fff 35%,        /* 主高光区 */
        #6acfff 65%,        /* 强反射光 */
        #1890c8 90%);       /* 边缘加深 */
    -webkit-background-clip: text;
    background-clend-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* 节奏型光晕动画 */
    animation: metal-glow 2s cubic-bezier(0.4,0,0.2,1) infinite;
    background-size: 300% 150%;

    /* 立体投影系统 */
    text-shadow: 
        1px 1px 2px rgba(0,68,102,0.5),        /* 深色投影 */
        -1px -1px 2px rgba(180,230,255,0.3),   /* 顶部高光 */
        0 0 8px rgba(24,144,200,0.3);          /* 环境光晕 */
}

@keyframes metal-glow {
    0% { 
        background-position: 0% 50%;
        opacity: 0.95;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 1;
    }
    100% { 
        background-position: 0% 50%; 
        opacity: 0.95;
    }
}

/* 独立产品列表样式 */
.fpower-product-list {
    padding: 4rem 0;
    background: #f8fafc;
}

.fpower-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1890C8;
    margin-bottom: 3rem;
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.list-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.list-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(24,144,200,0.15);
}

.card-link {
    display: flex;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.card-media {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    /*height: 280px;*/
    object-fit: cover;
    transition: transform 0.4s ease;
}

.list-product-card:hover .product-image {
    transform: scale(1.03);
}

.list-card-content {
    flex: 1;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-desc {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-button {
    /*display: inline-flex;*/
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button iconify-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/*.list-product-card:hover .cta-button {
    color: #1476a5;
} */

.list-product-card:hover .cta-button iconify-icon {
    transform: translateX(3px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .product-grid {
        gap: 1.5rem;
    }
    
    .product-image {
        height: 240px;
    }
    
    .list-card-content {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .card-link {
        flex-direction: column;
    }
    
    .card-media {
        flex: none;
        height: 220px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .fpower-product-list {
        padding: 3rem 0;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-desc {
        font-size: 0.95rem;
    }
}

