Files
WebServer/templates/services.html
2025-08-28 23:59:13 +08:00

46 lines
1.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}我们的服务{% endblock %}
{% block content %}
<section class="hero">
<div class="container">
<h2>{{ t('services') if t('services') else '服务' }}</h2>
<p>{{ t('services_subtitle') if t('services_subtitle') else '透明合理的收费结构,助力您的投资成功' }}</p>
</div>
</section>
<section class="services">
<div class="container">
<div class="services-grid">
{% for service in company.services %}
<div class="service">
<h3>{{ service.name }}</h3>
<p>{{ service.description }}</p>
<a href="{{ url_for('contact') }}" class="btn">咨询详情</a>
</div>
{% endfor %}
</div>
</div>
</section>
<section class="case-studies">
<div class="container">
<h2>成功案例</h2>
<div class="case-grid">
<div class="case">
<h3>某大型零售企业AI客服系统</h3>
<p>通过我们的自然语言处理技术客户服务效率提升60%。</p>
</div>
<div class="case">
<h3>金融机构风险管理系统</h3>
<p>大数据分析帮助客户识别并减少了30%的欺诈交易。</p>
</div>
<div class="case">
<h3>金融机构风险管理系统</h3>
<p>大数据分析帮助客户识别并减少了30%的欺诈交易。</p>
</div>
</div>
</div>
</section>
{% endblock %}