/* 标书查重页面样式 */
.feature-card::before{
    background: unset !important;
}
.bid-check-wrapper {
    background:
        radial-gradient(circle at 20% 20%, rgba(22, 93, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(0, 180, 216, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, rgba(72, 202, 228, 0.06) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='52' height='92' viewBox='0 0 52 92'%3E%3Cpath fill='none' stroke='rgba(22,93,255,0.08)' stroke-width='1' d='M26 1L26 91M1 26L51 26M1 56L51 56M0 0L26 15L52 0M52 92L26 77L0 92M26 77L26 15'/%3E%3C/svg%3E"),
        linear-gradient(135deg, #E8F4FD 0%, #F0F8FF 40%, #F8FBFF 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 52px 92px, 100% 100%;
    min-height: calc(100vh - 80px);
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(22, 93, 255, 0.1);
    box-shadow: 0 4px 24px rgba(22, 93, 255, 0.06);
}

.feature-card {
    background: white;
    border: 1px solid rgba(22, 93, 255, 0.12);
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(22, 93, 255, 0.04);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(22, 93, 255, 0.15);
    border-color: rgba(22, 93, 255, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #165DFF 0%, #00B4D8 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(22, 93, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(22, 93, 255, 0.4);
}

.stat-item {
    background: rgba(22, 93, 255, 0.05);
    border: 1px solid rgba(22, 93, 255, 0.1);
}

.upload-area {
    border: 2px dashed rgba(22, 93, 255, 0.2);
    background: rgba(22, 93, 255, 0.02);
    transition: all 0.3s ease;
}

.upload-area:hover,
.upload-area.drag-over {
    border-color: #165DFF;
    background-color: rgba(22, 93, 255, 0.06);
}

.slider-track {
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: rgba(22, 93, 255, 0.1);
    border-radius: 3px;
    outline: none;
}

.slider-track::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #165DFF;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(22, 93, 255, 0.3);
}

.slider-track::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #165DFF;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(22, 93, 255, 0.3);
}

.checkbox-custom {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(22, 93, 255, 0.2);
    border-radius: 4px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-custom:checked {
    background: #165DFF;
    border-color: #165DFF;
}

.checkbox-custom:checked::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.fade-enter {
    opacity: 0;
    transform: translateY(20px);
}

.fade-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.fade-exit {
    opacity: 1;
    transform: translateY(0);
}

.fade-exit-active {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.doc-icon {
    background: linear-gradient(135deg, rgba(22, 93, 255, 0.1) 0%, rgba(22, 93, 255, 0.03) 100%);
}

.docx-icon {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.1) 0%, rgba(0, 180, 216, 0.03) 100%);
}

#check-view {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(22, 93, 255, 0.08);
    border: 1px solid rgba(22, 93, 255, 0.08);
}

.gradient-text {
    background: linear-gradient(135deg, #165DFF 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-radial {
    background: radial-gradient(ellipse at center, rgba(22, 93, 255, 0.06) 0%, transparent 70%);
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Tailwind preflight 覆盖样式
   Tailwind CDN 的 preflight 会重置 a 标签样式
   仅覆盖导航栏需要的部分，页脚沿用内联样式（与其他页面一致）
   ======================================== */

/* 导航栏 - 覆盖 Tailwind 对 a 标签的重置 */
.navbar a {
    color: #002B73;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.navbar a.active {
    color: #086DFF !important;
}

.login-btn a {
    color: white;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    padding: 0;
    background: linear-gradient(90deg, #086DFF 0%, #1ECEFF 100%);
    width: 112px;
    height: 40px;
    border-radius: 4px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

.container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 15px;
}
