.domain-page {
    background: linear-gradient(180deg, #f8fbff 0%, #f4f8fd 100%);
    overflow: hidden;
}

/* =========================
   Banner（简洁白色科技风）
========================= */
.domain-banner {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.domain-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(37, 99, 235, .03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(37, 99, 235, .03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 90%);
    pointer-events: none;
}

.domain-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 1 !important;
}

.banner-mini-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(226, 232, 240, .95);
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .06);
}

.domain-banner-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.domain-banner-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

/* =========================
   搜索框（重点优化）
========================= */
.domain-search-box {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    padding: 28px 28px 24px;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(18px) saturate(160%) !important;
    border: 1px solid rgba(255, 255, 255, .92);
    box-shadow:
            0 20px 50px rgba(15, 23, 42, .06),
            0 8px 20px rgba(37, 99, 235, .05),
            inset 0 1px 0 rgba(255, 255, 255, .95);
}

.domain-search-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .06));
    pointer-events: none;
}

.domain-search-row {
    display: flex;
    gap: 14px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 10px;
    border-radius: 22px;
}

.domain-search-row .el-input {
    flex: 1;
}

.domain-search-row .el-input__wrapper {
    height: 60px;
    line-height: 60px;
    border-radius: 16px;
    font-size: 16px;
    background: #fff;
    border: 1px solid #e5edf7;
    box-shadow: inset 0 2px 8px rgba(15, 23, 42, .03);
    transition: all .25s ease;
}

.domain-search-row .el-input__wrapper.is-focus {
    border-color: rgba(59, 130, 246, .55) !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, .08);
}

.domain-search-row .el-button {
    height: 60px;
    min-width: 150px;
    border-radius: 16px;
    padding: 0 34px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: 0;
    color: #fff;
    box-shadow: 0 14px 26px rgba(37, 99, 235, .20);
    transition: all .25s ease;
}

.domain-search-row .el-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(37, 99, 235, .24);
}

.batch-tip {
    color: #64748b;
    font-size: 13px;
    margin-top: 16px;
    text-align: left;
    position: relative;
    z-index: 2;
    padding-left: 4px;
}

.domain-suffix-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.suffix-tag {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: #475569;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all .25s ease;
    font-size: 14px;
    font-weight: 500;
    user-select: none;
    box-shadow: 0 6px 16px rgba(15, 23, 42, .04);
}

.suffix-tag.active {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(37, 99, 235, .18);
}

/* 只在支持 hover 的设备（PC）生效 */
@media (hover: hover) and (pointer: fine) {
    .suffix-tag:hover {
        background: linear-gradient(135deg, #2563eb, #3b82f6);
        color: #fff;
        transform: translateY(-2px);
        border-color: transparent;
        box-shadow: 0 12px 24px rgba(37, 99, 235, .18);
    }
}

.suffix-tag.all {
    font-weight: 700;
}

/* =========================
   通用 section
========================= */
.domain-section {
    padding: 78px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 44px;
}

.section-title h2 {
    font-size: 34px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -.3px;
}

.section-title p {
    color: #6b7280;
    font-size: 15px;
}

/* =========================
   推荐卡片（简化高级版）
========================= */
.recommend-card {
    position: relative;
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .05);
    padding: 28px 24px;
    transition: all .28s ease;
    height: 100%;
    overflow: hidden;
}

.recommend-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .10);
}

.recommend-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.recommend-suffix {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
}

.recommend-tag {
    font-size: 12px;
    color: #2563eb;
    background: #eff6ff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.recommend-scene {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 22px;
    line-height: 1.8;
    min-height: 44px;
}

.recommend-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 22px;
}

.recommend-price .now {
    font-size: 34px;
    font-weight: 800;
    color: #2563eb;
}

.recommend-price .old {
    margin-left: 10px;
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

.recommend-list {
    margin-bottom: 24px;
}

.recommend-item {
    display: flex;
    align-items: center;
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 12px;
}

.recommend-item i {
    color: #22c55e;
    margin-right: 8px;
}

.recommend-btn {
    width: 100%;
    height: 46px;
    border-radius: 14px;
    font-weight: 700;
}

/* =========================
   卖点
========================= */
.feature-card {
    text-align: center;
    padding: 34px 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .9);
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(37, 99, 235, .08);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.85;
    font-size: 14px;
}

/* =========================
   全部价格
========================= */
.price-table-wrap {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .05);
    overflow: hidden;
}

.price-table-wrap .el-table,
.price-table-wrap .el-table__expanded-cell {
    background: transparent !important;
}

.price-table-wrap .el-table th {
    background: #f8fbff !important;
    color: #111827;
    font-weight: 700;
}

.price-table-wrap .el-table td,
.price-table-wrap .el-table th {
    padding: 14px 0;
}

.suffix-name {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.price-highlight {
    color: #2563eb;
    font-size: 18px;
    font-weight: 800;
}

/* =========================
   注册流程
========================= */
.step-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 22px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .04);
    height: 100%;
    transition: all .3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(37, 99, 235, .08);
}

.step-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 14px 26px rgba(37, 99, 235, .20);
}

.step-card h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.9;
}

/* =========================
   FAQ
========================= */
.faq-wrap {
    background: transparent;
}

.faq-item {
    background: rgba(255, 255, 255, .92);
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(226, 232, 240, .9);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.faq-wrap .el-collapse {
    border-top: 0 !important;
    border-bottom: 0 !important;
    background: transparent !important;
}

.faq-wrap .el-collapse-item {
    border-bottom: 0 !important;
}

.faq-wrap .el-collapse-item__header {
    height: 64px;
    line-height: 64px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    border-bottom: 0 !important;
    padding: 0 24px;
    background: transparent !important;
}

.faq-wrap .el-collapse-item__wrap {
    border-bottom: 0 !important;
    background: transparent !important;
}

.faq-wrap .el-collapse-item__content {
    padding: 0 24px 24px;
    color: #6b7280;
    line-height: 1.95;
    font-size: 14px;
}

@media (max-width: 768px) {
    .domain-banner {
        min-height: 520px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .domain-banner-content h1 {
        font-size: 32px;
    }

    .domain-banner-content p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .domain-search-box {
        padding: 18px;
        border-radius: 22px;
    }

    .domain-search-row {
        padding: 10px 0;
    }

    .domain-search-row .el-button {
        min-width: 80px;
        height: 50px;
        padding: 0 20px;
    }

    .section-title h2 {
        font-size: 28px;
    }


    .domain-search-row .el-input__wrapper {
        height: 50px;
        line-height: 50px;
    }

    .domain-suffix-list {
        gap: 8px;
    }

    .suffix-tag {
        padding: 8px 15px;
    }
}

.delay-1 {
    transition-delay: .08s;
}

.delay-2 {
    transition-delay: .16s;
}

.delay-3 {
    transition-delay: .24s;
}

/* =========================
热门推荐（最终精简高级版）
========================= */

.domain-recommend-final .section-title {
    margin-bottom: 34px;
}

/* 卡片 */
.recommend-card-final {
    position: relative;
    padding: 20px 18px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid #e5edf7;
    transition: all .25s ease;
    text-align: left;
}

.recommend-card-final:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, .10);
}

/* 主推卡 */
.recommend-card-final.is-hot {
    border-color: rgba(59, 130, 246, .35);
    box-shadow: 0 10px 26px rgba(37, 99, 235, .12);
}

/* 顶部 */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.suffix {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
}

.tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 600;
}

/* 价格 */
.price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 6px;
}

.currency {
    font-size: 14px;
    color: #2563eb;
    margin-right: 2px;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.unit {
    font-size: 12px;
    color: #64748b;
    margin-left: 4px;
}

/* 原价 */
.old-price {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 10px;
}

/* 描述 */
.desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    min-height: 36px;
    margin-bottom: 14px;
}

/* 按钮 */
.btn {
    width: 100%;
    height: 36px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    box-shadow: 0 8px 16px rgba(37, 99, 235, .15);
    transition: all .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, .2);
}

/* 响应式 */
@media (max-width: 768px) {
    .recommend-card-final {
        padding: 18px 16px 16px;
    }

    .suffix {
        font-size: 24px;
    }

    .price {
        font-size: 24px;
    }
}