/*footer*/

.footer{
    width: 100%;
    height: auto;
    background: #FAFAFA;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    padding-bottom: 1.6rem;
}
.foot_position{
    height: 1.2rem;
    display: flex;
    align-items: center;
    border-bottom: 0.01rem solid #EBEBEB;
    margin-bottom: 0.6rem;
}
.foot_position a{
    width: auto;
    height: auto;
    font-family: SC-Light;
    font-weight: 300;
    font-size: 0.18rem;
    color: #333333;
}
.foot_position span{
    width: 0.05rem;
    height: 0.09rem;
    margin: 0 0.23rem;
}
.footer .footer_top{
    display: flex;
    justify-content: space-between;
}
.footer .footer_top .foot_img{
    width: auto;
    height: 0.6rem;
    margin-bottom: 0.51rem;
}
.footer .footer_top .foot_img img{
    width: auto;
    height: 100%;
}
.footer .footer_fl .phone{
    display: flex;
    align-items: center;
    gap: 0.13rem;
    font-family: Poppins-Medium;
    font-weight: 500;
    font-size: 0.26rem;
    color: #000;
}
.footer .footer_fl .phone img{
    width: 0.24rem;
    height: 0.24rem;
    object-fit: contain;
}
.footer .footer_fl .email{
    font-family: SC-Light;
    font-weight: 300;
    font-size: 0.2rem;
    color: #808080;
    margin-top: 0.15rem;
    /*display: none;*/
}

.footer .foot_list{
    width: calc(100% - 3.74rem);
    display: flex;
    justify-content: space-between;
}
.footer .foot_list .foot_class1{
    font-family: SC-Normal;
    font-weight: 400;
    font-size: 0.18rem;
    color: #393939;
    margin-bottom: 0.16rem;
    width: 100%;
    height: auto;
}
.footer .foot_list .foot_class1:hover{
    color: #366D33;
}
.footer .foot_list .foot_li:first-child .foot_ul{
    display: block;
    width: fit-content;
}
.footer .foot_list .foot_li:first-child .foot_class2{
}
.footer .foot_list .foot_li:first-child .foot_class2:nth-child(2n){
    /* max-width: 1rem; */
}
.footer .foot_list .foot_class2{
    font-family: SC-Light;
    font-weight: 300;
    font-size: 0.14rem;
    color: #606060;
    margin-bottom: 0.08rem;
    height: auto;
    width: fit-content;
    white-space: nowrap;
}
.footer .foot_list .foot_class2:hover{
    color: #80A749;
}
.footer .foot_list .foot_li:last-child .foot_ul{
    display: flex;
    flex-wrap: wrap;
    width: 1.6rem;
    justify-content: space-between;
}
.footer .foot_list .foot_li:last-child .foot_ul a{
    width: 100%;
}





.footer .footer_bottom{
    border-top: 0.01rem solid #EBEBEB;
    width: 100%;
    height: 1.12rem;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.footer .footer_bottom .main{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .footer_bottom span{
    gap: 0.18rem;
}
.footer .footer_bottom span,
.footer .footer_bottom span a{
    width: auto;
    height: auto;
    font-family: SC-Normal;
    font-weight: 400;
    font-size: 0.14rem;
    color: #C1C1C1;
    display: flex;
}




.foot_code{
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.foot_code .code_list{
    cursor: pointer;
    position: relative;
}
.foot_code .code_list .code_icon{
    width: 0.3rem;
    height: 0.3rem;
    background: #C5C5C5;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot_code .code_list .code_icon img{
    max-width: 0.21rem;
    max-height: 0.21rem;
    object-fit: contain;
}
.foot_code .code_list .code_img{
    display: none;
    position: absolute;
    width: 1.04rem;
    height: 1.04rem;
    bottom: 0.35rem;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border-radius: 0.05rem;
    border: 0.01rem solid #80A749;
    padding: 0.04rem;
    box-sizing: border-box;
    z-index: 9;
}

.foot_code .code_list .code_img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.foot_code .code_list:hover .code_icon{
    background: linear-gradient( 268deg, #80A749 0%, #366D33 100%);
}
.foot_code .code_list:hover .code_img{
    display: block;
}












@media screen and (max-width: 1024px) {
    .footer {
        height: auto !important;
        padding-bottom: 156px;
        padding-top: 0.96rem;
    }
    .foot_position{
        display: none;
    }
    .foot_position span{
        margin: 0 0.15rem;
    }
    .foot_position a{
        font-size: 12px;
    }
    .footer .foot_list{
        display: none;
    }
    .footer .footer_top .footer_fl{
        width: 100%;
    }
    .footer .footer_top .foot_img{
        height: 86px;
        display: flex;
        justify-content: center;
        display: none;
    }
    .footer .footer_fl .phone{
        justify-content: center;
        font-size: 24px;
    }
    .footer .footer_fl .phone a{
        width: auto;
    }
    .footer .footer_fl .phone img{
        width: 26px;
        height: 26px;
    }
    .footer .footer_fl .email{
        text-align: center;
        font-size: 16px;
    }
    
    
    
   .footer .footer_bottom{
        padding: 20px 0;
        height: auto;
        /* position: inherit; */
    }
    .footer .footer_bottom .main{
        width: 100%;
    }
    .footer .footer_bottom span, 
    .footer .footer_bottom span a{
        flex-wrap: wrap;
        font-size: 12px;
        justify-content: center;
        width: 100%;
        line-height: 0.8;
    }
    
    .foot_code{
        position: absolute;
        bottom: 110px;
        left: 50%;
        transform: translateX(-50%);
        gap: 30px;
    }
    .foot_code .code_list .code_icon{
        width: 30px;
        height: 30px;
    }
    .foot_code .code_list .code_icon img{
        max-width: 21px;
        max-height: 21px;
    }
    .foot_code .code_list .code_img{
        width: 120px;
        height: 120px;
        bottom: 35px;
    }
}












