|
@@ -1,229 +1,326 @@
|
|
|
-.container {
|
|
|
- position: absolute;
|
|
|
- top: 0;
|
|
|
- left: 0;
|
|
|
- width: 100%;
|
|
|
- height: 100%;
|
|
|
- overflow: hidden;
|
|
|
-}
|
|
|
-
|
|
|
-.hotspot-item {
|
|
|
- position: relative;
|
|
|
- display: flex;
|
|
|
- flex-direction: column;
|
|
|
- align-items: center;
|
|
|
- width: 111.5px;
|
|
|
- height: 567px;
|
|
|
- background: url("./assets/images/hotspot.png") no-repeat center / contain;
|
|
|
-
|
|
|
- p {
|
|
|
- padding-top: 12px;
|
|
|
- text-align: center;
|
|
|
- height: 270px;
|
|
|
- color: #213572;
|
|
|
- font-weight: bold;
|
|
|
- font-size: 18px;
|
|
|
- letter-spacing: 5px;
|
|
|
- overflow: hidden;
|
|
|
- white-space: nowrap;
|
|
|
- writing-mode: vertical-lr;
|
|
|
- text-orientation: upright;
|
|
|
-
|
|
|
- span {
|
|
|
- text-orientation: initial;
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.show-toolbar {
|
|
|
- position: fixed;
|
|
|
- left: 50%;
|
|
|
- bottom: -50px;
|
|
|
- width: 118px;
|
|
|
- height: 50px;
|
|
|
- background: url("./assets/images/show-toolbar.png") no-repeat center / contain;
|
|
|
- transform: translateX(-50%);
|
|
|
- transition: bottom linear 0.2s;
|
|
|
- cursor: pointer;
|
|
|
- z-index: 998;
|
|
|
-
|
|
|
- &.active {
|
|
|
- bottom: -9px;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.toolbar {
|
|
|
- position: relative;
|
|
|
- position: fixed;
|
|
|
- left: 50%;
|
|
|
- bottom: -130px;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- gap: 30px;
|
|
|
- max-width: 1046px;
|
|
|
- width: 100%;
|
|
|
- min-height: 43px;
|
|
|
- background: linear-gradient(
|
|
|
- 90deg,
|
|
|
- rgba(255, 255, 255, 0) 0%,
|
|
|
- rgba(36, 52, 114, 0.5) 28%,
|
|
|
- rgba(36, 52, 114, 0.5),
|
|
|
- rgba(255, 255, 255, 0) 100%
|
|
|
- );
|
|
|
- transform: translateX(-50%);
|
|
|
- transition: bottom linear 0.2s;
|
|
|
- user-select: none;
|
|
|
- z-index: 998;
|
|
|
-
|
|
|
- &.active {
|
|
|
- bottom: 23px;
|
|
|
- }
|
|
|
- &__btn {
|
|
|
- cursor: pointer;
|
|
|
- }
|
|
|
- &__main,
|
|
|
- &__group,
|
|
|
- &__right {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- }
|
|
|
- &__main {
|
|
|
- gap: 10px;
|
|
|
- }
|
|
|
- &__group {
|
|
|
- position: relative;
|
|
|
- width: 92px;
|
|
|
- height: 30px;
|
|
|
- overflow: hidden;
|
|
|
- border-radius: 7px;
|
|
|
- border: 1px solid rgba(255, 255, 255, 0.5);
|
|
|
- box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.6);
|
|
|
-
|
|
|
- .toolbar__btn {
|
|
|
- position: absolute;
|
|
|
- top: 1px;
|
|
|
- width: 51px;
|
|
|
- height: 34px;
|
|
|
-
|
|
|
- &.left {
|
|
|
- left: -3px;
|
|
|
- background: url("./assets/images/left.png") no-repeat center / contain;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- background-image: url("./assets/images/left-act.png");
|
|
|
- }
|
|
|
- }
|
|
|
- &.right {
|
|
|
- right: -3px;
|
|
|
- background: url("./assets/images/right.png") no-repeat center / contain;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- background-image: url("./assets/images/right-act.png");
|
|
|
- }
|
|
|
- }
|
|
|
- &.top {
|
|
|
- left: -3px;
|
|
|
- background: url("./assets/images/top.png") no-repeat center / contain;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- background-image: url("./assets/images/top-act.png");
|
|
|
- }
|
|
|
- }
|
|
|
- &.bottom {
|
|
|
- right: -3px;
|
|
|
- background: url("./assets/images/bottom.png") no-repeat center / contain;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- background-image: url("./assets/images/bottom-act.png");
|
|
|
- }
|
|
|
- }
|
|
|
- &.plus {
|
|
|
- left: -3px;
|
|
|
- background: url("./assets/images/plus.png") no-repeat center / contain;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- background-image: url("./assets/images/plus-act.png");
|
|
|
- }
|
|
|
- }
|
|
|
- &.minus {
|
|
|
- right: -3px;
|
|
|
- background: url("./assets/images/minus.png") no-repeat center / contain;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- background-image: url("./assets/images/minus-act.png");
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- .menu,
|
|
|
- .fullscreen,
|
|
|
- .hide {
|
|
|
- position: relative;
|
|
|
- top: 3px;
|
|
|
- width: 40px;
|
|
|
- height: 40px;
|
|
|
- }
|
|
|
- .menu {
|
|
|
- background: url("./assets/images/menu.png") no-repeat center / contain;
|
|
|
-
|
|
|
- &:hover {
|
|
|
- background-image: url("./assets/images/menu-act.png");
|
|
|
- }
|
|
|
- }
|
|
|
- .fullscreen {
|
|
|
- background: url("./assets/images/fullscreen.png") no-repeat center / contain;
|
|
|
-
|
|
|
- &.exit {
|
|
|
- background-image: url("./assets/images/exit-fullscreen.png");
|
|
|
- }
|
|
|
- }
|
|
|
- .hide {
|
|
|
- background: url("./assets/images/hide-toolbar.png") no-repeat center /
|
|
|
- contain;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.toolbar2 {
|
|
|
- position: fixed;
|
|
|
- right: 50px;
|
|
|
- bottom: 22px;
|
|
|
- display: flex;
|
|
|
- gap: 10px;
|
|
|
- z-index: 998;
|
|
|
-
|
|
|
- > div {
|
|
|
- cursor: pointer;
|
|
|
- flex-shrink: 0;
|
|
|
- width: 40px;
|
|
|
- height: 40px;
|
|
|
- }
|
|
|
- .home {
|
|
|
- background: url("./assets/images/home.png") no-repeat center / contain;
|
|
|
- }
|
|
|
- .music {
|
|
|
- background: url("./assets/images/music.png") no-repeat center / contain;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-.back {
|
|
|
- position: fixed;
|
|
|
- top: 20px;
|
|
|
- left: 30px;
|
|
|
- width: 40px;
|
|
|
- height: 40px;
|
|
|
- cursor: pointer;
|
|
|
- background: url("./assets/images/back.png") no-repeat center / contain;
|
|
|
- z-index: 998;
|
|
|
-}
|
|
|
-
|
|
|
-@media all and (orientation: portrait) {
|
|
|
- .toolbar {
|
|
|
- flex-direction: column;
|
|
|
- gap: 10px;
|
|
|
- }
|
|
|
-
|
|
|
- .back {
|
|
|
- left: 20px;
|
|
|
- }
|
|
|
-}
|
|
|
+.container {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.hotspot-item {
|
|
|
+ position: relative;
|
|
|
+ padding: 11px 0 0 35px;
|
|
|
+ width: 206.5px;
|
|
|
+ height: 91px;
|
|
|
+ background: url("./assets/images/biaoqian2@2x-min.png") no-repeat center /
|
|
|
+ contain;
|
|
|
+
|
|
|
+ p {
|
|
|
+ color: #ead2a8;
|
|
|
+ font-size: 14px;
|
|
|
+ text-align: center;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ &.small {
|
|
|
+ width: 148px;
|
|
|
+ background-image: url("./assets/images/biaoqian1@2x-min.png");
|
|
|
+ }
|
|
|
+ &.large {
|
|
|
+ width: 254px;
|
|
|
+ background-image: url("./assets/images/biaoqian3@2x-min.png");
|
|
|
+ }
|
|
|
+ &.primary {
|
|
|
+ background-image: url("./assets/images/biaoqian2-1@2x-min.png");
|
|
|
+
|
|
|
+ p {
|
|
|
+ color: #243472;
|
|
|
+ }
|
|
|
+ &.small {
|
|
|
+ background-image: url("./assets/images/biaoqian1-1@2x-min.png");
|
|
|
+ }
|
|
|
+ &.large {
|
|
|
+ background-image: url("./assets/images/biaoqian3-1@2x-min.png");
|
|
|
+ }
|
|
|
+
|
|
|
+ &.active {
|
|
|
+ background-image: url("./assets/images/biaoqian5-a@2x-min.png");
|
|
|
+
|
|
|
+ &.small {
|
|
|
+ background-image: url("./assets/images/biaoqian4-a@2x-min.png");
|
|
|
+ }
|
|
|
+ &.large {
|
|
|
+ background-image: url("./assets/images/biaoqian6-a@2x-min.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.active {
|
|
|
+ background-image: url("./assets/images/biaoqian2-a@2x-min.png");
|
|
|
+
|
|
|
+ &.small {
|
|
|
+ background-image: url("./assets/images/biaoqian1-a@2x-min.png");
|
|
|
+ }
|
|
|
+ &.large {
|
|
|
+ background-image: url("./assets/images/biaoqian3-a@2x-min.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.hotspot-content {
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ right: 0;
|
|
|
+ bottom: 0;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ font-family: Microsoft YaHei, Microsoft YaHei;
|
|
|
+ z-index: 999;
|
|
|
+
|
|
|
+ &-inner {
|
|
|
+ position: relative;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ padding: 15px 35px 45px;
|
|
|
+ width: 370px;
|
|
|
+ height: 390px;
|
|
|
+ color: #243472;
|
|
|
+ white-space: wrap;
|
|
|
+ box-sizing: border-box;
|
|
|
+ background: url("./assets/images/hot-bg@2x-min.png") no-repeat center /
|
|
|
+ contain;
|
|
|
+
|
|
|
+ &.small {
|
|
|
+ height: 303px;
|
|
|
+ background-image: url("./assets/images/hot-bg2@2x-min.png");
|
|
|
+ }
|
|
|
+ &__c {
|
|
|
+ flex: 1;
|
|
|
+ height: 0;
|
|
|
+ font-size: 14px;
|
|
|
+ line-height: 28px;
|
|
|
+ overflow-y: auto;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ h3 {
|
|
|
+ padding: 10px 0 15px;
|
|
|
+ font-size: 16px;
|
|
|
+ text-align: center;
|
|
|
+ font-weight: bold;
|
|
|
+ }
|
|
|
+ &__btn {
|
|
|
+ margin: 10px auto 0;
|
|
|
+ width: 180px;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+ border: 0;
|
|
|
+ color: #ead2a8;
|
|
|
+ font-size: 16px;
|
|
|
+ font-weight: bold;
|
|
|
+ border-radius: 5px;
|
|
|
+ background: linear-gradient(#243472, #364c91);
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ &__close {
|
|
|
+ position: absolute;
|
|
|
+ top: 28px;
|
|
|
+ right: 26px;
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ cursor: pointer;
|
|
|
+ z-index: 999;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.show-toolbar {
|
|
|
+ position: fixed;
|
|
|
+ left: 50%;
|
|
|
+ bottom: -50px;
|
|
|
+ width: 118px;
|
|
|
+ height: 50px;
|
|
|
+ background: url("./assets/images/show-toolbar.png") no-repeat center / contain;
|
|
|
+ transform: translateX(-50%);
|
|
|
+ transition: bottom linear 0.2s;
|
|
|
+ cursor: pointer;
|
|
|
+ z-index: 998;
|
|
|
+
|
|
|
+ &.active {
|
|
|
+ bottom: -9px;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.toolbar {
|
|
|
+ position: relative;
|
|
|
+ position: fixed;
|
|
|
+ left: 50%;
|
|
|
+ bottom: -130px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ gap: 30px;
|
|
|
+ max-width: 1046px;
|
|
|
+ width: 100%;
|
|
|
+ min-height: 43px;
|
|
|
+ background: linear-gradient(
|
|
|
+ 90deg,
|
|
|
+ rgba(255, 255, 255, 0) 0%,
|
|
|
+ rgba(36, 52, 114, 0.5) 28%,
|
|
|
+ rgba(36, 52, 114, 0.5),
|
|
|
+ rgba(255, 255, 255, 0) 100%
|
|
|
+ );
|
|
|
+ transform: translateX(-50%);
|
|
|
+ transition: bottom linear 0.2s;
|
|
|
+ user-select: none;
|
|
|
+ z-index: 998;
|
|
|
+
|
|
|
+ &.active {
|
|
|
+ bottom: 23px;
|
|
|
+ }
|
|
|
+ &__btn {
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ &__main,
|
|
|
+ &__group,
|
|
|
+ &__right {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ &__main {
|
|
|
+ gap: 10px;
|
|
|
+ }
|
|
|
+ &__group {
|
|
|
+ position: relative;
|
|
|
+ width: 92px;
|
|
|
+ height: 30px;
|
|
|
+ overflow: hidden;
|
|
|
+ border-radius: 7px;
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.5);
|
|
|
+ box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.6);
|
|
|
+
|
|
|
+ .toolbar__btn {
|
|
|
+ position: absolute;
|
|
|
+ top: 1px;
|
|
|
+ width: 51px;
|
|
|
+ height: 34px;
|
|
|
+
|
|
|
+ &.left {
|
|
|
+ left: -3px;
|
|
|
+ background: url("./assets/images/left.png") no-repeat center / contain;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-image: url("./assets/images/left-act.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.right {
|
|
|
+ right: -3px;
|
|
|
+ background: url("./assets/images/right.png") no-repeat center / contain;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-image: url("./assets/images/right-act.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.top {
|
|
|
+ left: -3px;
|
|
|
+ background: url("./assets/images/top.png") no-repeat center / contain;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-image: url("./assets/images/top-act.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.bottom {
|
|
|
+ right: -3px;
|
|
|
+ background: url("./assets/images/bottom.png") no-repeat center / contain;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-image: url("./assets/images/bottom-act.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.plus {
|
|
|
+ left: -3px;
|
|
|
+ background: url("./assets/images/plus.png") no-repeat center / contain;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-image: url("./assets/images/plus-act.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ &.minus {
|
|
|
+ right: -3px;
|
|
|
+ background: url("./assets/images/minus.png") no-repeat center / contain;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-image: url("./assets/images/minus-act.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .menu,
|
|
|
+ .fullscreen,
|
|
|
+ .hide {
|
|
|
+ position: relative;
|
|
|
+ top: 3px;
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ }
|
|
|
+ .menu {
|
|
|
+ background: url("./assets/images/menu.png") no-repeat center / contain;
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ background-image: url("./assets/images/menu-act.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .fullscreen {
|
|
|
+ background: url("./assets/images/fullscreen.png") no-repeat center / contain;
|
|
|
+
|
|
|
+ &.exit {
|
|
|
+ background-image: url("./assets/images/exit-fullscreen.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .hide {
|
|
|
+ background: url("./assets/images/hide-toolbar.png") no-repeat center /
|
|
|
+ contain;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.toolbar2 {
|
|
|
+ position: fixed;
|
|
|
+ right: 50px;
|
|
|
+ bottom: 22px;
|
|
|
+ display: flex;
|
|
|
+ gap: 10px;
|
|
|
+ z-index: 998;
|
|
|
+
|
|
|
+ > div {
|
|
|
+ cursor: pointer;
|
|
|
+ flex-shrink: 0;
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ }
|
|
|
+ .home {
|
|
|
+ background: url("./assets/images/home.png") no-repeat center / contain;
|
|
|
+ }
|
|
|
+ .music {
|
|
|
+ background: url("./assets/images/music.png") no-repeat center / contain;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.back {
|
|
|
+ position: fixed;
|
|
|
+ top: 20px;
|
|
|
+ left: 30px;
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ cursor: pointer;
|
|
|
+ background: url("./assets/images/back.png") no-repeat center / contain;
|
|
|
+ z-index: 998;
|
|
|
+}
|
|
|
+
|
|
|
+@media all and (orientation: portrait) {
|
|
|
+ .toolbar {
|
|
|
+ flex-direction: column;
|
|
|
+ gap: 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .back {
|
|
|
+ left: 20px;
|
|
|
+ }
|
|
|
+}
|