﻿html {
    height: 100%
}

body.login {
    height: auto;
    background: url(../../image/login-background1.jpg) no-repeat center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    color: rgba(255,255,255,.95)
}

.login-title {
    border-top: solid 0px rgba(255,255,255,.3);
    margin: 10px 0;
    padding-top: 10px;
    padding-right: 40px;
}

.login-panel {
    width: 750px;
    height: 650px;
    position: absolute;
    right: 10px;
    margin-top: -300px;

    top: 53%;
    left: 80%;
    transform: translate(-50%,-10%);
}

    .login-panel .section {
        width: 460px;
        margin: 0 auto;
    }

    .login-panel .logopanel {
        float: none;
        width: auto;
        padding: 0;
        background: 0 0
    }

    .login-panel .login-info ul {
        list-style: none;
        padding: 0;
        margin: 20px 0
    }

    .login-panel .form-control {
        display: block;
        margin-top: 15px
    }

    .login-panel .uname {
        background: #fff url(../../image/user.png) no-repeat 95% center;
        color: #333
    }

    .login-panel .pword {
        background: #fff url(../../image/locked.png) no-repeat 95% center;
        color: #333
    }


    .login-panel .code {
        background: #fff no-repeat 95% center;
        color: #333;
        margin: 0 0 15px 0;
    }

    .login-panel .btn {
        margin-top: 15px
    }

    .login-panel form {
        background: #fff;
        border: 1px solid rgba(255,255,255,.3);
        -moz-box-shadow: 0 3px 0 rgba(12,12,12,.03);
        -webkit-box-shadow: 0 3px 0 rgba(12,12,12,.03);
        box-shadow: 0 3px 0 rgba(12,12,12,.03);
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        padding: 30px 15px 25px 20px
    }

.login-info ul {
    line-height: 25px;
    margin-top: 50px;
    font-size: 13px
}

.login-top {
    border-top: solid 0px rgba(255,255,255,.3);
    margin: 20px 0;
    padding-top: 15px;
    font-size: 24px;
    font-weight: bold;
    font-family: KaiTi;
}

.login-footer {
    border-top: solid 0px rgba(255,255,255,.3);
    margin: 20px 0;
    padding-top: 5px
}

/*弹出框里面文字的颜色*/
.layui-layer-content {
    color: #676a6c;
}

@media screen and (max-width:768px) {
    .login-panel {
        margin: 0 auto;
        width: 440px !important;
        padding: 20px
    }

        .login-panel .section {
            width: 100%;
            margin: 0 auto;
        }

        .login-panel form {
            margin-top: 20px
        }

    .login-footer, .form-control {
        margin-bottom: 10px
    }

    .login-panel .login-info ul {
        display: none;
    }
}

@media screen and (max-width:380px) {
    .login-panel {
        margin: 0 20px;
        width: auto
    }

        .login-panel .section {
            width: 100%;
            margin: 0 auto;
        }
}

.checkbox-custom {
    position: relative;
    padding: 0 15px 0 25px;
    margin-bottom: 7px;
    margin-top: 0;
    display: inline-block
}

    .checkbox-custom input[type="checkbox"] {
        opacity: 0;
        position: absolute;
        cursor: pointer;
        z-index: 2;
        margin: -6px 0 0 0;
        top: 50%;
        left: 3px
    }

    .checkbox-custom label:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -9px;
        width: 18px;
        height: 17px;
        display: inline-block;
        border-radius: 2px;
        border: 1px solid #bbb;
        background: #fff
    }

    .checkbox-custom input[type="checkbox"]:checked + label:after {
        position: absolute;
        display: inline-block;
        font-family: 'Glyphicons Halflings';
        content: "\e013";
        top: 42%;
        left: 3px;
        margin-top: -5px;
        font-size: 11px;
        line-height: 1;
        width: 16px;
        height: 16px;
        color: #333
    }

    .checkbox-custom label {
        cursor: pointer;
        line-height: 1.2;
        font-weight: normal;
        margin-bottom: 0;
        text-align: left
    }

/*.float-box {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    position: fixed;
    animation: float-animation 6s infinite;
}

@keyframes float-animation {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, 1080px);
    }

    100% {
        transform: translate(0, 0);
    }
}
*/

.floating-window {
    font-family: "Microsoft KaiTi", "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-shadow: 0px 1px 2px #000;
    width: 500px;
    height: 260px;
    background-color: #6B82A4;
    color: white;
    text-align: left;
    line-height: 1.6; /* 调整行高 */
    font-size: 16px;
    padding: 20px; /* 增加容器内边距 */
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    animation: float 20s linear infinite;
}

    .floating-window span {
        display: block; /* 让span独占一行 */
        margin-bottom: 15px; /* 段落间距 */
        text-indent: 2em; /* 首行缩进2字符 */
    }

    .floating-window:hover {
        animation-play-state: paused;
    }


@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(calc(40vw - 200px), calc(100vh - 200px));
    }

    75% {
        transform: translate(calc(0), calc(200vh - 200vh));
    }

    100% {
        transform: translate(0, 0);
    }
}
