* {
    font-family: 'Microsoft Yahei';
}

input {
    outline-style: none;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-family: 'Microsoft Yahei';
    padding: 5px;
    font-weight: 600;
    text-align: center;
    font-size: medium;
    height: 1.6rem;
    margin: 0.6rem;
    transition: 0.5s cubic-bezier(0.77, 0.1, 0.58, 1);
}

h1 {
    font-family: 'Microsoft Yahei';
}

h3 {
    margin: 0px;
}

h4 {
    margin-top: 1px;
}

body {
    min-width: 370px;
    overflow-y: hidden;
    overflow-x: scroll;
    margin: 0px !important;
}

p {
    font-family: 'Microsoft Yahei';
    margin: -2px;
}

input:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 10px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 10px rgba(102, 175, 233, .6);
}

#UID:invalid {
    animation: shake 0.3s forwards;
    animation-iteration-count: infinite;
    color: red;
}

#UID {
    color: green;
}

@keyframes shake {
    25% {
        transform: translateX(5px);
        transform: rotate(5deg);
    }

    50% {
        transform: translateX(-5px);
        transform: rotate(-5deg);
    }

    75% {
        transform: translateX(5px);
        transform: rotate(5deg);
    }

    100% {
        transform: translateX(0px);
        transform: rotate(-5deg);
    }
}

button {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: #000;
    font-family: 'Microsoft Yahei';
    background-color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin: 5px;
}

button:hover {
    background: linear-gradient(135deg, #ff5e7f 30%, #ff967e 100%);
    box-shadow: 0px 15px 20px #0373c94d;
    color: #fff;
    transform: translateY(-7px);
}

button:active {
    transform: translateY(-1px);
}

.no-safe {
    background: linear-gradient(135deg, #ff5e7f 30%, #ff967e 100%);
    color: #fff;
    font-size: x-small;
}

.no-safe:hover {
    background-color: #e62455;
    box-shadow: 0px 15px 20px #d605284d;
    color: #fff;
    transform: translateY(-7px);
}

.no-safe:active {
    transform: translateY(-1px);
}

.InputModule {
    z-index: 1;
    width: 60vw;
    height: 40vh;
    margin: auto;
    background: rgba(255, 255, 255, 0.375);
    box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 15px;
    background-position: center top;
    background-size: cover;
    overflow-y: auto;
    overflow-x: hidden;
    transition: 0.8s cubic-bezier(0.83, 0.02, 0.38, 1);
}

body {
    max-width: 100vw;
    min-height: 100vh;
    background: url(./bg/12-Light-thumbnail.jpg);
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    -webkit-backdrop-filter: blur(15px);
    -moz-backdrop-filter: blur(15px);
    -ms-backdrop-filter: blur(15px);
    -o-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.SpawnModule {
    width: 60vw;
    height: 46vh;
    margin: auto;
    margin-top: 3vh;
    background: rgba(255, 255, 255, 0.375);
    box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 15px;
    transition: 0.8s cubic-bezier(0.83, 0.02, 0.38, 1);
    overflow-y: scroll;
    overflow-x: hidden;
}

.SideMenu {
    width: 37vw;
    height: 100%;
    max-height: 34.5vh;
    margin: auto;
    margin-top: 1vh;
    background: rgba(255, 255, 255, 0.375);
    box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    padding: 15px;
    transition: 0.8s cubic-bezier(0.83, 0.02, 0.38, 1);
    overflow-y: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 3px;
    background-color: #f5f5f500;
    border-radius: 10px
}

::-webkit-scrollbar-track {
    background-color: #f5f5f500
}

::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background-color: rgb(155 155 155 / 48%)
}

select {
    margin: 5px;
    padding: 2px;
    height: 1.4rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.sharecommand {
    margin-top: 5px;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #59c3fb 10%, #268df7 100%);
    border-radius: 20px;
    padding-top: 9px;
    padding-bottom: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.img {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    border-radius: 10px;
    background: -webkit-gradient(linear, left top, left bottom, from(#d7cfcf), to(#9198e5));
    background: linear-gradient(#d7cfcf, #9198e5);
}

.textBox {
    width: calc(100% - 90px);
    margin-left: 10px;
    color: white;
    font-family: 'Poppins' sans-serif;
}

.textContent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.span {
    font-size: 10px;
}

.h1 {
    font-size: 16px;
    font-weight: bold;
}

.p {
    margin-top: 5px;
    font-size: 12px;
    font-weight: lighter;
}

.VAPTCHA-init-main {
    display: table;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    background-color: #eeeeee;
}

.VAPTCHA-init-loading {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.VAPTCHA-init-loading>a {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: none;
}

.VAPTCHA-init-loading .VAPTCHA-text {
    font-family: sans-serif;
    font-size: 12px;
    color: #cccccc;
    vertical-align: middle;
}

.radio-inputs {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 1.5rem;
    background-color: #eeeeeeb9;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
    padding: 0.25rem;
    width: 100%;
    font-size: 14px;
}

.radio-inputs .radio {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.radio-inputs .radio input {
    display: none;
}

.radio-inputs .radio .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 1.5rem;
    border: none;
    padding: .5rem 0;
    color: rgba(51, 65, 85, 1);
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

.radio-inputs .radio input:checked+.name {
    background: linear-gradient(135deg, #ff5e7f 30%, #ff967e 100%);
    color: #fff;
    font-weight: 600;
}

.ToasterGroup {
    margin: auto;
    margin-top: 10px;
    z-index: 1000;
    position: fixed;
    left: 0;
    right: 0;
    padding-block-end: 5vh;
    display: grid;
    justify-items: center;
    justify-content: center;
    gap: 1vh;
    pointer-events: none;
}

.Toaster {
    width: 77vw;
    height: auto;
    max-width: 500px;
    margin: auto;
    margin-top: 10px;
    text-align: center;
    border-radius: 0.5rem;
    background-color: #0091ff;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 10px;
    z-index: 10;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    animation: popout 0.7s forwards, disappear 0.7s 5s forwards;
    transition: all 0.3s ease 0s;
}

@keyframes popout {
    from {
        margin-top: -100%;
    }

    to {
        margin-top: 10px;
    }
}

@keyframes disappear {
    from {
        opacity: 1;
    }

    to {
        opacity: 0
    }
}

@media screen and (orientation: landscape) and (min-width: 811px) {
    .InputModule {
        margin-top: 3vh;
        width: 37vw;
        height: auto;
        float: left;
        margin-left: 1.5vw;
        max-height: 60vh;
        transition: 0.8s cubic-bezier(0.83, 0.02, 0.38, 1);
    }

    .SpawnModule {
        width: 55vw;
        height: 91vh;
        margin-right: 1.5vw;
        float: right;
        transition: 0.8s cubic-bezier(0.83, 0.02, 0.38, 1);
    }

    .SideMenu {
        margin-left: 1.5vw;
        float: left;
    }
}

@media screen and (min-width: 812px) and (orientation:portrait) {
    .InputModule {
        margin-top: 3vh;
        margin-left: 1vw;
        width: 37vw;
        max-height: 60vh;
        height: auto;
        float: left;
        transition: 0.8s cubic-bezier(0.83, 0.02, 0.38, 1);
    }

    .SpawnModule {
        width: 50vw;
        height: 80vh;
        margin-right: 1vw;
        float: right;
        transition: 0.8s cubic-bezier(0.83, 0.02, 0.38, 1);
    }

    .SideMenu {
        margin-left: 1.5vw;
        float: left;
    }

    input {
        max-width: 40vw;
        font-size: medium;
        height: 1.1rem;
        margin: 0.6rem;
    }
}

@media screen and (max-width: 811px) {
    .InputModule {
        width: 80vw;
        transition: 0.8s cubic-bezier(0.83, 0.02, 0.38, 1);
        margin-top: 4vh;
    }

    .SpawnModule {
        width: 80vw;
        transition: 0.8s cubic-bezier(0.83, 0.02, 0.38, 1);
    }

    input {
        max-width: 100%;
        font-size: medium;
        height: 1.1rem;
        margin: 0.6rem;
    }

    .SideMenu {
        width: 80vw;
        height: 50vh;
        max-height: 50vh;
    }

    body {
        overflow-y: scroll;
    }
}

.svg {
    width: 3.25em;
    transform-origin: center;
    animation: rotate4 2s linear infinite;
}

circle {
    fill: none;
    stroke: hsl(214, 97%, 59%);
    stroke-width: 2;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    animation: dash4 1.5s ease-in-out infinite;
}

@keyframes rotate4 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash4 {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dashoffset: -125px;
    }
}

/*侧边滚动条*/
.entry-content pre {
    overflow: auto;
    overflow-y: overlay;
    max-height: 600px;
}

::-webkit-scrollbar {
    width: 15px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
    background-color: #fb7299;
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb:hover {
    background-color: #fb7299;
}

.entry-content pre::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0);
}

/*渐变色文字*/
.Dearlicy-copy {
    font-weight: 600;
    color: #8c888b;
    background: linear-gradient(135deg, #f97794 10%, #623aa2 100%);
    color: transparent;
    -webkit-background-clip: text;
    animation: ran 20s linear infinite
}

/*跳转按钮*/


/*手机端ui*/
@media only screen and (max-width: 768px) {
    body {
        font-size: 70%;
    }

    button {
        font-size: 65%;
    }

    .no-safe {
        font-size: 50%;
    }
}

/*圆角图片*/
img {
    border-radius: 65px;
}

img {
  -webkit-user-drag: none;
}