﻿/* =========================================================
   瞳芯用户中心完整合并版 CSS
   说明：包含原 user.css 的基础模块 + 新增询价卡片/详情/注册协议样式
   Theme: #053099 / #ff6a00
   ========================================================= */

:root {
    --tx-blue: #053099;
    --tx-orange: #ff6a00;
    --tx-blue-dark: #03236f;
    --tx-blue-light: #eef4ff;
    --tx-orange-light: #fff3e8;
    --tx-line: #dbe7ff;
    --tx-line2: #eef2fb;
    --tx-text: #0f172a;
    --tx-muted: #64748b;
    --tx-bg: #f5f8ff;
    --tx-card: #ffffff;
    --tx-gradient: linear-gradient(90deg, #053099 0%, #ff6a00 100%);
    --tx-gradient2: linear-gradient(135deg, #053099 0%, #ff6a00 100%);
    --tx-shadow: 0 8px 22px rgba(5, 48, 153, .055);
    --tx-shadow2: 0 6px 16px rgba(5, 48, 153, .08);
}

/* =========================================================
   左侧会员菜单 / 当前状态
   ========================================================= */

#user-index .user-index,
#user-proinfo .user-proinfo,
#user-order .user-order,
#user-inquiry .user-inquiry,
#user-address .user-address,
#user-invoice .user-invoice,
#user-favorite .user-favorite,
#user-history .user-history,
#user-password .user-password {
    background: var(--tx-gradient) !important;
    color: #fff !important;
}

    #user-index .user-index i,
    #user-proinfo .user-proinfo i,
    #user-order .user-order i,
    #user-inquiry .user-inquiry i,
    #user-address .user-address i,
    #user-invoice .user-invoice i,
    #user-favorite .user-favorite i,
    #user-history .user-history i,
    #user-password .user-password i {
        color: #fff !important;
    }

.user-left {
    width: 20%;
    margin: 0;
}

    .user-left a {
        display: block;
        width: 100%;
        height: 46px;
        line-height: 46px;
        padding: 0 24px;
        margin-bottom: 10px !important;
        border-radius: 24px 0 0 24px;
        background: #fff;
        color: var(--tx-text);
        border: 1px solid var(--tx-line);
        box-shadow: 0 6px 14px rgba(5, 48, 153, .045);
        font-size: 14px;
        transition: all .22s ease;
    }

        .user-left a:hover {
            color: var(--tx-blue);
            border-color: rgba(5, 48, 153, .24);
            background: linear-gradient(90deg, #fff 0%, var(--tx-blue-light) 100%);
            transform: translateX(2px);
        }

        .user-left a i {
            width: 18px;
            margin-right: 12px;
            font-size: 17px;
            color: var(--tx-blue);
        }

/* =========================================================
   右侧会员中心基础布局
   ========================================================= */

.user-right {
    width: 79%;
    margin: 0;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid var(--tx-line);
    border-radius: 8px;
    box-shadow: var(--tx-shadow);
}

    .user-right .info-list h2 {
        color: var(--tx-blue);
        border-bottom: 1px solid var(--tx-line);
        font-size: 17px;
        font-weight: 800;
        padding: 8px 0 10px;
        margin-bottom: 14px;
    }

        .user-right .info-list h2 label {
            float: right;
            font-size: 13px;
            color: var(--tx-muted);
            font-weight: normal;
        }

        .user-right .info-list h2 i {
            margin-right: 8px;
            color: var(--tx-orange);
        }

    .user-right .form-group span {
        color: #e11d48;
        margin-right: 5px;
    }

.user-box {
    width: 100%;
}

.user-box-item {
    padding-bottom: 18px;
}

.user-avatar {
    width: 13%;
    max-width: 130px;
}

    .user-avatar img {
        width: 100%;
        border-radius: 50%;
        border: 2px solid var(--tx-blue-light);
        box-shadow: 0 6px 16px rgba(5, 48, 153, .08);
    }

.user-info {
    width: 84%;
}

    .user-info li {
        width: 50%;
        height: 28px;
        line-height: 28px;
        color: var(--tx-text);
        font-size: 14px;
    }

        .user-info li a {
            color: var(--tx-orange);
            padding-left: 5px;
            font-weight: 600;
        }

            .user-info li a:hover {
                color: var(--tx-blue);
            }

.user-menu {
    width: 100%;
    padding: 18px 0;
    border-top: 1px solid var(--tx-line);
    border-bottom: 1px solid var(--tx-line);
}

    .user-menu dl {
        width: 20%;
        text-align: center;
    }

        .user-menu dl dt i,
        .user-menu dl dd a {
            color: var(--tx-blue);
        }

        .user-menu dl:hover dt i,
        .user-menu dl:hover dd a {
            color: var(--tx-orange);
        }

/* =========================================================
   我的询价 / 交易订单 DIV 卡片紧凑版
   ========================================================= */

.user-order-list,
.user-inquiry-card-list {
    width: 100%;
    padding: 14px 0 18px;
}

    .user-inquiry-card-list h3,
    .user-order-list h3 {
        font-size: 1.35rem;
        line-height: 34px;
        margin-bottom: 12px;
        color: var(--tx-blue);
        font-weight: 800;
    }

.user-inquiry-card-item {
    width: 100%;
    background: #fff;
    border: 1px solid var(--tx-line);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(5, 48, 153, .045);
    transition: all .22s ease;
}

    .user-inquiry-card-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(5, 48, 153, .07);
    }

.user-inquiry-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: linear-gradient(90deg, #eef4ff 0%, #fff3e8 100%);
    border-bottom: 1px solid var(--tx-line);
}

.user-inquiry-order,
.user-inquiry-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .user-inquiry-order span,
    .user-inquiry-status span {
        font-size: 12px;
        color: var(--tx-muted);
    }

    .user-inquiry-order a {
        font-size: 18px;
        line-height: 24px;
        font-weight: 800;
        color: var(--tx-blue);
        text-decoration: none;
    }

        .user-inquiry-order a:hover {
            color: var(--tx-orange);
        }

    .user-inquiry-status em {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 72px;
        height: 28px;
        padding: 0 12px;
        background: var(--tx-gradient);
        color: #fff;
        border-radius: 999px;
        box-shadow: 0 4px 12px rgba(5, 48, 153, .12);
        font-style: normal;
        font-size: 12px;
        font-weight: 700;
    }

.user-inquiry-card-body {
    display: grid;
    grid-template-columns: minmax(260px, 1.7fr) 120px 150px 112px;
    gap: 14px;
    padding: 16px 18px;
    align-items: start;
}

.user-inquiry-card-col {
    min-width: 0;
}

    .user-inquiry-card-col label {
        display: block;
        margin-bottom: 8px;
        color: var(--tx-muted);
        font-size: 12px;
        line-height: 18px;
        font-weight: 600;
    }

.inquiry-products-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .inquiry-products-list p {
        margin: 0;
        padding: 8px 12px;
        background: #f8fbff;
        border: 1px solid #e6eefc;
        border-radius: 8px;
        color: var(--tx-text);
        font-size: 14px;
        line-height: 20px;
        word-break: break-all;
        transition: all .2s ease;
    }

        .inquiry-products-list p:hover {
            border-color: rgba(5, 48, 153, .18);
            background: #f3f8ff;
        }

.inquiry-amount-price {
    margin-bottom: 6px;
    color: var(--tx-orange);
    font-size: 22px;
    line-height: 28px;
    font-weight: 800;
}

.inquiry-amount-pay {
    display: inline-block;
    padding: 4px 10px;
    background: #fff6ee;
    border: 1px solid #ffd7b8;
    border-radius: 999px;
    color: #d85a00;
    font-size: 12px;
    line-height: 18px;
}

.inquiry-time-text {
    color: var(--tx-text);
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    word-break: break-word;
}

.inquiry-action-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .inquiry-action-btns a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 92px;
        height: 34px;
        padding: 0 14px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        transition: all .2s ease;
    }

    .inquiry-action-btns .btn-view {
        background: linear-gradient(90deg, #053099 0%, #2f5fd6 100%);
        color: #fff;
        box-shadow: 0 6px 14px rgba(5, 48, 153, .12);
    }

        .inquiry-action-btns .btn-view:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 20px rgba(5, 48, 153, .18);
        }

    .inquiry-action-btns .btn-pay {
        background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%);
        color: #fff;
        box-shadow: 0 6px 14px rgba(255, 106, 0, .13);
    }

        .inquiry-action-btns .btn-pay:hover {
            transform: translateY(-1px);
            box-shadow: 0 10px 20px rgba(255, 106, 0, .22);
            color: #fff;
        }

    .inquiry-action-btns .btn-cancel {
        background: #fff8f2;
        color: var(--tx-orange);
        border: 1px solid #ffd4b0;
    }

        .inquiry-action-btns .btn-cancel:hover {
            background: var(--tx-orange);
            border-color: var(--tx-orange);
            color: #fff;
        }

.user-inquiry-empty {
    width: 100%;
    padding: 42px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--tx-line);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(5, 48, 153, .04);
}

    .user-inquiry-empty i {
        display: inline-block;
        margin-bottom: 10px;
        color: var(--tx-blue);
        font-size: 34px;
    }

    .user-inquiry-empty p {
        margin: 0;
        color: var(--tx-muted);
        font-size: 14px;
        line-height: 24px;
    }

.user-inquiry-card-list .page-foot {
    margin-top: 14px;
    overflow: hidden;
}

.user-inquiry-card-list .flickr {
    float: right;
}

/* =========================================================
   保留旧表格区域样式，防止其他页面仍在使用 table
   ========================================================= */

.user-order-list table,
.user-address-table table {
    width: 100%;
    box-sizing: border-box;
    border-spacing: 0;
    border: 1px solid var(--tx-line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    font-size: 14px;
}

    .user-order-list table th,
    .user-address-table table th {
        min-width: 110px;
        height: 42px;
        line-height: 42px;
        background: var(--tx-blue-light);
        color: var(--tx-blue);
        font-weight: 800;
    }

    .user-order-list table td,
    .user-address-table table td {
        border-top: 1px solid var(--tx-line2);
        border-right: 0;
        border-left: 0;
        border-bottom: 0;
        padding: 8px 6px;
        color: var(--tx-text);
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .user-order-list table td a,
        .user-address-table table td a {
            color: var(--tx-blue);
            font-weight: 600;
        }

            .user-order-list table td a:hover,
            .user-address-table table td a:hover {
                color: var(--tx-orange);
            }

        .user-order-list table td strong {
            color: var(--tx-orange);
        }

        .user-order-list table td img,
        .user-address-table table td img {
            max-width: 60px;
        }

/* =========================================================
   用户信息 / 地址 / 表单
   ========================================================= */

.user-information-list .col-lg-4 {
    width: 32.3%;
}

.user-information-list .col-lg-8 {
    width: 66%;
}

.user-information-list label {
    display: block;
    height: 40px;
    line-height: 40px;
    color: var(--tx-text);
    font-weight: 600;
}

    .user-information-list label span {
        color: #e11d48;
    }

.user-information-list input,
.user-information-list select {
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 1px solid var(--tx-line);
    border-radius: 6px;
    padding: 0 10px;
    background: #fff;
    color: var(--tx-text);
    transition: all .2s ease;
}

    .user-information-list input:focus,
    .user-information-list select:focus,
    .repass-box-right .repass-box-item input.form-control:focus,
    .repass-box-right .repass-box-item input.form-control-small:focus {
        border-color: var(--tx-blue);
        box-shadow: 0 0 0 4px rgba(5, 48, 153, .10);
        outline: none;
    }

.user-information-list h2 {
    display: flex;
    justify-content: space-between;
    clear: both;
    width: 100%;
    height: 48px;
    line-height: 48px;
    border-bottom: 1px solid var(--tx-line);
    color: var(--tx-blue);
    font-weight: 800;
}

    .user-information-list h2 label {
        display: inline;
        font-weight: normal;
        color: var(--tx-muted);
        font-size: 1rem;
    }

    .user-information-list h2 input {
        display: inline;
        width: 12px;
        height: 12px;
        border: 1px solid var(--tx-line);
        border-radius: 3px;
    }

.user-info-msg {
    width: 100%;
    clear: both;
    margin-top: 15px;
}

.u-tab-head {
    width: 100%;
    height: auto;
    line-height: 44px;
    border-bottom: 1px solid var(--tx-line);
    margin-bottom: 10px;
}

    .u-tab-head a {
        display: inline-block;
        height: 44px;
        background: var(--tx-blue-light);
        padding: 0 22px;
        color: var(--tx-text);
        border-radius: 8px 8px 0 0;
        transition: all .2s ease;
    }

        .u-tab-head a i {
            margin-right: 8px;
        }

        .u-tab-head a:hover {
            color: var(--tx-blue);
        }

        .u-tab-head a.selected {
            background: var(--tx-gradient);
            color: #fff;
        }

.user-address-table {
    width: 100%;
    overflow-x: auto;
}

.page-foot {
    width: 100%;
    margin: 15px 0;
}

.btn-box a {
    margin-right: 10px;
}

.u-tab-content {
    width: 100%;
}

/* =========================================================
   进度条 / 收货确认 / 旧详情块
   ========================================================= */

.step-box ul {
    width: 100%;
    padding: 22px 0;
}

    .step-box ul li {
        width: 19.9%;
        text-align: center;
    }

.step-box2 ul li {
    width: 24.9%;
    text-align: center;
}

.step-box ul li .progress1 {
    height: 36px;
    line-height: 36px;
    background: #eef2fb;
    color: var(--tx-muted);
}

.step-box ul li .info {
    height: 28px;
    line-height: 28px;
    color: var(--tx-muted);
    font-size: 13px;
}

.step-box ul li.first .progress1 {
    border-radius: 20px 0 0 20px;
}

.step-box ul li.last .progress1 {
    border-radius: 0 20px 20px 0;
}

.step-box ul li.done .progress1 {
    background: var(--tx-gradient);
    color: #fff;
}

.step-box ul li i {
    margin-right: 8px;
}

.user-accept-list {
    width: 100%;
}

    .user-accept-list dl {
        width: 100%;
        line-height: 34px;
        padding: 5px 0;
        border-bottom: 1px solid var(--tx-line);
    }

        .user-accept-list dl dd a {
            display: block;
            padding: 0 22px;
            background: var(--tx-gradient);
            color: #fff;
            border-radius: 30px;
            box-shadow: 0 6px 16px rgba(5, 48, 153, .14);
        }

.accept-box-info {
    padding: 12px 0;
}

    .accept-box-info h2 {
        margin-bottom: 8px;
        color: var(--tx-blue);
        font-size: 1.35rem;
        line-height: 36px;
    }

    .accept-box-info dl {
        line-height: 34px;
        padding: 5px 0;
        border-bottom: 1px solid var(--tx-line);
    }

        .accept-box-info dl dt {
            font-weight: bold;
            color: var(--tx-text);
        }

/* =========================================================
   登录 / 注册 / 找回密码 / OAuth
   ========================================================= */

.repass-box,
.register-box,
.login-box {
    padding: 56px;
    border: 1px solid var(--tx-line);
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--tx-shadow);
}

.repass-box-left,
.register-box-left,
.login-box-left {
    width: 40%;
    height: auto;
}

    .repass-box-left img,
    .register-box-left img,
    .login-box-left img {
        max-width: 100%;
        height: auto;
    }

.repass-box-right,
.register-box-right,
.login-box-right {
    width: 42%;
}

    .repass-box-right h2 {
        margin-bottom: 14px;
        color: var(--tx-blue);
        font-size: 1.3rem;
        font-weight: 800;
    }

    .repass-box-right .repass-box-item {
        padding: 3px 0;
    }

        .repass-box-right .repass-box-item label {
            display: block;
            line-height: 40px;
            color: var(--tx-text);
        }

        .repass-box-right .repass-box-item em {
            display: block;
            margin-right: 10px;
            line-height: 40px;
            color: var(--tx-orange);
        }

        .repass-box-right .repass-box-item input.form-control,
        .repass-box-right .repass-box-item input.form-control-small {
            height: 40px;
            line-height: 40px;
            border: 1px solid var(--tx-line);
            border-radius: 6px;
            background: #fff;
            padding: 0 14px;
        }

        .repass-box-right .repass-box-item input.form-control {
            width: 100%;
        }

        .repass-box-right .repass-box-item input.form-control-small {
            width: 70%;
        }

.register-inner-box {
    width: 100%;
}

    .register-inner-box strong {
        display: block;
        color: var(--tx-blue);
        font-size: 1.15rem;
        line-height: 34px;
    }

    .register-inner-box p {
        color: var(--tx-muted);
        line-height: 28px;
    }

        .register-inner-box p a {
            color: var(--tx-orange);
            text-decoration: underline;
        }

.login-box-right-tab li {
    width: 32.3%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: var(--tx-blue-light);
    color: var(--tx-blue);
    border-radius: 8px 8px 0 0;
    font-size: .95rem;
    font-weight: bold;
    cursor: pointer;
    transition: all .2s ease;
}

    .login-box-right-tab li:hover {
        background: #e5efff;
    }

    .login-box-right-tab li.thistab {
        background: var(--tx-gradient);
        color: #fff;
    }

.login-tips-txt {
    width: 100%;
    text-align: center;
    line-height: 28px;
    margin: 10px 0;
    color: var(--tx-orange);
}

.login-tab-pane {
    display: none;
    padding: 15px 0;
}

.wxdl {
    width: 100%;
    text-align: center;
}

    .wxdl img {
        width: 220px;
        height: 220px;
        border: 1px solid var(--tx-line);
        border-radius: 8px;
        padding: 5px;
    }

    .wxdl p {
        line-height: 32px;
        margin-top: 10px;
        color: var(--tx-muted);
    }

.select-tab li a {
    float: left;
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0 32px;
    margin-right: 18px;
    background: #fff;
    border: 1px solid var(--tx-line);
    border-radius: 6px;
    color: var(--tx-text);
    transition: all .2s ease;
}

    .select-tab li .selected,
    .select-tab li a:hover {
        color: var(--tx-blue);
        border: 2px solid var(--tx-blue);
        background: linear-gradient(90deg, #fff 0%, var(--tx-blue-light) 100%);
    }

.oauth-box {
    width: 40%;
    margin: 30px auto;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--tx-line);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(5, 48, 153, .09);
}

    .oauth-box h1 {
        margin-bottom: 18px;
        color: var(--tx-blue);
        text-align: center;
        font-size: 1.45rem;
        line-height: 40px;
    }

.tab-head {
    width: 100%;
    height: 44px;
    line-height: 44px;
    margin-bottom: 10px;
}

    .tab-head li a {
        display: block;
        padding: 0 22px;
        background: var(--tx-blue-light);
        color: var(--tx-blue);
        border-radius: 8px 8px 0 0;
        font-size: 1rem;
    }

        .tab-head li a.selected {
            background: var(--tx-gradient);
            color: #fff;
        }

.oauth-box .tab-content {
    display: none;
}

    .oauth-box .tab-content dl {
        margin-bottom: 5px;
    }

        .oauth-box .tab-content dl dt {
            line-height: 34px;
            color: var(--tx-text);
            font-size: 1rem;
        }

        .oauth-box .tab-content dl input.submit {
            margin-top: 10px;
            background: var(--tx-gradient);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            cursor: pointer;
        }

        .oauth-box .tab-content dl input.input2 {
            width: 70%;
        }

        .oauth-box .tab-content dl dd a.dxyzm {
            display: block;
            width: 28%;
            background: var(--tx-gradient);
            color: #fff;
            text-align: center;
            border-radius: 6px;
            font-size: 1rem;
            line-height: 40px;
        }

        .oauth-box .tab-content dl dd span.Validform_checktip {
            line-height: 30px;
        }

/* =========================================================
   旧版询价列表模块保留
   ========================================================= */

.user-inquiry-list {
    padding: 18px 0;
}

    .user-inquiry-list h3 {
        margin-bottom: 10px;
        color: var(--tx-blue);
        font-size: 1.3rem;
        line-height: 34px;
        font-weight: 800;
    }

.user-inquiry-item {
    width: 100%;
    height: auto;
    margin-bottom: 14px;
    border: 1px solid var(--tx-line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(5, 48, 153, .045);
    overflow: hidden;
    font-size: .8rem;
}

.user-inquiry-item-top {
    width: 100%;
    min-height: 48px;
    line-height: 48px;
    padding: 0 18px;
    background: linear-gradient(90deg, var(--tx-blue-light) 0%, var(--tx-orange-light) 100%);
    color: var(--tx-text);
}

    .user-inquiry-item-top i {
        color: var(--tx-orange);
        margin-right: 5px;
    }

    .user-inquiry-item-top a {
        margin-left: 24px;
        color: var(--tx-blue);
    }

        .user-inquiry-item-top a:hover {
            color: var(--tx-orange);
        }

        .user-inquiry-item-top a span {
            color: var(--tx-orange);
        }

.user-inquiry-item-box-left {
    width: 60%;
    border-right: 1px solid var(--tx-line);
}

    .user-inquiry-item-box-left dl {
        width: 100%;
        padding: 5px;
        border-bottom: 1px solid var(--tx-line2);
    }

        .user-inquiry-item-box-left dl:last-child {
            border-bottom: none;
        }

        .user-inquiry-item-box-left dl dt {
            width: 60px;
            height: 60px;
        }

            .user-inquiry-item-box-left dl dt img {
                width: 100%;
                height: auto;
                border: 1px solid var(--tx-line);
                border-radius: 6px;
            }

        .user-inquiry-item-box-left dl dd {
            width: calc(100% - 60px);
            padding: 0 18px;
        }

            .user-inquiry-item-box-left dl dd ul {
                -webkit-column-count: 2;
                column-count: 2;
            }

            .user-inquiry-item-box-left dl dd li {
                width: 100%;
                height: 26px;
                line-height: 26px;
                overflow: hidden;
                color: var(--tx-text);
            }

                .user-inquiry-item-box-left dl dd li span {
                    color: var(--tx-orange);
                }

.user-inquiry-item-box-mid {
    width: 20%;
    padding: 18px;
    border-right: 1px solid var(--tx-line);
}

    .user-inquiry-item-box-mid p {
        width: 100%;
        height: 26px;
        line-height: 26px;
        overflow: hidden;
        color: var(--tx-text);
    }

        .user-inquiry-item-box-mid p span {
            color: var(--tx-orange);
        }

.user-inquiry-item-box-right {
    width: 20%;
    padding: 18px;
}

    .user-inquiry-item-box-right a {
        display: block;
        height: 30px;
        line-height: 30px;
        margin-bottom: 5px;
        padding: 0 22px;
        border-radius: 6px;
        background: var(--tx-blue-light);
        color: var(--tx-blue);
        text-align: center;
        transition: all .2s ease;
    }

        .user-inquiry-item-box-right a:hover {
            background: var(--tx-orange-light);
            color: var(--tx-orange);
        }

        .user-inquiry-item-box-right a.uinqa1 {
            background: var(--tx-gradient);
            color: #fff;
        }

        .user-inquiry-item-box-right a.uinqa2 {
            background: var(--tx-blue-dark);
            color: #fff;
        }

/* =========================================================
   通用按钮色系补充
   ========================================================= */

.btn-success,
input[type="submit"],
button.submit,
.submit {
    background: var(--tx-gradient) !important;
    color: #fff !important;
    border: none !important;
}

    .btn-success:hover,
    input[type="submit"]:hover,
    button.submit:hover,
    .submit:hover {
        opacity: .92;
    }

/* =========================================================
   询价订单详情页 - txid 紧凑版
   ========================================================= */

.txid-page {
    width: 100%;
    color: var(--tx-text);
}

    .txid-page * {
        box-sizing: border-box;
    }

.txid-overview-card,
.txid-product-card,
.txid-address-card {
    width: 100%;
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid var(--tx-line);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(5, 48, 153, .045);
    overflow: hidden;
}

.txid-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--tx-line);
    background: linear-gradient(90deg, #eef4ff 0%, #fff3e8 100%);
}

    .txid-section-title i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 9px;
        background: var(--tx-gradient);
        color: #fff;
        font-size: 14px;
        box-shadow: 0 5px 12px rgba(5, 48, 153, .12);
    }

    .txid-section-title span {
        color: var(--tx-blue);
        font-size: 17px;
        font-weight: 900;
        line-height: 28px;
    }

.txid-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    background: linear-gradient(90deg, #f8fbff 0%, #fff8f2 100%);
    border-bottom: 1px solid var(--tx-line);
}

.txid-order-no {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

    .txid-order-no > i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 13px;
        background: var(--tx-gradient2);
        color: #fff;
        font-size: 18px;
        box-shadow: 0 6px 16px rgba(5, 48, 153, .14);
    }

    .txid-order-no span {
        display: block;
        color: var(--tx-muted);
        font-size: 12px;
        line-height: 18px;
    }

    .txid-order-no strong {
        display: block;
        color: var(--tx-blue);
        font-size: 19px;
        line-height: 26px;
        font-weight: 900;
        word-break: break-all;
    }

.txid-head-actions {
    flex: 0 0 auto;
}

.txid-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 112px;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff6a00 0%, #ff9a3d 100%);
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 7px 16px rgba(255, 106, 0, .18);
    transition: all .22s ease;
}

    .txid-pay-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px rgba(255, 106, 0, .24);
    }

.txid-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 18px;
}

.txid-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    background: #f8fbff;
    border: 1px solid #e6eefc;
    border-radius: 10px;
}

.txid-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 10px;
    background: #eef4ff;
    color: var(--tx-blue);
    font-size: 15px;
}

.txid-info-text span {
    display: block;
    color: var(--tx-muted);
    font-size: 12px;
    line-height: 18px;
}

.txid-info-text strong {
    display: block;
    color: var(--tx-text);
    font-size: 14px;
    line-height: 22px;
    font-weight: 800;
    word-break: break-all;
}

.txid-express-box {
    padding-bottom: 16px;
}

.txid-express-content {
    margin: 14px 18px 0;
    padding: 14px;
    background: #fbfdff;
    border: 1px solid #e6eefc;
    border-radius: 10px;
    color: #334155;
    line-height: 24px;
    font-size: 14px;
}

.txid-product-list {
    padding: 16px 18px;
}

.txid-product-item {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    border: 1px solid #e6eefc;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 12px;
    transition: all .22s ease;
}

    .txid-product-item:hover {
        border-color: rgba(5, 48, 153, .18);
        box-shadow: 0 8px 18px rgba(5, 48, 153, .06);
        transform: translateY(-1px);
    }

.txid-product-main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.txid-product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    background: var(--tx-gradient2);
    color: #fff;
    font-size: 18px;
    box-shadow: 0 6px 14px rgba(5, 48, 153, .12);
}

.txid-product-info {
    min-width: 0;
}

    .txid-product-info h3 {
        margin: 0 0 6px;
        color: var(--tx-blue);
        font-size: 16px;
        line-height: 24px;
        font-weight: 900;
        word-break: break-all;
    }

    .txid-product-info p {
        margin: 3px 0;
        color: #475569;
        font-size: 13px;
        line-height: 20px;
        word-break: break-all;
    }

        .txid-product-info p i {
            color: var(--tx-orange);
            margin-right: 5px;
        }

.txid-product-data {
    flex: 0 0 300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.txid-product-data-item {
    padding: 11px 8px;
    background: #f8fbff;
    border: 1px solid #e6eefc;
    border-radius: 9px;
    text-align: center;
}

    .txid-product-data-item span {
        display: block;
        color: var(--tx-muted);
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 3px;
    }

    .txid-product-data-item strong {
        display: block;
        color: var(--tx-blue);
        font-size: 14px;
        line-height: 22px;
        font-weight: 900;
    }

    .txid-product-data-item.total {
        background: #fff7ed;
        border-color: #fed7aa;
    }

        .txid-product-data-item.total strong {
            color: var(--tx-orange);
        }

.txid-amount-box {
    padding: 16px 18px 18px;
    background: linear-gradient(90deg, #f8fbff 0%, #fff8f2 100%);
    border-top: 1px solid var(--tx-line);
}

.txid-amount-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    line-height: 30px;
    color: #475569;
    font-size: 14px;
}

    .txid-amount-row span {
        min-width: 110px;
        text-align: right;
    }

        .txid-amount-row span i {
            color: var(--tx-blue);
            margin-right: 5px;
        }

    .txid-amount-row strong {
        min-width: 110px;
        text-align: right;
        color: var(--tx-orange);
        font-weight: 900;
    }

.txid-amount-total {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px dashed #d6e3fb;
}

    .txid-amount-total span {
        color: var(--tx-text);
        font-size: 16px;
        font-weight: 900;
    }

    .txid-amount-total strong {
        color: var(--tx-orange);
        font-size: 24px;
        line-height: 32px;
        font-weight: 900;
    }

.txid-address-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 18px 18px;
}

.txid-address-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    padding: 12px;
    background: #f8fbff;
    border: 1px solid #e6eefc;
    border-radius: 10px;
}

    .txid-address-item.full {
        grid-column: 1 / -1;
    }

    .txid-address-item > i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        border-radius: 10px;
        background: #eef4ff;
        color: var(--tx-blue);
        font-size: 15px;
    }

    .txid-address-item span {
        display: block;
        color: var(--tx-muted);
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 3px;
    }

    .txid-address-item strong {
        display: block;
        color: var(--tx-text);
        font-size: 14px;
        line-height: 22px;
        font-weight: 800;
        word-break: break-all;
    }

.txid-empty {
    padding: 42px 20px;
    text-align: center;
    background: #fbfdff;
    border: 1px dashed #cfe0ff;
    border-radius: 10px;
}

    .txid-empty i {
        font-size: 34px;
        color: var(--tx-blue);
        margin-bottom: 10px;
    }

    .txid-empty p {
        margin: 0;
        color: var(--tx-muted);
        font-size: 14px;
    }

/* =========================================================
   注册协议弹窗 - txreg
   ========================================================= */

.txreg-agree-line {
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.txreg-agree-check {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    height: auto !important;
    line-height: 24px !important;
    cursor: pointer;
    color: #334155;
    font-size: 14px;
    user-select: none;
}

    .txreg-agree-check input {
        display: none;
    }

.txreg-check-ui {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border: 1px solid #cfe0ff;
    border-radius: 6px;
    background: #fff;
    color: #fff;
    font-size: 12px;
    transition: all .2s ease;
}

.txreg-agree-check input:checked + .txreg-check-ui {
    border-color: var(--tx-blue);
    background: var(--tx-gradient2);
    box-shadow: 0 6px 14px rgba(5, 48, 153, .18);
}

.txreg-agree-check em {
    font-style: normal;
    color: #475569;
}

.txreg-rules-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--tx-blue);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    line-height: 24px;
    transition: all .2s ease;
}

    .txreg-rules-link:hover {
        color: var(--tx-orange);
    }

    .txreg-rules-link i {
        color: var(--tx-orange);
    }

.txreg-rules-modal {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999999;
    width: 100%;
    height: 100%;
    display: none;
}

    .txreg-rules-modal.show {
        display: block;
    }

.txreg-rules-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 20, 45, .58);
    backdrop-filter: blur(5px);
}

.txreg-rules-box {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 720px;
    max-width: calc(100% - 32px);
    max-height: calc(100vh - 60px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(5, 48, 153, .24);
    transform: translate(-50%, -50%) scale(.94);
    opacity: 0;
    overflow: hidden;
    transition: all .25s ease;
}

.txreg-rules-modal.show .txreg-rules-box {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.txreg-rules-box:before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: var(--tx-gradient);
}

.txreg-rules-close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5ff;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s ease;
}

    .txreg-rules-close:hover {
        background: var(--tx-blue);
        color: #fff;
        transform: rotate(90deg);
    }

.txreg-rules-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px 20px;
    background: linear-gradient(90deg, #f8fbff 0%, #fff7ef 100%);
    border-bottom: 1px solid #e2eaff;
}

.txreg-rules-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 16px;
    background: var(--tx-gradient2);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 22px rgba(5, 48, 153, .2);
}

.txreg-rules-head h3 {
    margin: 0;
    color: var(--tx-blue);
    font-size: 22px;
    line-height: 30px;
    font-weight: 900;
}

.txreg-rules-head p {
    margin: 4px 0 0;
    color: var(--tx-muted);
    font-size: 14px;
    line-height: 22px;
}

.txreg-rules-content {
    padding: 22px 28px;
    max-height: 410px;
    overflow-y: auto;
    color: #334155;
    font-size: 14px;
    line-height: 26px;
    background: #fff;
}

    .txreg-rules-content p {
        margin: 0 0 12px;
    }

    .txreg-rules-content h1,
    .txreg-rules-content h2,
    .txreg-rules-content h3,
    .txreg-rules-content h4 {
        color: var(--tx-blue);
        margin: 14px 0 10px;
    }

    .txreg-rules-content::-webkit-scrollbar {
        width: 8px;
    }

    .txreg-rules-content::-webkit-scrollbar-track {
        background: #f1f5ff;
        border-radius: 999px;
    }

    .txreg-rules-content::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #053099 0%, #ff6a00 100%);
        border-radius: 999px;
    }

.txreg-rules-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 18px 28px 22px;
    background: #f8fbff;
    border-top: 1px solid #e2eaff;
}

.txreg-rules-btn {
    min-width: 118px;
    height: 40px;
    padding: 0 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: all .22s ease;
}

    .txreg-rules-btn.light {
        background: #fff;
        color: var(--tx-blue);
        border: 1px solid #cfe0ff;
    }

        .txreg-rules-btn.light:hover {
            background: #eef4ff;
        }

    .txreg-rules-btn.primary {
        background: var(--tx-gradient);
        color: #fff;
        box-shadow: 0 8px 20px rgba(5, 48, 153, .18);
    }

        .txreg-rules-btn.primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 12px 26px rgba(5, 48, 153, .24);
        }

body.txreg-modal-open {
    overflow: hidden;
}

/* =========================================================
   响应式
   ========================================================= */

@media screen and (max-width: 1200px) {
    .user-inquiry-card-body {
        grid-template-columns: minmax(220px, 1.5fr) 110px 140px;
    }

    .inquiry-actions {
        grid-column: 1 / -1;
    }

    .inquiry-action-btns {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .txid-info-grid,
    .txid-address-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .txid-product-item {
        display: block;
    }

    .txid-product-data {
        margin-top: 14px;
        width: 100%;
        flex: none;
    }
}

@media screen and (max-width: 768px) {
    .user-left {
        width: 100%;
    }

        .user-left a {
            border-radius: 8px;
            padding: 0 20px;
        }

    .user-right {
        width: 100%;
        padding: 18px;
        margin-top: 10px;
    }

    .user-box-item {
        padding-bottom: 15px;
    }

    .user-avatar {
        display: none;
    }

    .user-info {
        width: 100%;
    }

        .user-info li {
            width: 100%;
            height: 28px;
            line-height: 28px;
        }

    .user-menu {
        padding: 15px 0;
    }

        .user-menu dl {
            width: 49%;
        }

            .user-menu dl dd {
                padding: 5px 0;
            }

    .user-inquiry-card-list {
        padding: 14px 0;
    }

        .user-inquiry-card-list h3 {
            font-size: 1.25rem;
            line-height: 32px;
            margin-bottom: 10px;
        }

    .user-inquiry-card-item {
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .user-inquiry-card-head {
        padding: 12px;
        display: block;
    }

    .user-inquiry-order {
        margin-bottom: 8px;
    }

        .user-inquiry-order a {
            font-size: 17px;
            line-height: 24px;
        }

    .user-inquiry-status em {
        min-width: 68px;
        height: 28px;
        font-size: 12px;
        padding: 0 10px;
    }

    .user-inquiry-card-body {
        grid-template-columns: 1fr !important;
        gap: 10px;
        padding: 12px;
    }

    .user-inquiry-card-col {
        padding: 10px;
        background: #fbfdff;
        border: 1px solid #edf2fb;
        border-radius: 9px;
    }

        .user-inquiry-card-col label {
            margin-bottom: 6px;
            font-size: 12px;
        }

    .inquiry-products-list p {
        font-size: 13px;
        line-height: 20px;
        padding: 8px 10px;
    }

    .inquiry-amount-price {
        font-size: 22px;
        line-height: 28px;
    }

    .inquiry-amount-pay {
        font-size: 12px;
    }

    .inquiry-time-text {
        font-size: 14px;
        line-height: 22px;
    }

    .inquiry-action-btns {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

        .inquiry-action-btns a {
            flex: 1;
            min-width: 0;
            height: 36px;
            font-size: 13px;
        }

    .user-inquiry-empty {
        padding: 36px 16px;
    }

        .user-inquiry-empty i {
            font-size: 32px;
        }

    .user-information-list .col-lg-4,
    .user-information-list .col-lg-8 {
        width: 100%;
    }

    .u-tab-head {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

        .u-tab-head a {
            width: 50%;
            padding: 0;
            text-align: center;
            border-radius: 6px;
            margin-bottom: 6px;
        }

    .step-box ul {
        padding: 20px 0;
    }

        .step-box ul li {
            width: 100%;
            text-align: center;
        }

            .step-box ul li.first .progress1 {
                border-radius: 20px 20px 0 0;
            }

            .step-box ul li.last .progress1 {
                border-radius: 0 0 20px 20px;
            }

    .repass-box,
    .register-box,
    .login-box {
        padding: 20px;
    }

    .repass-box-left,
    .register-box-left,
    .login-box-left {
        display: none;
    }

    .repass-box-right,
    .register-box-right,
    .login-box-right {
        width: 100%;
    }

    .register-inner-box strong {
        font-size: 1.1rem;
        line-height: 28px;
    }

    .register-inner-box p {
        line-height: 26px;
    }

    .login-box-right-tab li {
        height: 42px;
        line-height: 42px;
        font-size: .9rem;
        font-weight: normal;
    }

    .oauth-box {
        width: 94%;
        padding: 20px;
        margin: 20px auto;
    }

        .oauth-box h1 {
            font-size: 1.2rem;
        }

    .user-inquiry-card-list .flickr {
        float: none;
        text-align: center;
    }

    .user-inquiry-item-top {
        height: auto;
        line-height: 22px;
        padding: 10px;
    }

        .user-inquiry-item-top a {
            margin-left: 10px;
        }

    .user-inquiry-item-box-left,
    .user-inquiry-item-box-mid,
    .user-inquiry-item-box-right {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--tx-line);
        padding: 10px;
    }

        .user-inquiry-item-box-left dl {
            padding: 10px;
        }

            .user-inquiry-item-box-left dl dd ul {
                -webkit-column-count: 1;
                column-count: 1;
            }

        .user-inquiry-item-box-right div {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

            .user-inquiry-item-box-right div a {
                width: 32.3%;
                padding: 0;
            }

    .txid-overview-card,
    .txid-product-card,
    .txid-address-card {
        border-radius: 10px;
        margin-bottom: 14px;
    }

    .txid-overview-head {
        display: block;
        padding: 16px;
    }

    .txid-order-no {
        margin-bottom: 14px;
    }

        .txid-order-no > i {
            width: 40px;
            height: 40px;
            font-size: 18px;
        }

        .txid-order-no strong {
            font-size: 17px;
            line-height: 24px;
        }

    .txid-pay-btn {
        width: 100%;
        height: 40px;
    }

    .txid-section-title {
        padding: 14px;
    }

        .txid-section-title span {
            font-size: 16px;
        }

    .txid-info-grid,
    .txid-address-grid {
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 10px;
    }

    .txid-product-list {
        padding: 14px;
    }

    .txid-product-item {
        padding: 12px;
        border-radius: 10px;
    }

    .txid-product-main {
        gap: 10px;
    }

    .txid-product-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 17px;
    }

    .txid-product-info h3 {
        font-size: 15px;
        line-height: 22px;
    }

    .txid-product-info p {
        font-size: 13px;
        line-height: 20px;
    }

    .txid-product-data {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .txid-product-data-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 10px 12px;
    }

        .txid-product-data-item span {
            margin-bottom: 0;
        }

    .txid-amount-box {
        padding: 14px;
    }

    .txid-amount-row {
        justify-content: space-between;
        gap: 8px;
        font-size: 13px;
    }

        .txid-amount-row span,
        .txid-amount-row strong {
            min-width: 0;
            text-align: left;
        }

    .txid-amount-total {
        justify-content: space-between;
        gap: 8px;
    }

        .txid-amount-total span {
            font-size: 15px;
        }

        .txid-amount-total strong {
            font-size: 22px;
            line-height: 30px;
        }

    .txid-address-item {
        padding: 12px;
    }

    .txid-express-content {
        margin: 12px 14px 0;
        padding: 12px;
        font-size: 13px;
        line-height: 23px;
    }

    .txreg-rules-box {
        width: calc(100% - 24px);
        max-height: calc(100vh - 40px);
        border-radius: 16px;
    }

    .txreg-rules-head {
        padding: 22px 18px 16px;
        gap: 10px;
    }

    .txreg-rules-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 20px;
        border-radius: 14px;
    }

    .txreg-rules-head h3 {
        font-size: 19px;
        line-height: 26px;
    }

    .txreg-rules-head p {
        font-size: 13px;
        line-height: 20px;
    }

    .txreg-rules-content {
        padding: 18px;
        max-height: 52vh;
        font-size: 14px;
        line-height: 25px;
    }

    .txreg-rules-actions {
        display: block;
        padding: 14px 18px 18px;
    }

    .txreg-rules-btn {
        width: 100%;
        margin-top: 10px;
    }

    .txreg-rules-close {
        right: 10px;
        top: 10px;
    }
}
