footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #EEEEEE;
}
.footer-top{
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    flex-wrap: nowrap;
}
.footer-top-left{
    width: calc(100% - 200px);
    display: flex;
    flex-wrap: nowrap;
}
.footer-top-left .footer-left-one{
    width: 16.6%;
    display: flex;
    flex-direction: column;
}
.footer-top-left .footer-left-one .one-title{
    font-size: 17px;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
}
.footer-top-left .footer-left-one .one-list{
    font-size: 14px;
    color: #000;
    display: flex;
    flex-direction: column;
}
.footer-top-right{
    width: 200px;
    padding: 0 20px;
    box-sizing: border-box;
}
.footer-top-right img{
    width: 100%;
}
.footer-bottom{
    background-color: #C6C6C6;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    color: #000;
}
/*手机端样式*/
@media screen and (max-width: 640px) {
    .footer-top {
        width: 90%;
        margin: 0 auto;
        flex-direction: column;
    }
    .footer-top-left{
        width: 100%;
        flex-wrap: wrap;
    }
    .footer-top-left .footer-left-one {
        width: 50%;
    }
    .footer-top-left .footer-left-one .one-title {
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .footer-top-right {
       padding: 0;
        margin-top: 20px;
    }
}