  /* 特超大屏幕 (xxl) */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px !important;
                /* 自定义值，比如 1450px */
            }
        }

        .link-scroll-container {
            width: 100%;
            height: 150px;
            line-height: 150px;
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            overflow: hidden;
            /* 隐藏溢出内容 */
            position: relative;
            /* 作为子元素定位的参考 */
            margin: 15px 0;
        }

        /* 滚动的链接列表 */
        .link-scroll-list {
            position: absolute;
            left: 0;
            top: 0;
            white-space: nowrap;
            /* 强制横向排列，不换行 */
            margin: 0;
            padding: 0;
            list-style: none;
        }

        /* 单个链接样式 */
        .link-scroll-item {
            display: inline-block;
            margin: 0 15px;
        }

        .link-scroll-item a {
            color: #333;
            /* 黑色文字 */
            text-decoration: none;
            font-size: 14px;
        }

        .link-scroll-item a:hover {
            color: #007bff;
            /* hover变蓝色 */
            text-decoration: underline;
        }