.product-intro {
    margin-top: -40px;
}

/* 技术特点Grid布局 */
.tech-features {
    padding: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
    background: #fff;
}

.tech-features.active {
    opacity: 1;
    transform: translateY(0);
}

.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.tech-grid-item {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    background: linear-gradient(to bottom, #E3EFFE, #ffffff);
}

.tech-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.tech-grid-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-grid-image img {
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
    transition: transform 0.3s ease;
}

.tech-grid-item:hover .tech-grid-image img {
    transform: scale(1.05);
}

.tech-grid-title {
    /* padding: 20px; */
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.tech-grid-text {
    padding: 20px;
    flex: 1;
    display: flex;
    text-align:justify;
}

.tech-grid-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .tech-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tech-features {
        padding: 40px 0;
    }
    
    .tech-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .tech-grid-image {
        height: 180px;
    }
    
    .tech-grid-title {
        padding: 15px;
        font-size: 18px;
    }
    
    .tech-grid-text {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .tech-grid-image {
        height: 150px;
    }
    
    .tech-grid-title {
        font-size: 16px;
    }
    
    .tech-grid-text p {
        font-size: 14px;
    }
}

/* 应用价值样式 */
.application-value {
    padding: 60px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.application-value.active {
    opacity: 1;
    transform: translateY(0);
}

.app-value-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.app-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1600px;
    background-color: #fff;
    border-radius: 0 8px 8px 0;
}

.app-image {
    width: 30%;
    max-width: 300px;
    height: auto;
    overflow: hidden;
    border-radius: 8px 0 0 8px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.app-image:hover img {
    transform: scale(1.02);
}

/* 应用价值网格布局 */
.app-value-grid {
    padding:30px 20px;
    width: 70%;
    max-width: 1000px;
    margin: auto 0;
}

.app-value-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.app-value-title {
    width: 80px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0041E7;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    text-align: center;
    flex-shrink: 0;
}

.app-value-content {
    flex: 1;
}

.app-value-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}


/* 响应式设计 */
@media (max-width: 1200px) {
    .app-content {
        /*flex-direction: column;*/
        /*align-items: center;*/
        gap: 20px;
    }
    
    .app-image {
        width: 100%;
        /*max-width: 800px;*/
    }
    
    .app-value-grid {
        width: 100%;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .application-value {
        padding: 40px 0;
    }
    
    .app-content {
        gap: 30px;
    }
    
    .app-value-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .app-value-title {
        width: auto;
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .app-value-grid {
        padding: 0 10px;
    }
    
    .app-value-title {
        font-size: 14px;
        height: 35px;
        border-radius: 17.5px;
    }
    
    .app-value-content p {
        font-size: 14px;
    }
}

/* 典型应用场景样式 */
.typical-scenarios {
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-in-out;
}

.typical-scenarios.active {
    opacity: 1;
    transform: translateY(0);
}

/* 网格布局 */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap:80px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

/* 每个场景项 */
.scenario-item {
    display: flex;
    justify-content: center;
    position: relative;
}

/* 卡片容器 */
.scenario-card {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.scenario-item:hover .scenario-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* 图片样式 */
.my-scenario-image {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #48C6CA, #3669F0);
    margin-bottom: 20px;
    margin-top: -70px;
}

.my-scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scenario-item:hover .my-scenario-image img {
    transform: scale(1.05);
}

/* 文字内容 */
.my-scenario-content {
    width: 100%;
    padding: 0;
    position: relative;
}

.my-scenario-content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.my-scenario-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.case-content{
    display: block;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap:80px 40px;
    }
}

@media (max-width: 768px) {
    .typical-scenarios {
        padding: 40px 15px;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap:80px 30px;
    }
    
    .scenario-card {
        padding: 15px;
    }
    
    .my-scenario-image {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .scenario-card {
        padding: 10px;
    }
    
    .my-scenario-image {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .my-scenario-content h3 {
        font-size: 16px;
    }
    
    .my-scenario-content p {
        font-size: 13px;
    }
}<!--0.00025391578674316-->