html {
    margin-top: constant(safe-area-inset-top);
    margin-top: env(safe-area-inset-top);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
}

html.is-iosapp {
    margin: 0;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
}

html,
body {
    background-color: #fff;
    height: 100%;
    width: 100%;
    position: relative;
}

body {
    font-family: "Microsoft Yahei", Arial, Verdana, Sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

.toast-container > .toast.custom-toastr {
    color: #fff;
    box-shadow: none;
    text-align: center;
    background-image: none !important;
    background-color: transparent;
    width: auto;
    padding: 8px 0;
    display: flex !important;
    justify-content: center;
    backdrop-filter: none;
    border: none;
}

.toast-container > .toast.custom-toastr > .toast-message {
    background: rgba(0, 0, 0, 0.5);
    padding: 8px;
}

.full-height {
    height: 100%;
}

.full-width {
    width: 100%;
}