|
@@ -158,6 +158,57 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+.followTipUp, .followTipDown {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ background: rgba(0,0,0,0.6);
|
|
|
+ position: relative;
|
|
|
+ padding: 3px 6px;
|
|
|
+ border-radius: 16px;
|
|
|
+ width: fit-content;
|
|
|
+ left: 50%;
|
|
|
+ top: -40px;
|
|
|
+ transform: translate(-50%);
|
|
|
+ img {
|
|
|
+ width: 14px;
|
|
|
+ height: 14px;
|
|
|
+ margin-right: 4px;
|
|
|
+ }
|
|
|
+ span {
|
|
|
+ font-size: 12px;
|
|
|
+ color: #fff;
|
|
|
+ word-break: keep-all;
|
|
|
+ display: flex;
|
|
|
+ width: fit-content;
|
|
|
+ }
|
|
|
+ ::before {
|
|
|
+ content: "";
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ bottom: -7PX;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ width: 0;
|
|
|
+ height: 0;
|
|
|
+ border-top: 8PX solid rgba(0,0,0,0.6);
|
|
|
+ border-right: 8PX solid transparent;
|
|
|
+ border-left: 8PX solid transparent;
|
|
|
+ z-index: 2;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.followTipUp {
|
|
|
+ i {
|
|
|
+ font-style: normal;
|
|
|
+ color: rgba(255, 102, 166, 1);
|
|
|
+ }
|
|
|
+}
|
|
|
+.followTipDown {
|
|
|
+ i {
|
|
|
+ font-style: normal;
|
|
|
+ color: rgba(255, 146, 0, 1);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
:global {
|
|
|
.follow-error {
|
|
|
display: block;
|
|
@@ -165,28 +216,44 @@
|
|
|
.van-icon-cross {
|
|
|
display: block;
|
|
|
}
|
|
|
-
|
|
|
+ :global {
|
|
|
+ .tip-up, .tip-down {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.follow-down {
|
|
|
.van-icon-cross {
|
|
|
- color: #ffca67 !important;
|
|
|
+ color: rgba(255, 146, 0, 1) !important;
|
|
|
}
|
|
|
|
|
|
.vf-note path {
|
|
|
- fill: #ffca67 !important;
|
|
|
- stroke: #ffca67 !important;
|
|
|
+ fill: rgba(255, 146, 0, 1) !important;
|
|
|
+ stroke: rgba(255, 146, 0, 1) !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ :global {
|
|
|
+ .tip-down {
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.follow-up {
|
|
|
.van-icon-cross {
|
|
|
- color: rgb(255, 0, 0) !important;
|
|
|
+ color: rgba(255, 102, 166, 1) !important;
|
|
|
}
|
|
|
|
|
|
.vf-note path {
|
|
|
- fill: rgb(255, 0, 0) !important;
|
|
|
- stroke: rgb(255, 0, 0) !important;
|
|
|
+ fill: rgba(255, 102, 166, 1) !important;
|
|
|
+ stroke: rgba(255, 102, 166, 1) !important;
|
|
|
+ }
|
|
|
+
|
|
|
+ :global {
|
|
|
+ .tip-up {
|
|
|
+ display: flex;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -195,8 +262,18 @@
|
|
|
|
|
|
.van-icon-success {
|
|
|
display: block;
|
|
|
- color: #07c160;
|
|
|
+ color: rgba(0, 255, 148, 1);
|
|
|
}
|
|
|
+ .vf-note path {
|
|
|
+ fill: rgba(0, 255, 148, 1) !important;
|
|
|
+ stroke: rgba(0, 255, 148, 1) !important;
|
|
|
+ }
|
|
|
+ :global {
|
|
|
+ .tip-up, .tip-down {
|
|
|
+ display: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|