
html, body {
    overflow-x: auto !important;
    zoom: 1 !important;
    transform: none !important;
}

/* 全局样式优化 - 电脑版专用 */
body {
    background: linear-gradient(135deg, #018dc3 0%, #79ffe7 100%) fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    font-size: 14px;
    line-height: 1.4;
}

/* 主容器 - 合并查询框和结果 */
.main-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* 查询表单美化 - 紧凑布局 */
#queryForm {
    background: transparent;
    padding: 20px;
    margin-bottom: 0;
    border-bottom: 1px solid #f1f3f4;
    align-items: center;
    gap: 12px;
    box-shadow: none;
    border: none;
    border-radius: 15px 15px 0 0;
}

#queryForm input {
    border: 2px solid #e1e5eb;
    border-radius: 8px;
    padding: 10px 25px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 60%;
    height: 40px;
    flex-shrink: 0;
}

#queryForm input:focus {
    outline: none;
    border-color: #4dabf7;
    background: white;
    box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.1);
}

#queryForm button {
    background: linear-gradient(135deg, #018dc3 0%, #79ffe7 100%) fixed;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
    height: 60px;
    font-size: 14px;
    flex-shrink: 0;
}

#queryForm button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

#queryForm button:active {
    transform: translateY(0);
}

/* 结果容器美化 - 紧凑布局 */
#result {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
    backdrop-filter: none;
    margin-top: 0;
        border-radius: 0 0 15px 15px;
}
#result p {padding-left:20px;margin:0 0 5px 0}

/* ICCID项目卡片美化 - 紧凑布局 */
.iccid-item {
    background: transparent;
    margin: 0;
    padding: 15px 20px;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}



.iccid-item:last-child {
    border-bottom: none;
}

.iccid-item p {
    margin: 5px ;
    font-size: 14px;
    color: #2d3748;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.iccid-item strong {
    color: #4a5568;
    font-weight: 600;
    min-width: 70px;
}

/* 状态徽章美化 */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 刷新按钮美化 */
.refresh-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(79, 172, 254, 0.3);
    height: 28px;
    flex-shrink: 0;
}

.refresh-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(79, 172, 254, 0.4);
}

.refresh-btn:disabled {
    background: #a0aec0;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.6;
}

/* 状态显示区域美化 - 紧凑 */
.status {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: #4a5568;
    margin-top: 8px;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

/* 日志显示区域美化 - 紧凑 */
.log {
    background: #1a202c;
    color: #e2e8f0;
    border: none;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 40px;
    
    padding:0 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    max-height: 120px;
    overflow-y: auto;
}

/* iframe容器美化 */
#iframe {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: white;
    min-height: 500px;
}

#iframe iframe {
    width: 100%;
    height: 70vh;
    border: none;
    background: white;
}

/* 状态颜色保持原有逻辑，增强阴影效果 */
.status-1 { background-color: #fff3cd; color: #856404; box-shadow: 0 1px 3px rgba(133, 100, 4, 0.2); }
.status-2 { background-color: #d4edda; color: #155724; box-shadow: 0 1px 3px rgba(21, 87, 36, 0.2); }
.status-3 { background-color: #cce7ff; color: #004085; box-shadow: 0 1px 3px rgba(0, 64, 133, 0.2); }
.status-4 { background-color: #f8d7da; color: #721c24; box-shadow: 0 1px 3px rgba(114, 28, 36, 0.2); }
.status-5 { background-color: #e2e3e5; color: #383d41; box-shadow: 0 1px 3px rgba(56, 61, 65, 0.2); }
.status-6 { background-color: #f8d7da; color: #721c24; box-shadow: 0 1px 3px rgba(114, 28, 36, 0.2); }
.status-7 { background-color: #e2e3e5; color: #383d41; box-shadow: 0 1px 3px rgba(56, 61, 65, 0.2); }
.status-10 { background-color: #d1ecf1; color: #0c5460; box-shadow: 0 1px 3px rgba(12, 84, 96, 0.2); }
.unknown-status { background-color: #e2e3e5; color: #383d41; box-shadow: 0 1px 3px rgba(56, 61, 65, 0.2); }

/* 加载动画 */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

.refresh-btn:disabled {
    animation: pulse 1.5s ease-in-out infinite;
}

/* 滚动条美化 */
.log::-webkit-scrollbar {
    width: 6px;
}

.log::-webkit-scrollbar-track {
    background: #2d3748;
    border-radius: 3px;
}

.log::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 3px;
}

.log::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

/* 强制禁用移动端视口缩放 */
@viewport {
    width: device-width;
    zoom: 1.0;
    user-zoom: fixed;
}
#queryForm,#result,#iframe {
    background: #ffffff;
}