/* 行业/客户痛点样式 */
.pain-point-section {
    padding: 40px 0 60px;
}

.pain-point-section .container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 痛点网格布局 */
.pain-points-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* 单个痛点项 */
.pain-point-item {
    flex: 0 0 calc(16.666% - 16.666px); /* 6列布局，考虑间隙 */
    min-width: 180px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    text-align: center;
    height: 200px;
    justify-content: space-between;
}

/* 悬停效果 */
.pain-point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* 图片区域 */
.pain-point-image {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    margin-top: 10px;
}

/* 图片样式 */
.pain-point-image img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

/* 图片悬停效果 */
.pain-point-item:hover .pain-point-image img {
    transform: scale(1.1);
}

/* 标题样式 */
.pain-point-title {
    font-size: var(--font-size16);
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin: 0;
}
.product-intro{
    margin-top: -30px;
}

/* 核心功能亮点样式 */
.core-features {
    padding: 40px 0 60px;
}

.core-features .container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 功能网格布局 */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* 单个功能卡片 */
.feature-card {
    flex: 0 0 calc(20% - 24px); /* 5列布局，考虑间隙 */
    min-width: 200px;
    background: #fff;
    /* border-radius: 8px; */
    box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* 卡片悬停效果 */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* 功能标题区域 */
.feature-header {
    background: linear-gradient(to bottom, #4FC4CC, #3E6FEF);
    color: #fff;
    padding: 20px;
    position: relative;
    text-align: center;
}

/* 标题样式 */
.feature-header h3 {
    margin: 0;
    font-size: var(--font-size18);
    font-weight: 600;
}

/* 三角指示器 */
.feature-triangle {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #3E6FEF;
}

/* 功能内容区域 */
.feature-content {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    align-items: center;
}

/* 内容文本样式 */
.feature-content p {
    margin: 0;
    font-size: var(--font-size18);
    line-height: 1.6;
    color: #333;
}

/* 核心功能亮点响应式设计 */
@media (max-width: 1200px) {
    .feature-card {
        flex: 0 0 calc(33.333% - 20px); /* 3列布局 */
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        flex: 0 0 calc(50% - 15px); /* 2列布局 */
        min-width: 200px;
    }
    
    .feature-header {
        padding: 15px;
    }
    
    .feature-header h3 {
        font-size: 16px;
    }
    
    .feature-content {
        padding: 20px 15px;
    }
    
    .feature-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .feature-card {
        flex: 0 0 100%; /* 1列布局 */
        min-width: 100%;
    }
}

/* 应用价值样式 */
.application-value {
    padding: 40px 0 60px;
}

.app-value-container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 应用价值内容布局 */
.app-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* 左侧图片 */
.app-image {
    flex: 0 0 30%;
    min-width: 00px;
    justify-content: flex-start;
    background-color: transparent;
}

.app-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    display: block;
}

/* 右侧文字区域 */
.app-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

/* 价值点样式 */
.value-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.value-item:last-child {
    margin-bottom: 0;
}

/* 价值点标题 */
.value-title {
    background: #0240EA;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: var(--font-size18);
    font-weight: 600;
    white-space: nowrap;
    margin-right: 15px;
    flex-shrink: 0;
    text-align: left;
}

/* 价值点内容 */
.value-content {
    font-size: var(--font-size18);
    line-height: 1.6;
    color: #333;
    flex: 1;
    text-align: left;
}

/* 应用价值响应式设计 */
@media (max-width: 768px) {
    .app-content {
        flex-direction: column;
        gap: 0;
    }
    
    .app-image {
        flex: 0 0 100%;
        min-height: 200px;
    }
    
    .app-text {
        flex: 0 0 100%;
        padding: 30px 20px;
    }
    
    .value-item {
        margin-bottom: 20px;
        align-items: flex-start;
    }
    
    .value-title {
        font-size: 14px;
        padding: 6px 16px;
        margin-right: 12px;
        margin-bottom: 0;
    }
    
    .value-content {
        font-size: 13px;
        padding-top: 6px;
    }
}

@media (max-width: 576px) {
    .app-text {
        padding: 25px 15px;
    }
    
    .value-item {
        margin-bottom: 18px;
        align-items: flex-start;
    }
    
    .value-title {
        font-size: 13px;
        padding: 5px 14px;
        margin-right: 10px;
        margin-bottom: 0;
    }
    
    .value-content {
        font-size: 12px;
        padding-top: 5px;
    }
}

/* 典型应用场景样式 */
.typical-scenarios {
    padding: 40px 0 60px;
}

.scenario-container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 场景网格布局 */
.scenarios-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* 单个场景项 */
.scenario-item {
    flex: 0 0 calc(50% - 15px); /* 2列布局，考虑间隙 */
    min-width: 300px;
    display: flex;
    background: #fff;
    /* border-radius: 8px; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 场景项悬停效果 */
.scenario-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* 场景图片 */
.scenario-image {
    flex: 0 0 35%;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 场景文字区域 */
.scenario-text {
    flex: 1;
    padding: 35px;
    background: #EFF6FE;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
}

/* 场景标题 */
.scenario-text h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

/* 场景内容 */
.scenario-text p {
    margin: 0 0 12px 0;
    font-size: var(--font-size18);
    line-height: 1.6;
    color: #333;
}

.scenario-text p:last-child {
    margin-bottom: 0;
}

/* 典型应用场景响应式设计 */
@media (max-width: 768px) {
    .scenario-item {
        flex: 0 0 100%; /* 1列布局 */
        min-width: 100%;
    }
    
    .scenario-image {
        flex: 0 0 30%;
        min-width: 100px;
        padding: 15px;
    }
    
    .scenario-text {
        padding: 20px;
    }
    
    .scenario-text h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .scenario-text p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .scenario-image {
        flex: 0 0 35%;
        min-width: 90px;
        padding: 12px;
	display:none;
    }
    
    .scenario-text {
        padding: 18px;
    }
    
    .scenario-text h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .scenario-text p {
        font-size: 12px;
        line-height: 1.4;
    }
}


/* 响应式设计 */
@media (max-width: 1200px) {
    .pain-point-item {
        flex: 0 0 calc(20% - 16px); /* 5列布局 */
        min-width: 160px;
        height: 180px;
        padding: 20px;
    }
    
    .pain-point-image {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }
}

@media (max-width: 992px) {
    .pain-point-item {
        flex: 0 0 calc(25% - 15px); /* 4列布局 */
        min-width: 150px;
        height: 170px;
        padding: 18px;
    }
    
    .pain-point-image {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .pain-point-item {
        flex: 0 0 calc(33.333% - 13.333px); /* 3列布局 */
        min-width: 140px;
        height: 160px;
        padding: 15px;
    }
    
    .pain-point-image {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }
    
    .pain-point-title {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .pain-point-item {
        flex: 0 0 calc(50% - 10px); /* 2列布局 */
        min-width: 130px;
        height: 150px;
        padding: 12px;
    }
    
    .pain-point-image {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .pain-point-title {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .pain-points-grid {
        gap: 15px;
    }
    
    .pain-point-item {
        padding: 10px;
        min-width: 110px;
        height: 130px;
    }
    
    .pain-point-image {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .pain-point-title {
        font-size: 12px;
    }
}<!--0.00015687942504883-->