 /* 产品中心页面样式 */
    .main-content {
        padding: 3rem 0 3rem;
    }
    
    /* 通用部分样式 */
    .product-section {
        margin-bottom: 4rem;
        padding-top: 0rem;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
		margin-top:2rem;
    }
    
    .section-title {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 1rem;
		border:0px;
        position: relative;
    }
    
    
    
    .section-subtitle {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 1.5rem auto 0;
        line-height: 1.6;
    }
    
    /* 硬件和软件产品卡片样式 */
    .product-card {
        background-color: rgba(245, 249, 253, 1);
        overflow: hidden;
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .product-card:hover {
        transform: translateY(-10px);
    }
    
    .product-badge {
        position: absolute;
        top: 0px;
        left: 0px;
        background-color: #dfe9f3;
        color: #1a3c66;
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
        font-weight: 500;
        z-index: 2;
    }
    
    
    
    .product-content {
        display: flex;
        padding: 1.5rem;
        height: 100%;
    }
    
    .product-image {
        width: 40%;
        margin-right: 1.5rem;
        display: flex;
        align-items: center;
    }
    
    .product-image img {
        width: 100%;
    }
    
    .product-info {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-name {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-color);
        line-height: 1.4;
    }
    
    .product-desc {
        color: #212121;
        line-height: 1.6;
        flex-grow: 1;
		font-size:0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .product-footer {
        text-align: right;
    }
    
    .learn-more {
        color:#1a3c66;
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s;
    }
    
    .learn-more i {
        margin-left: 0.5rem;
        transition: transform 0.3s;
    }
    
    .product-card:hover .learn-more i {
        transform: translateX(5px);
    }
    
    .learn-more:hover {
        color: #d45e00;
    }
    
    /* 算法产品卡片样式 */
    .algorithm-card {
        background-color: #f5f9fd;
        padding: 2.5rem;
        height: 100%;
        transition: all 0.3s ease;
        display: flex;
        align-items: flex-start;
    }
    
    .algorithm-card:hover {
        transform: translateY(-5px);
    }
    
    .algorithm-card.full-width {
        padding: 2rem;
    }
    
    .algorithm-icon {
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 2.5rem;
		background-color: rgba(177, 210, 242, 1);
    border-radius: 50%;
    height: 95px;
    width: 95px;
        font-size: 1.8rem;
        flex-shrink: 0;
    }
    
    .algorithm-card.full-width .algorithm-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .algorithm-info {
        flex: 1;
		padding-top:1rem;
    }
    
    .algorithm-name {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: var(--text-color);
    }
    
    .algorithm-desc {
        color: #666;
        line-height: 1.6;
		font-size:.9rem;
    }
    
    /* 响应式调整 */
    @media (max-width: 992px) {
        .section-title {
            font-size: 2rem;
        }
        
        .product-content {
            flex-direction: column;
        }
        
        .product-image {
            width: 100%;
            margin-right: 0;
            margin-bottom: 1.5rem;
        }
        
        .product-image img {
            height: 180px;
        }
        
        .algorithm-card {
            flex-direction: column;
            text-align: center;
        }
        
        .algorithm-icon {
            margin-right: 0;
            margin-bottom: 1.5rem;
        }
    }
    
    @media (max-width: 768px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .section-subtitle {
            font-size: 1rem;
        }
        
        .main-content {
            padding: 4rem 0 2rem;
        }
    }
    
    @media (max-width: 576px) {
        .product-image img {
            height: 150px;
        }
        
        .algorithm-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
    }
    
    /* 图片加载失败处理 */
    .product-image img,
    .algorithm-icon {
        position: relative;
    }

@media (min-width: 1920px) {
	.product-badge{color: rgba(26, 60, 102, 1);
    font-size: 16px;
    font-family: HarmonyOS_Sans_SC_Medium;
    font-weight: 500;}
	.product-name{color: rgba(33, 33, 33, 1);
    font-size: 18px;
    font-family: HarmonyOS_Sans_SC_Bold;
    font-weight: 700;}
	.product-desc{color: rgba(33, 33, 33, 1);
    font-size: 16px;
    font-family: HarmonyOS_Sans_SC_Light;
    font-weight: 300;}
	.product-content{padding:3.5rem;}
	.product-image{margin-right:3rem;}
	
	}
	
	@media (min-width: 1320px) {
	    .product-name{font-size:1rem;}
	    .product-desc{line-height:1.5rem;max-height:6rem;overflow:hidden;}
	    
	}