body {
    margin: 0;
    padding: 0;
    background: url(../images/cover4.jpg) no-repeat 0px 0px;
    min-height: 100vh;
    background-size: cover;
    font-family: 'Microsoft YaHei', 'Raleway', sans-serif;
}

h1 {
    margin: 0;
    color: #ffffff;
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 50px 0;
}

h2 {
    margin: 0;
    color: #fc3955;
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 1px;
    padding-bottom: 10px;
}

    h2 img {
        width: 100px;
        height: 100px;
        border-radius: 100px;
    }

p.w3l-register-p {
    color: #eee;
    font-size: 13px;
    text-align: center;
    margin-top: 2em;
}

.w3l-login-form {
    background: rgba(0, 0, 0, 0.4117647058823529);
    max-width: 500px;
    margin: 0 auto;
    padding: 2em 3em;
    border-radius: 10px;
    box-sizing: border-box;
}

.group {
    display: flex;
    padding: 15px 5px;
    background-color: #ffffff;
}

    .group i {
        color: #fc3955;
        font-size: 20px;
        padding: 0 10px;
    }

.w3l-form-group {
    margin: 20px 0;
    position: relative;
}

    .w3l-form-group label {
        display: block;
        text-transform: uppercase;
        font-size: 13px;
        color: #d2d2d2;
        letter-spacing: 2px;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .w3l-form-group button {
        width: 200px;
        text-align: center;
        padding: 15px 30px;
        position: absolute;
        right: 1px;
        top: 2px;
    }

input[type="text"],
input[type="password"] {
    width: 100%;
    border: none;
    box-sizing: border-box;
    background: transparent;
    color: #000;
}

    input[type="text"]:focus,
    input[type="password"]:focus {
        outline: none;
    }

button {
    background: #fc3955;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    padding: 12px 60px;
    cursor: pointer;
    width: 100%;
    border-radius: 6px;
}

    button:hover {
        background-color: #00BCD4;
        transition-duration: 5s;
    }

.forgot {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

a {
    color: #0ae;
    font-size: 14px;
    text-decoration: none;
}

.forgot p {
    color: #ffffff;
    text-align: center;
    margin: 0px;
    font-size: 13px;
}

.register {
    color: #00BCD4;
    text-decoration: none;
    padding: 0 10px;
}

/*--footer--*/

p.copyright-agileinfo {
    font-size: 15px;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 300;
}

footer p a {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
}

    footer p a:hover {
        color: #fff;
        text-decoration: none;
        -webkit-transition: 0.5s all;
        -o-transition: 0.5s all;
        -moz-transition: 0.5s all;
        -ms-transition: 0.5s all;
        transition: 0.5s all;
    }

footer {
    padding: 4em 0;
    text-align: center;
}
/*--//footer--*/

/*-- /responsive design --*/

@media(max-width:768px) {
    h1 {
        font-size: 47px;
    }
}

@media(max-width:667px) {
    h1 {
        font-size: 45px;
    }
}

@media(max-width:640px) {
    p.copyright-agileinfo {
        letter-spacing: 1px;
    }

    h1 {
        font-size: 43px;
    }
}

@media(max-width:568px) {
    h1 {
        font-size: 40px;
    }

    p.copyright-agileinfo {
        font-size: 14px;
    }
}

@media(max-width:480px) {
    .w3l-login-form {
        margin: 0 3vw;
        width: 100% !important;
    }

    h1 {
        font-size: 38px;
    }

    p.copyright-agileinfo {
        line-height: 1.8em;
    }
}

@media(max-width:414px) {
    h1 {
        font-size: 34px;
    }
}

@media(max-width:384px) {
    h1 {
        font-size: 30px;
    }
}

@media(max-width:320px) {
    h1 {
        font-size: 25px;
    }

    .forgot p {
        text-align: left;
    }

    .forgot {
        display: block;
    }
}

/*#region popup*/
.leo-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0,0,0,.3);
    display: none;
}

.leo-popup {
    background-color: #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10000;
    display: none;
    width: 270px;
    overflow: hidden;
    color: #000;
    text-align: center;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    border-radius: 13px;
    opacity: 0;
    -webkit-transition-property: -webkit-transform,opacity;
    -moz-transition-property: transform,opacity;
    -o-transition-property: transform,opacity;
    transition-property: transform,opacity;
    -webkit-transform: translate3d(-50%,-50%,0) scale(1.185);
    -moz-transform: translate3d(-50%,-50%,0) scale(1.185);
    -ms-transform: translate3d(-50%,-50%,0) scale(1.185);
    -o-transform: translate3d(-50%,-50%,0) scale(1.185);
    transform: translate3d(-50%,-50%,0) scale(1.185);
}

    .leo-popup.leo-popup-in {
        display: block;
        opacity: 1;
        -webkit-transition-duration: 400ms;
        -moz-transition-duration: 400ms;
        -o-transition-duration: 400ms;
        transition-duration: 400ms;
        -webkit-transform: translate3d(-50%,-50%,0) scale(1);
        -moz-transform: translate3d(-50%,-50%,0) scale(1);
        -ms-transform: translate3d(-50%,-50%,0) scale(1);
        -o-transform: translate3d(-50%,-50%,0) scale(1);
        transform: translate3d(-50%,-50%,0) scale(1);
    }

.leo-popup-header {
    line-height: 40px;
    border-bottom: 1px solid #ccc;
    top: 0;
    background-color: #293c55;
    color: #fff;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
}

.leo-popup-inner {
    position: relative;
    padding: 15px;
    background: rgba(255,255,255,.95);
    -moz-border-radius: 13px 13px 0 0;
    -webkit-border-radius: 13px 13px 0 0;
    border-radius: 13px 13px 0 0;
}

    .leo-popup-inner:after {
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        z-index: 15;
        display: block;
        width: 100%;
        height: 1px;
        content: '';
        background-color: rgba(0,0,0,.2);
        -webkit-transform: scaleY(.5);
        -moz-transform: scaleY(.5);
        -ms-transform: scaleY(.5);
        -o-transform: scaleY(.5);
        transform: scaleY(.5);
        -webkit-transform-origin: 50% 100%;
        -moz-transform-origin: 50% 100%;
        -ms-transform-origin: 50% 100%;
        -o-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
    }

.leo-popup-title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

    .leo-popup-title + .leo-popup-text {
        margin: 5px 0 0;
        font-family: inherit;
        font-size: 14px;
    }

.leo-popup-buttons {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    height: 44px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.leo-popup-button {
    position: relative;
    display: block;
    width: 100%;
    height: 44px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 5px;
    overflow: hidden;
    font-size: 17px;
    line-height: 44px;
    color: #007aff;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    background: rgba(255,255,255,.95);
    -webkit-box-flex: 1;
}

    .leo-popup-button.leo-popup-button-bold {
        font-weight: 600;
    }

.leo-toast-container {
    line-height: 17px;
    position: fixed;
    z-index: 9999;
    top: 100px;
    left: 50%;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
}

    .leo-toast-container.loading {
        top: 30%;
    }

    .leo-toast-container.leo-active {
        opacity: .9;
    }

.leo-toast-message {
    font-size: 14px;
    padding: 10px 25px;
    text-align: center;
    color: #fff;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: #323232;
}

    .leo-toast-message span {
        color: #fff;
    }

    .leo-toast-message img {
        display: block;
        margin: 0 auto 10px;
        width: 60px;
    }

.leo-toast-success {
    position: fixed;
    top: 65px;
    z-index: 1000;
    max-width: 400px;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    opacity: 0;
    left: 50%;
    margin-left: -200px;
    background-color: #d9e7cd;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 10px;
}

    .leo-toast-success p {
        color: #3d8b26;
        text-align: center;
    }

    .leo-toast-success.leo-active {
        opacity: .9;
    }

    .leo-toast-success p strong {
    }
/*#endregion*/
/*-- /responsive design --*/
.leo-btn-gray {
    position: relative;
}

    .leo-btn-gray img {
        position: absolute;
        right: 10px;
        top: 0;
    }

.leo-form {
    padding: 10px;
}

/*#region buton*/
.leo-btn-yellow,
.leo-btn-black,
.leo-btn-blue,
.leo-btn-gray {
    padding: 5px 10px;
    line-height: 28px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: solid 1px;
    text-align: center;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -moz-transition-property: background;
    -o-transition-property: background;
    -webkit-transition-property: background;
    transition-property: background;
    font-size: 14px;
    text-indent: 0px;
}

    .leo-btn-black i,
    .leo-btn-blue i,
    .leo-btn-gray i {
        margin-right: 5px;
    }

    .leo-btn-yellow:active,
    .leo-btn-blue:active,
    .leo-btn-black:active,
    .leo-btn-gray:active {
        color: #00647f;
        -moz-transition-duration: 0s;
        -o-transition-duration: 0s;
        -webkit-transition-duration: 0s;
        transition-duration: 0s;
        -webkit-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) inset, 0 1px 0 #fff;
    }

.leo-btn-black {
    color: #ffffff;
    background: #494748;
    border: 1px solid #5A5859;
}

.leo-btn-gray {
    color: #333333;
    background: #d5dde8;
    border-color: #d5dde8;
}

.leo-btn-blue {
    color: #ffffff;
    background: #2fb3ff;
    border: 1px solid #2fb3ff;
}

.leo-btn-yellow {
    color: #ffffff;
    background: #fb660d;
    border-color: #fb660d;
}

.leo-btn-black:hover {
    background-color: #201F20;
    border-color: #201F20;
    text-decoration: none;
}

.leo-btn-gray:hover {
    color: #333333;
    background-color: #D1D1D1;
    text-decoration: none;
}

.leo-btn-blue:hover {
    background-color: #15a0f1;
    color: #ffffff;
    text-decoration: none;
}

.leo-btn-yellow:hover {
    background: #e25b0b;
    border-color: #e25b0b;
    color: #ffffff;
    text-decoration: none;
}

.leo-btn-black:active {
    background-color: #0A0909;
    border-color: #0A0909;
}

.leo-btn-gray:active {
    background-color: #CCCCCC;
    color: #333333;
}

.leo-btn-blue:active {
    background-color: #15a0f1;
    color: #ffffff;
}

.leo-btn-yellow:active {
    background: #e25b0b;
    color: #ffffff;
}

a.leo-btn-blue:visited {
    color: #fff;
    text-decoration: none;
}

.leo-btn-blue.disabled {
    background-color: #e6e3e3;
    color: #606060;
    border-color: transparent;
}
/*#endregion*/
.leo-language-select {
    padding: 20px;
    text-align: right;
    position: fixed;
    right: 10px;
    top: 0px;
}

    .leo-language-select a {
        margin-left: 10px;
    }



.navbar-left, .navbar-right {
    height: 100%;
}

.navbar-left {
    width: 40%;
    max-width: 480px;
    margin: 0 auto;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.navbar-right {
    width: 60%;
    float: right;
    background: url(/Content/Guide/images/product.png) no-repeat center;
    background-size: contain;
}

.navbar-left ul li {
    margin: 8% 0;
    color: #000;
}

    .navbar-left ul li .logo {
        width: 65%;
        max-width: 400px;
    }

    .navbar-left ul li h2 {
        font-size: 42px;
        font-weight: bold;
        font-family: STSong;
        margin: 3% 0;
        color: #fff;
    }

    .navbar-left ul li span {
        line-height: 1.4;
        font-size: 24px;
        font-weight: 300;
        display: inline-block;
        margin-right: 10px;
        color: #fff;
    }
