:root {
    --font-family:
        'Helvetica Neue', Helvetica, 'PingFang SC', 'Microsoft YaHei', '微软雅黑',
        'Source Han Sans', '思源黑体', Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;

    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
    background-color: #41a4f3;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    font-weight: 500;
    color: #606060;
    text-decoration: inherit;
}

a:hover {
    color: #606060;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Microsoft YaHei', '微软雅黑',
        'Source Han Sans', '思源黑体', Arial, sans-serif;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #fff;
    color: #000;
    position: relative;
    font-size: clamp(14px, 0.18rem, 18px) !important;
    height: 100%;
}

html {
    font-size: clamp(42.66px, 13.3333vw, 100px) !important;
}




body,
#app {
    height: auto;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100% !important;
    overflow: hidden auto;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

h1 {
    font-size: 3.2em;
    line-height: 1.1;
}

.load-cover {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5000;
    /* // background-color: #005286; */
    background-color: #fff;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    margin: 4px;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #0003;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0004;
}

.custom-message {
    font-size: 18px !important;
    min-width: 200px !important;
    padding: 15px 25px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.el-message__content {
    text-align: center !important;
    width: 100% !important;
}

.el-message__icon {
    font-size: 20px !important;
    margin-right: 10px !important;
}

@media (max-width: 768px) {
    .custom-message {
        min-width: 80% !important;
        max-width: 90% !important;
        font-size: 16px !important;
    }
}