html,
body,
p,
input,
img {
    padding: 0;
    margin: 0;
}

body,
html {
    height: 100%;
    width: 100%;
}

body {
    color: #666;
}

.main {
    height: inherit;
    display: flex;
}

.main-left {
    background-image: url(../Images/CMD_plus_logo_bg_new.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column-reverse;
    flex: 1;
}

    .main-left > span {
        color: white;
        height: 85px;
        line-height: 85px;
        text-indent: 25px;
        font-size: 40px;
    }

.main-right {
    display: flex;
    flex-direction: column-reverse;
    width: 400px;
}

.login-main {
    height: 565px;
    padding: 0 30px;
}

.login-main-logo {
    display: flex;
    justify-content: center;
    background-color: white;
    padding-bottom: 5px;
    border-bottom: 1px solid #e4e7ea;
}

    .login-main-logo img {
        width: 210px;
        height: 210px;
    }

.login-main-message {
    height: 65px;
    line-height: 65px;
    font-size: 13px;
    color: red;
}

.login-main-input input {
    width: 100%;
    height: 38px;
    line-height: 38px;
    border: 1px solid #e4e7ea;
    background: none;
    text-indent: 10px;
    margin-bottom: 25px;
    font-size: 15px;
    outline-style: none;
    color: #666;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
}

    .login-main-input input:hover {
        border: 1px solid #C6C6C6;
    }

.login-main-button input[type=button] {
    width: 100%;
    background-color: #4db7e6;
    border: none;
    border-radius: 25px;
    height: 45px;
    color: white;
    font-size: 25px;
    font-weight: normal;
    outline-style: none;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
}

    .login-main-button input[type=button]:not(.disabled) {
        transition: all 0.5s;
    }

        .login-main-button input[type=button]:not(.disabled):hover {
            background-color: #2195CE;
            text-indent: 5px;
        }

    .login-main-button input[type=button].disabled {
        background-color: #FBFBFB;
        color: #d2d2d2;
        cursor: not-allowed
    }

.login-main-copyright {
    margin-top: 20px;
}

    .login-main-copyright p {
        font-size: 13px;
        line-height: 22.5px;
        vertical-align: middle;
        padding-left: 110px;
        cursor: pointer;
    }

    .login-main-copyright a {
        float: left;
        margin-top: 10px;
        width: 100px;
        height: 25px;
    }

    .login-main-copyright img {
        height: inherit;
        width: inherit;
        vertical-align: middle;
    }

.loading-container {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 45px;
    height: 45px;
    margin-left: -22.5px;
    margin-top: -22.5px;
    z-index: 999;
}

.loading-text {
    position: absolute;
    left: -22.5px;
    top: -2px;
    font-size: 14px;
    color: #666;
}

.loading-animation {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    box-shadow:
    /* 上 垂直正中心 */
    0 -45px 0 0 #666,
    /* 右 垂直正中心 */
    45px 0px #666,
    /* 下 垂直正中心 */
    0 45px #666,
    /* 左 垂直正中心 */
    -45px 0 #666,
    /* 左上角 */
    -30px -30px 0 0 #666,
    /* 右上角 */
    30px -30px 0 0 #666,
    /*左下角*/
    30px 30px #666,
    /*右下角 */
    -30px 30px #666;
}

.loading-animation {
    -webkit-animation: animation1 2s infinite;
    -moz-animation: animation1 2s infinite;
    -o-animation: animation1 2s infinite;
    animation: animation1 2s infinite;
}

@-webkit-keyframes animation1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-moz-keyframes animation1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-o-keyframes animation1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes animation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/*网页模态窗口 弹窗部分*/
.modal-container {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.modal-mask {
    position: absolute;
    left: 0;
    top: 0;
    height: inherit;
    width: inherit;
    background-color: black;
    opacity: 0.65;
    z-index: 997;
}

.modal-content {
    width: 500px;
    height: 250px;
    position: relative;
    left: 50%;
    top: 50%;
    margin-left: -250px;
    margin-top: -125px;
    overflow: hidden;
    z-index: 998;
}

.modal-content-info {
    width: inherit;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    background-color: white;
}

.active {
    -webkit-animation: animation2 1.5s ease;
    -moz-animation: animation2 1.5s ease;
    -o-animation: animation2 1.5s ease;
    animation: animation2 1.5s ease;
}

.disabled2 {
    left: -515px;
    -webkit-animation: animation3 1.5s ease;
    -moz-animation: animation3 1.5s ease;
    -o-animation: animation3 1.5s ease;
    animation: animation3 1.5s ease;
}

@-moz-keyframes animation3 {
    from {
        left: 0;
    }

    to {
        left: -515px;
    }
}

@-o-keyframes animation3 {
    from {
        left: 0;
    }

    to {
        left: -515px;
    }
}

@-webkit-keyframes animation3 {
    from {
        left: 0;
    }

    to {
        left: -515px;
    }
}

@keyframes animation3 {
    from {
        left: 0;
    }

    to {
        left: -515px;
    }
}

@-webkit-keyframes animation2 {
    from {
        left: -515px;
    }

    to {
        left: 0;
    }
}

@-moz-keyframes animation2 {
    from {
        left: -515px;
    }

    to {
        left: 0;
    }
}

@-o-keyframes animation2 {
    from {
        left: -515px;
    }

    to {
        left: 0;
    }
}

@keyframes animation2 {
    from {
        left: -515px;
    }

    to {
        left: 0;
    }
}

@keyframes a {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content-title {
    height: 50px;
    line-height: 50px;
    text-indent: 15px;
    color: white;
    font-weight: normal;
    font-size: 17px;
    background-color: #FF5A5E;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

    .modal-content-title::after {
        content: "x";
        position: absolute;
        top: -10px;
        right: 15px;
        font-size: 20px;
        font-weight: normal;
        color: white;
        cursor: pointer;
    }

.modal-content-message {
    height: 85px;
    overflow: hidden;
    padding: 30px 15px 0 15px;
}

.modal-content-button {
    text-align: right;
    padding: 10px;
}

    .modal-content-button input[type=button] {
        padding: 0 30px;
        height: 35px;
        line-height: 35px;
        background: none;
        border: 0;
        margin-left: 15px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 600;
    }

    .modal-content-button input[name=YES] {
        background-color: #FF5A5E;
        color: white;
    }

    .modal-content-button input[name=NO] {
        border: 1px solid #666;
        color: #666;
    }

.modal-content-message p {
    padding: 0 0 0 80px;
    line-height: 25px;
    font-size: 17px;
    font-weight: 500;
}

.modal-content-message img {
    float: left;
    height: 65px;
    width: 65px;
}
