#home-footer {
    background-color: #545454;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 13px;
}

.footer-container {
    box-sizing: border-box;
    width: 1100px;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-container a {
    text-decoration: none;
    color: inherit;
}

.footer-container dl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
}

.footer-container dl dt {
    width: 100%;
    line-height: 2em;
    margin-bottom: 10px;
}

.footer-container dl dd {
    margin: 0 15px 10px 0;
}

.footer-container dl dd:hover a {
    color: #c33c31;
}

.footer-left {
    width: 600px;
}

.footer-left-top {
    display: flex;
    justify-content: space-between;
}

.footer-left-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 25px;
}

.footer-right {
    width: 460px;
}

.footer-qr-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-qr-list img {
    width: 100px;
    height: 100px;
    background-color: white;
    padding: 5px;
}

.footer-qr-list li {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.footer-qr-list li .qr-item-title {
    margin-bottom: 10px;
}