/* 山顶备案号 footerRecordNumber */

* {
    margin: 0;
    padding: 0;
}

body img {
    width: 100%;
    vertical-align: middle;
}

.footerRecordNumber {
    margin-bottom: 12px;
}

.footerRecordNumber a {
    display: block;
    text-align: center;
    color: #282828;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .5px;
    box-sizing: border-box;
    padding: 8px 0 0;
}

.footerRecordNumber a b {
    line-height: 24px;
}


/* footer */

#footer {
    width: 100%;
    height: 52px;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 99999;
}

.footer {
    width: 100%;
    height: 52px;
    max-width: 750px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #303030;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 2px 4% 0;
}

.footer a {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 10px;
    color: #c7a05d;
    font-size: 12px;
    position: relative;
}

#footer img {
    width: auto !important;
    height: 18px;
    margin-bottom: 3px;
}

.footer a:nth-child(2) img {
    height: 16px !important;
}

.footer a span.footernum {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bb0102;
    color: #ffffff;
    font-size: 8px;
    text-align: center;
    line-height: 13px;
    position: absolute;
    top: 8%;
    right: 14%;
    animation-name: footernum;
    animation-duration: .7s;
    animation-timing-function: step-end;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes footernum {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

#footer span.returntop {
    width: 23px;
    position: fixed;
    bottom: 60px;
    right: 4%;
    opacity: .3;
}

#footer span.returntop img {
    width: 100% !important;
    height: auto !important;
}