@font-face {
    font-family: 'HarmonyOS_Sans_SC_Regular';
    src: url('../fonts/HarmonyOS_Sans_SC/HarmonyOS_Sans_SC_Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HarmonyOS_Sans_SC_Bold';
    src: url('../fonts/HarmonyOS_Sans_SC/HarmonyOS_Sans_SC_Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Morganite-Black-2';
    src: url('../fonts/Morganite-Black-2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #ffffff;
    overflow: auto;
    font-family: 'HarmonyOS_Sans_SC_Regular', Arial, sans-serif;
}
.main-container {
    background-color: black;
    width: 1080px;
    height: 1920px;
    position: relative;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent; /* 移除点击时的高亮色 */
    -webkit-touch-callout: none; /* 禁止长按弹出菜单 (iOS Safari & Android) */
    -webkit-user-drag: none; /* 防止拖拽 */
    touch-action: manipulation; /* 阻止长按手势，优化触摸响应 */
  }
 div,button {
    -webkit-tap-highlight-color: transparent; /* 移除点击时的高亮色 */
    -webkit-touch-callout: none; /* 移除长按链接/图片时的弹出菜单 (iOS Safari) */
    touch-action: manipulation; /* 阻止长按手势 */
  }

/* 加载页面样式 */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 102, 0, 0.3); /* 深灰色/暗橙色 */
    border-top-color: #FF6600; /* 橙色 */
    border-right-color: #FF6600; /* 橙色，增加橙色部分 */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}