@charset "utf-8";

.site-footer-custom {
    background-color: #000;
    color: #666;
    font-size: 12px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #222;
    font-family: "Microsoft YaHei", SimHei, sans-serif;
    line-height: 1.8;
    width: 100%;
    min-width: 1200px;
    clear: both;
}

.footer-inner {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.footer-logo img {
    max-height: 80px;
    display: block;
}

.footer-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-features {
    color: #444;
    margin-bottom: 10px;
    font-weight: bold;
    width: 100%;
    text-align: center;
    display: flex;
    gap: 20px;
}

.footer-links-label {
    color: #444;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-links-display {
    color: #666;
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links-display a {
    color: #888;
    text-decoration: none;
    font-size: 12px;
    padding: 2px 8px;
    border: 1px solid #333;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.footer-links-display a:hover {
    color: #d4b166;
    border-color: #d4b166;
}

.footer-warning {
    color: #444;
    margin-bottom: 8px;
}

.footer-copyright {
    color: #444;
    margin-bottom: 4px;
}

.footer-credit {
    color: #333;
}

.footer-highlight {
    color: #d4b166;
}

.footer-inner a {
    color: #666;
    text-decoration: none;
}

.footer-inner a:hover {
    color: #d4b166;
    text-decoration: underline;
}

/* Hide old footers */
.STYLE31,
.site-footer {
    display: none !important;
}