:root {
            --primary: #00B578;
            --primary-light: rgba(0, 181, 120, 0.1);
            --primary-bg: #F2FBF9;
            --text-main: #1F2937;
            --text-sub: #6B7280;
            --text-light: #9CA3AF;
            --tag-blue: #409EFF;
            --tag-orange: #FF9A3C;
            --tag-brown: #B6784E;
            --tag-red: #F56C6C;
            --tag-cyan: #36CFC9;
            --tag-green: #67C23A;
            --border-color: #E5E7EB;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
            color: var(--text-main);
            line-height: 1.7;
            background-color: #fff;
        }

        .container-warp {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* 导航栏 */
        .header {
            background-color: #fff;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            color: var(--primary);
        }

        .logo-text {
            margin-left: 12px;
        }

        .logo-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
        }

        .logo-sub {
            font-size: 12px;
            color: var(--text-sub);
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
            font-size: 16px;
        }

        .nav-menu a {
            color: var(--text-main);
            text-decoration: none;
            transition: color 0.3s;
			font-weight:bold;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 16px;
        }

        .nav-phone {
            font-weight: 500;
            color: var(--text-main);
        }

        .lang-select {
            display: flex;
            align-items: center;
            color: var(--text-sub);
            font-size: 14px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: #fff;
            border: none;
            padding: 10px 24px;
            border-radius: 999px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-primary:hover {
            background-color: rgba(0, 181, 120, 0.9);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--text-main);
        }

        .mobile-menu {
            display: none;
            background-color: #F9FAFB;
            border-top: 1px solid var(--border-color);
            overflow: hidden;
        }

        .mobile-menu.active {
            display: block;
            animation: mobileMenuSlide 0.3s ease;
        }

        @keyframes mobileMenuSlide {
            from { opacity: 0; transform: translateY(-8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .mobile-menu-inner {
            padding: 12px 10px 20px;
        }

        .mobile-menu-link {
            display: flex !important;
            align-items: center;
            gap: 12px;
            padding: 14px 0 !important;
            color: var(--text-main) !important;
            text-decoration: none;
            font-size: 15px !important;
            font-weight: 500;
            border-bottom: 1px solid #F3F4F6;
            transition: all 0.2s;
        }

        .mobile-menu-link:last-of-type {
            border-bottom: none;
        }

        .mobile-menu-link:hover {
            color: var(--primary) !important;
            background: rgba(0, 181, 120, 0.04);
            padding-left: 8px !important;
        }

        .mobile-menu-icon {
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
        }

        .mobile-menu-icon svg {
            width: 20px;
            height: 20px;
        }

        .mobile-menu-hotline {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 2px solid var(--border-color);
        }

        .mobile-menu-call-btn {
            display: flex !important;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--primary);
            color: #fff !important;
            padding: 12px 0 !important;
            border-radius: 999px;
            font-size: 16px !important;
            font-weight: 600;
            text-decoration: none;
        }

        .mobile-menu-call-btn:hover {
            background: rgba(0, 181, 120, 0.9);
        }

        /* 查询区域 */
        .query-section {
            background-color: var(--primary-bg);
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 32px;
            color: var(--text-main);
        }

        .search-box {
            display: flex;
            gap: 16px;
            max-width: 720px;
            margin: 0 auto 24px;
        }

        .search-input {
            flex: 1;
            padding: 16px 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .search-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0, 181, 120, 0.1);
        }

        .search-btn {
            background-color: var(--primary);
            color: #fff;
            border: none;
            padding: 0 32px;
			line-height:50px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: background-color 0.3s;
        }

        .search-btn:hover {
            background-color: rgba(0, 181, 120, 0.9);
        }

        .tag-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-bottom: 32px;
            font-size: 14px;
        }

        .tag-label {
            color: var(--text-sub);
        }

        .tag-item {
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 14px;
        }

        .tag-blue { background: rgba(64, 158, 255, 0.1); color: var(--tag-blue); }
        .tag-orange { background: rgba(255, 154, 60, 0.1); color: var(--tag-orange); }
        .tag-brown { background: rgba(182, 120, 78, 0.1); color: var(--tag-brown); }
        .tag-red { background: rgba(245, 108, 108, 0.1); color: var(--tag-red); }
        .tag-cyan { background: rgba(54, 207, 201, 0.1); color: var(--tag-cyan); }
        .tag-green { background: rgba(103, 194, 58, 0.1); color: var(--tag-green); }

        .notice-box {
            background-color: #e3f9ec;
            border: 1px solid #BBF7D0;
            border-radius: 8px;
            padding: 24px;
            max-width: 1080px;
            margin: 0 auto 32px;
        }

        .notice-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .notice-list {
            list-style: none;
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
        }

        .number-list-wrap {
            max-width: 1080px;
            margin: 0 auto 24px;
        }

        .number-list-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .number-list {
            background-color: rgba(255, 255, 255, 0.7);
            padding: 16px;
            border-radius: 8px;
            font-size: 13px;
            color: var(--text-light);
            line-height: 2;
            word-break: break-all;
            letter-spacing: 0.3px;
        }

        .tip-text {
            text-align: center;
            font-size: 14px;
            color: var(--text-sub);
        }

        /* 通用区块 */
        .section {
            padding: 80px 0;
            background-color: #fff;
        }

        .section-head {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-head h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-main);
        }

        .section-head p {
            font-size: 16px;
            color: var(--text-sub);
            max-width: 720px;
            margin: 0 auto;
        }

        /* 对比区域 */
        .compare-wrap {
            display: flex;
            align-items: center;
            gap: 64px;
        }

        .compare-text {
            flex: 1;
        }

        .compare-text h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .compare-text p {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .contact-btn {
            background-color: var(--primary);
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s;
        }

        .contact-btn:hover {
            background-color: rgba(0, 181, 120, 0.9);
        }

        .compare-phones {
            flex: 1;
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .phone-item {
            text-align: center;
        }

        .phone-item-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .title-red { color: var(--tag-red); }
        .title-green { color: var(--tag-green); }

        /* 手机模型 */
        .phone-mock {
            background: #1a1a1a;
            border-radius: 40px;
            padding: 3px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.15);
            width: 208px;
        }

        .phone-screen {
            border-radius: 36px;
            overflow: hidden;
            background: linear-gradient(180deg, #3a3f47 0%, #1e2126 100%);
            height: 384px;
        }

        .phone-notch {
            height: 28px;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phone-notch span {
            width: 80px;
            height: 8px;
            border-radius: 4px;
            background: #333;
        }

        .phone-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: calc(100% - 28px);
            padding: 24px 24px 32px;
        }

        .phone-number {
            text-align: center;
            color: #fff;
            font-size: 20px;
        }

        .phone-desc {
            text-align: center;
            color: #D1D5DB;
            font-size: 14px;
            margin-top: 8px;
        }

        .phone-actions {
            display: flex;
            justify-content: space-around;
        }

        .action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .action-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        .btn-red { background-color: #EF4444; }
        .btn-green { background-color: #22C55E; }

        .action-text {
            color: #fff;
            font-size: 14px;
            margin-top: 8px;
        }

        /* 产品认证区域 */
        .product-wrap {
            display: flex;
            align-items: center;
            gap: 64px;
        }

        .product-demo {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
        }

        .product-phone {
            background: #fff;
            border-radius: 34px;
            padding: 3px;
            box-shadow: var(--shadow-md);
            width: 256px;
        }

        .product-phone-screen {
            background-color: #F9FAFB;
            border-radius: 30px;
            overflow: hidden;
        }

        .phone-top-bar {
            height: 28px;
            background-color: #F3F4F6;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phone-top-bar span {
            width: 64px;
            height: 6px;
            border-radius: 3px;
            background-color: #D1D5DB;
        }

        .phone-body {
            padding: 24px;
            height: 420px;
        }

        .phone-brand {
            text-align: center;
            margin-bottom: 24px;
        }

        .brand-logo {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: #DC2626;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
        }

        .brand-name {
            font-size: 16px;
            font-weight: 600;
            margin-top: 12px;
            color: var(--text-main);
        }

        .brand-number {
            font-size: 14px;
            color: var(--text-sub);
            margin-top: 4px;
        }

        .phone-status {
            text-align: center;
            font-size: 14px;
            color: var(--text-sub);
            margin-bottom: 40px;
        }

        .phone-call-btn {
            display: flex;
            justify-content: center;
        }

        .call-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: #EF4444;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
        }

        /* 左侧通话卡片 */
        .call-cards {
            position: absolute;
            left: 0;
            top: 40px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .call-card {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: var(--shadow-md);
            padding: 12px;
            width: 128px;
        }

        .call-card-inner {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .card-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #E5E7EB;
        }

        .card-info {
            flex: 1;
        }

        .card-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
        }

        .card-btns {
            display: flex;
            gap: 6px;
            margin-top: 4px;
        }

        .card-btn-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        /* 盾牌图标 */
        .shield-icon {
            position: absolute;
            right: -12px;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: #3B82F6;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
        }

        .product-info {
            flex: 1;
        }

        .product-tag {
            font-size: 14px;
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 12px;
        }

        .product-info h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .product-info p {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .plan-btn {
            background-color: var(--primary);
            color: #fff;
            border: none;
            padding: 12px 32px;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            margin-bottom: 16px;
            transition: background-color 0.3s;
        }

        .plan-btn:hover {
            background-color: rgba(0, 181, 120, 0.9);
        }

        .product-desc {
            font-size: 14px;
            color: var(--text-sub);
        }

        /* 产品优势 */
        .advantage-section {
            background-color: rgba(242, 251, 249, 0.5);
        }

        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .advantage-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 32px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s;
        }

        .advantage-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .adv-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .advantage-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .advantage-card p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.6;
        }

        /* 资讯区域 */
        .news-section h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .news-desc {
            font-size: 14px;
            color: var(--text-sub);
            margin-bottom: 40px;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .news-card {
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: box-shadow 0.3s;
            position: relative;
        }

        .news-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .news-card-inner {
            padding: 32px;
        }

        .news-card h3 {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--text-main);
        }

        .news-date {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 20px;
        }

        .news-tag {
            font-size: 12px;
            color: var(--text-sub);
            background-color: #F3F4F6;
            padding: 6px 12px;
            border-radius: 4px;
            display: inline-block;
        }

        .news-dot {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #EF4444;
        }

        /* 页脚 */
        .footer {
            background-color: #fff;
            border-top: 1px solid var(--border-color);
            padding-top: 56px;
            padding-bottom: 32px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 40px;
            margin-bottom: 48px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-main);
        }

        .footer-phone {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .footer-info {
            font-size: 14px;
            color: var(--text-sub);
            margin-bottom: 8px;
        }

        .footer-qrcode {
            width: 80px;
            height: 80px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .qrcode-icon {
            width: 48px;
            height: 48px;
            color: var(--text-sub);
        }

        .qrcode-text {
            font-size: 12px;
            color: var(--text-sub);
            margin-top: 4px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 12px;
        }

        .footer-col a {
            font-size: 14px;
            color: var(--text-sub);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            padding-top: 24px;
        }

        .footer-bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-sub);
            flex-wrap: wrap;
            gap: 12px;
        }

        .footer-licenses {

            display: flex;

            flex-wrap: wrap;

            gap: 24px;

        }



        .footer-bottom-inner a {

            color: #6b7280;

            text-decoration: none;

        }



        .footer-bottom-inner a:hover {

            color: #00B578;

        }

        /* 悬浮工具栏 */
        .float-toolbar {
            position: fixed;
            right: 24px;
            bottom: 128px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 40;
        }

        .float-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: #fff;
            box-shadow: var(--shadow-md);
            border: none;
            color: var(--text-sub);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s;
        }

        .float-btn:hover {
            color: var(--primary);
        }

        /* 底部客服 */
        .service-btn {
            position: fixed;
            right: 24px;
            bottom: 0;
            z-index: 40;
            background-color: var(--primary);
            color: #fff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px 8px 0 0;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .container-warp {
                padding: 0 20px;
            }

            .nav-menu, .nav-right .nav-phone, .lang-select {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu.active {
                display: block;
                animation: mobileMenuSlide 0.3s ease;
            }

            .section-title {
                font-size: 28px;
            }

            .search-box {
                flex-direction: column;
            }

            .compare-wrap, .product-wrap {
                flex-direction: column;
                gap: 40px;
            }

            .compare-phones {
                gap: 20px;
            }

            .phone-mock {
                width: 160px;
            }

            .phone-screen {
                height: 300px;
            }

            .advantage-grid, .news-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-bottom-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .call-cards, .shield-icon {
                display: none;
            }
        }

        /* SVG图标统一尺寸 */
        .svg-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* ===== 首页新闻栏目子标题 ===== */
        .news-sub-title {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 32px 0 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid #00B578;
        }
        .news-sub-title h3 {
            font-size: 20px;
            font-weight: 600;
            color: #1F2937;
            margin: 0;
        }
        .news-sub-title .news-view-all {
            font-size: 14px;
            color: #00B578;
            text-decoration: none;
            transition: color 0.2s;
        }
        .news-sub-title .news-view-all:hover {
            color: #009663;
        }

        /* ===== 支付二维码弹窗 ===== */
        .nmq-pay-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .nmq-pay-modal-content {
            background: #fff;
            border-radius: 16px;
            width: 90%;
            max-width: 420px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
            animation: nmqModalIn 0.25s ease;
        }

        @keyframes nmqModalIn {
            from { transform: scale(0.92); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .nmq-pay-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            border-bottom: 1px solid #F3F4F6;
        }

        .nmq-pay-modal-title {
            font-size: 18px;
            font-weight: 600;
            color: #1F2937;
        }

        .nmq-pay-modal-close {
            font-size: 26px;
            color: #9CA3AF;
            cursor: pointer;
            line-height: 1;
            transition: color 0.2s;
        }

        .nmq-pay-modal-close:hover {
            color: #1F2937;
        }

        .nmq-pay-modal-body {
            padding: 28px 24px 32px;
            text-align: center;
        }

        .nmq-pay-info {
            margin-bottom: 20px;
        }

        .nmq-pay-price {
            font-size: 32px;
            font-weight: 700;
            color: #00B578;
            line-height: 1.2;
        }

        .nmq-pay-method {
            font-size: 15px;
            color: #6B7280;
            margin-top: 4px;
        }

        .nmq-qr-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            padding: 12px;
            border: 1px solid #F3F4F6;
            border-radius: 12px;
            background: #FAFAFA;
        }

        .nmq-qr-wrapper img {
            display: block;
            width: 220px;
            height: 220px;
            border-radius: 8px;
        }

        .nmq-qr-link {
            display: inline-block;
            padding: 12px 28px;
            background: #00B578;
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
        }

        .nmq-pay-order {
            font-size: 13px;
            color: #9CA3AF;
            margin-bottom: 8px;
            word-break: break-all;
        }

        .nmq-countdown {
            font-size: 14px;
            color: #6B7280;
            margin-bottom: 8px;
        }

        .nmq-pay-status {
            font-size: 14px;
            color: #00B578;
            font-weight: 500;
        }

        .nmq-pay-loading {
            padding: 60px 0;
            font-size: 15px;
            color: #6B7280;
        }

        .nmq-error {
            padding: 40px 0;
            font-size: 15px;
            color: #EF4444;
        }

        .nmq-qr-expired {
            padding: 40px 0 16px;
            font-size: 16px;
            color: #9CA3AF;
        }

        .nmq-regen-btn {
            display: inline-block;
            padding: 10px 24px;
            background: #00B578;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .nmq-regen-btn:hover {
            background: #009663;
        }

        @media (max-width: 480px) {
            .nmq-pay-modal-content {
                width: 94%;
                border-radius: 12px;
            }
            .nmq-pay-modal-body {
                padding: 20px 16px 24px;
            }
            .nmq-pay-price {
                font-size: 28px;
            }
            .nmq-qr-wrapper img {
                width: 180px;
                height: 180px;
            }
        }


/* ===== 进度条+二维码弹窗 ===== */
.nmq-progress-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: nmq-fade-in 0.3s ease;
}
@keyframes nmq-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
.nmq-progress-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    width: 90%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    animation: nmq-slide-up 0.35s ease;
}
@keyframes nmq-slide-up {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* 进度条弹窗 */
.nmq-progress-icon {
    margin: 0 auto 20px;
    width: 56px;
    height: 56px;
    position: relative;
}
.nmq-progress-icon .nmq-progress-ring {
    transition: stroke-dashoffset 0.05s linear;
}
.nmq-progress-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
}
.nmq-progress-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px;
}
.nmq-progress-bar-wrap {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}
.nmq-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00B578, #00d49a);
    border-radius: 4px;
    transition: width 0.05s linear;
}

/* 二维码结果弹窗 */
.nmq-qrcode-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}
.nmq-qrcode-close:hover { color: #333; }
.nmq-qrcode-icon {
    margin: 0 auto 16px;
    width: 48px;
    height: 48px;
}
.nmq-qrcode-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px;
}
.nmq-qrcode-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px;
}
.nmq-qrcode-area {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nmq-qrcode-area img,
.nmq-qrcode-area canvas {
    display: block;
}
.nmq-qrcode-hint {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .nmq-progress-modal-box {
        padding: 32px 24px;
        max-width: 320px;
    }
    .nmq-qrcode-area {
        width: 180px;
        height: 180px;
    }
    .nmq-progress-title,
    .nmq-qrcode-title {
        font-size: 18px;
    }
    .nmq-progress-text,
    .nmq-qrcode-desc {
        font-size: 13px;
    }
}


/* ===== 查询完成对号图标 ===== */
.nmq-qrcode-check {
    margin: 0 auto 16px;
    width: 52px;
    height: 52px;
    animation: nmq-check-pop 0.4s ease;
}
@keyframes nmq-check-pop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
/* 免费文字突出 */
.nmq-free-text {
    color: #00B578;
    font-weight: 700;
    font-size: 18px;
}


/* ===== 客服联系模块 ===== */
.nmq-rp-contact {
    max-width: 680px;
    margin: 24px auto 0;
    padding: 32px 40px;
    background: linear-gradient(135deg, #f0faf6 0%, #e8f8f4 100%);
    border: 1px solid #d4ede4;
    border-radius: 12px;
    text-align: center;
}
.nmq-rp-contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.nmq-rp-contact-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px;
}
.nmq-rp-contact-qr {
    display: inline-block;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,181,120,0.12);
}
.nmq-rp-contact-qr img {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 6px;
}
.nmq-rp-contact-qr-label {
    margin-top: 10px;
    font-size: 13px;
    color: #00B578;
    font-weight: 600;
}
@media (max-width: 480px) {
    .nmq-rp-contact {
        padding: 20px 16px;
        margin: 16px 10px 0;
    }
    .nmq-rp-contact-title {
        font-size: 17px;
    }
    .nmq-rp-contact-qr img {
        width: 130px;
        height: 130px;
    }
}
