@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('./fonts/glyphicons-halflings-regular.eot');
    src: url('./fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('./fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('./fonts/glyphicons-halflings-regular.woff') format('woff'), url('./fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('./fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Glyphicons Halflings';
    /*background: url('../images/1.jpg') no-repeat 0px 0px;*/
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100vh;
    overflow: hidden;
}

.bg {
    animation: slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
    bottom: 0;
    left: -50%;
    opacity: .5;
    position: fixed;
    right: -50%;
    top: 0;
    z-index: -1;
}

.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 4s;
}

.bg3 {
    animation-duration: 5s;
}

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(25%);
    }
}

#main {
    width: 100%;
    height: 100%;
    flex-direction: column;
    backdrop-filter: blur(1rem);
    display: flex;
}

h1, h2, h3, h4, h5, h6 {
}

h1 {
    font-size: 40px;
    color: #fff;
    text-align: center;
}

.layouts-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1;
}

#login {
    display: flex;
}
.main-body{
    display:flex;
}
.signin, .introduce-info {
    background-color: rgba(255,255,255,0.8);
    display: inline-block;
    width: 400px;
    vertical-align: top;
    padding: 80px;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    height: 300px;
}

.signin {
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}

.introduce-info {
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

    .signin h2, .introduce-info h3 {
        font-size: 25px;
        color: #7d7d7d;
        margin: 10px 0px;
    }

.introduce-info {
    background: rgba(0, 0, 0, 0.6);
}

    .introduce-info h3 {
        color: #fff;
    }

    .introduce-info p {
        color: #fff;
        font-size: 14px;
        line-height: 24px;
    }

.footer-w3l {
    margin: 120px 0 15px 0;
}

    .footer-w3l p {
        font-size: 14px;
        text-align: center;
        color: #fff;
        line-height: 27px;
    }

        .footer-w3l p a {
            color: #fff;
        }

            .footer-w3l p a:hover {
                text-decoration: underline;
            }

/* Let's get this party started */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
/* Track */
::-webkit-scrollbar-track { /*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}

/* Handle */
/*::-webkit-scrollbar-thumb { -webkit-border-radius: 0px; border-radius: 0px; background: rgba(43, 125, 188, 0.26); -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); }
::-webkit-scrollbar-thumb:window-inactive { background: rgba(0, 0, 0, .125); }*/

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
}

    ::-webkit-scrollbar-thumb:vertical:hover {
        background: #0a68a5;
    }

/*440分辨率以下（小于479px）*/
@media only screen and (max-width: 479px) {
    .signin, .introduce-info {
        width: 300px;
    }
}
/*720分辨率（大于480px，小于767px）*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
    .signin, .introduce-info {
        width: 300px;
    }
}
/*880分辨率（大于768px，小于959px）*/
@media screen and (min-width: 768px) and (max-width: 959px) {
    .signin, .introduce-info {
        width: 300px;
    }
}
/*1100分辨率（大于960px，小于1199px）*/
@media screen and (min-width: 960px) and (max-width: 1073px) {
    .signin, .introduce-info {
        width: 300px;
    }
}

@media screen and (min-width: 1074px) and (max-width: 1365px) {
    .signin, .introduce-info {
        width: 300px;
    }
}

@media screen and (min-width: 1366px) and (max-width: 1760px) {
    .signin, .introduce-info {
        width: 400px;
    }
}

@media screen and (min-width:1761px) {
    .signin, .introduce-info {
        width: 460px;
    }
}
