        .copy-link {
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            color: #2F80ED;
            margin-right: 10px;
        }
        .copy-link:hover {
            text-decoration: underline;
        }
        .copy-link i {
            margin-right: 5px;
        }
        .qr-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        .qr-content {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            max-width: 90%;
        }
        .qr-content img {
            max-width: 100%;
            max-height: 60vh;
            margin-bottom: 15px;
        }
        .close-qr {
            background: #2F80ED;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
        }
        .copy-success {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4CAF50;
            color: white;
            padding: 12px 24px;
            border-radius: 4px;
            z-index: 1001;
            display: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            animation: fadeIn 0.3s;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .link-actions {
            display: flex;
            flex-wrap: wrap;
        }
        .status.active {
            color: #4CAF50;
            font-weight: bold;
        }
        .status.disabled {
            color: #F44336;
            font-weight: bold;
        }
        .edit-button {
            color: #2F80ED;
            text-decoration: none;
        }
        .edit-button:hover {
            text-decoration: underline;
        }
        .success-message {
            background-color: #4CAF50;
            color: white;
            padding: 10px;
            border-radius: 4px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        /* 修正间距 */
        .tm-content-row.tm-mt-big {
            margin-top: 1rem !important;
        }
        
        /* 底部对齐修正 */
        .container {
            padding-bottom: 0;
        }
        
        /* 移动端适配 */
        @media (max-width: 768px) {
            .table-responsive {
                border: 0;
            }
            
            .table thead {
                display: none;
            }
            
            .table tbody tr {
                display: block;
                margin-bottom: 1rem;
                border: 1px solid #dee2e6;
                border-radius: 0.25rem;
                background: white;
            }
            
            .table tbody td {
                display: flex;
                justify-content: flex-start; /* 改为左对齐 */
                align-items: center;
                padding: 0.75rem;
                border-bottom: 1px solid #f8f9fa;
                text-align: left !important; /* 强制左对齐 */
            }
            
            .table tbody td:before {
                content: attr(data-label);
                font-weight: bold;
                margin-right: 1rem;
                color: #495057;
                flex: 0 0 80px; /* 调整标签宽度 */
                text-align: left;
            }
            
            .table tbody td:last-child {
                border-bottom: 0;
            }
            
            .link-actions {
                flex-direction: column;
                gap: 0.5rem;
                align-items: flex-start; /* 左对齐 */
            }
            
            .copy-link {
                margin-right: 0;
            }
            
            /* 移动端文本居左 */
            .text-center {
                text-align: left !important;
            }
            
            /* 分页移动端适配 */
            .tm-table-actions-row {
                flex-direction: column;
                gap: 1rem;
            }
            
            .tm-table-actions-col-left,
            .tm-table-actions-col-right {
                text-align: center;
                width: 100%;
            }
            
            .pagination {
                justify-content: center;
            }
        }
        
        
        body.bg02 {
    background-image: url('https://tools.picn.cc/api.php');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}