.loginBg{
    position: relative;
    height: 100vh;
    background: url(/images/loginIndexBg.jpg) no-repeat bottom center;
    background-size: cover;
}
.header{
    padding-top: 2.9%;
}
.header .logo img{
    height: 48px;
}
.loginBox{
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.loginBox .text{
    margin-bottom: 90px;
}
.loginBox .text img{
    height: 92px;
    display: block;
    margin: 0 auto;
}

.loginBox .newbtn .newbox {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loginBox .newbtn .newbox .item {
    width: 48.33%;
    height: 320px;
    background: url(/images/newLogo1Bg.png) no-repeat center bottom;
    background-size: cover;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(61,
        103,
        188,
        0.22);
    transition: 0.3s;
    
}

.loginBox .newbtn .newbox .item:nth-child(2) {
    background: url(/images/newLogo2Bg.png) no-repeat center bottom;
    background-size: cover;
}

.loginBox .newbtn .newbox .item .newlogo {
    margin-bottom: 52px;
    margin-top: -20px;
}

.loginBox .newbtn .newbox .item .newlogo img {
    max-width: 100%;
    height: 65px;
}


.loginBox .newbtn .newbox .item p {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 54px;
    background: #fff;
    border-radius: 447px;
    line-height: 54px;
    font-size: 20px;
    color: #084AB0;
    transition: 0.3s;
    font-weight: bold;
    width: 254px;
    text-align: center;
    position: relative;
    z-index: 1;
    /* box-shadow: 0 3px 3px #EAEFF7; */
    border: 1px solid rgba(22,94,251,0.2);

}

.loginBox .newbtn .newbox .item p em {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 44px; */
    height: 28px;
    position: relative;
    z-index: 2;
    border-radius: 15px;
    margin-left: 25px;
}

.loginBox .newbtn .newbox .item p span {
    position: relative;
    z-index: 2;
}

.loginBox .newbtn .newbox .item p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/btnBg.png) no-repeat center center;
    background-size: cover;
    opacity: 0;
    transition: 0.3s;
    overflow: hidden;
  
}

.loginBox .newbtn .newbox .item:hover p {
    color: #fff;
    /* box-shadow: 0 3px 3px #D4E5FF; */
    border: 1px solid rgba(22, 94, 251, 0);
}

.loginBox .newbtn .newbox .item:hover p::before {
    /* transform: translateY(-6px); */
    opacity: 1;

}

.loginBox .newbtn .newbox .item:hover p em {
    /* background: rgba(255, 255, 255, 0.51); */
}

.loginBox .newbtn .newbox .item:hover p em img {
    filter: brightness(0) invert(1);
}

.loginBox .newbtn .newbox .item a:hover {
    color: #fff;
    background: #084AB0;
}
.footer{
    background: rgba(8,38,128,0.17);

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 16px;
    color: #fff;
    backdrop-filter: blur(10px);
}
.footer .box{
        height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.footer .box a{
    padding: 0 5px;
    transition: 0.3s;
}
.footer .box a:hover{
    text-decoration: underline;
}
.footer::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(10px);
}