|
@@ -11,6 +11,11 @@
|
|
|
style="opacity: 0;"
|
|
|
/>
|
|
|
|
|
|
+ <!-- 平板横屏提示 -->
|
|
|
+ <div class="landscape-prompt-box">
|
|
|
+ 请旋转至竖屏显示使用
|
|
|
+ </div>
|
|
|
+
|
|
|
<!-- <audio
|
|
|
id="bg-music2"
|
|
|
src="./configMultiMedia/music/music2.mp3"
|
|
@@ -102,6 +107,26 @@ body {
|
|
|
-webkit-touch-callout: none;
|
|
|
}
|
|
|
|
|
|
+.landscape-prompt-box{
|
|
|
+ display: none;
|
|
|
+ @media screen and (min-width: 768px) and (orientation: landscape) {
|
|
|
+ position: fixed;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ background: rgba(255, 0, 0, 0.336);
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ font-family: KaiTi;
|
|
|
+ z-index: 2024;
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+
|
|
|
// 360浏览器不支持not()
|
|
|
input,
|
|
|
textarea {
|
|
@@ -111,15 +136,10 @@ textarea {
|
|
|
#app {
|
|
|
height: 100%;
|
|
|
position: relative;
|
|
|
- max-width: 500px;
|
|
|
+ max-width: 100%;
|
|
|
left: 50%;
|
|
|
transform: translateX(-50%);
|
|
|
overflow: hidden;
|
|
|
- // background: green;
|
|
|
- // @media screen and (max-width: 400px) {
|
|
|
- // max-width: 390px;
|
|
|
- // max-height: 844px;
|
|
|
- // }
|
|
|
}
|
|
|
|
|
|
// 字体
|