.subtitle{

    margin-top: 40px;

}


/* 行业/客户痛点样式 */

.page-section-container {

    /*max-width: var(--base-pc-width);

    margin: 0 auto;
    margin-top: 100px;
    padding: 0 20px;

    opacity: 0;

    transform: translateY(-20px);

    transition: all 0.5s ease-in-out;*/
}



.page-section-container.active {

    opacity: 1;

    transform: translateY(0);

}





/* 网格布局 */

.painpoints-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin: 0 auto;

    max-width: var(--base-pc-width);

}



/* 每个痛点项 */

.painpoint-item {

    display: flex;

    justify-content: center;

    position: relative;

}



/* 卡片容器 */

.pain-point-card {

    width: 100%;

    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: 40px;

    text-align: center;

    /* border: 12px solid transparent; */

    background: /* 渐变上边框 */linear-gradient(to right, #60d8ea, #ffffff),/* 白色内容区 */
linear-gradient(#fff, #fff);

    background-clip: border-box, padding-box;

    background-origin: border-box, padding-box;

    background-repeat: no-repeat;

    background-size: 100% 18px, 100% 100%;

    background-position: top, center;

}



.pain-point:hover .pain-point-card {

    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

}



/* 图片样式 */

.pain-point-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: -80px;

}



.pain-point-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;

}



.pain-point:hover .pain-point-image img {

    transform: scale(1.05);

}



/* 文字内容 */

.pain-point-content {

    width: 100%;

    padding: 0;

    position: relative;

}



.pain-point-content h3 {

    font-size: var(--font-size24);

    font-weight: bold;
    color: #333;

    margin-bottom: 15px;

}



.pain-point-content p {
    font-size: var(--font-size18);

    color: #666;

    line-height: 1.6;

    margin: 0;

    text-align: left;

}



.app-content {

    box-shadow: unset;

}



/* 响应式设计 */

@media (max-width: 1200px) {

    .painpoints-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 25px;
   }

}



@media (max-width: 992px) {

    .painpoints-grid {

        grid-template-columns: repeat(2, 1fr);

        gap:100px 25px;

    }

    
.pain-point-card {

        padding: 20px;

    }

    .pain-point-content h3 {

        font-size: 18px;

    }

}



@media (max-width: 768px) {

    .painpoints-grid {

        grid-template-columns: 1fr;

        gap: 100px;

        margin: 100px auto 40px;

    }

    .pain-point-card {

        padding: 15px;

    }

    .pain-point-image {

        width: 100px;

        height: 100px;

        margin-bottom: 15px;

    }

    .pain-point-content h3 {

        font-size: 18px;

    }

    .pain-point-content p {

        font-size: 14px;

        line-height: 1.6;

    }

}



@media (max-width: 480px) {

    .pain-point-card {

        padding: 10px;

    }

    .pain-point-image {

        width: 80px;

        height: 80px;

        margin-bottom: 12px;

    }

    
    .pain-point-content h3 {

        font-size: 16px;

    }

    
    .pain-point-content p {

        font-size: 13px;

    }

}



/* 核心功能亮点样式 */

.core-features {

    padding: 40px 0;

}



.feature-row {

    display: flex;

    align-items: center;

    gap: 40px;

    margin-bottom: 50px;

    background: #fff;    border-radius: 12px;

    padding: 30px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



/* 应用价值样式 */
.application-value {

    padding: 40px 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: var(--base-pc-width);

    margin: 0 auto;

    padding: 0 20px;

}



/* 卡片容器 - 响应式Flexbox布局 */

.app-cards-container {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    justify-content: center;

    align-items: stretch;

    margin: 0 auto;

}



/* 单个卡片 */

.app-card {

    flex: 0 0 calc(20% - 16px); /* 每行5个卡片，减去间距 */

    min-width: 200px;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;

    flex-direction: column;

    background: #fff;

}



/* 卡片悬停效果 */

.app-card:hover {
 
    transform: translateY(-5px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

}



/* 卡片标题区域 - 渐变背景 */

.app-card-title {

    background: linear-gradient(to right, #1BA5FF, #42CCC6);

    padding: 20px;

    text-align: center;

    border-top-left-radius: 8px;

    border-top-right-radius: 8px;

}



/* 标题文字 */

.app-card-title h3 {

    margin: 0;

    font-size: var(--font-size24);

    font-weight: bold;

    color: #fff;

    line-height: 1.4;

}



/* 卡片内容区域 */

.app-card-content {

    padding: 20px;

    flex: 1;

    display: flex;

    align-items:flex-start;

    justify-content: center;

    text-align:justify;

}



/* 内容文字 */

.app-card-content p {

    margin: 0;

    font-size: var(--font-size18);

    color: #666;

    line-height: 1.6;

    margin: 0;



}



.app-content {

    display: flex;

    align-items: stretch;

}


.scenario-text{

    background-color: #eff6fe;

    padding: 60px 120px;

}



.scenario-text p{

    font-size: var(--font-size18);

    line-height: 2;

}



/*.case-background{

    padding: 80px 10px;

}*/



.case-text{

    flex: 1;

}



.case-text p{

    line-height: 2;

    text-align: center;

    font-size: var(--font-size18);

}



.case-text strong{

    font-size: var(--font-size24);

    font-weight: bold;

    color: #007bff;

}



/* 响应式设计 */

@media (max-width: 1200px) {

    .app-card {

        flex: 0 0 calc(25% - 15px); /* 每行4个卡片 */

    }

}



@media (max-width: 992px) {

    .app-card {

        flex: 0 0 calc(33.333% - 13.333px); /* 每行3个卡片 */

    }

    
    .app-card-title h3 {

        font-size: 16px;

    }

    
    .app-card-content p {

        font-size: 13px;

    }

}



@media (max-width: 768px) {

    .app-card {

        flex: 0 0 calc(50% - 10px); /* 每行2个卡片 */

    }

    
    .app-cards-container {

        gap: 15px;

    }

}



@media (max-width: 480px) {

    .app-card {

        flex: 0 0 100%; /* 每行1个卡片 */

    }

    
    .app-card-title h3 {

        font-size: 16px;

    }

    
    .app-card-content p {

        font-size: 13px;

    }

    
    .app-value-container {

        padding: 0 15px;

    }

}



.feature-row:hover {

    transform: translateY(-3px);

    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); */

}



.feature-row:last-child {

    margin-bottom: 0;

}



/* 反向排列 */

.feature-row.reverse {

    flex-direction: row-reverse;

}



/* 图片区域 */

.feature-image {

    width: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

    /* border-radius: 8px; */

}



.feature-image img {

    width: 50%;

    height: auto;

    object-fit: cover;

    transition: transform 0.3s ease;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}



.feature-row:hover .feature-image img {

    transform: scale(1.05);

}



/* 内容区域 */

.feature-content {

    width: 50%;

    padding: 0 20px;

}



.feature-content h3 {

    font-size: 22px;

    font-weight: bold;

    color: #333;

    margin-bottom: 15px;

}



.feature-content p {

    font-size: 16px;

    line-height: 1.8;

    color: #666;

    margin: 0;

}



/* 响应式设计 */

@media (max-width: 1200px) {

    .feature-row {
        gap: 30px;
        padding: 25px;
    }

    
    .feature-content h3 {
        font-size: 20px;
    }

    
    .feature-content p {
        font-size: 15px;
        line-height: 1.7;
    }

}



@media (max-width: 992px) {

    .feature-row,
    .feature-row.reverse {

        flex-direction: column;

        gap: 25px;

        padding: 25px;

    }

    
    .feature-image,
    .feature-content {

        width: 100%;

        padding: 0;

    }

    
    .feature-image {

        order: -1;

        max-height: 300px;

    }

    
    .feature-content h3 {

        font-size: 20px;

        text-align: center;

    }

    
    .feature-content p {

        font-size: 15px;

        text-align: center;

    }

}

@media (max-width: 768px) {

    .core-features {

        padding: 30px 15px;

    }

    
    .feature-row {

        margin-bottom: 35px;

        padding: 20px;

    }

    
    .feature-content h3 {

        font-size: 18px;

    }

    
    .feature-content p {

        font-size: 14px;

        line-height: 1.6;

    }

}



@media (max-width: 480px) {

    .feature-row {

        margin-bottom: 25px;

        padding: 15px;

        gap: 20px;
    }

    
    .feature-image {

        max-height: 200px;

    }

    
    .feature-content h3 {

        font-size: 16px;

        margin-bottom: 12px;

    }

   
    .feature-content p {
 
       font-size: 13px;
 
       line-height: 1.5;
 
   }

}

/* 典型应用场景样式 */
.typical-scenarios {
    padding: 60px 0;
}

.typical-scenarios .scenarios {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scenarios-card {
    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;
    height: 100%;
}

.scenarios-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.scenarios-image {
    flex: 0 0 80%;
    overflow: hidden;
    position: relative;
}

.scenarios-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.scenarios-image img:hover {
    transform: scale(1.05);
}

.scenarios-text {
    flex: 0 0 20%;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.scenarios-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 15px;
    line-height: 1.3;
    text-align: center;
}

.scenarios-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .typical-scenarios {
        padding: 40px 0;
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /*.scenarios-image {
        flex: 0 0 50%;
    }*/
    
    .scenarios-text {
        /*flex: 0 0 50%;*/
        padding: 20px;
    }
    
    .scenarios-text h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .scenarios-text p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .typical-scenarios {
        padding: 30px 0;
    }
    
    .scenarios-grid {
        gap: 20px;
    }
    
    .scenarios-text {
        padding: 15px;
    }
    
    .scenarios-text h3 {
        font-size: 15px;
    }
}<!--0.00021195411682129-->