html,
body {
    min-height: 100%;
    background: #eef3f8;
}

body {
    margin: 0;
    color: #172033;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

#app {
    min-height: 100vh;
}

#app .left {
    display: none;
}

#right {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 22px 18px 34px;
}

#right h3 {
    margin: 0 0 14px;
    color: #172033;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

#right .data-card {
    width: 100%;
}

#right .data-card .button-view {
    margin-bottom: 12px;
}

#right .data-card .button-view .flex-button-view {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

#right .data-card .button-view .button-daohang,
#right .data-card .button-view .button-gongneng {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

#app .default-btn,
#app .tint-btn,
.small-btn {
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 38px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}

#app .default-btn {
    background: #0f766e;
    color: #fff;
}

#app .default-btn:hover {
    background: #115e59;
}

#app .tint-btn {
    background: #e9f6f4;
    color: #0f766e;
}

#app .tint-btn:hover {
    background: #d7f0ed;
}

.hedge-page {
    min-height: calc(100vh - 116px);
}

#notification {
    position: fixed;
    top: -100px;
    left: 0;
    z-index: 9999;
    width: 100%;
    text-align: center;
    transition: top .25s ease;
    pointer-events: none;
}

#notification-text {
    display: inline-block;
    min-width: 180px;
    max-width: calc(100vw - 32px);
    border-radius: 8px;
    background: rgba(15, 23, 42, .92);
    color: #fff;
    padding: 11px 16px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .22);
}

@media (max-width: 760px) {
    #right {
        padding: 12px 10px 24px;
    }

    #right h3 {
        font-size: 19px;
    }

    #right .data-card .button-view .flex-button-view,
    #right .data-card .button-view .button-daohang,
    #right .data-card .button-view .button-gongneng {
        align-items: stretch;
        flex-direction: column;
    }

    #app .default-btn,
    #app .tint-btn {
        width: 100%;
    }
}
