
        /* ----- 全新明亮风格，无任何框或卡片 ----- */
        body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            /* 明亮清新的背景图片（可替换为本地路径） */
            background-image: url('../../../common/img/domain/dnbg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-color: #f0f4f8; /* 图片加载时的备用亮色 */
            font-family: 'Helvetica Neue', Arial, sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a1a; /* 深色文字，确保在亮背景上清晰 */
            text-shadow: none; /* 亮背景不需要阴影 */
        }

        /* 内容容器 – 完全透明，只负责布局和居中对齐，无背景无边框 */
        .content-wrapper {
            max-width: 820px;
            width: 92%;
            margin: 2rem auto;
            padding: 2.5rem 2rem;
            text-align: center;
            background: transparent !important; /* 彻底透明 */
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            border: none !important;
            box-shadow: none !important;
            border-radius: 0 !important;
        }

        /* 移动端响应式 */
        @media (max-width: 600px) {
            .content-wrapper {
                padding: 1.8rem 1.2rem;
                width: 95%;
            }
        }

        /* 链接颜色 – 深色，加下划线或悬停效果 */
        a {
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s, border-bottom 0.2s;
            border-bottom: 1px solid transparent;
        }
        a:hover {
            color: #0056b3;
            border-bottom-color: #0056b3;
        }

        /* 顶部徽章 */
        .domain-badge a {
            font-size: 0.9rem;
            letter-spacing: 1px;
            background: rgba(255, 255, 255, 0.6);
            padding: 0.3rem 1.4rem;
            border-radius: 30px;
            display: inline-block;
            backdrop-filter: blur(2px);
            border: 1px solid rgba(0,0,0,0.05);
            font-weight: 600;
            color: #1a1a1a;
        }
        .domain-badge a:hover {
            background: rgba(255, 215, 0, 0.4);
            border-bottom-color: transparent;
        }

        /* 域名主标题 */
        .domain-name {
            font-size: 3.6rem;
            font-weight: 700;
            margin: 1.2rem 0 0.6rem;
            letter-spacing: 1px;
            word-break: break-all;
            color: #0a0a0a;
            text-shadow: 0 2px 8px rgba(255,255,255,0.3);
        }
        @media (max-width: 600px) {
            .domain-name {
                font-size: 2.4rem;
            }
        }

        /* 价格区域 – 半透明白底，但无边框 */
        .price-container {
            margin: 1rem 0 1.8rem;
            font-size: 1.8rem;
            font-weight: 300;
            background: rgba(255, 255, 255, 0.5);
            display: inline-block;
            padding: 0.6rem 2.2rem;
            border-radius: 60px;
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255,255,255,0.3);
        }
        .price-value {
            font-weight: 700;
            color: #d4a017; /* 金色调 */
        }
        .price-sub {
            font-size: 1rem;
            opacity: 0.7;
            margin-left: 4px;
            color: #222;
        }

        /* 含义框 – 半透明白底，左侧金色边框 */
        .meaning-box {
            margin: 2rem 0;
            padding: 1.2rem 1.8rem;
            background: rgba(255, 255, 255, 0.55);
            border-radius: 18px;
            border-left: 6px solid #d4a017;
            text-align: left;
            backdrop-filter: blur(2px);
        }
        .meaning-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: #1a1a1a;
        }
        .meaning-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #222;
        }

        /* 注册商区域 */
        .registrar-section {
            margin: 2rem 0 1.5rem;
        }
        .registrar-info {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1rem;
            color: #1a1a1a;
        }
        .btn-registrar {
            display: inline-block;
            padding: 0.8rem 2.8rem;
            border-radius: 60px;
            font-size: 1.2rem;
            font-weight: 700;
            background: #d4a017;
            color: #fff !important;
            text-shadow: none;
            border: none;
            cursor: pointer;
            transition: all 0.25s;
            box-shadow: 0 8px 20px rgba(212, 160, 23, 0.3);
            text-decoration: none;
            border-bottom: none;
        }
        .btn-registrar:hover {
            background: #e6b422;
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(212, 160, 23, 0.5);
            color: #fff !important;
            border-bottom-color: transparent;
        }
        .btn-registrar.disabled {
            background: #aaa;
            box-shadow: none;
            color: #eee !important;
            cursor: not-allowed;
            opacity: 0.7;
            transform: none;
        }
        .btn-registrar.disabled:hover {
            background: #aaa;
            transform: none;
            box-shadow: none;
        }

        /* 底部导航链接 */
        .footer-note {
            margin-top: 2.2rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            font-size: 1rem;
            border-top: 1px solid rgba(0,0,0,0.1);
            padding-top: 1.8rem;
        }
        .footer-note a {
            opacity: 0.8;
            padding: 0.2rem 1rem;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.2s;
            border-bottom: none;
        }
        .footer-note a:hover {
            opacity: 1;
            background: rgba(212, 160, 23, 0.2);
            color: #0056b3;
        }

        /* 404 页面 */
        .not-found {
            padding: 1rem 0;
        }
        .not-found-icon {
            font-size: 4rem;
            margin-bottom: 0.5rem;
        }
        .not-found-title {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: 4px;
            color: #1a1a1a;
        }
        .not-found-msg {
            font-size: 1.2rem;
            margin: 1rem 0;
            opacity: 0.8;
        }
        .contact-link {
            display: inline-block;
            margin-top: 0.5rem;
            padding: 0.5rem 2rem;
            border: 1px solid rgba(0,0,0,0.15);
            border-radius: 60px;
            background: rgba(255,255,255,0.3);
            transition: 0.2s;
            color: #1a1a1a;
        }
        .contact-link:hover {
            background: rgba(212, 160, 23, 0.2);
            border-color: #d4a017;
        }

        /* 清除原有 card 样式（若有） */
        .card, .accent-header {
            display: none !important;
        }
        .content {
            padding: 0 !important;
            background: transparent !important;
            box-shadow: none !important;
        }

        /* 内部链接（如Google/Baidu） */
        .internal-link {
            /* 继承a样式 */
        }