   .quote-box {
             background: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 12px;
            margin-top: 12px;
            background: linear-gradient(0deg, #E3F0FF, #FFFFFF);
        }
         .title_box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            width: 100%;
            height: 60px;
            background: linear-gradient(-90deg, #38C0FF, #439DFF);
        }
        .title {
            display: flex;
            align-items: center;
            font-size: 20px;
            font-weight: bold;
            color: #333;
            height: 100%;
        }
        .quote_title_bg {
            margin-left: 9px;
            background: url("/public/images/home/quote_title_bg.png");
            background-repeat: no-repeat;
            width: 70px;
            height: 100%;
            display: inline-block;
            background-size: 100%;
        }
        .quote_title {
            margin: 19px 0px 14px -47px;
        }
        .more {
            font-size: 14px;
            color: #FFFFFF;
            background: url("/public/images/home/more1.png") no-repeat;
            margin-right: 20px;
            background-position: right;
            line-height: 60px;
            padding-right: 20px;
            cursor: pointer;
        }
        .h-table-box {
            background: linear-gradient(0deg, #FFFFFF, #E3F0FF);
            border: 3px solid #D3E2FF;
            border-top: 0;
            padding: 0 0 10px 0;
        }
        .table-header {
            display: flex;
            padding: 0 30px;
            background: #E3F0FF;
            border-radius: 4px 4px 0 0;
        }
        .table-header-cell {
            padding: 15px 5px;
            font-size: 16px;
            color: #666;
            font-weight: 500;
            text-align: center;
        }
        .scroll-box {
            height: 465px;
            overflow: hidden;
            position: relative;
            border-radius: 0 0 4px 4px;
        }
        .table-content {
            position: absolute;
            width: 100%;
            padding: 0 30px;
            box-sizing: border-box;
            transition: transform 0.5s ease;
        }
        .table-row {
            display: flex;
            border-bottom: 1px solid #D2DBE3;
            height: 59px;
            align-items: center;
            background-color: #fff;
            padding-left:20px ;
            /* margin-bottom: 10px; */
        } 
         .table-row:hover {
            background-color: #f0f8ff;
            cursor: pointer;
        }
        .table-cell {
            padding: 5px;
            font-size: 16px;
            color: #444;
            text-align: center;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .quote_btn {
            width: 82px;
            height: 26px;
            line-height: 26px;
            background: #0079FE;
            border-radius: 13px;
            color: #FFFFFF;
            text-align: center;
            font-size: 14px;
            cursor: pointer;
            margin: 0 auto;
            transition: background-color 0.3s;
        }
        .quote_btn:hover {
            background: #0066d4;
        }
        .time-box {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        .time-box span {
            display: inline-block;
            min-width: 20px;
            text-align: center;
            font-weight: bold;
            color: #409EFF;
        }
        .loading {
            text-align: center;
            padding: 20px;
            color: #666;
        }
        .empty-data {
            text-align: center;
            padding: 40px;
            color: #999;
            font-size: 16px;
        }
        .time-highlight {
            color: #ff550a !important;
        }
        
        /* CSS滚动动画 */
        @keyframes scroll {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(calc(-100% + 465px));
            }
        }
        
        .scroll-animation {
            animation: scroll 15s linear infinite;
        }
        
        .scroll-box:hover .scroll-animation {
            animation-play-state: paused;
        }