/* 行业/客户痛点样式 */
.pain-point-section {
    padding: 40px 0 60px;
}

.pain-point-section .container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

.pain-point-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pain-point-image {
overflow:hidden;    flex: 0 0 30%;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

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

.pain-point-image img:hover {
    transform: scale(1.02);
}

.pain-point-text {
    flex: 1;
    padding: 40px;
    min-width: 300px;
}

.pain-point-text p {
    color: #333;
    line-height: 1.8;
    margin: 0 0 20px;
    font-size: var(--font-size18);
    text-align: justify;
}

.pain-point-text p:last-child {
    margin-bottom: 0;
}

.page-section-container {
    margin-top: 30px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* 行业/客户痛点响应式设计 */
    .pain-point-content {
        flex-direction: column;
    }
    
    .pain-point-image {
        flex: 0 0 auto;
        width: 100%;
        min-width: auto;
        max-height: 300px;
    }
    
    .pain-point-text {
        flex: 0 0 auto;
        width: 100%;
        min-width: auto;
        padding: 30px 20px;
    }
    
    .pain-point-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .pain-point-text {
        padding: 20px;
    }
    
    .pain-point-text p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* 核心功能亮点样式 */
.core-features {
    padding: 60px 0;
}

.core-features .container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.feature-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%;
}

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

.feature-image {
    flex: 0 0 60%;
    overflow: hidden;
    position: relative;
}

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

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

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

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

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

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

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

@media (max-width: 480px) {
    .core-features {
        padding: 30px 0;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-text {
        padding: 15px;
    }
    
    .feature-text h3 {
        font-size: 15px;
    }
}

/* 应用价值样式 */
.application-value {
    padding: 60px 0;
}

.app-value-container {
    max-width: var(--base-pc-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.app-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;
    align-items: stretch;
    gap: 0;
    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: bottom, center;
    padding-bottom: 20px;
}

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

.app-image {
    flex: 0 0 30%;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
}

.app-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

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

.app-text {
    flex: 1;
    padding: 30px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.app-text h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.3;
}

.app-text p {
    font-size: var(--font-size18);
    color: #666;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.case-text{
    display: block;
    flex: 1;
    padding: 60px 80px;
}

.case-text  ul li{
    font-size: var(--font-size18);
    list-style: disc;
    line-height: 1.8;
    
}

.case-background{
    padding-top: 1px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .app-card {
        flex-direction: column;
    }
    
    .app-image {
        flex: 0 0 200px;
        width: 100%;
        min-width: auto;
    }
    
    .app-text {
        flex: 1;
        width: 100%;
        min-width: auto;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .application-value {
        padding: 40px 0;
    }
    
    .app-grid {
        gap: 20px;
    }
    
    .app-image {
        flex: 0 0 180px;
    }
    
    .app-text {
        padding: 20px;
    }
    
    .app-text h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .app-text p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .application-value {
        padding: 30px 0;
    }
    
    .app-image {
        flex: 0 0 150px;
    }
    
    .app-text {
        padding: 15px;
    }
    
    .app-text h3 {
        font-size: 16px;
    }
    
    .app-text p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* 核心功能亮点 */
.typical-scenarios {
    padding: 30px 0;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

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

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

.typical-scenarios.active {
    transform: translateY(0);
    opacity: 1;
}



.scenario-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;
}

.scenario-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.scenario-title {
    background: linear-gradient(to bottom, #48C6CA, #3669F0);
    padding: 20px 20px;
    text-align: center;
    position: relative;
}

.scenario-title h3 {
    font-size: 22px;
    color: #fff;
    margin: 0;
    font-weight: bold;
}

.arrow-down {
    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 #3669F0;
}

.scenario-content {
    padding: 30px 20px;
    text-align: justify;
    flex: 1;
    display: block;
    align-items: flex-start;
}

.scenario-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

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

@media (max-width: 768px) {
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
}<!--0.00011396408081055-->