/* 公共底部样式 */
.app-footer {
     padding: 50px 0 20px;
}


/* 平台介绍和免责声明 */
.app-footer-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    padding: 0 12px;
    text-align: center;
    word-break: break-all;
    color: var(--el-text-color-secondary);
    padding: 0 12px;
}

/* 导航链接 */
.app-footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.app-footer-nav-item {
    color: var(--el-text-color-secondary);
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.app-footer-nav-item:hover {
    color: #409EFF;
}

/* 社交媒体图标 */
.app-footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.app-footer-social-link {
    display: inline-block;
    width: 33px;
    height: 33px;
    transition: transform 0.3s;
}

.app-footer-social-link:hover {
    transform: scale(1.1);
}

.app-footer-social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
