|
@@ -1,6 +1,8 @@
|
|
|
$tabbarHeight: 50px;
|
|
|
$topNavHeight: 44px;
|
|
|
|
|
|
+$topSearchHeight: 54px;
|
|
|
+
|
|
|
// 颜色区(背景颜色或者字体颜色)
|
|
|
$color_main: #2ABED1;
|
|
|
$color_warning: #FF9F40;
|
|
@@ -10,3 +12,47 @@ $color_danger: #FB483D;
|
|
|
@return $a + $b;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+.flex {
|
|
|
+ width: 100%;
|
|
|
+ flex: 1;
|
|
|
+}
|
|
|
+.flex-r-c {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-between;
|
|
|
+ &.center {
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ &.sb {
|
|
|
+ justify-content: space-between;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.left {
|
|
|
+ justify-content: flex-start;
|
|
|
+ }
|
|
|
+ &.right {
|
|
|
+ justify-content: flex-start;
|
|
|
+ }
|
|
|
+ .bottom {
|
|
|
+ align-items: flex-end;
|
|
|
+ }
|
|
|
+ &.wrap {
|
|
|
+ flex-wrap: wrap;
|
|
|
+ }
|
|
|
+}
|
|
|
+.flex-c-c {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ justify-content: space-between;
|
|
|
+ &.center {
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ }
|
|
|
+ &.right {
|
|
|
+ align-items: flex-end;
|
|
|
+ }
|
|
|
+ &.left {
|
|
|
+ align-items: flex-start;
|
|
|
+ }
|
|
|
+}
|