@charset "UTF-8";

.site-footer {
    width: 100%;
    background: #000404;
    padding: 48px 0;
}

.footer-inner {
    width: 100%;

    padding: 0 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    box-sizing: border-box;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 180px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-list div {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-list a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: #287CF7;
}

.footer-logo img {
    width: clamp(120px, 14vw, 270px);
    height: clamp(24px, 2.8vw, 54px);
    object-fit: contain;
    display: block;
}

.footer-qrcode img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 4px;
    vertical-align: middle;
}

.footer-link-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    gap: 8px;
}

.footer-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #fff;
    margin-right: 6px;
    vertical-align: middle;
}

.footer-list a:hover .footer-arrow {
    border-left-color: #287CF7;
}