*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: rgba(0, 0, 0, 0.25);
    font-size: 16px;
    font-weight: 400;
  }

  ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: rgba(0,0,0,0.25);
    font-size: 16px;
    font-weight: 400;
  }

  :-ms-input-placeholder { /* Internet Explorer 10+ */
    color: rgba(0,0,0,0.25);
    font-size: 16px;
    font-weight: 400;
  }

section{
    position: relative;
    min-height: 100vh;
    background: #666;
    display: flex;
    justify-content: center;
    align-items: center;
}

section .container{
    position: relative;
    width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

section .container .user{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

section .container .user .img-box{
    position: relative;
    width: 50%;
    height: 100%;
    transition: 0.5s;
}

section .container .user .img-box .background-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

section .container .user .img-box .background-area .background{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/bg.png") no-repeat;
    background-size: 100% 100%;
    z-index: 0;
}

section .container .user .img-box .background-area .background .logo-container{
    margin-top: 40px;
    margin-left: 40px;
}

section .container .user .img-box .background-area .background .logo-container img{
    /*width: 113px;*/
    width: 200px;
}

section .container .user .img-box .background-area .animate-box{
    position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

section .container .user .img-box .background-area .animate-box .animate-container{
    transform: translateY(-15px);
    width: 230px;
    max-width: 230px;
    min-width: 230px;
    height: 280px;
    max-height: 280px;
    min-height: 280px;
    background: transparent;
    position: relative;
    animation: ani-container 3s cubic-bezier(0.46,0.03,0.52,0.96) infinite;
    animation-delay: 3s;
    animation-play-state: paused;
}

@keyframes ani-container {
    0%{
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0);
    }
    100%{
        transform: translateY(-15px);
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .bottom-box-1{
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/bottom.png") no-repeat;
    background-size: 100% 100%;
    transform-origin: right bottom;
    animation: ani-bottom-box-1 450ms forwards;
    animation-delay: 1ms;
    z-index: 6;
    animation-play-state: paused;
    transform: rotate(60deg);
    opacity: 0;
}

@keyframes ani-bottom-box-1 {
    0%{
        transform: rotate(60deg);
        opacity: 0;
    }
    100%{
        transform: rotate(0);
        opacity: 1;
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .bottom-box-2{
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/bottom.png") no-repeat;
    background-size: 100% 100%;
    transform-origin: left bottom;
    animation: ani-bottom-box-2 450ms forwards;
    animation-delay: 1ms;
    z-index: 6;
    animation-play-state: paused;
    transform: rotate(-60deg);
    opacity: 0;
}

@keyframes ani-bottom-box-2 {
    0%{
        transform: rotate(-60deg);
        opacity: 0;
    }
    100%{
        transform: rotate(0);
        opacity: 1;
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .bottom-box-3{
    position: absolute;
    width: 62%;
    height: 50%;
    right: 0;
    bottom: 0;
    background: url("../img/bottom2.png") no-repeat;
    background-size: 100% 100%;
    transform-origin: 115%;
    z-index: 7;
    animation: ani-bottom-box-3 300ms forwards ease-out;
    animation-play-state: paused;
    animation-delay: 360ms;
    transform: rotateY(110deg);
    opacity: 0;
}

@keyframes ani-bottom-box-3 {
    0%{
        transform: rotateY(110deg);
        opacity: 0;
    }
    10%{
        transform: rotateY(110deg);
        opacity: 1;
    }
    100%{
        transform: rotateY(0);
        opacity: 1;
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .bottom-box-4{
    position: absolute;
    width: 62%;
    height: 0;
    left: 30%;
    top: 50%;
    background: url("../img/bottom3.png") no-repeat;
    background-size: 100% 100%;
    z-index: 7;
    animation: ani-bottom-box-4 180ms forwards;
    animation-delay: 855ms;
    animation-play-state: paused;
    opacity: 0;
}

@keyframes ani-bottom-box-4 {
    0%{
        height: 0;
        opacity: 0;
    }
    100%{
        height: 26%;
        opacity: 1;
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .dots-box{
    position: absolute;
    top: 26%;
    left: -15%;
    width: auto;
    height: auto;
    display: flex;
    z-index: 4;
    transform-origin: center;
    animation: ani-dots-box 630ms forwards cubic-bezier(0.4,0,1,1);
    animation-delay: 525ms;
    animation-play-state: paused;
    opacity: 0;
    transform: rotate(-30deg);
}

@keyframes ani-dots-box {
    0%{
        left: -15%;
        opacity: 0;
        transform: rotate(-30deg);
    }
    100%{
        left: 10%;
        opacity: 1;
        transform: rotate(-90deg);
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .dots-box .dot{
    position: relative;
    user-select: none;
    width: 4px;
    height: 4px;
    margin-left: 7px;
    background: #fff;
    font-weight: 600;
    line-height: 0;
    border: none;
    outline: none;
    border-radius: 50%;
    animation: ani-dot 630ms forwards;
    animation-delay: 525ms;
    animation-play-state: paused;
}

@keyframes ani-dot {
    0%{
        opacity: 0;
        width: 8px;
        height: 8px;
        margin-left: 25px;
    }
    100%{
        opacity: 1;
        width: 4px;
        height: 4px;
        margin-left: 7px;
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .column1-black{
    position: absolute;
    width: 35%;
    height: 55%;
    left: 15%;
    top: 0;
    background: url("../img/column1_black.png") no-repeat;
    background-size: 100% 100%;
    z-index: 2;
    animation: ani-column-black 690ms forwards cubic-bezier(0.4,0,1,1);
    animation-delay: 525ms;
    opacity: 0;
    transform: translateY(70%);
    animation-play-state: paused;
}

@keyframes ani-column-black {
    0%{
        opacity: 0;
        transform: translateY(70%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .column1-blue{
    position: absolute;
    width: 35%;
    height: 45%;
    left: 15%;
    top: 10%;
    background: url("../img/column1_blue.png") no-repeat;
    background-size: 100% 100%;
    z-index: 3;
    animation: ani-column1-blue 1215ms forwards;
    opacity: 0;
    transform: translateY(60%);
    animation-play-state: paused;
}

@keyframes ani-column1-blue {
    0%{
        opacity: 0;
        transform: translateY(60%);
    }
    25%{
        opacity: 0.7;
        transform: translateY(60%);
    }
    65%{
        opacity: 1;
        transform: translateY(60%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .circle-box{
    position: absolute;
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    background-size: 100% 100%;
    z-index: 4;
    top: 5%;
    left: calc(50% - 30px);
    transform: translateY(190%);
    animation: ani-circle-box 1005ms forwards;
    animation-delay: 570ms;
    animation-play-state: paused;
    opacity: 0;
}

@keyframes ani-circle-box {
    0%{
        transform: translateY(210%);
        opacity: 0;
    }
    5%{
        transform: translateY(190%);
        opacity: 1;
    }
    62%{
        transform: translateY(190%);
        opacity: 1;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .circle-box .left-semi-circle{
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 4;
    background: url("../img/semi_circle_blue.png") no-repeat;
    background-size: 100% 100%;
    transform: rotateY(-180deg);
    transform-origin: left;
    animation: ani-left-semi-circle 330ms forwards;
    animation-delay: 1605ms;
    animation-play-state: paused;
}

@keyframes ani-left-semi-circle {
    0%{
        transform: rotateY(-180deg);
        right: 0;
    }
    100%{
        transform: rotateY(0);
        right: 3%;
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .circle-box .right-semi-circle{
    position: absolute;
    width: 50%;
    height: 99%;
    top: 0;
    right: 3%;
    z-index: 3;
    background: url("../img/semi_circle_deepBlue.png") no-repeat;
    background-size: 100% 100%;
    animation: ani-right-semi-circle 255ms forwards;
    animation-delay: 2520ms;
    animation-play-state: paused;
}

@keyframes ani-right-semi-circle {
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-22%);
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .circle-box .mask-circle{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: #2d2d2d;
    z-index: 5;
    animation: ani-mask 675ms forwards;
    animation-delay: 600ms;
    animation-play-state: paused;
    opacity: 1;
}

@keyframes ani-mask {
    0%{
        opacity: 1;
    }
    88%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .column2-z1{
    position: absolute;
    width: 20%;
    height: 25%;
    background: url("../img/column2-z1.png") no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    left: 48%;
    top: 28%;
    animation: ani-column2-z1 195ms forwards;
    animation-delay: 1620ms;
    animation-play-state: paused;
    opacity: 0;
}

@keyframes ani-column2-z1 {
    0%{
        opacity: 1;
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .column2-z2{
    position: absolute;
    width: 19%;
    height: 25%;
    background: url("../img/column2-z2.png") no-repeat;
    background-size: 100% 100%;
    z-index: 2;
    left: 49%;
    top: 32%;
    animation: ani-column2-z2 1455ms forwards;
    animation-delay: 780ms;
    animation-play-state: paused;
    opacity: 0;
}

@keyframes ani-column2-z2 {
    0%{
        opacity: 0;
        transform: translateY(72%);
    }
    2%{
        opacity: 1;
        transform: translateY(50%);
    }
    78%{
        opacity: 1;
        transform: translateY(50%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .column2-z3{
    position: absolute;
    width: 19%;
    height: 16%;
    background: url("../img/column2-z3.png") no-repeat;
    background-size: 100% 100%;
    z-index: 3;
    left: 114px;
    top: 35%;
    animation: ani-column2-z3 60ms forwards;
    animation-delay: 840ms;
    animation-play-state: paused;
    opacity: 0;
}

@keyframes ani-column2-z3 {
    0%{
        opacity: 1;
        transform: translateY(95%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .column2-lines{
    position: absolute;
    width: 10%;
    height: 7%;
    background: url("../img/lines.png") no-repeat;
    background-size: 100% 100%;
    z-index: 3;
    left: 63%;
    top: 37%;
    opacity: 0;
    animation: ani-column2-lines 900ms forwards;
    animation-delay: 1725ms;
    animation-play-state: paused;
}

@keyframes ani-column2-lines {
    0%{
        opacity: 1;
        width: 0;
    }
    100%{
        opacity: 1;
        width: 10%;
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .column3-z1{
    position: absolute;
    width: 11%;
    height: 17%;
    background: url("../img/semi_circle_black.png") no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    right: 7%;
    top: 40%;
    opacity: 0;
    animation: ani-column3-z1 975ms forwards;
    animation-delay: 960ms;
    animation-play-state: paused;
}

@keyframes ani-column3-z1 {
    0%{
        opacity: 0;
        transform: translateY(60%);
    }
    1.5%{
        opacity: 1;
        transform: translateY(45%);
    }
    80%{
        opacity: 1;
        transform: translateY(45%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

section .container .user .img-box .background-area .animate-box .animate-container .column3-z2{
    position: absolute;
    width: 15%;
    height: 27%;
    background: url("../img/semi_circle_blue.png") no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    right: 12%;
    top: 37%;
    animation: ani-column3-z2 495ms forwards;
    animation-delay: 960ms;
    opacity: 0;
    animation-play-state: paused;
}

@keyframes ani-column3-z2 {
    0%{
        opacity: 0;
        transform: translateY(50%);
    }
    3%{
        opacity: 1;
        transform: translateY(30%);
    }
    72%{
        opacity: 1;
        transform: translateY(30%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

section .container .user .form-box{
    position: relative;
    width: 50%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    transition: 0.5s;
}

section .container .user .form-box .language-box{
    position: absolute;
    right: 5%;
    top: 5%;
    display: none;
}

section .container .user .form-box .language-box .dropdown-toggle{
    width: 42px;
    height: 24px;
    border: none;
    outline: none;
}

section .container .user .form-box .language-box .dropdown-toggle:focus{
    border: none;
    background-color: transparent;
}

section .container .user .form-box .language-box .dropdown-toggle:active{
    border: none;
    background-color: transparent;
    box-shadow: none;
}

section .container .user .form-box .language-box .dropdown-toggle:hover{
    border: none;
    background-color: transparent;
    box-shadow: none;
}

section .container .user .form-box .language-box .language-image{
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

section .container .user .form-box .language-box .glyphicon-chevron-down{
    color: #89898A;
    font-size: 10px
}


section .container .user .form-box .language-box .language-image-big{
    width: 35px;
    height: 35px;
}

section .container .user .form-box .language-box .dropdown .self-menu{
    min-width: 62px !important;
    background: #eee;
}

section .container .user .form-box .language-box .dropdown .self-menu li{
    text-align: center;
    margin-top: 3px;
}

section .container .user .form-box .language-box .dropdown .self-menu li .lang-icon{
    padding: 5px 0;
}

section .container .user .form-box .language-box .dropdown .self-menu li:hover{
    cursor: pointer;
    background: #ccc;
}

section .container .user .form-box .form-content{
    width: 380px;
    max-width: 380px;
    min-width: 380px;
    display: flex;
    overflow: hidden;
    margin-top: 20px;
}

section .container .user .form-box .form-content .form-slide{
    width: 380px;
    height: 590px;
    max-width: 380px;
    min-width: 380px;
    transition: 0.5s;
}



section .container .user .form-box form .form-header {
    width: 100%;
    height: 40px;
    display: flex;
    margin-bottom: 20px;
}

section .container .user .form-box form .form-header .form-title {
    width: calc(100% - 60px);
    height: 34px;
}

section .container .user .form-box form .form-header .more-login {
    width: 60px;
    height: 30px;
    display: flex;
}

section .container .user .form-box form .form-header .more-login .entrance {
    display: none;
}
section .container .user .form-box form .form-header .more-login .entrance .entrance-pic-bg{
    width: 30px;
    height: 30px;
    background-color: #2263D9;
}
section .container .user .form-box form .form-header .more-login .entrance span{
    color: #fff;
    width: 30px;
    height: 30px;
    z-index: 2;
    text-align: center;
    line-height: 30px;
    position: relative;
    left: 6px;
}
section .container .user .form-box form .form-header .more-login:hover .entrance {
    display: block;
}

section .container .user .form-box form .form-header .more-login:hover .more-pic {
    display: none;
}

section .container .user .form-box form .form-header .more-pic {
    width: 30px;
    height: 30px;
    position: relative;
    margin-left: 30px;
}

section .container .user .form-box form .form-header .more-pic .more-pic-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border: 15px solid transparent;
    border-top-color: #2263D9;
    border-right-color: #2263D9;
    z-index: 1;
}

section .container .user .form-box form .form-header .more-pic span {
    color: #fff;
    font-size: 12px;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 5px;
    top: -11px;
    z-index: 2;
    text-align: center;
    line-height: 30px;
}

section .container .user .form-box form .form-header .more-login span i {
    font-size: 16px;
}

section .container .user .form-box form .form-header .more-login span i:hover {
    cursor: pointer;
}

section .container .user .form-box form .form-header .form-title h2{
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 34px;
    color: rgba(0,0,0,0.85);
    font-weight: 500;
    font-family: PingFangSC-Medium, sans-serif;
    user-select: none;
}

section .container .user .form-box form .login-form-explain{
    width: 100%;
    margin: 15px 0;
    text-align: left;
    font-family: PingFangSC-Regular,sans-serif;
    font-size: 16px;
    color: #F23A50;
    letter-spacing: 0;
    line-height: 18px;
}

section .container .user .form-box form .input-box{
    margin-top: 15px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    padding: 9px 10px 5px 0px;
    color: #333;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
    border-bottom: 1px solid #00000019;
    display: flex;
    align-items: center;
}

section .container .user .form-box form .has-error.input-box{
    border-color: #F23A50;
}



section .container .user .form-box form .input-box input{
    height: 36px;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 16px;
    color: rgba(0, 0, 0, .85);
    letter-spacing: 0;
    padding: 0;
    margin-left: 12px;
}

/* section .container .user .form-box form .input-box select{
    height: 36px;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 16px;
    color: rgba(0, 0, 0, .85);
    letter-spacing: 0;
    padding-left: 12px;
    width: 140px;
} */

#loginFormPhone  .dropdown {
    display: inline-block;
    margin-left: 12px;

}



#loginFormPhone  .dropdown .btn.dropdown-toggle {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    margin: 0;
    padding: 0;
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0,0,0,0.85) !important;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.dropdown .btn.dropdown-toggle .dropdown-text{
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: left;
    width: 100px;
    color: rgba(0,0,0,0.85) !important;
}

.dropdown .dropdown-menu {
    width: 100%;
    top: calc( 100% + 4px );
    max-height: 400px;
    overflow-y: auto;
}

.dropdown .dropdown-menu .dropdown-menu-item {
    margin: 4px 8px;
    padding: 4px;
    cursor: pointer;
    font-family: PingFangSC-Regular, sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 22px;
    font-weight: 400;
    border-radius: 2px;
}

.dropdown .dropdown-menu .dropdown-menu-item:hover {
    background: #E6F0FF;
    color: #0840F8;
}

.dropdown .dropdown-menu .dropdown-menu-item-selected .dropdown-menu-item  {
    background: #E6F0FF;
    color: #0840F8;
}

#loginFormPhone  #phone {
    width: 220px;

}

section .container .user .form-box form .input-box input:-webkit-autofill{
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    border: 0 solid #ccc !important;
}

section .container .user .form-box form .input-box i{
    width: 18px;
    height: 24px;
    color: rgba(0, 0, 0, .25);
}

section .container .user .form-box form .input-box .look{
    display: none;
}

section .container .user .form-box form .input-box .look:hover{
    cursor: pointer;
}

section .container .user .form-box form #loginFormAccountBtn{
    position: relative;
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 12px 0 0;
    font-family: PingFangSC-Medium, sans-serif;
    font-weight: 500;
    max-width: 100%;
    background: #82ACFF;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    /*letter-spacing: 8px;*/
    transition: 0.5s;
    border-radius: 2px;
}

section .container .user .form-box form #loginPhoneLoginBtn{
    position: relative;
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 12px 0 0;
    font-family: PingFangSC-Medium, sans-serif;
    font-weight: 500;
    max-width: 100%;
    background: #82ACFF;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: 0.5s;
    border-radius: 2px;
}
section .container .user .form-box form #loginEmailLoginBtn {
    position: relative;
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 12px 0 0;
    font-family: PingFangSC-Medium, sans-serif;
    font-weight: 500;
    max-width: 100%;
    background: #82ACFF;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: 0.5s;
    border-radius: 2px;
}

section .container .user .form-box form #loginFormAccountBtn:hover{
    background: #598BFF !important;
}

section .container .user .form-box form #loginFormAccountBtn:focus{
    background: #002AD1 !important;
}

section .container .user .form-box form #loginPhoneLoginBtn:hover{
    background: #598BFF !important;
}

section .container .user .form-box form #loginPhoneLoginBtn:focus{
    background: #002AD1 !important;
}
section .container .user .form-box form #loginEmailLoginBtn:hover {
    background: #598BFF !important;
}

section .container .user .form-box form #loginEmailLoginBtn:focus {
    background: #002AD1 !important;
}

section .container .user .form-box form .login-account-captcha-image:hover{
    cursor: pointer;
}

section .container .user .form-box form .login-account-captcha-image{
    height: 36px;
}

section .container .user .form-box form .forget-password{
    position: relative;
    margin-top: 20px;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    color: #555;
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
}

section .container .user .form-box form .forget-password #forgetPassword{
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: rgba(0, 0, 0, .45);
    font-family: PingFangSC-Regular, sans-serif;
}

section .container .user .form-box form .forget-password #forgetPassword:hover{
    cursor: pointer;
    color: #2263D9;
}

section .container .user .form-box form .text-with-line{
    position: relative;
    margin-top: 24px;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, .45);
    text-transform: uppercase;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

section .container .user .form-box form .text-with-line .line{
    content: ' ';
    display: inline-block;
    width: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

section .container .user .form-box form .text-with-line span{
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    color: rgba(0, 0, 0, .45);
    font-family: PingFangSC-Regular, sans-serif;
    margin: 0 8px;
    user-select: none;
}

section .container .user .form-box form .login-form-button-captcha{
    background: transparent;
    padding: 0;
    border: none;
    outline: none;
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #0840F8;
    letter-spacing: 0;
}
section .container .user .form-box form .login-email-form-button-captcha {
    background: transparent;
    padding: 0;
    border: none;
    outline: none;
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #0840F8;
    letter-spacing: 0;
}


section .container .user .form-box .user-form .other-login{
    width: 100%;
    height: 40px;
    display: flex;
    margin: 20px auto;
}

section .container .user .form-box .user-form .other-login .other-login-image-box{
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

section .container .user .form-box .user-form .other-login .other-login-image-box img{
    width: 40px;
    height: 40px;
}

section .container .user .form-box .user-form .other-login .other-login-image-box .other-login-open-btn{
    background: transparent;
    outline: none;
    border: none;
}

section .container .user .form-box .user-form .other-login .other-login-image-box img:hover{
    cursor: pointer;
}

/* notification */
.has-error .login-form-input-prefix {
    color: #F23A50;
}

.has-error-msg{
    position: absolute;
    color: #F23A50;
    right: 0;
    top: 52px;
    font-weight: 400;
    font-size: 12px;
    font-family: PingFangSC-Regular, sans-serif;
}

.footer {
    bottom: 10px;
    padding: 24px 50px;
    font-family: PingFangSC-Regular, sans-serif;
    color: rgba(0,0,0,0.45);
    font-size: 12px;
    text-align: center;
    width: 100%;
    position: fixed;
    font-weight: 400;
}

/* notification */

.login-notification {
    position: fixed;
    right: 0;
    bottom: 60px;
    background-color: transparent
}

.login-alert {
    position: relative;
    padding: 16px 24px;
    margin-right: 24px;
    margin-bottom: 16px;
    width: 384px;
    background-color: #fff;
    font-size: 18px;
    border-radius: .02rem;
    webkit-box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.12);
    box-shadow: 0 0.04rem 0.12rem rgba(0, 0, 0, 0.12);
    animation: notificationMove 0.5s;
    -webkit-animation: notificationMove 0.5s;
}

@keyframes notificationMove {
    0% {
        right: -100px;
    }

    100% {
        right: 0;
    }
}

@-webkit-keyframes notificationMove

/* Safari and Chrome */
    {
    0% {
        right: -100px;
    }

    100% {
        right: 0;
    }
}

.login-alert .glyphicon-ok {
    position: absolute;
    top: 16px;
}

.login-alert .glyphicon-exclamation-sign {
    position: absolute;
    top: 16px;
}

.login-alert .glyphicon-remove {
    font-size: 12px;
    color: rgba(0, 0, 0, .45);
    position: absolute;
    right: 22px;
    top: 16px;
    outline: none;
    cursor: pointer;
}

.login-alert .login-notification-content {
    margin-left: 48px;
}

.login-notification-error {
    color: #FF4141;
    font-size: 24px;
}

.login-notification-success {
    color: #00bf96;
    font-size: 24px;
}


@media (max-width: 840px) {
    section .container{
        max-width: 600px;
    }

    section .container .user .img-box{
        display: none;
    }

    section .container .user .form-box{
        width: 100%;
    }
}



.mask svg {
    width: 75px;
    height: 75px;
    top: 50%;
    position: relative;
    animation: progress-rotate 1.4s linear infinite;
}

.mask svg circle{
    fill: none;
    stroke: #3c4fe0;
    stroke-width: 4;
    stroke-dasharray: 80px 200px;
    stroke-dashoffset: 0;
}

@keyframes progress-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(1turn);
    }
}

@-webkit-keyframes progress-rotate {
0% {
    transform: rotate(0deg);
}

100% {
    transform: rotate(1turn);
}
}
