/**
 * 全局底部组件样式
 */

.footer {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #373b3f 0%, #2e373d 100%);
    position: relative;
    padding: 40px 0 10px;
    color: #ffffff;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    opacity: .9;
    /* background-image: url('../images/lianke/footer-bg.png'); */
    /* background-size: cover; */
    /* background-position: center;
    background-repeat: no-repeat; */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-left {
    flex: 1;
    min-width: 280px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-qr {
    background-color: #ffffff;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    margin-bottom: 15px;
}

.footer-qr img {
    width: 120px;
    height: 120px;
    display: block;
}

.footer-qr-text {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-top: 8px;
}

.footer-center {
    flex: 2;
    min-width: 400px;
    padding: 0 30px;
}

.footer-section {
    margin-bottom: 25px;
}

.footer-section-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-info-row {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
}

.footer-info-row a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info-row a:hover {
    color: #fbbf24;
}

.footer-label {
    font-weight: bold;
    margin-right: 8px;
}

.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #fbbf24;
    padding-left: 5px;
}

.footer-links li::before {
    content: "●";
    color: #fbbf24;
    margin-right: 8px;
    font-size: 12px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    line-height: 22px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-center {
        padding: 0;
        order: -1;
        margin-bottom: 30px;
    }
    
    .footer-left,
    .footer-right {
        min-width: 100%;
    }
    
    .footer {
        padding: 30px 0;
    }
}