/* 页脚样式 - 从Vue组件完整提取 */

.footer-view {
    width: 100%;
    height: 350px;
    background: #1F2340;
    position: relative;
    font-weight: 500;
    font-size: 18px;
    color: #989DAF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content-wrapper {
    text-align: center;
    z-index: 1;
}

.footer-nav {
    font-size: 18px;
}

.footer-link {
    cursor: pointer;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #FD4E4E;
}

.footer-link-gov {
    color: #989DAF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link-gov:hover {
    color: #FD4E4E;
}

.footer-text {
    font-weight: 500;
    font-size: 18px;
    color: #989DAF;
}

.footer-mt-20 {
    margin-top: 20px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.footer-badges img {
    width: 110px;
    height: 40px;
    margin: 0 8px;
    border-radius: 4px;
}

.footer-left-img {
    position: absolute;
    top: 0;
    left: 5%;
    width: 260px;
}

.footer-right-img {
    position: absolute;
    bottom: 0;
    right: 15%;
    width: 100px;
}
