/* 底部导航样式 */
.footer {
    background-color: #2c3e50;
    color: #fff;
    margin-top: 50px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 30px auto 0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #fff;
}

.copyright {
    color: #bdc3c7;
    font-size: 14px;
}

.copyright a {
    color: #bdc3c7;
    text-decoration: none;
}

.copyright a:hover {
    color: #fff;
}

/* 弹窗公共样式 */
.login-modal,
.register-modal,
.profile-modal,
.success-modal,
.vip-modal {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 99999 !important;
    display: none;
}

.modal-mask {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 99998 !important;
    background: rgba(0, 0, 0, 0.35) !important;
}

.modal-dialog {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 99999 !important;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box !important;
}

/* 弹窗内部元素样式重置 */
.login-modal *,
.register-modal *,
.profile-modal * {
    box-sizing: border-box;
}

.login-modal .modal-body,
.register-modal .modal-body,
.profile-modal .modal-body {
    width: 100%;
    overflow: visible;
}

.login-modal input,
.register-modal input,
.profile-modal input,
.login-modal select,
.register-modal select,
.profile-modal select {
    box-sizing: border-box !important;
    max-width: 100%;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-dialog {
        width: 90% !important;
        max-width: 420px;
    }
}
