 /* 重置样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }
        
        /* 顶部欢迎条样式 */
        .new-top {
            background: linear-gradient(135deg, #2c3e50, #1a2530);
            color: #ecf0f1;
            padding: 8px 0;
            font-size: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .new-top-container {
            /*width: 1100px;
            margin: 0 auto;
            text-align: right;*/
            padding: 0 15px;
        }
        
        /* 导航主容器 */
        .new-nav-container {
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .new-nav {
            width: 1600px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        /* Logo样式 */
        .new-logo {
            display: flex;
            align-items: center;
            padding-right: 20px;
            border-right: 1px solid #e6e6e6;
        }
        
        .new-logo img {
            height: 60px;
            transition: transform 0.3s ease;
        }
        
        .new-logo img:hover {
            transform: scale(1.05);
        }
        
        /* 股票代码样式 */
        .new-stock-code {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 25px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 8px;
            height: 60px;
            margin-left: 15px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .new-stock-code:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
        }
        
        .new-stock-code span {
            color: #2980b9;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .new-stock-code p {
            color: #2c3e50;
            font-size: 20px;
            font-weight: 700;
        }
        
        /* 导航菜单样式 */
        .new-menu {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            /*min-width:1100px;*/
            /*padding-right: 320px;*/

        }
        
        .new-menu-ul {
            display: flex;
            list-style: none;
            gap: 2px;
        }
        
        .new-menu-ul li {
            position: relative;
        }
        
        .new-menu-ul li a {
            display: block;
            padding: 15px 15px;
            text-align: center;
            color: #2c3e50;
            text-decoration: none;
            font-size: 20px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            min-width:110px;
        }
        
        .new-menu-ul li a:before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #2980b9, #2c3e50);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            z-index: -1;
        }
        
        .new-menu-ul li a:hover {
            color: #2980b9;
            background: rgba(41, 128, 185, 0.05);
        }
        
        .new-menu-ul li a:hover:before {
            width: 80%;
        }
        
        .new-menu-ul li.on a {
            color: #ffffff;
            background: linear-gradient(135deg, #2980b9, #2c3e50);
            box-shadow: 0 4px 10px rgba(41, 128, 185, 0.3);
        }
        
        .new-menu-ul li.on a:before {
            width: 0;
        }
        
        /* 响应式设计 */
        @media (max-width: 1120px) {
            .new-top-container, .new-nav {
                width: 100%;
                padding: 0 15px;
            }
            
            .new-menu-ul li a {
                padding: 15px 20px;
                font-size: 15px;
                min-width:100%;
            }
        }
        
        @media (max-width: 900px) {
            .new-nav {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .new-logo {
                border-right: none;
                padding-right: 0;
                margin-bottom: 15px;
                width: 100%;
                justify-content: center;
            }
            
            .new-stock-code {
                margin: 0 0 15px 0;
            }
            
            .new-menu {
                width: 100%;
                justify-content: center;
            }
            
            .new-menu-ul {
                flex-wrap: wrap;
                justify-content: center;
            }
        }