/*footer*/
.footer *{
    font-size: 0.18rem;
}
.footer{
    background: #F8F8F8;
    padding-bottom: 0.7rem;
    box-sizing: border-box;
    padding-top: 0.78rem;
}
.footer .main{
    display: flex;
    justify-content: space-between;
    height: fit-content;
    flex-wrap: wrap;
}
.footer .foot_logo{
    width: fit-content;
    height: 0.69rem;
}
.footer .foot_logo img{
    object-fit: contain;
    width: 100%;
    height: 100%;
    /*filter: brightness(0);*/
}
.footer .footer_body{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer .footer_box{
    width: 4.03rem;
    margin-top: 0.4rem;
}
.footer .footer_box .footer_title{
    margin: 0 auto 0.17rem 0;
    font-family: 'Montserrat-Light';
    font-weight: 300;
    font-size: 0.2rem;
    color: #0F0F10;
}
.footer .footer_box .foot_txt{
    margin-bottom: 0.17rem;
    font-family: "Montserrat-Light";
    font-weight: 300;
    font-size: 0.16rem;
    color: #0F0F10;
    line-height: 1.25;
}
.footer .footer_box .foot_txt[href]{
    text-decoration: underline;
}
.footer .footer_box .foot_txt:last-child{
    margin-top: 0.05rem;
    margin-bottom: 0;
}
.footer .foot_hr{
    width: 0.01rem;
    height: 1.93rem;
    background: #D6D6D6;
    margin-top: 1.72rem;
    display: none;
}
.footer .foot_nav{
    margin-top: 0.4rem;
}
.footer .foot_nav a{
    font-family: "Montserrat-Light";
    font-weight: 300;
    font-size: 0.2rem;
    color: #000000;
    line-height: 1;
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 0.19rem;
}
.footer .foot_nav a:last-child{
    margin-bottom: 0;
}
.footer .foot_for{
    /*max-width: 2.2rem;*/
    margin-top: 0.4rem;
}
.footer .foot_for a{
    display: flex;
    align-items: center;
    column-gap: 0.1rem;
    margin-top: 0.31rem;
    font-family: "Montserrat-Light";
    font-weight: 300;
    font-size: 0.16rem;
    color: #696969;
}
.footer .foot_for .foot_tit{
    font-size: 0.2rem;
    color: #000000;
    margin: 0 auto 0.19rem;
    width: 100%;
    text-align: center;
    justify-content: center;
}
.footer .foot_for .foot_tit2{
    font-family: 'Montserrat-Light';
    font-weight: 300;
    font-size: 0.2rem;
    color: #FFFFFF !important;
    padding: 0.17rem 0.55rem;
    background: #D30001;
    border-radius: 0.29rem;
    width: fit-content;
    margin: 0.23rem auto 0;
}
.footer .foot_for a div{
    width: 0.25rem;
    height: 0.25rem;
    background: #E0E0E0;
    border-radius: 0.04rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer .footer_box .foot_txt:hover,
.footer .foot_nav a:hover,
.footer .foot_for a:hover{
    color: #D30001;
}
.footer .foot_for a:hover div{
    background: #D30001;
}
.footer .foot_for a:hover div img{
    filter: brightness(0) invert(1);
}









/* 左侧悬浮 */
.left_float{
    position: fixed;
    top: 50%;
    right: 0.21rem;
    transform: translateY(-50%);
    z-index: 99;
}
.left_float .nav_item{
    position: relative;
    margin: 0.04rem 0;
}
.left_float .nav_icon{
    width: 0.54rem;
    height: 0.54rem;
    background: #D30001;
    border-radius: 0.03rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.left_float .nav_icon img{
    width: 0.43rem;
    height: 0.43rem;
    object-fit: contain;
    transition: all 0.5s;
}
.left_float .nav_item:hover .nav_icon img{
    transform: scale(1.2);
}
.left_float .nav_item.goTop .nav_icon{
    height: 0.28rem;
}
.left_float .nav_item.goTop .nav_icon img{
    width: 0.18rem;
    height: 0.1rem;
    object-fit: contain;
}
.left_float .nav_item .nav_phone{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 0.54rem;
    line-height: 0.54rem;
    border-radius: 0.03rem;
    width: fit-content;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.1rem 0.01rem rgba(0,0,0,0.1);
    padding: 0 0.16rem;
    box-sizing: border-box;
    font-family: "Montserrat-Regular";
    font-weight: 400;
    font-size: 0.2rem;
    color: #D30001;
    white-space: nowrap;
    opacity: 0;
    right: -300%;
    transition: all 0.5s;
}
.left_float .nav_item:hover .nav_phone{
    opacity: 1;
    right: 0.6rem;
}
.left_float .nav_item .nav_code{
    position: absolute;
    top: 0;
    right: -300%;
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.1rem;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0rem 0rem 0.1rem 0.01rem rgba(0,0,0,0.1);
    opacity: 0;
    transition: all 0.5s;
}
.left_float .nav_item .nav_code img{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.left_float .nav_item:hover .nav_code{
    opacity: 1;
    right: 0.6rem;
}









@media screen and (max-width: 1043px) {
    .footer{
        padding-bottom: 56px;
        padding-top: 40px;
    }
    .footer .footer_box{
        width: 40%;
        margin-top: 30px;
    }
    .footer .foot_logo{
        max-width: 217px;
        height: 36px;
    }
    .footer .footer_box .footer_title{
        font-size: 18px;
        margin: 0px auto 20px 0;
    }
    .footer .footer_box .foot_txt{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .footer .foot_hr{
        width: 1px;
        height: 193px;
        margin: 170px 2% 0;
    }
    .footer .foot_nav{
        width: 26%;
        margin-top: 30px;
    }
    .footer .foot_nav a{
        font-size: 16px;
        margin-bottom: 20px;
    }
    .footer .foot_for{
        width: 26%;
        margin-top: 30px;
    }
    .footer .foot_for .foot_tit{
        font-size: 16px;
        margin: 0 auto 15px;
    }
    .footer .foot_for a{
        font-size: 16px;
        margin-top: 26px;
        column-gap: 8px;
    }
    .footer .foot_for a div{
        width: 24px;
        height: 24px;
        border-radius: 4px;
    }

    .footer .foot_for .foot_tit2{
        font-size: 16px;
        padding: 8px 22px;
        margin: 18px auto 0;
    }



    .left_float{
        right: 10px;
    }
    .left_float .nav_item{
        margin: 4px 0;
    }
    .left_float .nav_icon{
        width: 48px;
        height: 48px;
        border-radius: 3px;
    }
    .left_float .nav_item.goTop .nav_icon{
        height: 28px;
    }
    .left_float .nav_icon img{
        width: 80%;
        height: auto;
    }
    .left_float .nav_item.goTop .nav_icon img{
        width: 18px;
        height: auto;
    }
    .left_float .nav_item:hover .nav_phone{
        height: 48px;
        line-height: 48px;
        font-size: 16px;
        border-radius: 3px;
        padding: 0 10px;
    }
    .left_float .nav_item .nav_code{
        width: 120px;
        height: 120px;
        padding: 10px;
        display: flex;
    }
    .left_float .nav_item:hover .nav_phone,
    .left_float .nav_item:hover .nav_code{
        right: 52px;
    }
}
@media screen and (max-width: 769px) {
    .footer{
        padding: 60px 0 40px;
    }
    .footer .main{
        flex-wrap: wrap;
    }
    .footer .footer_box{
        width: 100%;
        margin: 26px 0 0;
    }
    .footer .foot_nav,
    .footer .foot_for,
    .footer .foot_hr{
        display: none;
    }
}








