You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="deepmate"> <view class="deepmate-container"> <view class="deepmate-header"> <view class="title-container"> <view class="title-left"> <text class="deepmate-title">DeepMate</text> </view> <view class="title-right"> <image class="deepmate-icon" src="https://d31zlh4on95l9h.cloudfront.net/images/7faa683450cc071bcc746fea8191ff6b.png" mode="aspectFit"></image> </view> </view> <text class="deepmate-subtitle">您的市场最佳顾问~</text> </view> <view class="deepmate-content"> <view class="deepmate-question"> <text>今日股票策略推荐是什么?</text> </view> <view class="deepmate-hotspots"> <view class="hotspot-item"> <text>热门股票分析</text> </view> <view class="hotspot-item"> <text>行业趋势预测</text> </view> <view class="hotspot-item"> <text>市场风险提示</text> </view> <view class="hotspot-item"> <text>投资策略建议</text> </view> <view class="hotspot-item"> <text>财经新闻解读</text> </view> </view> <view class="deepmate-action"> <input class="stock-input" type="text" placeholder="请输入股票代码/名称,获取AI洞察" /> <image class="send-button" src="https://d31zlh4on95l9h.cloudfront.net/images/3da018821a5c82b06a1d6ddc81b960ac.png" mode="aspectFit"></image> </view> </view> </view> </view></template>
<script> export default { name: 'DeepMate', data() { return { } } }</script>
<style>/* DeepMate样式 */.deepmate-container { background-color: #ffe6e6; border-radius: 10px; padding: 15px 15px 15px 15px; margin: 0; width: 100%; box-sizing: border-box; overflow: hidden;}
.deepmate-header { margin-bottom: 10px;}
.title-container { display: flex; align-items: center; justify-content: space-between; width: 100%;}
.title-left { width: 50%;}
.title-right { width: 50%; display: flex; justify-content: flex-end;}
.deepmate-title { font-size: 18px; font-weight: bold; color: #ff4d4f;}
.deepmate-icon { width: 30px; height: 30px; margin-left: 0;}
.deepmate-subtitle { font-size: 12px; color: #666; margin-left: 5px;}
.deepmate-hotspots { margin: 10px 0;}
.hotspot-item { background-color: #f5f5f5; padding: 8px 12px; border-radius: 6px; margin-bottom: 8px;}
.hotspot-item text { font-size: 14px; color: #333;}
.deepmate-action { display: flex; justify-content: space-between; align-items: center; background-color: #ffffff; padding: 8px 10px; border-radius: 6px; margin-top: 10px; border: 1px solid #e0e0e0;}
.stock-input { flex: 1; height: 36px; font-size: 14px; color: #333; padding: 0 10px; border: none;}
.send-button { width: 30px; height: 30px; margin-left: 10px;}</style>
|