
.case-text{
    margin:auto;
    padding:50px 20px;
    max-width:1100px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.case-text-item{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:5px;
}

.case-text-tag{
    width:200px;
    font-size:18px;
    color:#fff;
    background-color:#0141e9;
    padding:4px 8px;
    border-radius:24px;
    text-align:center;
}


.subtitle {
    margin-top: 10px;
    margin-bottom: 60px;
}

/* 新的行业/客户痛点样式 - 两行三列布局 */
.painpoints-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 20px;
    justify-content: center;
    margin: 40px 0 60px;
}

.painpoint-item {
    gap: 20px;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    width: calc(33.333% - 14px);
    background: #ffffff;
    border-radius: 8px;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.painpoint-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.painpoint-content {
    flex: 1;
    margin-right: 20px;
}

.painpoint-content h3 {
    margin: 0 0 10px 0;
    font-size: var(--font-size20);
    font-weight: 600;
    color: #333;
}

.painpoint-content p {
    margin: 0;
    font-size: var(--font-size18);
    line-height: 1.5;
    color: #666;
    text-align:justify;
}

.painpoint-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.painpoint-image img {
    max-width: 80px;
    height: auto;
}

.product-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 60px;
    padding: 0 20px;
}

.feature-content{
    min-height: 140px;
    align-items: flex-start;
}

/* 技术特点？檠 */
.tech-features {
    padding: 40px 0;
}

.tech-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

.tech-grid-item {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(25% - 23px);
    max-width: calc(25% - 23px);
    min-width: 200px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
}

.tech-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tech-grid-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 100px;
}

.tech-grid-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.tech-grid-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
    line-height: 1.4;
}

.tech-grid-text {
    flex: 1;
}

.tech-grid-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

/* 技术特点模块响应式设计 */
@media (max-width: 1199px) {
    .tech-grid-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .tech-grid-item {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: unset;
        padding: 20px;
    }

    .tech-grid-title {
        font-size: 16px;
    }

    .tech-grid-text p {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .tech-grid-item {
        padding: 15px;
    }

    .tech-grid-image {
        margin-bottom: 15px;
        min-height: 80px;
    }

    .tech-grid-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .tech-grid-text p {
        font-size: 12px;
        line-height: 1.5;
    }
}

.typical-item {
    max-width: calc(20% - 16px);
    flex: 1;
    min-width: 200px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px 30px;
    opacity: 0;
    transform: translateY(30px);
}

/* 动画延迟 */
.typical-item:nth-child(1) {
    transition: all 0.3s ease-in-out 0.1s;
}
.typical-item:nth-child(2) {
    transition: all 0.3s ease-in-out 0.2s;
}
.typical-item:nth-child(3) {
    transition: all 0.3s ease-in-out 0.3s;
}
.typical-item:nth-child(4) {
    transition: all 0.3s ease-in-out 0.4s;
}
.typical-item:nth-child(5) {
    transition: all 0.3s ease-in-out 0.5s;
}

.typical-item.active {
    opacity: 1;
    transform: translateY(0);
}

.typical-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* 典型应用场景图片区域样式 */
.typical-item .painpoint-image {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    z-index: 1;
}

.typical-item .painpoint-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* 典型应用场景文字区域样式 */
.typical-item .painpoint-content {
    width: 100%;
    min-height: 120px;
    text-align: center;
    padding: 0;
    margin-top: 20px;
    border-radius: 0;
    background: transparent;
    margin-right: 0;
}

.typical-item .painpoint-content h3 {
    font-size: var(--font-size18);
    color: #333333;
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    height:50px;
    align-content:center;
}

.typical-item .painpoint-content p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-size: var(--font-size18);
    text-align: justify;
}

/* 容器样式 */
.core-features .container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 核心功能亮点？檠 - 两行两列布局 */
.core-features .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.core-features .feature-card {
    display: flex;
    align-items: stretch;
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: 300px;
    background-color: #fff;
    /* border-radius: 8px; */
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: row;
}

.core-features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.core-features .feature-image {
    flex: 0 0 25%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* padding: 30px; */
    background-color: #f8f9fa;
}

.core-features .feature-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.core-features .feature-content {
    flex: 1;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align:justify;
}

.core-features .feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.core-features .feature-content p {
    font-size: var(--font-size18);
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.case-item {
    flex: 1;
    min-width: 200px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 100px;
    transform: translateY(30px);
    max-width: 100%;
}
.case-item h3 {
 
    text-align: center;
}


/* 响应式设计 */
@media (max-width: 1200px) {
    .painpoint-item {
        width: calc(33% - 12px);
        padding: 15px;
    }
    
    .painpoint-content h3 {
        font-size: 15px;
    }
    
    .painpoint-content p {
        font-size: 13px;
    }
    
    .painpoint-image img {
        max-width: 70px;
    }
    
    /* 典型应用场景响应式 */
    .typical-item {
        max-width: calc(33% - 14px);
    }

    /* 客户案例 */
    .case-text{
        max-width:720px;
        grid-template-columns:repeat(1,1fr);
    }

    .case-text-item{
        flex-direction:row;
        align-items:center;
    }

    .case-text-tag{
        margin-right:10px;
        flex-shrink:0;
    }
}

@media (max-width: 992px) {
    .painpoint-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .painpoint-item {
        width: 100%;
        /*flex-direction: column;*/
        text-align: center;
    }
    
    .painpoint-content {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .painpoint-content h3 {
        font-size: 16px;
    }
    
    .painpoint-content p {
        font-size: 14px;
    }
    
    .painpoint-image img {
        max-width: 80px;
    }
    
    /* 典型应用场景响应式 */
    .typical-item {
        max-width: calc(50% - 10px);
        min-width: 150px;
    }
    
    .typical-item .painpoint-image {
        width: 70px;
        height: 70px;
        top: -35px;
    }
    
    .typical-item .painpoint-content h3 {
        font-size: 15px;
    }
    
    .typical-item .painpoint-content p {
        font-size: 13px;
    }

    /* 核心功能亮点移动端适配 */
    .core-features .features-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .core-features .feature-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: unset;
        /*flex-direction: column;*/
    }

    .core-features .feature-image {
        flex: 0 0 30%;
        padding: 20px;
    }

    .core-features .feature-content {
        padding: 20px;
    }

    .core-features .feature-content h3 {
        font-size: 18px;
    }

    .core-features .feature-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .painpoint-item {
        padding: 15px;
    }
    
    .painpoint-content h3 {
        font-size: 14px;
    }
    
    .painpoint-content p {
        font-size: 12px;
    }
    
    /* 典型应用场景响应式 */
    .typical-item {
        max-width: 100%;
    }
    
    .typical-item .painpoint-image {
        width: 60px;
        height: 60px;
        top: -30px;
    }
    
    .typical-item .painpoint-content h3 {
        font-size: 14px;
    }
    
    .typical-item .painpoint-content p {
        font-size: 12px;
    }

    /* 核心功能亮点小屏幕适配 */
    .core-features .features-grid {
        gap: 15px;
    }

    .core-features .feature-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: unset;
    }

    .core-features .feature-image {
        flex: 0 0 30%;
        padding: 15px;
    }

    .core-features .feature-content {
        padding: 15px;
    }

    .core-features .feature-content h3 {
        font-size: 16px;
    }

    .core-features .feature-content p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* 应用价值？檠 */
.application-value {
    padding: 40px 0;
}

.app-value-container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

.app-content {
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
    background-color: #fff;
    /* border-radius: 8px; */
    /* padding: 40px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.app-image {
    flex: 0 0 30%;
    min-width: 200px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.app-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding:20px;
}

.app-text-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.app-text-tag {
    font-size: var(--font-size18);
    font-weight: 600;
    color: #fff;
    background-color: #0141e9;
    padding: 4px 8px;
    border-radius: 24px;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 120px;
    text-align: center;
}

.app-text-item p {
    font-size: var(--font-size18);
    color: #666;
    line-height: 1.8;
    margin: 0;
    flex: 1;
    text-align:justify;
}



/* 应用价值模块响应式设计 */
@media (max-width: 1199px) {
    .app-content {
        padding: 30px;
        gap: 30px;
    }

    .app-image {
        flex: 0 0 20%;
        height: 350px;
    }

    .app-text-tag {
        font-size: 16px;
        padding: 6px 14px;
    }

    .app-text-item p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .app-content {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 20px;
    }

    .app-image {
        display:none;
    }

    .app-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .app-text {
        flex: 0 0 100%;
        min-width: unset;
        gap: 20px;
    }

    .app-text-item {
        flex-direction: row;
        gap: 15px;
    }

    .app-text-tag {
        font-size: 14px;
        padding: 5px 12px;
    }

    .app-text-item p {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .app-content {
        padding: 15px;
        gap: 15px;
    }

    .app-image {
        height: 200px;
    }

    .app-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .app-text {
        gap: 15px;
    }

    .app-text-item {
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }

    .app-text-tag {
        font-size: 12px;
        padding: 4px 10px;
    }

    .app-text-item p {
        font-size: 12px;
        line-height: 1.5;
        flex: 1;
        min-width: 200px;
    }
}

<!--0.00014281272888184-->