/* 导入所有模块CSS */
@import 'layout.css';
@import 'user-center.css';
@import 'shop.css';
@import 'pagination.css';
@import 'modal.css';
@import 'animations.css';

/* 全局基础样式 */
body {
    font-family: Arial, sans-serif;
    background: url('../jpg/current-wallpaper.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.log-content {
    width: 100%;
    max-width: 800px;
    height: 400px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    text-align: left;
}
