|
@@ -6,8 +6,8 @@
|
|
|
flex-shrink: 0;
|
|
|
margin-left: calc(-1 * var(--detailDataPaddingLeft));
|
|
|
padding: 0 30px;
|
|
|
- justify-content: flex-end;
|
|
|
- background-color: #fff;
|
|
|
+ // background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
|
|
|
+ background: transparent;
|
|
|
|
|
|
&.headerTopRight {
|
|
|
justify-content: flex-end;
|
|
@@ -153,6 +153,31 @@
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+.modeChangeBox{
|
|
|
+ cursor: pointer;
|
|
|
+ position: fixed;
|
|
|
+ top: 20px;
|
|
|
+ right: 30px;
|
|
|
+ height: 32px;
|
|
|
+ background: #C2F0E8;
|
|
|
+ border-radius: 16px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ padding: 0 10px;
|
|
|
+
|
|
|
+ .img {
|
|
|
+ width: 18px;
|
|
|
+ height: 18px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .title {
|
|
|
+ margin-left: 6px;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #131415;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
.headRight {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
@@ -183,13 +208,13 @@
|
|
|
margin-top: 3px;
|
|
|
font-weight: 500;
|
|
|
font-size: 12px;
|
|
|
- color: #777777;
|
|
|
+ color: #333333;
|
|
|
line-height: 17px;
|
|
|
}
|
|
|
|
|
|
&:active {
|
|
|
>span {
|
|
|
- color: #04C8BB
|
|
|
+ color: #14B698
|
|
|
}
|
|
|
|
|
|
;
|
|
@@ -229,39 +254,66 @@
|
|
|
|
|
|
&.isSection {
|
|
|
>span {
|
|
|
- color: #04C8BB
|
|
|
+ color: #14B698
|
|
|
}
|
|
|
}
|
|
|
|
|
|
&.speed:active {
|
|
|
- opacity: 0.8;
|
|
|
+ >img:nth-child(1) {
|
|
|
+ content: url("./image/tickonAct.png");
|
|
|
+ }
|
|
|
+
|
|
|
+ >img:nth-child(2) {
|
|
|
+ content: url("./image/tickoffAct.png");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
&.isSpeed {
|
|
|
+ >img:nth-child(1) {
|
|
|
+ content: url("./image/tickonAct.png");
|
|
|
+ }
|
|
|
+
|
|
|
+ >img:nth-child(2) {
|
|
|
+ content: url("./image/tickoffAct.png");
|
|
|
+ }
|
|
|
+
|
|
|
>span {
|
|
|
- color: #04C8BB
|
|
|
+ color: #14B698
|
|
|
}
|
|
|
|
|
|
;
|
|
|
}
|
|
|
|
|
|
&.settingMode:active {
|
|
|
- opacity: 0.8;
|
|
|
+ >img {
|
|
|
+ content: url("./image/icon_menuAct.png");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
&.isSettingMode {
|
|
|
+ >img {
|
|
|
+ content: url("./image/icon_menuAct.png");
|
|
|
+ }
|
|
|
+
|
|
|
>span {
|
|
|
- color: #04C8BB
|
|
|
+ color: #14B698
|
|
|
}
|
|
|
}
|
|
|
|
|
|
&.musicSheet:active {
|
|
|
- opacity: 0.8;
|
|
|
+ // opacity: 0.8;
|
|
|
+ >img {
|
|
|
+ content: url("./image/shengguiAct.png");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
&.isMusicSheet {
|
|
|
+ >img {
|
|
|
+ content: url("./image/shengguiAct.png");
|
|
|
+ }
|
|
|
+
|
|
|
>span {
|
|
|
- color: #04C8BB
|
|
|
+ color: #14B698
|
|
|
}
|
|
|
}
|
|
|
}
|