/* 产品效益容器 */
.benefits-container {
    margin-top: 30px;
    position: relative;
    padding: 20px 0;
}

/* 数字效益样式 */
.benefits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    width: 100%;
}

.benefits::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/skin/images/globe-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.benefit-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(42, 91, 158, 0.1);
    box-shadow: 0 2px 15px rgba(42, 91, 158, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(42, 91, 158, 0.08);
}

.benefit-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.benefit-value .number {
    font-size: 42px;
    font-weight: 700;
    color: #2A5B9E;
    line-height: 1;
}

.benefit-value .percent {
    font-size: 24px;
    color: #2A5B9E;
    margin-left: 2px;
}

.benefit-value .trend {
    color: #FF6B35;
    font-size: 20px;
    margin-left: 4px;
    animation: bounce 1s ease infinite;
}

.benefit-desc {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.benefit-desc1 {
    color: #666;
    font-size: 15px;
    font-weight: 200;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-value .number {
        font-size: 36px;
    }
    
    .benefit-value .percent {
        font-size: 20px;
    }
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
    }
    
    .benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .function-cards {
        width: 100%;
    }
}

/* 销售管理模块样式 */
.sales-module {
    background: #fff;
    padding: 60px 0;
}

.module-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.module-text {
    flex: 1;
}

.module-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.module-text h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.module-btns {
    display: inline-block;
    padding: 12px 30px;
    background: #2A5B9E;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.module-btns1 {
    display: inline-block;
    padding: 11px 30px;
    background: #fff;
    color: #2A5B9E;
    border: 1px solid #2A5B9E;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-left: 20px;
}

.module-btns:hover {
    background: #234b82;
}

.module-video {
    flex: 1;
}

.module-video video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 响应式适配 */
@media screen and (max-width: 768px) {
    .module-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .module-text h2 {
        font-size: 24px;
    }
    
    .module-btns {
        flex-direction: column;
    }
    
    .module-btns a {
        text-align: center;
    }
}

.industry-section {
    background: #F7F9FF;
    padding: 40px 0;
    width: 100%;
}

.industry-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.industry-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);  /* 轻微上浮效果 */
}

.industry-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
}

.industry-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.industry-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 38px;
}

.learn-more {
    color: #2A5B9E;
    text-decoration: none;
    font-size: 13px;
}

.learn-more:hover {
    color: #234b82;
}

@media screen and (max-width: 768px) {
    .industry-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .industry-item {
        width: 100%;
    }
}