.footer{
    background-color: #0054ac;
    padding: 70px 0 65px;
}
.footer_list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom:60px;
}

.footer_list>li{
    font-size: 20px;
}
.footer_list>li>a{
    color: #fff;
    text-decoration: none;
    transition: all 200ms;
    font-weight: bold;
}
.footer_list>li>a:hover{
    color:#ffa632;
}
.footer_line{
    height: 24px;
    border-right: 1px solid #fff;
}
.footer_list>li:last-child{
    display: none;
}
.footer_contact{
    display: flex;
    justify-content: space-between;
    padding:50px 0;
    position: relative;
}
.footer_contact::before{
    content: '';
    display: block;
    width: 110%;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
}
.footer_contact::after{
    content: '';
    display: block;
    width: 110%;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%,0);
}
.footer_contact>li:nth-of-type(1)>p{
    text-align: center;
    /* color: #fff; */
    font-size: 16px;
    line-height: 1;
    margin-top: 10px;
}
.footer_contact>li:nth-of-type(1) img{
    width: 120px;
    height: 120px;
}
/* .footer_contact>li:nth-of-type(2)>div{
    background-color: #ff9933;
} */
.footer_contact>li>div{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #262a2d;
    position: relative;
    margin-bottom: 10px;
}
.footer_contact>li>div>img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.footer_contact>li>div:hover {
    background-color: #ff9933;
}
.footer_contact>li>span{
    color: #999999;
    font-size: 16px;
}
/* .footer_contact>li:nth-of-type(2)>span{
    color: #fff;
} */
.footer_contact>li>p{
    font-size: 21px;
    color: #fff;
    line-height: 1.3;
}
/* .footer_contact>li:nth-of-type(2)>p{
    color: #ff9933;
} */
.footer_contact>li:hover span {
    color: #fff;
}
.footer_contact>li:hover p {
    color: #ff9933;
}

.footer_record{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top:35px;
    font-size: 15px;
    color: #999999;
}


@media (max-width:1650px){
    .footer_contact::after,
    .footer_contact::before{
        width: 105%;
    }
}
@media (max-width:1550px) {
    .footer_list {
        padding-bottom: 50px;
    }
    .footer_contact>li>p{
        font-size: 20px;
    }
}
@media (max-width:1200px){
    .footer{
        padding: 60px 0 40px;
    }
    .footer_list {
        padding-bottom: 36px;
    }
    .footer_list>li {
        font-size: 18px;
    }
    .footer_record{
        margin-top: 25px;
    }
    .footer_contact>li>p {
        font-size: 18px;
    }
}
@media (max-width:1000px){
    .footer_record,
    .footer_contact,
	.footer_list{
        flex-wrap: wrap;
    }
    .footer_line{
        display: none;
    }
    .footer_list>li {
        width: 24%;
        text-align: center;
    }
    .footer_contact{
        padding: 45px 0 10px;
    }
    .footer_contact>li{
        margin-bottom: 30px;
    }
    .footer_record>span{
        width: 100%;
        text-align: center;
    }
}
@media (max-width:600px){
    .footer {
        padding: 22px 0 15px;
    }
    .footer_list>li {
        font-size: 14px;
    }
    .footer_list>li {
        width: 32%;
        margin-bottom: 10px;
    }
    .footer_list {
        padding-bottom: 5px;
    }
    .footer_contact>li{
        width: 48%;
        text-align: center;
        margin-bottom: 10px;
    }
    .footer_contact>li:first-child{
        order: 2;
        width: 100%;
    }
    .footer_contact>li>span{
        font-size: 14px;
    }
    .footer_contact>li>p{
        font-size: 16px;
    }
    .footer_contact>li>div{
        margin: 5px auto 0;
    }
    .footer_contact {
        padding: 20px 0 6px;
    }
    .footer_record {
        margin-top: 8px;
    }
    .footer_record>span{
        line-height: 1.5;
    }
}