|
@@ -255,7 +255,7 @@
|
|
|
|
|
|
<div class="openBox" :class="{ openBoxAc: openInd }">
|
|
|
<HotList v-if="openInd === 1" @close="openInd = 0" />
|
|
|
- <Share v-show="openInd === 2" @close="openInd = 0" :openInd='openInd'/>
|
|
|
+ <Share v-show="openInd === 2" @close="openInd = 0" :openInd="openInd" />
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -435,67 +435,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-@media only screen and (max-width: 487px) {
|
|
|
- #myMoMu {
|
|
|
- display: block !important;
|
|
|
- }
|
|
|
- #myMoMu img {
|
|
|
- margin-left: 12px;
|
|
|
- }
|
|
|
- .viewContainer {
|
|
|
- background-color: rgba(0, 0, 0, 0.5);
|
|
|
- padding: 15px 0 10px;
|
|
|
- border-radius: 50px;
|
|
|
- }
|
|
|
-
|
|
|
- @wh: 22px;
|
|
|
- @margin: 10px;
|
|
|
- #play,
|
|
|
- #pause {
|
|
|
- margin-bottom: @margin;
|
|
|
- img {
|
|
|
- width: @wh;
|
|
|
- height: @wh;
|
|
|
- }
|
|
|
- }
|
|
|
- #gui-modes-map {
|
|
|
- > div {
|
|
|
- margin-bottom: @margin;
|
|
|
- > img {
|
|
|
- width: @wh;
|
|
|
- height: @wh;
|
|
|
- display: block;
|
|
|
- }
|
|
|
- .active {
|
|
|
- display: none;
|
|
|
- }
|
|
|
- }
|
|
|
- .active {
|
|
|
- > img {
|
|
|
- display: none;
|
|
|
- }
|
|
|
- .active {
|
|
|
- display: block;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- .bgandshare {
|
|
|
- display: none !important;
|
|
|
- display: flex;
|
|
|
- position: fixed;
|
|
|
- left: 50px;
|
|
|
- bottom: 25px;
|
|
|
- flex-direction: column;
|
|
|
- margin-right: 10px !important;
|
|
|
- > div {
|
|
|
- width: @wh!important;
|
|
|
- img {
|
|
|
- width: 100%;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
.toHomeBox {
|
|
|
margin-right: 20px;
|
|
|
cursor: pointer;
|
|
@@ -539,4 +479,49 @@ export default {
|
|
|
pointer-events: auto;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+// 移动端
|
|
|
+@media screen and (max-width: 1000px) {
|
|
|
+ .hoverTit {
|
|
|
+ opacity: 0 !important;
|
|
|
+ }
|
|
|
+ .viewContainer {
|
|
|
+ & > div {
|
|
|
+ img {
|
|
|
+ width: 33px !important;
|
|
|
+ height: 33px !important;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .pinBottom-container #hotList {
|
|
|
+ width: 50px;
|
|
|
+ margin-bottom: 15px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .pinBottom-container {
|
|
|
+ .pinBottom.right.hideTarget {
|
|
|
+ position: fixed;
|
|
|
+ top: 200px;
|
|
|
+ right: 10px;
|
|
|
+ .rightViewContainer {
|
|
|
+ flex-direction: column;
|
|
|
+ & > div,
|
|
|
+ #volume {
|
|
|
+ width: 50px !important;
|
|
|
+ text-align: right;
|
|
|
+ margin-right: 0;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ & > div {
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+ }
|
|
|
+ img {
|
|
|
+ width: 33px;
|
|
|
+ height: 33px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</style>
|