.loading{width: 100%;margin-top: 0.8rem;display: flex;justify-content: center;}
.loading .box{width: 2rem;display: flex;justify-content: center;flex-wrap: wrap;}
.loading .box .circle{width: 0.48rem;height: 0.48rem;position: relative;}
.loading .box .circle span{display: inline-block;position: absolute;}
.loading .box .circle span:nth-child(1){left: 0.04rem;width: 0.03rem;height: 0.03rem;top: 0.03rem;border-radius: 0.1rem;background-color: #0E4073;opacity: 0.6;animation: toCenter 1.5s linear 1s infinite;}
.loading .box .circle span:nth-child(2){right: 0.04rem;width: 0.045rem;height: 0.045rem;top: 0.025rem;border-radius: 0.1rem;background-color: #0E4073;opacity: 0.8;animation: toCenter 2s linear 2s infinite;}
.loading .box .circle span:nth-child(3){left: 0;width: 0.025rem;height: 0.025rem;top: 0.21rem;border-radius: 0.1rem;background-color: #0E4073;opacity: 0.2;animation: toCenter 1.8s linear 3s infinite;}
.loading .box .circle span:nth-child(4){right: 0;width: 0.0375rem;height: 0.0375rem;top: 0.27rem;border-radius: 0.1rem;background-color: #0E4073;opacity: 0.6;animation: toCenter 2.1s linear 2s infinite;}
.loading .box .circle span:nth-child(5){left: 0.03rem;width: 0.03rem;height: 0.03rem;bottom: 0.03rem;border-radius: 0.1rem;background-color: #0E4073;opacity: 0.4;animation: toCenter 1.3s linear 1.5s infinite;}
.loading .box .circle .c1{width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;position: absolute;left: 0;top: 0;animation: clockwise 4s linear infinite;}
.loading .box .circle .c2{width: 100%;height: 100%;display: flex;justify-content: center;align-items: center;position: absolute;left: 0;top: 0;animation: anticlockwise 3s linear infinite;}
.loading .box .circle .c1 img{max-width: 0.34rem;}
.loading .box .circle .c2 img{max-width: 0.2rem;}
.loading .box .txt{font-size: 0.14rem;margin-top: 0.2rem;}

@keyframes clockwise {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}

@keyframes anticlockwise {
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(-360deg);
    }
}

@keyframes toCenter {
    from{}
    to{
        opacity: 0;
    }
}

.pages{
    width: 100%;

}
.pages ul{
    width: 100%;
    display: flex;
    justify-content: center;
}
.pages ul .page-item{
    width: 38px;
    height: 38px;
    margin: 0 5px;
    border-radius: 6px;
    border: 1px solid #ddd;
    overflow: hidden;
}
.pages ul .page-item:first-of-type,.pages ul .page-item:last-of-type{
    width: 72px;
}
.pages ul .page-item span,.pages ul .page-item a{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}
.pages ul .page-item a:hover{
    background-color: #A52D2F;
    border: 1px solid #A52D2F;
    color: #fff;
}
.pages ul .page-item.active a,.pages ul .page-item.active span{
    background-color: #A52D2F;
    border: 1px solid #A52D2F;
    color: #fff;
}



/*其他页 导航*/
.page_nav{
    width: 100%;
    height: 1.12rem;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #EBEDF0;
}
.page_nav .box{
    width: 12.8rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    margin: auto;
    border-radius: 0.24rem;
    padding: 0.16rem 0.24rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.page_nav .box .bottom{
    width: 100%;
    height: 0.64rem;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.page_nav .box .bottom .logo{
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 0.18rem;
    white-space: nowrap;
}
.page_nav .box .bottom .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-right: 0.24rem;
}
.page_nav .box .bottom .nav_list{
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    margin-right: 0.28rem;
}
.page_nav .box .bottom .nav_list .item{
    font-size: 0.18rem;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 0.24rem;
    position: relative;
    transition: 0.3s;
}
.page_nav .box .bottom .nav_list .item::after{
    content: '';
    width: 0%;
    height: 0.04rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-color: #0E4073;
    transition: 0.3s;
    border-radius: 0.24rem;
}
.page_nav .box .bottom .nav_list .item.on::after{
    width: 100%;
}
.page_nav .box .bottom .nav_list .item.on{
    color: #0E4073;
    font-weight: bold;
}
.page_nav .box .bottom .nav_list .item:hover{
    color: #0E4073;
    font-weight: bold;
}
.page_nav .box .bottom .nav_list .item:hover::after{
    width: 100%;
}
.page_nav .box .bottom .tel{
    width: 2.5rem;
    height: 0.44rem;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0.24rem;
    border-left: 1px solid #E1E3E5;
}
.page_nav .box .bottom .tel .t1{
    /*font-size: 0.24rem;*/
    font-weight: bold;
    font-size: 0.18rem;
    line-height: 1;
    white-space: nowrap;
}
.page_nav .box .bottom .tel .t2{
    font-size: 0.14rem;
    line-height: 1;
    margin-top: 0.08rem;
    white-space: nowrap;
    color: #7D7E80;
    text-indent: 2px;
}
.page_nav .box .bottom .tel .btn{
    width: 1.12rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #A52D2F;
    border-radius: 0.24rem;
    transition: 0.3s;
    cursor: pointer;
    font-size: 0.16rem;
}
.page_nav .box .bottom .tel .btn:hover{
    opacity: 0.8;
}
.page_nav .box .bottom .tel.at{
    width: auto;
}

.footer{
    width: 100%;
    height: 3.6rem;
    background-color: #000D1A;
}
.footer .content{
    width: 12.8rem;
    height: 100%;
    margin: auto;
    padding: 0.8rem 0 0;
    box-sizing: border-box;
}
.footer .content .up{
    width: 100%;
    display: flex;
    height: 1.26rem;
    justify-content: space-between;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);;
}
.footer .content .up .left{
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.footer .content .up .left .a1{
    width: 3.5rem;
    height: 100%;
    position: relative;

}
.footer .content .up .left .a1::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 53%, rgba(255, 255, 255, 0) 100%) ;
}
.footer .content .up .left .a1 p{
    display: block;
    width: 100%;
    color: #fff;
    line-height: 1;
}
.footer .content .up .left .a1 p:nth-child(1){
    font-size: 0.2rem;
    font-weight: bold;
    margin-bottom: 0.24rem;
}
.footer .content .up .left .a1 p:nth-child(2){
    width: 0.24rem;
    height: 0.02rem;
    background-color: #fff;
}
.footer .content .up .left .a1 p:nth-child(3){
    font-size: 0.16rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.24rem;
}
.footer .content .up .left .a1 p:nth-child(4){
    /*font-size: 0.28rem;*/
    font-size: 0.18rem;
    font-weight: bold;
    margin-top: 0.16rem;
}

.footer .content .up .left .a2{
    width: 6.1rem;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.footer .content .up .left .a2::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 53%, rgba(255, 255, 255, 0) 100%) ;
}
.footer .content .up .left .a2 p{
    display: block;
    width: 100%;
    color: #fff;
    line-height: 1;
    text-align: center;
}
.footer .content .up .left .a2 p:nth-child(1){
    font-size: 0.2rem;
    font-weight: bold;
    margin-bottom: 0.24rem;
}
.footer .content .up .left .a2 p:nth-child(2){
    width: 0.24rem;
    height: 0.02rem;
    background-color: #fff;
}
.footer .content .up .left .a2 p:nth-child(3){
    font-size: 0.16rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.24rem;
}
.footer .content .up .left .a2 p:nth-child(4){
    font-size: 0.16rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.24rem;
}

.footer .content .up .left .a3{
    height: 100%;
    position: relative;
    /*margin-left: 0.88rem;*/
    width: 3.5rem;
}

.footer .content .up .left .a3 p{
    display: block;
    width: 100%;
    color: #fff;
    line-height: 1;
}
.footer .content .up .left .a3 p:nth-child(1){
    font-size: 0.2rem;
    font-weight: bold;
    margin-bottom: 0.24rem;
}
.footer .content .up .left .a3 p:nth-child(2){
    width: 0.24rem;
    height: 0.02rem;
    background-color: #fff;
}
.footer .content .up .left .a3 a{
    display: block;
    width: 100%;
    font-size: 0.16rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.24rem;
    line-height: 1;
}


.footer .content .dw{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.34rem 0;
}
.footer .content .dw .left{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.14rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    width: 100%;
    text-align: center;
}
.footer .content .dw .left a{
    margin-left: 0.2rem;
    color: rgba(255, 255, 255, 0.6);

}
.m-footer{
    display: none;
}

.sideBox{
    width: 0.8rem;
    background: #d7e4f5;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0.8rem;
    padding: 0 0.04rem 0.04rem;
    box-sizing: border-box;
    z-index: 99;
    transition: 0.3s;
    display: none;
}
.sideBox .item{
    width: 100%;
    height: 0.72rem;
    margin-top: 0.04rem;
    position: relative;
    cursor: pointer;
}
.sideBox .item .box{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 50;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.sideBox .item .img{
    width: 0.28rem;
    height: 0.28rem;
}
.sideBox .item .img img{
    width: 100%;
    height: 100%;
}
.sideBox .item .img img:nth-of-type(2){
    display: none;
}
.sideBox .item .txt{
    width: 100%;
    font-size: 0.12rem;
    margin-top: 0.08rem;
    line-height: 1;
    color: #0E4073;
    text-align: center;
}
.sideBox .item .left_wx{
    position: absolute;
    right: 1rem;
    width: 1.2rem;
    height: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    display: none;
}
.sideBox .item .left_wx .left_wx_img{
    padding: 0.16rem;
    border-radius: 0.24rem;
    background: #d7e4f5;

}
.sideBox .item .left_wx .left_wx_img img{
    width: 0.88rem;
    border-radius: 0.08rem;
}
.sideBox .item::before{
    content: '';
    width: 0.8rem;
    height: 0.72rem;
    border-radius: 0.8rem;
    position: absolute;
    right: 0;
    top: 0;
    background: #d7e4f5;
    z-index: -1;
    opacity: 0;
}

.sideBox .item:hover .box{
    background-color: #0E4073;
}
.sideBox .item:hover .box .img img:nth-of-type(1){
    display: none;
}
.sideBox .item:hover .box .img img:nth-of-type(2){
    display: block;
}
.sideBox .item:hover .box .txt{
    color: #fff;
}
.sideBox .item:hover::before{
    opacity: 1;
    width: 2.16rem;
}
.sideBox .item:hover .left_wx{
    opacity: 1;
    display: block;
}
.sideBox .item .telBox{
    position: absolute;
    right: 1rem;
    width: 1.7rem;
    height: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.3s;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 0.2rem;
    font-weight: bold;
    background: #d7e4f5;
    border-radius: 0.24rem;

}
.sideBox .item:hover .telBox{
    opacity: 1;
    display: flex;
}
.sideBox .item.lt{
    display: none;
    transition: none;
}
.sideBox .item.lt::before{
    content: none;
}

@media screen and (max-width: 768px) {
    .page_nav .box .bottom .logo{
        font-size: 10px;
    }
    .page_nav .box .bottom .logo img{
        width: auto;
        margin-right: 8px;
    }
    .page_nav .box .bottom .tel.at{
        display: none;
    }
}
