* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-error-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 10px;
    gap: 8px;
    pointer-events: none;
}

.top-error-container > * {
    pointer-events: auto;
}

.top-error {
    background: #dc2626;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
    max-width: 90%;
    position: relative;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.error-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: white;
    color: #dc2626;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.error-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    flex-shrink: 0;
}

.error-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.top-success {
    background: #10b981;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
    max-width: 90%;
    position: relative;
    overflow: hidden;
}

.top-success .error-number {
    background: white;
    color: #10b981;
}

:root {
    --primary-color: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --secondary-color: #f97316;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #475569;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

body.light-mode {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.03;
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, var(--info-color), var(--success-color));
    border-radius: 50%;
    opacity: 0.02;
    animation: rotate 40s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bg-decoration {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
}

.bg-decoration:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: 10%;
    background: linear-gradient(135deg, var(--warning-color), var(--danger-color));
    opacity: 0.02;
    animation: float 12s ease-in-out infinite;
}

.bg-decoration:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 5%;
    background: linear-gradient(135deg, var(--success-color), var(--info-color));
    opacity: 0.02;
    animation: float 10s ease-in-out infinite 2s;
}

.bg-decoration:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0.015;
    animation: pulse 8s ease-in-out infinite;
}

.bg-decoration:nth-child(4) {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 20%;
    background: linear-gradient(135deg, var(--danger-color), var(--warning-color));
    opacity: 0.015;
    animation: float 15s ease-in-out infinite 1s;
}

.bg-decoration:nth-child(5) {
    width: 180px;
    height: 180px;
    top: 60%;
    left: 10%;
    background: linear-gradient(135deg, var(--primary-light), var(--info-color));
    opacity: 0.01;
    animation: float 14s ease-in-out infinite 3s;
}

.bg-decoration:nth-child(6) {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 20%;
    background: linear-gradient(135deg, var(--warning-color), var(--danger-color));
    opacity: 0.012;
    animation: pulse 10s ease-in-out infinite 2s;
}

.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px), linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: fixed;
    font-size: 24px;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.floating-icon:nth-child(7) { top: 15%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(8) { top: 25%; right: 15%; animation-delay: 1s; }
.floating-icon:nth-child(9) { bottom: 30%; left: 15%; animation-delay: 2s; }
.floating-icon:nth-child(10) { bottom: 20%; right: 10%; animation-delay: 3s; }
.floating-icon:nth-child(11) { top: 50%; left: 5%; animation-delay: 4s; }
.floating-icon:nth-child(12) { top: 70%; right: 20%; animation-delay: 5s; }

.container {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 560px;
    max-width: 90%;
    min-height: 550px;
    margin: 0 auto;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.container.task-page {
    width: 1200px;
    min-height: 850px;
}

.login-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
}

.login-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.login-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--info-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.08;
    animation: float 10s ease-in-out infinite reverse;
}

.login-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0.06;
}

.banned-section {
    flex: 1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    position: relative;
}

.banned-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--danger-color), var(--warning-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.banned-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--danger-color), var(--danger-color));
    border-radius: 50%;
    opacity: 0.08;
    animation: float 10s ease-in-out infinite reverse;
}

.banned-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--danger-color), var(--warning-color));
    opacity: 0.06;
}

.banned-decoration:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.banned-decoration:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 5%;
    animation: float 10s ease-in-out infinite 2s;
}

.banned-decoration:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 25%;
    animation: float 7s ease-in-out infinite 4s;
}

.banned-content {
    text-align: center;
    max-width: 450px;
    width: 100%;
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.banned-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.banned-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--danger-color);
    margin-bottom: 12px;
}

.banned-message {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.banned-reason {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.banned-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-md);
}

.info-item {
    text-align: center;
}

.info-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.banned-tips {
    margin-bottom: 24px;
    padding: 12px 16px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--border-radius-md);
    border-left: 3px solid var(--warning-color);
}

.banned-tips p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.banned-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--danger-color), var(--danger-light));
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.banned-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.banned-btn:active {
    transform: translateY(0);
}

.login-decoration:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.login-decoration:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

.login-decoration:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 25%;
    animation-delay: 4s;
}

.login-decoration:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 8%;
    animation: float 6s ease-in-out infinite;
}

.login-decoration:nth-child(5) {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 3%;
    animation: float 8s ease-in-out infinite 1s;
}

.login-decoration:nth-child(6) {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 25%;
    animation: float 7s ease-in-out infinite 2s;
}

.login-decoration:nth-child(7) {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 25%;
    animation: float 9s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 30px) rotate(10deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.login-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.login-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.feature-tag {
    background: var(--bg-tertiary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    cursor: default;
}

.login-header .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s ease-in-out infinite;
}

.login-title {
    color: var(--text-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.login-footer {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    text-align: center;
}

.login-footer p {
    color: var(--text-muted);
    font-size: 12px;
}

.task-footer {
    text-align: center;
    padding: 10px 0 0;
    margin-top: auto;
}

.task-footer p {
    color: var(--text-muted);
    font-size: 12px;
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.simple-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: 6px 16px;
    border-radius: 15px;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-color);
    text-align: center;
    width: fit-content;
}

.input-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 15px;
    transition: var(--transition);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.login-btn:hover::before {
    left: 100%;
}

.remember-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-md);
}

.remember-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.remember-option input[type="checkbox"]:hover {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.remember-option input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.remember-option input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.remember-option input[type="checkbox"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}

.remember-option label {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.remember-option:hover label {
    color: var(--text-primary);
}

.captcha-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.captcha-wrapper input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 15px;
    transition: var(--transition);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.captcha-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.captcha-canvas {
    border-radius: var(--border-radius-md);
    cursor: pointer;
    border: 2px solid var(--border-color);
    height: auto;
    min-height: 50px;
}

.error-msg {
    color: var(--danger-color);
    font-size: 13px;
    margin-top: 8px;
    display: none;
}

.task-section {
    display: flex;
    padding: 30px 20px;
    flex: 1;
    flex-direction: column;
    overflow-y: auto;
    min-height: 0;
}

.task-section.show {
    display: flex;
}

.task-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.05;
    animation: float 7s ease-in-out infinite;
}

.task-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -100px;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--info-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.04;
    animation: float 9s ease-in-out infinite reverse;
}

.task-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-color), var(--info-color));
    opacity: 0.03;
    animation: pulse 8s ease-in-out infinite;
}

.task-decoration:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 25%;
    left: 5%;
    animation-delay: 1s;
}

.task-decoration:nth-child(2) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 5%;
    animation-delay: 4s;
}

.task-decoration:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 25%;
    animation-delay: 6s;
}

.task-decoration:nth-child(4) {
    width: 90px;
    height: 90px;
    top: 25%;
    left: 5%;
    animation-delay: 2s;
}

.task-decoration:nth-child(5) {
    width: 70px;
    height: 70px;
    bottom: 20%;
    right: 5%;
    animation-delay: 4s;
}

.delete-btn {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: var(--danger-color);
    transform: translateY(-1px);
}

.delete-btn:active {
    transform: translateY(0);
}


.task-decoration:nth-child(6) {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 25%;
    animation-delay: 6s;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.header h2 {
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.provider-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    padding: 4px 12px;
    border-radius: 15px;
    margin-left: 1px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.provider-label {
    font-weight: 600;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-danger {
    background: transparent;
    border: 2px solid var(--danger-color);
    color: var(--danger-color);
}

.btn-danger:hover {
    background: var(--danger-color);
    color: white;
}

.task-content {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 1;
    flex: 1;
    overflow-y: auto;
}

.left-panel {
    flex: 0 0 340px;
}

.right-panel {
    flex: 1;
}

.input-section {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.input-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.input-row:last-child {
    margin-bottom: 0;
}

.input-wrapper {
    flex: 1;
}

.input-wrapper label {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 13px;
    transition: var(--transition);
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-input[type="number"] {
    -moz-appearance: textfield;
}

.form-input[type="number"]::-webkit-outer-spin-button,
.form-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.task-buttons {
    display: flex;
    gap: 10px;
}

.task-btn {
    flex: 1;
    padding: 14px 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
}

.task-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.task-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    background: var(--bg-secondary);
}

.task-btn:hover::before {
    transform: scaleX(1);
}

.task-btn:active {
    transform: translateY(0);
}

.btn-like {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
    color: var(--danger-color);
}

.btn-like::before {
    background: var(--danger-color);
}

.btn-like:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--danger-color);
}

.btn-follow {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--info-color);
}

.btn-follow::before {
    background: var(--info-color);
}

.btn-follow:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--info-color);
}

.btn-collect {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--warning-color);
}

.btn-collect::before {
    background: var(--warning-color);
}

.btn-collect:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--warning-color);
}

.btn-view {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--success-color);
}

.btn-view::before {
    background: var(--success-color);
}

.btn-view:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: var(--success-color);
}

.btn-comment {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--primary-color);
}

.btn-comment::before {
    background: var(--primary-color);
}

.btn-comment:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary-color);
}

.platform-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.platform-btn {
    flex: 1;
    padding: 12px 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    color: var(--text-secondary);
    position: relative;
    overflow: hidden;
}

.platform-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.platform-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: var(--bg-secondary);
}

.platform-btn:active {
    transform: translateY(0);
}

.platform-btn.active {
    color: var(--text-primary);
    border-color: var(--primary-color);
    background: var(--bg-secondary);
}

.platform-btn.active::before {
    background: var(--primary-color);
    transform: scaleX(1);
}

.platform-btn.xiaohongshu {
    color: #ff2442;
}

.platform-btn.xiaohongshu::before {
    background: #ff2442;
}

.platform-btn.xiaohongshu:hover,
.platform-btn.xiaohongshu.active {
    border-color: #ff2442;
    color: #ff2442;
}

.platform-btn.tiktok {
    color: #000000;
}

.platform-btn.tiktok::before {
    background: #000000;
}

.platform-btn.tiktok:hover,
.platform-btn.tiktok.active {
    border-color: #000000;
    color: #000000;
}

.platform-btn.twitter {
    color: #1da1f2;
}

.platform-btn.twitter::before {
    background: #1da1f2;
}

.platform-btn.twitter:hover,
.platform-btn.twitter.active {
    border-color: #1da1f2;
    color: #1da1f2;
}

.platform-btn.instagram {
    color: #e1306c;
}

.platform-btn.instagram::before {
    background: #e1306c;
}

.platform-btn.instagram:hover,
.platform-btn.instagram.active {
    border-color: #e1306c;
    color: #e1306c;
}

.list-section {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.tab-header {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    background: var(--bg-secondary);
    padding: 4px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    justify-content: center;
}

.tab-btn {
    flex: 1;
    padding: 10px 14px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.tab-btn .count {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 11px;
}

.tab-btn.active .count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.list-container {
    flex: 0 0 502px;
    overflow-y: auto;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.list-container::-webkit-scrollbar {
    width: 6px;
}

.list-container::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

.list-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.list-item {
    padding: 6px 14px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.list-item:hover {
    background: var(--bg-tertiary);
}

.list-item:last-child {
    border-bottom: none;
}

.list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.list-item-title {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    margin-right: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-item-type {
    font-size: 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
    margin-right: 12px;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-item-status {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    cursor: default;
    flex-shrink: 0;
}

.refresh-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.refresh-btn:hover {
    background: var(--primary-light);
}

.refresh-btn:active {
    transform: translateY(0);
}

.refresh-btn:disabled {
    background: #888;
    cursor: not-allowed;
    box-shadow: none;
}

.refresh-btn.full-width {
    width: 100%;
    margin-bottom: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    margin-top: 8px;
}

.page-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.page-btn:hover:not(:disabled) {
    background: var(--primary-light);
}

.page-btn:disabled {
    background: #888;
    cursor: not-allowed;
}

.page-info {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-progress {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-completed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.progress-bar {
    height: 7px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

.history-item {
    padding: 6px 14px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.history-item:hover {
    background: var(--bg-tertiary);
}

.history-item:last-child {
    border-bottom: none;
}

.history-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.history-item-title {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    margin-right: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.history-item-type {
    font-size: 12px;
    color: var(--text-secondary);
    flex-shrink: 0;
    margin-right: 12px;
}

.history-item-status {
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
}

.history-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 8px;
    gap: 16px;
}

.history-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.history-info-label {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: capitalize;
}

.history-info-value {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.empty-tip {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    padding: 40px 20px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 400px;
    max-width: 90%;
    border: 1px solid var(--border-color);
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-tertiary);
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.modal-body {
    padding: 20px;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

#importPreview {
    max-height: 420px;
    overflow-y: auto;
    overflow-x: auto;
    padding-right: 8px;
}

#importPreview::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

#importPreview::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

#importPreview::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

#importPreview::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

#importPreview::-webkit-scrollbar-corner {
    background: var(--bg-tertiary);
}

.textarea-scroll::-webkit-scrollbar {
    width: 6px;
}

.textarea-scroll::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

.textarea-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.textarea-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.modal-footer {
    padding: 16px 20px;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: var(--bg-tertiary);
}

.modal-btn {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn:hover {
    background: var(--primary-dark);
}

.modal-btn.cancel {
    background: #888;
}

.modal-btn.cancel:hover {
    background: #666;
}

.modal-btn.confirm {
    background: #ff4757;
}

.modal-btn.confirm:hover {
    background: #ff6b81;
}

@media (max-width: 1100px) {
    .container {
        width: 100%;
    }

    .task-content {
        flex-direction: column;
    }

    .left-panel {
        flex: 1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    html, body {
        padding: 10px;
        overflow-x: hidden;
        min-height: 100vh;
        display: block;
    }

    body {
        padding: 10px;
        display: block;
        min-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .container {
        width: 100%;
        border-radius: 12px;
        margin: 0 auto;
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
        position: relative;
    }

    .login-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .login-header {
        margin-bottom: 30px;
    }

    .login-title {
        font-size: 22px;
    }

    .login-form {
        padding: 20px;
    }

    .login-btn {
        padding: 14px;
        font-size: 15px;
    }

    .task-section {
        padding: 15px;
    }

    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 16px;
    }

    .header-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .header h2 {
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .provider-name {
        margin: 0;
        display: inline-block;
        font-size: 11px;
        padding: 5px 10px;
    }

    .header-actions {
        flex-shrink: 0;
        display: flex;
        gap: 8px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .task-content {
        flex-direction: column;
        gap: 15px;
    }

    .left-panel {
        flex: 1;
        max-width: 100%;
    }

    .input-section {
        padding: 12px;
    }

    .input-row {
        flex-direction: column;
        gap: 10px;
    }

    .input-wrapper {
        flex: 1;
    }

    .input-wrapper label {
        margin-left: 10px;
    }

    .task-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .task-btn {
        padding: 14px 10px;
        font-size: 14px;
    }

    .platform-buttons {
        flex-wrap: wrap;
        gap: 8px;
    }

    .platform-btn {
        flex: 1;
        min-width: calc(50% - 4px);
        padding: 10px 8px;
        font-size: 11px;
    }

    .list-section {
        padding: 12px;
    }

    .right-panel {
        width: 100%;
        min-width: 0;
    }

    .tab-header {
        flex-direction: column;
        gap: 4px;
    }

    .tab-btn {
        padding: 10px 12px;
        font-size: 12px;
    }

    .list-container {
        height: 350px;
        -webkit-overflow-scrolling: touch;
        display: block;
        overflow-y: auto;
    }

    .list-item,
    .history-item {
        padding: 8px 10px;
        height: auto;
        min-height: 80px;
    }

    .list-item-title,
    .history-item-title {
        font-size: 13px;
    }
    
    .list-item-type,
    .history-item-type {
        font-size: 11px;
        max-width: 200px;
    }

    .list-item-header,
    .history-item-header {
        padding-bottom: 6px;
    }

    .list-item-status,
    .history-item-status {
        padding: 3px 8px;
        font-size: 10px;
    }

    .progress-bar {
        height: 5px;
        margin-top: 6px;
    }

    .progress-info {
        font-size: 11px;
        margin-top: 4px;
    }

    .history-info {
        flex-direction: column;
        gap: 4px;
        padding-top: 6px;
    }

    .history-info-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .history-info-label {
        font-size: 11px;
    }

    .history-info-value {
        font-size: 12px;
    }

    .modal-content {
        width: 95%;
        max-width: 350px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    html, body {
        padding: 5px;
        overflow-x: hidden;
        min-height: 100vh;
        display: block;
    }

    body {
        padding: 5px;
        display: block;
        min-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .container {
        width: 100%;
        border-radius: 10px;
        margin: 0 auto;
        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
        position: relative;
    }

    .login-section {
        padding: 30px 15px;
    }

    .login-title {
        font-size: 20px;
    }

    .feature-tag {
        font-size: 10px;
        padding: 3px 10px;
    }

    .task-btn {
        font-size: 13px;
        padding: 12px 8px;
    }

    .platform-btn {
        min-width: calc(50% - 4px);
        font-size: 10px;
        padding: 8px 6px;
    }

    .list-item-title,
    .history-item-title {
        font-size: 12px;
    }
    
    .list-item-type,
    .history-item-type {
        font-size: 10px;
        max-width: 150px;
    }

    .progress-info,
    .history-info-label,
    .history-info-value {
        font-size: 12px;
    }

    .list-container {
        height: 300px;
        -webkit-overflow-scrolling: touch;
        display: block;
        overflow-y: auto;
    }

    .input-wrapper label {
        margin-left: 10px;
    }
}

.import-mode-btn {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.import-mode-btn:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.import-mode-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
    transform: translateY(-1px);
}

.import-mode-btn.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 【扩展功能】在线工单机显示样式 */
.online-machine {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    border-radius: 16px;
    margin-top: 14px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.online-machine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 25%, transparent 50%, rgba(255,255,255,0.05) 75%, rgba(255,255,255,0.1) 100%);
    transform: rotate(45deg);
    pointer-events: none;
}

.online-machine:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.5);
}

.online-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.online-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(4px);
}

.online-icon-box svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.online-text {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

.online-count-wrapper {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.online-count {
    font-size: 32px;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0,0,0,0.2);
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.online-unit {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* 手机端在线工单机显示适配 */
@media (max-width: 768px) {
    .online-machine {
        padding: 14px 20px;
        gap: 6px;
        margin-top: 12px;
        border-radius: 12px;
    }

    .online-wrapper {
        gap: 10px;
    }

    .online-icon-box {
        width: 34px;
        height: 34px;
    }

    .online-icon-box svg {
        width: 16px;
        height: 16px;
    }

    .online-text {
        font-size: 13px;
    }

    .online-count {
        font-size: 26px;
    }

    .online-unit {
        font-size: 13px;
    }
}