﻿@charset "utf-8";
/* CSS by Brian*/

@font-face {
    font-family: bodyFront;
    /*src: url(../../fonts/malgun.ttf);*/
}

:root {
    --root-color-black: black;
    --root-color-white: white;
    --root-color-red: red;
    --root-color-gray: #a1a1a1;
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0; /*高宽分别对应横竖滚动条的尺寸*/
    height: 0;
    background-color: rgba(255, 255, 255, 0);
}

* {
    margin: 0;
    padding: 0;
    -webkit-user-drag: none;
}

body {
    font-size: 0.2rem;
    font-family: bodyFront;
}

/*loading*/
.load_mask {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--root-color-white);
    z-index: 2000;
    opacity: 0.8;
}

.loading {
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    width: 1rem;
    height: 1rem;
    text-align: center;
    -webkit-filter: contrast(1.2);
    filter: contrast(1.2);
    transform: translate(-50%, -50%);
}

.loading span {
    mix-blend-mode: screen;
    display: block;
    position: absolute;
    border-radius: 50%;
    -webkit-animation: wave 3s infinite linear;
    animation: wave 3s infinite linear;
}

.loading span:nth-child(0) {
    left: -11%;
    right: -2%;
    top: -12%;
    bottom: -5%;
    -webkit-transform-origin: 46% 53%;
    transform-origin: 46% 53%;
    -webkit-animation-delay: 0;
    animation-delay: 0;
    background-color: red;
}

.loading span:nth-child(1) {
    left: -4%;
    right: -4%;
    top: -9%;
    bottom: -2%;
    -webkit-transform-origin: 47% 50%;
    transform-origin: 47% 50%;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    background-color: #ffd500;
}

.loading span:nth-child(2) {
    left: -11%;
    right: -4%;
    top: -10%;
    bottom: -11%;
    -webkit-transform-origin: 49% 53%;
    transform-origin: 49% 53%;
    -webkit-animation-delay: -1.5s;
    animation-delay: -1.5s;
    background-color: #55ff00;
}

.loading span:nth-child(3) {
    left: -7%;
    right: -9%;
    top: -11%;
    bottom: -4%;
    -webkit-transform-origin: 47% 52%;
    transform-origin: 47% 52%;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
    background-color: #00ff80;
}

.loading span:nth-child(4) {
    left: -8%;
    right: -3%;
    top: -5%;
    bottom: -11%;
    -webkit-transform-origin: 47% 52%;
    transform-origin: 47% 52%;
    -webkit-animation-delay: -2.5s;
    animation-delay: -2.5s;
    background-color: #00aaff;
}

.loading span:nth-child(5) {
    left: -10%;
    right: -8%;
    top: -4%;
    bottom: -9%;
    -webkit-transform-origin: 48% 51%;
    transform-origin: 48% 51%;
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
    background-color: #2b00ff;
}

.loading span:nth-child(6) {
    left: -9%;
    right: -11%;
    top: -5%;
    bottom: -8%;
    -webkit-transform-origin: 47% 50%;
    transform-origin: 47% 50%;
    -webkit-animation-delay: -3.5s;
    animation-delay: -3.5s;
    background-color: magenta;
}

@-webkit-keyframes wave {
    from {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes wave {
    from {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg);
    }
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

/*loading*/

#section-1 {
    position: relative;
    background: url(../../imgs/pc/userInfo/section-1.jpg);
    background-size: cover;
    background-position: center;
}

.login-box {
    width: 7rem;
    height: 6rem;
    padding: 0.7rem;
    box-sizing: border-box;
    background: var(--root-color-white);
    margin: 1rem auto;
    border-radius: 0.2rem;
    box-shadow: 1px 2px 6px var(--root-color-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.login-title {
    font-size: 0.5rem;
    font-weight: bold;
}

.input-box {
    height: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.input-row {
    width: 5.62rem;
    border: 1px solid var(--root-color-gray);
    border-radius: 5px;
    padding: 0.1rem 0.2rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.input-row > input {
    width: 100%;
    line-height: 0.4rem;
    font-size: 0.2rem;
    border: none;
}

.input-row > input:focus-visible {
    outline: none;
}

.user-img {
    width: 0.26rem;
    height: 0.31rem;
    margin-right: 0.2rem;
    margin-bottom: 0.05rem;
}

.password-img {
    width: 0.26rem;
    height: 0.31rem;
    margin-right: 0.2rem;
    margin-bottom: 0.05rem;
}

.login-btn {
    width: 5.62rem;
    height: 0.83rem;
    cursor: pointer;
}
