/* 行业/客户痛点样式 */
.page-section-container {
    /*max-width: var(--base-pc-width);*/
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* 痛点网格布局 */
.painpoints-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* 单个痛点项 */
.painpoint-item {
    flex: 0 0 calc(50% - 10px); /* 2列布局，考虑间隙 */
    min-width: 300px;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

/* 痛点项激活效果 */
.painpoint-item.active {
    transform: translateY(0);
    opacity: 1;
}



/* 痛点项悬停效果 */
.painpoint-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 左侧序号区域 */
.painpoint-number {
    width: 90px;
    background: linear-gradient(to bottom, #00B0EE, #00AE57);
    color: #fff;
    font-size: 64px;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 右侧文字区域 */
.painpoint-content {
    flex: 1;
    background: #FFFFFF;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
}

/* 标题样式 */
.painpoint-content h3 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: left;
}

/* 内容样式 */
.painpoint-content p {
    margin: 0;
    font-size: var(--font-size18);
    line-height: 1.6;
    color: #666;
    text-align: left;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .painpoint-item {
        flex: 0 0 100%; /* 1列布局 */
        min-width: 100%;
    }
    
    .painpoint-number {
        width: 80px;
        font-size: 20px;
    }
    
    .painpoint-content {
        padding: 15px;
    }
    
    .painpoint-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .painpoint-content p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .painpoint-number {
        width: 70px;
        font-size: 18px;
    }
    
    .painpoint-content {
        padding: 12px;
    }
    
    .painpoint-content h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .painpoint-content p {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* 核心功能亮点样式 */
.core-features-summay {
    padding: 30px 0;
    background: #f8f9fa;
}

.core-features-summay .container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

.core-features-summay p {
    font-size: var(--font-size18);
    line-height: 1.6;
    color: #333;
    text-align: left;
    margin: 0;
}

.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: 20px;
    justify-content: center;
    position: relative;
}

/* 单个功能项 */
.feature-item {
    flex: 0 0 calc(20% - 16px); /* 5列布局，考虑间隙 */
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 30px;
}

/* 序号区域 */
.feature-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0141E9;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* 内容区域 */
.feature-content {
    width: 100%;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 60px 30px 30px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

/* 内容文本 */
.feature-content p {
    margin: 0;
    font-size: var(--font-size18);
    line-height: 1.5;
    color: #333;
    text-align:justify;
}

/* 核心功能亮点响应式设计 */
@media (max-width: 1200px) {
    .feature-item {
        flex: 0 0 calc(25% - 15px); /* 4列布局 */
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    .feature-item {
        flex: 0 0 calc(33.333% - 13.333px); /* 3列布局 */
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex: 0 0 calc(50% - 10px); /* 2列布局 */
        min-width: 180px;
    }
    
    .feature-content {
        padding: 15px;
    }
    
    .feature-content p {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .feature-item {
        flex: 0 0 100%; /* 1列布局 */
        min-width: 100%;
    }
    
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .feature-content {
        padding: 15px;
    }
    
    .feature-content p {
        font-size: 13px;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .feature-content {
        padding: 12px;
    }
    
    .feature-content p {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* 技术特点样式 */
.technical-features {
    padding: 60px 0;
    margin: 40px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.technical-features.active {
    opacity: 1;
    transform: translateY(0);
}

.technical-features .container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 12px;
    background: linear-gradient(to bottom, #E3F0FE, #FFFFFF);
}

/* 技术特点内容布局 */
.tech-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* 左侧图片区域 */
.tech-image {
    flex: 0 0 30%;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

/* 右侧文字区域 */
.tech-text {
    flex: 1;
    min-width: 300px;
}

.tech-text p {
    margin: 0 0 12px 0;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

.tech-text p:last-child {
    margin-bottom: 0;
}

/* 应用价值样式 */
.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 10%;
    /* min-width: 200px; */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-color: #f8f9fa;
}

.app-image img {

    object-fit: cover;
    display: block;
}

/* 右侧文字区域 */
.app-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.app-text p {
    margin: 0;
    font-size: var(--font-size18);
    line-height: 1.6;
    color: #333;
    text-align: left;
}

/* 典型应用场景样式 */
.typical-scenarios {
    padding: 40px 0 60px;
}

.scenario-container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* 单个场景项 */
.scenario-item {
    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;
}

/* 左侧文字区域 */
.scenario-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.scenario-text p {
    margin: 0;
    font-size: var(--font-size18);
    line-height: 1.6;
    color: #333;
    text-align:justify;
}

/* 右侧图片区域 */
.scenario-image {
    flex: 0 0 35%;
    /* min-width: 200px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    align-items: flex-start;
    justify-content: flex-start;

}

/* 典型应用场景响应式设计 */
@media (max-width: 992px) {
    .scenario-item {
        flex-direction: column;
        gap: 0;
    }
    
    .scenario-text {
        flex: 0 0 100%;
        min-width: 100%;
        order: 1;
    }
    
    .scenario-image {
        flex: 0 0 300px;
        width: 100%;
        min-width: 100%;
        order: 2;
    }
}

@media (max-width: 768px) {
    .scenario-item {
        flex-direction: column;
        gap: 0;
    }
    
    .scenario-text {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 30px;
        gap: 15px;
        order: 1;
    }
    
    .scenario-text p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .scenario-image {
        flex: 0 0 200px;
        width: 100%;
        min-width: 100%;
        order: 2;
    }
}

@media (max-width: 576px) {
    .scenario-text {
        padding: 20px;
        gap: 12px;
    }
    
    .scenario-text p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .scenario-image {
        flex: 0 0 150px;
    }
}

/* 应用价值响应式设计 */
@media (max-width: 992px) {
    .app-content {
        flex-direction: column;
        gap: 0;
    }
    
    .app-image {
        flex: 0 0 300px;
        width: 100%;
        min-width: 100%;
	display:none;
    }
    
    .app-text {
        flex: 1;
        min-width: 100%;
        padding: 30px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .app-content {
        flex-direction: column;
        gap: 0;
    }
    
    .app-image {
        flex: 0 0 200px;
        width: 100%;
        min-width: 100%;
    }
    
    .app-text {
        flex: 1;
        min-width: 100%;
        padding: 20px;
        gap: 12px;
    }
    
    .app-text p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .app-image {
        flex: 0 0 150px;
    }
    
    .app-text {
        padding: 15px;
        gap: 10px;
    }
    
    .app-text p {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* 技术特点响应式设计 */
@media (max-width: 992px) {
    .tech-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .tech-image {
        flex: 0 0 100%;
        min-width: 100%;
        justify-content: center;
    }
    
    .tech-image img {
        max-width: 250px;
    }
    
    .tech-text {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .technical-features {
        padding: 40px 0;
    }
    
    .tech-content {
        gap: 20px;
    }
    
    .tech-image img {
        max-width: 200px;
    }
    
    .tech-text p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .technical-features {
        padding: 30px 0;
    }
    
    .tech-image img {
        max-width: 150px;
    }
    
    .tech-text p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
}

@media (max-width: 360px) {
    .tech-image img {
        max-width: 120px;
    }
    
    .tech-text p {
        font-size: 11px;
        line-height: 1.3;
    }
}

/* 客户案例样式 */
/*.customer-cases {
    margin: 40px 0;
}*/

/*.case-background {
    padding: 40px 0 60px;
     background: #f8f9fa; 
}*/

/*.case-container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}*/

/* 客户案例内容布局 */
.case-content {
    background-color:transparent;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* 单个案例项 */
.case-item {
    flex: 0 0 calc(33.333% - 13.333px); /* 3列布局，考虑间隙 */
    min-width: 250px;
    background: #fff;
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 案例项悬停效果 */
.case-item:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

/* 图片案例项 */
.case-image {
    /*height: 300px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    /* background-color: #f0f0f0; */
}

.case-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    display: block;
    /* border-radius: 4px; */
}

/* 文字案例项 */
.case-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    text-align: left;
}

/* 客户案例响应式设计 */
@media (max-width: 992px) {
    .case-item {
        flex: 0 0 calc(50% - 10px); /* 2列布局 */
        min-width: 200px;
    }
    
    .case-image {
        height: 250px;
    }
    
    .case-text {
        padding: 25px;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .case-item {
        flex: 0 0 calc(50% - 10px); /* 2列布局 */
        min-width: 180px;
    }
    
    .case-image {
        height: 200px;
    }
    
    .case-text {
        padding: 20px;
        gap: 8px;
    }
    
    .case-text p {
        font-size: 13px;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .case-item {
        flex: 0 0 100%; /* 1列布局 */
        min-width: 100%;
    }
    
    .case-image {
        height: 180px;
    }
    
    .case-text {
        padding: 15px;
        gap: 8px;
    }
    
    .case-text p {
        font-size: 12px;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .case-image {
        height: 150px;
    }
    
    .case-text {
        padding: 12px;
        gap: 6px;
    }
    
    .case-text p {
        font-size: 11px;
        line-height: 1.2;
    }
}<!--0.00015902519226074-->