.logo_a img{height: 84px;
    width: auto;}
/* 子菜单默认隐藏 */
  li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;}
  /* 鼠标划过一级菜单 → 显示子菜单 */
  li:hover ul {
    display: block;}
  li ul li:hover a{color:#004174 !important;}
  /* 子菜单样式 */
  li ul li {
    display: block;
    padding: 6px 0px;
    width:100%;}
   li ul li a{padding:0 !important; width:100%;text-align:center;color:#333 !important;}
        /* 外层容器 */
        .table-container {
          
            border: 1px solid #ccc;}

        /* 表头固定样式 */
        .table-header {
            background-color: #1A237E;
            color: white;
            display: flex;}
        .table-header div {
            padding: 14px 0px;
            text-align: center;
            font-size: 14px;
            font-weight: normal;}

        /* 内容滚动区域 */
        .table-body {
            height: 160px;       /* 可视区域高度，可调整 */
            overflow: hidden;}
        .scroll-content {
            animation: scrollUp 20s linear infinite;}
        /* 鼠标悬停暂停 */
        .scroll-content:hover {
            animation-play-state: paused;}

        /* 行样式 */
        .table-row {
            display: flex;
            border-bottom: 1px solid #eee;
            padding: 2px 0;}
        .table-row div {
            padding: 0px;
            text-align: center;
            font-size: 14px;}
        .amount {
            color: #D32F2F;
            font-weight: bold;}
        .width_33{width:33%;}
        .width_67{width:67%;}
        /* 滚动动画 */
        @keyframes scrollUp {
            0% { transform: translateY(0);}
            100% { transform: translateY(-50%);}
        }
