/* roulang page: index */
:root {
            --primary: #0D9488;
            --primary-hover: #0F766E;
            --primary-light: #F0FDFA;
            --text-main: #1E293B;
            --text-muted: #64748B;
            --border-color: #E2E8F0;
            --bg-sterile: #F8FAFC;
            --navy-deep: #0A192F;
        }

        body {
            color: var(--text-main);
            background-color: #FFFFFF;
            line-height: 1.75;
            -webkit-font-smoothing: antialiased;
        }

        .sterile-card {
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sterile-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(15, 118, 110, 0.1), 0 8px 10px -6px rgba(15, 118, 110, 0.05);
            border-color: #99F6E4;
        }

        .btn-medical {
            background-color: var(--primary);
            color: #FFFFFF;
            transition: all 0.2s ease-in-out;
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-medical:hover {
            background-color: var(--primary-hover);
            box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
        }

        .btn-amber {
            background-color: #D97706;
            color: #FFFFFF;
            transition: all 0.2s ease-in-out;
            min-height: 44px;
            min-width: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-amber:hover {
            background-color: #B45309;
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
        }

        .hero-mesh {
            background-color: #0A192F;
            background-image: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(10, 25, 47, 0.95) 70%), url('/assets/images/7397fba57eace00d.webp');
            background-size: cover;
            background-position: center;
        }

        .accordion-content {
            transition: max-height 0.3s ease-out, opacity 0.2s ease;
        }
        
        /* 针对自测选型结果的动态交互样式 */
        .option-badge.active {
            border-color: #0D9488;
            background-color: #F0FDFA;
            color: #0F766E;
            font-weight: 600;
        }
