html {
            scroll-behavior: smooth;
        }
        body {
            overflow-x: hidden;
        }
        /* 滚动条美化 */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb {
            background: #FF2C5A;
            border-radius: 3px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #0F4CD1;
        }
        /* 移动端菜单动画 - 只在移动端生效 */
        @media (max-width: 767px) {
            .mobile-menu {
                transition: transform 0.3s ease-in-out;
                transform: translateX(-100%);
            }
            .mobile-menu.active {
                transform: translateX(0);
            }
        }
        /* PC端强制显示侧边栏 */
        @media (min-width: 768px) {
            .mobile-menu {
                transform: translateX(0) !important;
            }
        }
        /* 返回顶部按钮样式 */
        #back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background-color: #FF2C5A;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
        }
        #back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        #back-to-top:hover {
            background-color: #0F4CD1;
            transform: translateY(-3px);
        }

    /* 移动端适配 */
    @media (max-width: 768px) {
        .top-content {
            flex-direction: column;
            align-items: flex-start;
        }
        .top-links {
            margin-top: 8px;
            width: 100%;
            flex-wrap: wrap;
        }
        .top-links a {
            padding: 4px 8px;
            font-size: 12px;
            width:110px;
        }
        .top-links a:nth-child(7),.top-links a:nth-child(8){display:none;}
        body {
            // padding-top: 100px;
        }
    }