|
@@ -12,17 +12,41 @@
|
|
|
}
|
|
|
|
|
|
.hotspotLabel {
|
|
|
- position: absolute;
|
|
|
- top: -60px;
|
|
|
- left: 50%;
|
|
|
- transform: translateX(-50%);
|
|
|
- opacity: 0;
|
|
|
text-align: center;
|
|
|
- line-height: 68px;
|
|
|
- font-size: 32px;
|
|
|
- color: #fff;
|
|
|
- pointer-events: none;
|
|
|
- text-shadow: 2px 2px black;
|
|
|
+ background-image: url('../../assets/img/btn_normal.png');
|
|
|
+ background-size: 100% 100%;
|
|
|
+ width: 34px;
|
|
|
+ height: 158px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ letter-spacing: 2px;
|
|
|
+ color: var(--themeColor2);
|
|
|
+ font-weight: 700;
|
|
|
+ writing-mode: vertical-rl;
|
|
|
+ overflow: hidden;
|
|
|
+ transition: all .3s;
|
|
|
+
|
|
|
+ &.scroll p {
|
|
|
+ position: relative;
|
|
|
+ overflow: hidden;
|
|
|
+ height: calc(100% - 30px);
|
|
|
+
|
|
|
+ span {
|
|
|
+ display: block;
|
|
|
+ position: relative;
|
|
|
+ height: max-content;
|
|
|
+ animation: scrollAnimation 4s linear infinite;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .A1locBoxLoc {
|
|
|
+ margin: 15px auto 0;
|
|
|
+ width: 64px;
|
|
|
+ height: 61px;
|
|
|
+ background-image: url('../../assets/img/image36.png');
|
|
|
+ background-size: 100% 100%;
|
|
|
+ transition: all .3s;
|
|
|
}
|
|
|
|
|
|
.hotspotPointer {
|
|
@@ -34,8 +58,8 @@
|
|
|
}
|
|
|
|
|
|
.hotspotActive .hotspotLabel {
|
|
|
- opacity: 0.8;
|
|
|
- color: #fce9ac;
|
|
|
+ color: var(--themeColor);
|
|
|
+ background-image: url('../../assets/img/btn_active.png');
|
|
|
// background-image: url("../../assets/img/btn_active@2x.png");
|
|
|
}
|
|
|
|