@charset "utf-8";
/* CSS Document */

/* Footer 样式 */
.fdibu {
    width: 88%;
    margin:3vw auto 0 auto !important;
    padding-top: 3vw !important;
}
.fenxiang{margin: 1vw 0 2vw 0;}
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    border-top: 4px solid #007bff;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: #fff;
    font-weight: 600;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.footer-text {
    color: #adb5bd;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer ul li {
    color: #adb5bd;
    font-size: 0.9rem;
}

.social-icons .btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.share-section .btn {
    transition: all 0.3s ease;
}

.share-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.list-inline-item a {
    transition: color 0.3s ease;
}

.list-inline-item a:hover {
    color: #007bff !important;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .social-icons,
    .share-section .d-flex {
        justify-content: center;
    }
    
    .footer ul li {
        justify-content: center;
        text-align: center;
    }
}