.process {
    padding: 60px 50px 80px;
    background: #fff;
    position: relative;
    z-index: 2;
    margin-top: 20px; /* 减少上边距，让process部分露出来一点 */
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.process-image {
    flex: 1;
    max-width: 50%;
}

.process-image img {
    width: 100%;
    height: auto;
    max-height: 500px;  /* 限制最大高度 */
    object-fit: contain;  /* 保持图片比例 */
}

.process-content {
    flex: 1;
    color: #333;  /* 恢复文字颜色 */
}

.process-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-weight: normal;
}

.process-steps {
    list-style: none;
}

.process-steps li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    padding-left: 25px;
    position: relative;
}

.process-steps li::before {
    content: "✓";
    color: #0061FF;
    margin-right: 10px;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.try-free {
    margin-top: 30px;
    display: inline-block;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-image {
        max-width: 100%;
    }

    .process-image img {
        max-height: 400px;  /* 在移动端稍微降低最大高度 */
    }
}

/* 添加风险与优势对比样式 */
.risk-advantage-compare {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

/* 给相邻的风险-优势对比区域添加间隔 */
.risk-advantage-compare + .risk-advantage-compare {
    margin-top: 10px;
}

.risk-section, .advantage-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.risk-section {
    border-left: 4px solid #e74c3c;
}

.advantage-section {
    width: 100%;
    border-left: 4px solid #0061FF;
    padding: 25px 30px;
}

/* 修改图标和标题容器为flex布局 */
.risk-section h3, .advantage-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    display: flex;
    align-items: center;
}

/* 修改图标样式 */
.warning-icon, .solution-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    flex-shrink: 0;
}

.risk-section h4, .advantage-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #444;
    margin-top: 8px;
    clear: both;
}

.risk-section p, .advantage-section p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.risk-section h3 {
    color: #e74c3c;
}

.advantage-section h3 {
    color: #0061FF; /* 改为蓝色 */
}

/* 响应式样式 */
@media (min-width: 768px) {
    .risk-advantage-compare {
        flex-direction: row;
    }
    
    .risk-section, .advantage-section {
        flex: 1;
    }
    
    /* 当只有优势部分时，占满整个宽度 */
    .risk-advantage-compare:only-child .advantage-section {
        width: 100%;
    }
}

/* 简化高亮关键词样式 */
.highlight-keyword {
    position: relative;
    display: inline-block;
    padding: 0 2px;
    /* 移除阴影和其他效果，仅保留字体颜色和粗体 */
}

/* 移除下划线效果 */
.highlight-keyword::after {
    content: none;
}

/* 移除悬停动画效果 */
.advantage-section:hover .highlight-keyword {
    transform: none;
    text-shadow: none;
} 