You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
2.3 KiB
Vue

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<view class="consult-page">
<view class="section">
<view class="title">我们能为您提供</view>
<view class="service-list">
<text> 品牌营销策略咨询</text>
<text> 会议/展览/庆典策划</text>
<text> 企业年度活动方案</text>
<text> 资源对接与执行支持</text>
</view>
</view>
<view class="section">
<view class="title">立即咨询</view>
<!-- 微信客服消息审核最爱 -->
<!-- <button open-type="contact" class="contact-btn">
📩 发起微信咨询
</button> -->
<!-- 或者表单入口 -->
<navigator url="/pages/yuyue_form" class="form-btn">填写需求表单</navigator>
</view>
<view class="section">
<view class="title">常见问题</view>
<view class="faq-item">
<text class="q">Q咨询是否收费</text>
<text class="a">A首次沟通免费深度方案按需报价</text>
</view>
<view class="faq-item">
<text class="q">Q多久能收到回复</text>
<text class="a">A工作日2小时内节假日顺延</text>
</view>
</view>
<section class="section">
<view class="title">我们服务的行业</view>
<view class="logos">
<text> 快速消费品FMCG</text>
<text> 互联网与科技</text>
<text> 金融与保险</text>
<text> 教育与培训</text>
<text> 医疗健康</text>
<text> 汽车与制造</text>
</view>
</section>
</view>
</template>
<style scoped>
.service-list{
font-size: 26rpx;
}
.logos{
font-size: 26rpx;
}
.consult-page { padding: 20rpx; background: #f8f8f8; }
.section { background: #fff; margin: 20rpx 0; padding: 30rpx; border-radius: 12rpx; }
.title { font-size: 32rpx; font-weight: bold; margin-bottom: 20rpx; color: #333; }
.contact-btn {
background: #007aff;
color: white;
font-size: 30rpx;
height: 80rpx;
line-height: 80rpx;
}
.faq-item { margin: 15rpx 0;font-size: 26rpx; }
.q { font-weight: bold; color: #007aff; }
.a { color: #666; display: block; margin-top: 8rpx; }
.form-btn{
text-align: center;
height: 80rpx;
line-height: 80rpx;
background-color: #3182ce;
color:#fff;
border-radius: 10rpx;
}
</style>