* {
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans';
    -webkit-tap-highlight-color: transparent;
}

:root {
    color-scheme: light dark
}

/* josefin-sans-regular */

@font-face {
    font-family: 'Josefin Sans';
    font-style: normal;
    font-weight: normal;
    src: url('//lib.baomitu.com/fonts/josefin-sans/josefin-sans-regular.eot');
    /* IE9 Compat Modes */
    src: local('Josefin Sans'), local('JosefinSans-Normal'), url('//lib.baomitu.com/fonts/josefin-sans/josefin-sans-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('//lib.baomitu.com/fonts/josefin-sans/josefin-sans-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('//lib.baomitu.com/fonts/josefin-sans/josefin-sans-regular.woff') format('woff'),
        /* Modern Browsers */
        url('//lib.baomitu.com/fonts/josefin-sans/josefin-sans-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('//lib.baomitu.com/fonts/josefin-sans/josefin-sans-regular.svg#JosefinSans') format('svg');
    /* Legacy iOS */
}

/* pt-sans-regular */

@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: normal;
    src: url('//lib.baomitu.com/fonts/pt-sans/pt-sans-regular.eot');
    /* IE9 Compat Modes */
    src: local('PT Sans'), local('PTSans-Normal'), url('//lib.baomitu.com/fonts/pt-sans/pt-sans-regular.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('//lib.baomitu.com/fonts/pt-sans/pt-sans-regular.woff2') format('woff2'),
        /* Super Modern Browsers */
        url('//lib.baomitu.com/fonts/pt-sans/pt-sans-regular.woff') format('woff'),
        /* Modern Browsers */
        url('//lib.baomitu.com/fonts/pt-sans/pt-sans-regular.ttf') format('truetype'),
        /* Safari, Android, iOS */
        url('//lib.baomitu.com/fonts/pt-sans/pt-sans-regular.svg#PTSans') format('svg');
    /* Legacy iOS */
}

.maxViewPort {
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    min-height: 100svh;
    max-height: 100svh;
    height: 100svh;
    min-height: 100dvh;
    max-height: 100dvh;
    height: 100dvh;
    min-width: 100vw;
    max-width: 100vw;
    width: 100vw;
}

.basePart {
    overflow: hidden;
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

#basePart>.childPart {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.childPart {
    max-width: calc(512px - 24px);
    width: calc(90vw - 24px);
    border-radius: 12px;
    padding: 12px;
}

.shadowBorder {
    box-shadow: 0 0px 45px -3px #0000002b;
}

.slimBorder {
    border-color: #e1e1e1;
    border-style: solid;
    border-width: 1px;
}

.greyBackground {
    background-color: rgb(236 236 236 / 84%);
}

.basePart>:not(:first-child) {
    margin-top: 8px;
}

.bbox {
    box-sizing: border-box;
}

hr {
    outline: none;
    border: none;
    background-color: #00000018;
    height: 2px;
    border-radius: 114514px;
    margin: 6px 0;
    width: 100%;
}

#ipInfoArea .childPart {
    width: calc(100% - 24px);
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    transition: all 0.374s;
    cursor: pointer;
}

#ipInfoArea .childPart div:nth-child(2):has(input) {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.childPart form:has(input) {
    width: 100%;
}

.childPart form input {
    width: 100%;
}

#ipInfoArea .childPart:has(input:valid),
#ipInfoArea .childPart:hover {
    background-color: rgba(241, 241, 241, 0.674);
}

#ipInfoArea .childPart>div {
    max-width: 80%;
    word-break: break-all;
    user-select: none;
}

#ipInfoArea .childPart>div:first-child {
    text-transform: capitalize;
    white-space: nowrap;
    margin-right: 1em;
}

#ipInfoArea .childPart>div:nth-child(2) {
    cursor: pointer;
}

#ipInfoArea .childPart input {
    outline: none;
    border: none;
    background: none;
    text-align: right;
}

.bold {
    font-weight: 600;
}

.copyright {
    margin-top: 1em;
}

.copyright a {
    text-decoration: none;
    color: #840D23;
}

.inlineSvgIcon {
    width: 1em;
    height: 1em;
}

@media (prefers-color-scheme: dark) {
    .shadowBorder {
        box-shadow: 0 0px 45px -3px #fcfcfc1d;
    }

    hr {
        background-color: #e1e1e129
    }

    body {
        background-color: #181818;
    }

    .copyright a {
        color: #cb3c56;
    }

    #ipInfoArea .childPart:hover {
        background-color: rgba(10, 10, 10, 0.674);
    }

    .inlineSvgIcon svg path {
        fill: #fff;
    }
}