﻿html {
    height: 100%;
}

body {
    background-image: url(/Images/loginbg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0% 0%;
    position: static;
    font-size: 12px;
    font: 14px Helvetica Neue,Helvetica,PingFang SC,Tahoma,Arial,sans-serif;
}

.logo {
    position: absolute;
    top: 38px;
    left: 38px;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-54%);
}

.loginBox {
    padding: 42px 66px;
    width: 500px;
    background-color: rgb(192, 192, 192,0.22);
    border-radius: 12px;
    margin: 0 auto;
    box-sizing: border-box;
}

.title p {
    margin: 0;
    padding: 10px;
    font-family: Arial;
    font-size: 32px;
    text-align: center;
    color: #fd8442;
    font-weight: 600;
}

.loginBox .textBox {
    width: 100%;
    outline: none;
    font-size: 18px;
    border: 1px solid #fd8442;
    border-radius: 6px;
    background-color: transparent;
    color: white;
    padding: 8px;
    padding-left: 38px;
    position: relative;
    box-sizing: border-box;
}

.loginBox > .item {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}

.loginBox .btn {
    font-size: 18px;
    font-weight: 500;
    height: 38px;
    text-align: left;
    padding: 6px 28px;
    color: #ffffff;
    background-color: #fd8442;
    border: none;
    border-radius: 19px;
    cursor: pointer;
}

    .loginBox .btn > i {
        vertical-align: middle;
        width: 28px;
        height: 28px;
        background-repeat: no-repeat;
        display: inline-block;
    }

input::placeholder {
    color: #c8c0b6eb;
}

.layui-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 38px;
    width: 38px;
    line-height: 36px;
    font-size: 24px;
    color: #fd8442;
}


.line {
    background: #e0e0e0;
    width: 1px;
}

.beian {
    position: absolute;
    bottom: 0px;
    text-align: center;
    color: white;
    width: 100%;
    padding: 12px 0px;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    .beian > li {
        margin: 0 5px;
    }


/**
    加载层样式
*/
.layuimini-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
}

    .layuimini-loader .layuimini-loader-inner {
        display: block;
        position: relative;
        left: 50%;
        top: 50%;
        width: 120px;
        height: 120px;
        margin: -89px 0 0 -57px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #fd8442;
        animation: spin 2s linear infinite;
    }

        .layuimini-loader .layuimini-loader-inner:before {
            content: "";
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: #fd8442;
            animation: spin 3s linear infinite;
        }

        .layuimini-loader .layuimini-loader-inner:after {
            content: "";
            position: absolute;
            top: 15px;
            left: 15px;
            right: 15px;
            bottom: 15px;
            border-radius: 50%;
            border: 3px solid transparent;
            border-top-color: #fd8442;
            animation: spin 1.5s linear infinite;
        }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}



