﻿html, body {
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#login {
    width: 100%;
    height: 100%;
    font-size: 14px;
}

    /*input样式*/
    #login .group {
        position: relative;
    }

    #login input {
        font-size: 18px;
        padding: 10px 10px 10px 5px;
        display: block;
        border: none;
        border-bottom: 1px solid #757575;
        width: 100%;
    }

        #login input:focus {
            outline: none;
        }
    /* LABEL ======================================= */
    #login label {
        color: #999;
        font-size: 18px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: 10px;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
    }

    #login input:focus ~ label, input:valid ~ label {
        top: -20px !important;
        font-size: 14px !important;
        color: #5264AE !important;
    }
    /* BOTTOM BARS ================================= */
    #login .bar {
        position: relative;
        display: block;
        width: 100%;
    }

        #login .bar:before, #login .bar:after {
            content: '';
            height: 2px;
            width: 0;
            bottom: 1px;
            position: absolute;
            background: #5264AE;
            transition: 0.2s ease all;
            -moz-transition: 0.2s ease all;
            -webkit-transition: 0.2s ease all;
        }

        #login .bar:before {
            left: 50%;
        }

        #login .bar:after {
            right: 50%;
        }
    /* active state */
    #login input:focus ~ .bar:before, #login input:focus ~ .bar:after {
        width: 50%;
    }
    /* HIGHLIGHTER ================================== */
    #login .highlight {
        position: absolute;
        height: 60%;
        width: 100px;
        top: 25%;
        left: 0;
        pointer-events: none;
        opacity: 0.5;
    }

    /* active state */
    #login input:focus ~ .highlight {
        -webkit-animation: inputHighlighter 0.3s ease;
        -moz-animation: inputHighlighter 0.3s ease;
        animation: inputHighlighter 0.3s ease;
    }

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: #5264AE;
    }

    to {
        width: 0;
        background: transparent;
    }
}






/*错误提示*/
#login .error {
    font-size: 14px;
    opacity: 0;
    text-align: left;
    padding: 8px;
    min-height: 20px;
    margin-top: 8px;
}

#login .alert-danger {
    background-color: #fef0f0;
    color: #f56c6c;
}

#login .alert {
    border: 1px solid transparent;
    border-radius: 4px;
}




#login .box1 {
    z-index: 2;
    width: 800px;
    height: 532px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: 20px 22px 53px -29px #000;
}

#login .box2 {
    width: 62%;
    height: 100%;
    padding-left: 7%;
    padding-right: 7%;
    float: right;
}

    #login div, #login .box2 input {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.log {
    padding-top: 15%;
    margin-bottom: 30%;
}

#login .btn {
    border: solid 1px #ec6616;
    width: 100%;
    color: #ec6616;
    border-radius: 6px;
    font-weight: bold;
    font-size: 20px;
    padding: 8px 16px;
    margin-bottom: 10%;
    text-align: center;
    cursor: pointer;
}

    #login .btn:hover {
        background: #ec6616;
        transition: .5s ease;
        -webkit-transition: .5s ease;
        -moz-transition: .5s ease;
        -o-transition: .5s ease;
        color: #fff;
    }

#login .mobile-download {
    width: 420px;
    text-align: center;
    position: relative;
    margin-left: -40px;
}

    #login .mobile-download .line {
        font-size: 18px;
        display: inline-block;
        margin: 0 5px;
        vertical-align: bottom;
        opacity: .9;
    }

    #login .mobile-download a {
        color: #000;
    }

#login .driver-tip {
    top: -225px;
    /*right: 164px;*/
}

#login .cloud-tip {
    top: -220px;
    right: 60px;
}

#login .mobile-download-tip {
    opacity: 0;
    z-index: -1;
    position: absolute;
    width: 222px;
    padding: 10px 0;
    border: 1px solid #d0dae4;
    background: #fff;
}

#login .mobile-download-downarrow {
    position: absolute;
    right: 105px;
    bottom: -20px;
    display: block;
    border-width: 10px;
    border-style: solid;
    border-color: #d0dae4 transparent transparent transparent;
}

#login .mobile-download-downarrow-inner {
    position: absolute;
    top: -10px;
    right: -8px;
    display: block;
    border-width: 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

#login .mobile-download-content span.title {
    font-size: 16px;
    display: inline-block;
    margin: 10px 0 0 0;
    text-align: center;
    color: #3d5266;
}

#login .driver_qa:hover + .driver-tip, #login .cloud_qa:hover + .cloud-tip {
    opacity: 1;
    z-index: 1;
    transition: .3s ease-out;
    -webkit-transition: .3s ease-in;
    -moz-transition: .3s ease-in;
    -o-transition: .3s ease-in;
}

/*底部备注*/
#login .ftCon {
    position: absolute;
    bottom: 3vh;
    margin: auto;
    left: 0;
    right: 0;
    /* width: 700px; */
    z-index: 1;
    text-align: center;
}

    #login .ftCon span {
        display: inline-block;
        border: 1px #fff solid;
        background: #fff;
        border-radius: 21px;
        padding: 2px 5px;
    }

    #login .ftCon a {
        color: #ee762f;
    }

        #login .ftCon a:hover {
            color: #9a998e;
            cursor: pointer;
        }


.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    z-index: 1;
    padding: 0;
    margin: 0;
}

    .bg-bubbles li {
        position: absolute;
        list-style: none;
        display: block;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.2);
        bottom: -160px;
        -webkit-animation: square 25s infinite;
        animation: square 25s infinite;
        -webkit-transition-timing-function: linear;
        transition-timing-function: linear;
    }

        .bg-bubbles li:nth-child(1) {
            left: 10%;
        }

        .bg-bubbles li:nth-child(2) {
            left: 20%;
            width: 80px;
            height: 80px;
            -webkit-animation-delay: 2s;
            animation-delay: 2s;
            -webkit-animation-duration: 17s;
            animation-duration: 17s;
        }

        .bg-bubbles li:nth-child(3) {
            left: 25%;
            -webkit-animation-delay: 4s;
            animation-delay: 4s;
        }

        .bg-bubbles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            -webkit-animation-duration: 22s;
            animation-duration: 22s;
            background-color: rgba(255, 255, 255, 0.25);
        }

        .bg-bubbles li:nth-child(5) {
            left: 70%;
        }

        .bg-bubbles li:nth-child(6) {
            left: 80%;
            width: 120px;
            height: 120px;
            -webkit-animation-delay: 3s;
            animation-delay: 3s;
            background-color: rgba(255, 255, 255, 0.2);
        }

        .bg-bubbles li:nth-child(7) {
            left: 32%;
            width: 160px;
            height: 160px;
            -webkit-animation-delay: 7s;
            animation-delay: 7s;
        }

        .bg-bubbles li:nth-child(8) {
            left: 55%;
            width: 20px;
            height: 20px;
            -webkit-animation-delay: 15s;
            animation-delay: 15s;
            -webkit-animation-duration: 40s;
            animation-duration: 40s;
        }

        .bg-bubbles li:nth-child(9) {
            left: 25%;
            width: 10px;
            height: 10px;
            -webkit-animation-delay: 2s;
            animation-delay: 2s;
            -webkit-animation-duration: 40s;
            animation-duration: 40s;
            background-color: rgba(255, 255, 255, 0.3);
        }

        .bg-bubbles li:nth-child(10) {
            left: 90%;
            width: 160px;
            height: 160px;
            -webkit-animation-delay: 11s;
            animation-delay: 11s;
        }

@-webkit-keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-1000px) rotate(600deg);
        transform: translateY(-1000px) rotate(600deg);
    }
}

@keyframes square {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-1000px) rotate(600deg);
        transform: translateY(-1000px) rotate(600deg);
    }
}




/*日常*/
.wrapper-rc {
    background: #f4b38d;
    background: -webkit-linear-gradient(top left, #f4b38d 0%, #ec6616 100%);
    background: linear-gradient(to bottom right, #f4b38d 0%, #ec6616 100%);
}

    .wrapper-rc .box1 {
        background: url(../../../Content/images/login2021/bg-rc.jpg) no-repeat;
    }

/*清明*/
.wrapper-qm {
    background: #54c6b4;
    background: -webkit-linear-gradient(top left, #54c6b4 0%, #2c8879 100%);
    background: linear-gradient(to bottom right, #54c6b4 0%, #2c8879 100%);
}

    .wrapper-qm .box1 {
        background: url(../../../Content/images/login2021/bg-qm.jpg) no-repeat;
    }
/*妇女*/
.wrapper-fn {
    background: #a8ba55;
    background: -webkit-linear-gradient(top left, #a8ba55 0%, #9db141 100%);
    background: linear-gradient(to bottom right, #a8ba55 0%, #9db141 100%);
}

    .wrapper-fn .box1 {
        background: url(../../../Content/images/login2021/bg-fn.jpg) no-repeat;
    }
/*劳动*/
.wrapper-ld {
    background: #ffe682;
    background: -webkit-linear-gradient(top left, #ffe682 0%, #e6c850 100%);
    background: linear-gradient(to bottom right, #ffe682 0%, #e6c850 100%);
}

    .wrapper-ld .box1 {
        background: url(../../../Content/images/login2021/bg-ld.jpg) no-repeat;
    }

/*除夕*/
.wrapper-cx {
    background: #f7292e;
}

    .wrapper-cx .box1 {
        background: url(../../../Content/images/login2021/bg-cx.jpg) no-repeat;
    }

/*端午5.25-5.30*/
.wrapper-dw {
    background: #82ad4d;
}

    .wrapper-dw .box1 {
        background: url(../../../Content/images/login2021/bg-dw.jpg) no-repeat;
    }

/*父親6.14-6.18*/
.wrapper-fq {
    background: #ffaf8f;
}

    .wrapper-fq .box1 {
        background: url(../../../Content/images/login2021/bg-fq.jpg) no-repeat;
    }

/*国庆9.28-10.8*/
.wrapper-gq {
    background: #f45a5a;
}

    .wrapper-gq .box1 {
        background: url(../../../Content/images/login2021/bg-gq.jpg) no-repeat;
    }

/*教师9.6-9.10*/
.wrapper-js {
    background: #47d0b8;
}

    .wrapper-js .box1 {
        background: url(../../../Content/images/login2021/bg-js.jpg) no-repeat;
    }

/*中秋*/
.wrapper-zq {
    background: #513d8b;
}

    .wrapper-zq .box1 {
        background: url(../../../Content/images/login2021/bg-zq.jpg) no-repeat;
    }

/*母亲*/
.wrapper-mq {
    background: #f1d19d;
}

    .wrapper-mq .box1 {
        background: url(../../../Content/images/login2021/bg-mq.jpg) no-repeat;
    }

/*元旦2017.12.27-2018.1.1*/
.wrapper-yd {
    background: #fa9d6d;
}

    .wrapper-yd .box1 {
        background: url(../../../Content/images/login2021/bg-yd.jpg) no-repeat;
    }

/*五四*/
.wrapper-ws {
    background: #fda735;
}

    .wrapper-ws .box1 {
        background: url(../../../Content/images/login2021/bg-ws.jpg) no-repeat;
    }
/*冬至*/
.wrapper-dongzhi {
    background: #d9fbfd;
}

    .wrapper-dongzhi .box1 {
        background: url(../../../Content/images/login2021/bg-dongzhi.png) no-repeat;
    }

/*圣诞*/
.wrapper-shengdan {
    background: #27a283;
}

    .wrapper-shengdan .box1 {
        background: url(../../../Content/images/login2021/bg-christmas.png) no-repeat;
    }

/*万圣*/
.wrapper-wansheng {
    background: #24163e;
}

    .wrapper-wansheng .box1 {
        background: url(../../../Content/images/login2021/bg-Halloween.png) no-repeat;
    }

/*腊八*/
.wrapper-laba {
    background: #b08865;
}

    .wrapper-laba .box1 {
        background: url(../../../Content/images/login2021/bg-laba.png) no-repeat;
    }
/*感恩*/
.wrapper-ganen {
    background: #b4794d;
}

    .wrapper-ganen .box1 {
        background: url(../../../Content/images/login2021/bg-thanksday.png) no-repeat;
    }

.day {
    position: fixed;
    z-index: 2;
}

    .day li {
        list-style-type: none;
    }

.login-logo {
    background: url(../../../Content/images/login2021/log.png) no-repeat;
    width: 244px;
    height: 56px;
    margin-top: 20vh;
    margin-bottom: 10vh;
}

.login-qr {
    background: no-repeat 50% 50%;
    width: 150px;
    height: 150px;
    margin: 0px auto;
}

.login-qr-mobile {
    background: url(../../../Content/images/login2021/QR_cloudTMS.png);
}

.login-qr-driver {
    background: url(../../../Content/images/login2021/QR_driver.png);
}

.login-qr-tms {
    background: url(../../../Content/images/login2021/QR_TMS.png);
}

.login-qr-wms {
    background: url(../../../Content/images/login2021/QR_WMS.png);
}


/*春*/
.wrapper-Sping {
    background: #c4dcaf;
}

    .wrapper-Sping .box1 {
        background: url(../../../Content/images/login2021/bg-Spring.png) no-repeat;
    }

/*夏*/
.wrapper-Summer {
    background: #b6ded9;
}

    .wrapper-Summer .box1 {
        background: url(../../../Content/images/login2021/bg-Summer.png) no-repeat;
    }

/*秋*/
.wrapper-Autumn {
    background: #c4b8a3;
}

    .wrapper-Autumn .box1 {
        background: url(../../../Content/images/login2021/bg-Autumn.png) no-repeat;
    }

/*冬*/
.wrapper-Winter {
    background: #faefe2;
}

    .wrapper-Winter .box1 {
        background: url(../../../Content/images/login2021/bg-Winter.png) no-repeat;
    }

/*罗宾逊*/
.wrapper-chr {
    background: #000000;
}

    .wrapper-chr .box2 {
        margin: auto;
        float: initial !important;
    }

    .wrapper-chr .login-logo {
        background: url(../../../Content/images/login2021/CHR_LOGO.PNG) no-repeat;
        background-size: 100%;
        height: 259px;
        width: 100% !important;
        margin: 0 0px 41px 0;
        background-size: 100%;
    }

    .wrapper-chr .jiantou {
        position: absolute;
        margin-left: -3%;
        margin-top: 14%;
    }

        .wrapper-chr .jiantou img {
            width: 25%;
        }

    .wrapper-chr .bg-box {
        position: absolute;
        width: 100%;
        bottom: 0px;
        display: block;
    }

        .wrapper-chr .bg-box img {
            width: 32%;
            float: right;
        }

    .wrapper-chr .mobile-download {
        color: #00a3e0 !important;
    }

        .wrapper-chr .mobile-download a {
            color: #fff !important;
        }

    .wrapper-chr .btn {
        color: #fff !important;
        background-color: #00a3e0 !important;
        border-color: #46b8da !important;
    }

        .wrapper-chr .btn:hover {
            color: #fff !important;
            background-color: #16b5f1 !important;
            border-color: #269abc !important;
        }

    .wrapper-chr .ftCon {
        color: white;
    }

        .wrapper-chr .ftCon a {
            color: #00a3e0 !important;
        }

    .wrapper-chr .bg-bubbles li {
        background-color: rgba(0, 163, 224, 0.16);
    }

    .wrapper-chr .login-qr-mobile {
        background: url(../../../Content/images/login2021/CHR_Customer.png);
    }

    .wrapper-chr .login-qr-driver {
        background: url(../../../Content/images/login2021/CHR_DriverAPP.png);
    }

    .wrapper-chr .login-qr-tms {
        background: url(../../../Content/images/login2021/CHR_WeChat.png);
    }

.bg-box {
    display: none;
}

/* 20210413新登录页样式 */
.login-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: #ec6616;
}

.swiper-box {
    width: 71vh;
    height: 100vh;
}

.login-box1 {
    flex: 1;
    z-index: 2;
    height: 100%;
    position: relative;
    background-color: #fff;
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
}

.login-box2 {
    height: 80%;
    display: flex;
    justify-items: center;
    align-items: center;
}

@media screen and (max-width: 1366px) {
    .login-box2 {
        height: 30%;
        display: flex;
        justify-items: center;
        align-items: center;
    }
}

@media screen and (max-width: 1600px) {
    .login-box2 {
        height: 50%;
        display: flex;
        justify-items: center;
        align-items: center;
    }
}

@media screen and (max-width: 1920px) {
    .login-box2 {
        height: 80%;
        display: flex;
        justify-items: center;
        align-items: center;
    }
}

.login-control {
    max-width: 450px;
    min-width: 280px;
    min-height: 480px;
    width: 420px;
    height: 526px;
}

#login .mobile-download {
    width: 420px;
    margin-left: 0;
}

.login-wrap .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.login-wrap .swiper-container {
    height: 100%;
}

.login-wrap .swiper-slide .text-box {
    position: absolute;
    bottom: 0;
    height: 27vh;
    width: 100%;
    z-index: 10;
    text-align: center;
}

.login-wrap .text-box p {
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
}

.login-wrap .text-box .title {
    font-size: 38px;
    margin-bottom: 20px;
}

.login-wrap .text-box .text {
    font-size: 26px;
}

.login-wrap .text-box a {
    display: inline-block;
    font-size: 1.5rem;
    box-sizing: border-box;
    border: solid 1px #fff;
    color: #fff;
    text-decoration: none;
    width: 12rem;
    text-align: center;
    height: 4rem;
    line-height: 4rem;
    border-radius: 2.5rem;
    margin-top: 3rem;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    padding: 0;
}

#login .swiper-pagination-bullet {
    background: #fff;
}

#login .group {
    margin-top: 30px
}

#login .btn {
    margin: 10px 0 10% 0;
}

#login div, #login .login-box2 input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*底部CopyRight和语言切换*/
.bottom-info {
    display: flex;
    flex-direction: column;
}

    .bottom-info .copyright2021 {
    }

    .bottom-info .changelanguage2021 {
        cursor: pointer;
    }

@media screen and (device-height: 1080px) and (device-width: 1920px) {
    .login-logo {
        margin-top: 10vh;
    }
}

@media screen and (device-height: 900px) and (device-width: 1440px) {
    .login-logo {
        margin-bottom: 5vh;
    }
}

@media screen and (device-height: 1050px) and (device-width: 1400px) {
    .login-logo {
        margin-top: 10vh;
    }
}

@media screen and (device-height: 768px) and (device-width: 1366px) {
    .login-logo {
        margin-top: 30vh;
        margin-bottom: 5vh;
    }

    #login .group {
        margin-top: 10px;
    }

    #login .btn {
        margin: 10px 0 10px 0;
    }
}

@media screen and (device-height: 768px) and (device-width: 1360px) {
    .login-logo {
        margin-top: 30vh;
        margin-bottom: 5vh;
    }

    #login .group {
        margin-top: 10px;
    }

    #login .btn {
        margin: 10px 0 10px 0;
    }
}

.tripartite {
    position: relative;
}

.tripartite-container {
    text-align: center;
    padding-bottom: 30px;
}

    .tripartite-container::before {
        content: "";
        position: absolute;
        top: 1.5em;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #a9aab0;
        z-index: -9999;
    }

.tripartite-box {
    background-color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
    position: relative;
    z-index: -9998;
}

.tripartite-container .title {
    margin-top: 6px;
    font-size: 24px;
    color: #373d41;
}

.tripartite-icon {
    text-align: center;
    padding-top: 10px;
}
