a
This commit is contained in:
parent
96063473e3
commit
321ff599f6
|
|
@ -336,7 +336,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-guide.sell-bg{
|
.user-guide.sell-bg{
|
||||||
background: linear-gradient(135deg, #f51b0c 0%, #f51b0c 100%);
|
background: linear-gradient(135deg, #e72215 0%, #891810 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -459,6 +459,14 @@
|
||||||
margin: 10px 0;
|
margin: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.user-guide.buy-bg{
|
||||||
|
background: linear-gradient(135deg, #05e567 0%, #795f94 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.user-guide.sell-bg{
|
||||||
|
background: linear-gradient(135deg, #e72215 0%, #891810 100%);
|
||||||
|
}
|
||||||
|
|
||||||
.user-guide-head {
|
.user-guide-head {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
|
|
||||||
|
|
@ -319,7 +319,7 @@ function RecommendationsViewer() {
|
||||||
|
|
||||||
{/* 用户指南(人话版计划) */}
|
{/* 用户指南(人话版计划) */}
|
||||||
{rec.user_guide && (
|
{rec.user_guide && (
|
||||||
<div className="user-guide">
|
<div className={`user-guide ${rec.direction === 'BUY' ? 'buy-bg' : 'sell-bg'}`}>
|
||||||
<div className="user-guide-head">
|
<div className="user-guide-head">
|
||||||
<strong>📋 操作计划</strong>
|
<strong>📋 操作计划</strong>
|
||||||
<div className="user-guide-prices">
|
<div className="user-guide-prices">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user