<!-- css代码 -->
        
        /* 悬浮侧边栏 */
        .night-mode {
            background-color: #222;
            color: #eee;
        }
        
        .sidebar {
            position: fixed;
            right: -250px;
            top: 50%;
            transform: translateY(-50%);
            width: 250px;
            height: auto;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(5px);
            border-radius: 10px 0 0 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            transition: right 0.3s ease;
            z-index: 1000;
        }
        
        .sidebar.night-mode {
            background-color: rgba(51, 51, 51, 0.8);
            color: #eee;
        }
        
        .sidebar-content {
            padding: 15px;
            display: none;
        }
        
        .sidebar.active {
            right: 0;
        }
        
        .sidebar.active .sidebar-content {
            display: block;
        }
        
        .sidebar-button {
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(5px);
            border-radius: 10px 0 0 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s;
        }
        
        .sidebar-button.night-mode {
            background-color: rgba(51, 51, 51, 0.8);
            color: #eee;
        }
        
        .sidebar-button:hover {
            background-color: rgba(200, 200, 200, 0.8);
        }
        
        .sidebar-button.night-mode:hover {
            background-color: rgba(70, 70, 70, 0.8);
        }
        
        .sidebar-button::after {
            content: "☰";
            font-size: 20px;
        }
        
        .sidebar.active .sidebar-button::after {
            content: "×";
        }
        
        .sidebar-item {
            padding: 10px;
            margin: 5px 0;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .sidebar-item:hover {
            background-color: rgba(0, 0, 0, 0.1);
        }
        
        .sidebar.night-mode .sidebar-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .hidden {
            right: -290px !important;
        }
        
        .sidebar-button.hidden {
            left: -80px;
        }
        /* 复制提示 */
        :root {
            --primary-color: #4361ee;
            --success-color: #4cc9f0;
            --text-color: #2b2d42;
            --bg-color: #f8f9fa;
        }
        /* 复制提示样式 */
        .copy-notification {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.95);
            color: var(--text-color);
            padding: 16px 24px 16px 56px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
            transform: translateY(120%);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            max-width: 320px;
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            z-index: 9999;
            overflow: hidden;
        }
        
        .copy-notification.show {
            transform: translateY(0);
            opacity: 1;
        }
        
        .copy-notification::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 40px;
            background-color: var(--success-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .copy-notification::after {
            content: "✓";
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .copy-time {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 0.75rem;
            opacity: 0.7;
            font-weight: 500;
        }
        
        .notification-title {
            font-weight: 600;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
        }
        
        .notification-message {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.4;
        }
        
        /* 微交互动画 */
        @keyframes bounceIn {
            0% { transform: translateY(120%) scale(0.8); opacity: 0; }
            50% { transform: translateY(-10%) scale(1.05); }
            100% { transform: translateY(0) scale(1); opacity: 1; }
        }
        
        @keyframes fadeOutUp {
            0% { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(-20px); opacity: 0; }
        }
        
        /* 响应式调整 */
        @media (max-width: 600px) {
            .copy-notification {
                max-width: calc(100% - 48px);
                right: 24px;
                left: 24px;
            }
        }
        
        /* 公告弹窗 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5)<p class="modal-content">;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .modal-container {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            width: 400px;
            max-width: 90%;
            padding: 20px;
            position: relative;
            animation: fadeIn 0.3s;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-header {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        
        .modal-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        
        .checkbox-container {
            display: flex;
            align-items: center;
        }
        
        .checkbox-container input {
            margin-right: 8px;
        }
        
        .close-btn {
            background-color: #1890ff;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .close-btn:hover {
            background-color: #40a9ff;
        }
        
        .close-btn:disabled {
            background-color: #d9d9d9;
            cursor: not-allowed;
        }
        
        .countdown {
            color: #999;
            font-size: 14px;
            margin-left: 10px;
        }
        /* 轮播图 */
        .carousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 10px; /* 圆角 */
        }

        .carousel-inner {
            display: flex;
            transition: transform 0.5s ease;
        }

        .carousel-item {
            min-width: 100%;
            box-sizing: border-box;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            display: block;
            border-radius: 10px; /* 圆角 */
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 1;
            border-radius: 50%; /* 圆角 */
        }

        .carousel-control.prev {
            left: 10px;
        }

        .carousel-control.next {
            right: 10px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            right: 10px; /* 黑点定位到右下角 */
            display: flex;
            gap: 5px;
            z-index: 1;
        }

        .carousel-indicator {
            width: 10px;
            height: 10px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            cursor: pointer;
        }

        .carousel-indicator.active {
            background-color: black;
        }

        .carousel-caption {
            position: absolute;
            bottom: 0; /* 文字边框连接下方边缘 */
            left: 0;
            right: 100px; /* 禁止贴到右边边缘 */
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 16px;
            padding: 10px 20px;
            border-radius: 0 0 10px 0; /* 圆角 */
            z-index: 1;
        }
        
        /* 当前日期时间 */
        .date-container {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .date-item {
            color: #333;
        }
        .title {
            font-size: 15px;
            color: #d9534f;
        }
        .time {
            color: #5bc0de;
            font-weight: bold;
        }
        .ganzhi {
            color: #5cb85c;
        }
        
        
        /* 钟表 */
        .clock-container {
            position: relative;
            width: 300px;
            height: 300px;
        }
        
        .clock-face {
            position: relative;
            width: 100%;
            height: 100%;
            border: 10px solid #333;
            border-radius: 50%;
            background-color: white;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        }
        
        /* 时钟数字样式 */
        .clock-number {
            position: absolute;
            width: 24px;
            height: 24px;
            text-align: center;
            line-height: 24px;
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }
        
        /* 时钟指针样式 */
        .hand {
            position: absolute;
            bottom: 50%;
            left: 50%;
            transform-origin: 50% 100%;
            background-color: #333;
        }
        
        .hour-hand {
            width: 8px;
            height: 70px;
            margin-left: -4px;
            z-index: 3;
        }
        
        .minute-hand {
            width: 4px;
            height: 100px;
            margin-left: -2px;
            z-index: 2;
        }
        
        .second-hand {
            width: 2px;
            height: 110px;
            margin-left: -1px;
            background-color: red;
            z-index: 1;
        }
        
        .center-dot {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 12px;
            height: 12px;
            background-color: #333;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 4;
        }
        
        /* 数字位置计算 */
        .number-12 { top: 10px; left: 50%; transform: translateX(-50%); }
        .number-1 { top: 30px; right: 70px; }
        .number-2 { top: 70px; right: 30px; }
        .number-3 { top: 50%; right: 10px; transform: translateY(-50%); }
        .number-4 { bottom: 70px; right: 30px; }
        .number-5 { bottom: 30px; right: 70px; }
        .number-6 { bottom: 10px; left: 50%; transform: translateX(-50%); }
        .number-7 { bottom: 30px; left: 70px; }
        .number-8 { bottom: 70px; left: 30px; }
        .number-9 { top: 50%; left: 10px; transform: translateY(-50%); }
        .number-10 { top: 70px; left: 30px; }
        .number-11 { top: 30px; left: 70px; }
        
        
        /* ip获取 */
        .container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 90%;
            max-width: 500px;
            text-align: center;
        }
        .ip-display {
            font-size: 24px;
            font-weight: bold;
            color: #4361ee;
            background-color: rgba(67, 97, 238, 0.1);
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .loading {
            color: #666;
            font-style: italic;
        }
        
        .btn {
            background-color: #4361ee;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
            margin: 5px;
        }
        
        .btn:hover {
            background-color: #3a56d4;
        }
        
        .btn-copy {
            background-color: #4cc9f0;
        }
        
        .btn-copy:hover {
            background-color: #3ab7dc;
        }
        
        .btn-refresh {
            background-color: #f72585;
        }
        
        .btn-refresh:hover {
            background-color: #e5177b;
        }
        
        .error {
            color: #f72585;
        }
        
        .api-selector {
            margin-top: 20px;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid #ddd;
            width: 100%;
        }
        
        .details {
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }
        
        /* 项目页面样式 */
        .search-container {
                margin-bottom: 20px;
            }
            #searchInput {
                width: 100%;
                padding: 10px;
                font-size: 16px;
                border: 1px solid #ddd;
                border-radius: 4px;
            }
            #results {
                margin-top: 20px;
                border: 1px solid #eee;
                border-radius: 4px;
                padding: 10px;
            }
            .result-item {
                padding: 10px;
                border-bottom: 1px solid #eee;
            }
            .result-item:last-child {
                border-bottom: none;
            }
            .highlight {
                background-color: yellow;
                font-eight: bold;
            }
            /* 底部 */
            .footer {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: white;
            }