/* ============================================
   西北狼·狼眼世界 - 桌面端CSS
   版本: 1.0.0
   创建时间: 2026-04-22
   目标: 修复PC端样式加载问题，提供完整桌面体验
============================================ */

/* ===== 基础重置与全局样式 ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ===== 响应式容器 ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 桌面端页眉优化 ===== */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* 企业最终logo - 整体设计 */
.logo-area a div[style*="width: 60px"] {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a237e;
    font-weight: bold;
    font-size: 36px;
    margin-right: 15px;
}

.site-title {
    display: flex;
    flex-direction: column;
}

.site-title h1 {
    margin: 0;
    font-size: 24px;
    color: #1a237e;
    font-weight: 700;
    line-height: 1.2;
}

.site-tagline {
    margin: 2px 0 0 0;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

/* 时间天气区域 */
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.date-time-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 10px;
    border-left: 4px solid #1a237e;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.current-date {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-bottom: 4px;
}

.current-time {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    font-family: "SF Mono", "Roboto Mono", monospace;
}

.weather-area-compact {
    display: flex;
    gap: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}

.weather-city-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    padding: 8px 12px;
    border-right: 1px solid #e9ecef;
}

.weather-city-compact:last-child {
    border-right: none;
}

.city-name-compact {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    margin-bottom: 6px;
}

.weather-info-compact {
    display: flex;
    align-items: center;
    gap: 6px;
}

.temperature-compact {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* ===== 导航菜单 ===== */
.main-navigation {
    border-top: 1px solid #e9ecef;
    padding-top: 10px;
}

.nav-menu {
    /* Webkit滚动条样式 */
    &::-webkit-scrollbar {
        height: 4px;
    }
    
    &::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    &::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
    }
    
    &::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
    /* 隐藏滚动条但保持功能 */
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    display: flex;
    list-style: none;
    margin: 0;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 0;
    gap: 20px;
    white-space: nowrap !important;
    display: inline-block !important;
    font-size: 14px !important;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    background: #f0f2ff;
    color: #1a237e;
}

/* 会员中心特殊样式 */
.nav-menu li:last-child a {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white !important;
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(26, 35, 126, 0.2);
}

.nav-menu li:last-child a:hover {
    background: linear-gradient(135deg, #283593, #303f9f);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

/* ===== 主要内容区域 ===== */
.site-main {
    min-height: 500px;
    padding: 30px 0;
}

/* ===== 页脚优化 ===== */
.site-footer {
    background: #f8f9fa;
    padding: 30px 0 25px;
    border-top: 1px solid #e9ecef;
    margin-top: 40px;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}
    background: #f8f9fa;
.footer-content {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 30px 0 25px;
    border-top: 1px solid #e9ecef;
.footer-section {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    margin-top: 40px;
}

.footer-content {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    padding: 0;
}

.footer-section h3 {
    font-size: 18px;
    color: #1a237e;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 12px 0;
}

.footer-menu {
    display: flex;
    flex-direction: column;
.footer-bottom {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    flex: 1 !important;
    min-width: 300px !important;
    max-width: 100% !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    display: inline-block !important;
    max-width: 100% !important;
    padding: 10px 15px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #1a237e;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
}
    flex: 1 !important;
    min-width: 200px !important;
    max-width: 100% !important;
    overflow: hidden !important;

.footer-menu a:hover {
    background: #e9ecef;
    border-color: #1a237e;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

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

.filing-info {
    margin-top: 8px;
}

.filing-info a {
    color: #666;
    text-decoration: none;
}

.filing-info a:hover {
    color: #1a237e;
    text-decoration: underline;
}

.footer-slogan {
    text-align: right;
    font-size: 14px;
    color: #666;
}

.footer-slogan p {
    margin: 0 0 5px 0;
}

.publish-date {
    font-size: 13px;
    color: #999;
}

/* ===== 响应式调整 ===== */

/* 平板设备 */
@media (max-width: 991px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* 移动设备 - 这部分由mobile.css处理 */
/* 注意：mobile.css已经通过媒体查询限制在max-width: 767px */

/* ===== 工具类 ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.p-20 { padding: 20px; }

/* ===== 股票行情样式 ===== */
.stock-ticker {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.stock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e9ecef;
}

.stock-item:last-child {
    border-bottom: none;
}

.stock-name {
    font-weight: 600;
    color: #333;
}

.stock-price {
    font-weight: 700;
    font-family: "SF Mono", "Roboto Mono", monospace;
}

.stock-change.positive {
    color: #4caf50;
}

.stock-change.negative {
    color: #f44336;
}
/* ========== 狼眼世界 · 页眉美化 ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a2e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    padding: 12px 24px;
    box-sizing: border-box;
}
.site-header a,
.site-header .site-title,
.site-header .site-description {
    color: #f0c040;
    text-decoration: none;
}
.main-navigation ul {
    display: flex;
    justify-content: center;
    gap: 28px;
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
}
.main-navigation a {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}
.main-navigation a:hover {
    color: #f0c040;
}
body {
    padding-top:35px;
}
