/**
 * spraydryerB2B 会员中心样式
 * 包含：账户页面、认证、产品/文章管理、店铺等
 */

/* ========================================
   账户中心布局
   ======================================== */
.account-section {
    padding: 40px 0 80px;
    background: #f8fafc;
    min-height: calc(100vh - 300px);
}

.account-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
}

/* 侧边栏 */
.account-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.account-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    margin-bottom: 16px;
}

.account-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.account-avatar .avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9;
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 2px solid #fff;
}

.account-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.account-badges {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.account-type-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 500;
}

.account-type-badge.buyer {
    background: #dbeafe;
    color: #2563eb;
}

.account-type-badge.supplier {
    background: #fef3c7;
    color: #d97706;
}

.member-level-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 500;
    background: #f3e8ff;
    color: #9333ea;
}

.account-company,
.account-email,
.account-phone {
    font-size: .875rem;
    color: #64748b;
    margin: 4px 0;
}

/* 积分展示 */
.account-points {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 100px;
    font-weight: 600;
    color: #92400e;
}
.points-icon { font-size: .875rem; }
.points-value { font-size: 1rem; }
.points-label { font-size: .75rem; opacity: .8; }

/* 导航菜单 */
.account-nav {
    background: #fff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.account-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #475569;
    font-size: .875rem;
    font-weight: 500;
    transition: all .2s;
    text-decoration: none;
}

.account-nav a:hover {
    background: #f1f5f9;
    color: #dc2626;
}

.account-nav a.active {
    background: #fef2f2;
    color: #dc2626;
}

.account-nav svg {
    flex-shrink: 0;
    opacity: .7;
}

.nav-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0;
}

.nav-logout {
    color: #ef4444 !important;
}

.nav-badge {
    margin-left: auto;
    background: #dc2626;
    color: #fff;
    font-size: .6875rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.nav-badge.verified {
    background: #10b981;
}

.nav-badge.pending {
    background: #f59e0b;
}

/* 主内容区 */
.account-main {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.account-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

/* 统计卡片 */
.account-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.account-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.stat-icon {
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
}

.stat-label {
    font-size: .8125rem;
    color: #64748b;
}

/* 内容区块 */
.account-section-block {
    margin-bottom: 32px;
}

.account-section-block:last-child {
    margin-bottom: 0;
}

.account-section-block h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.account-section-block .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.account-section-block .section-header h2 {
    margin-bottom: 0;
}

/* 表格 */
.account-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}

.account-table th {
    text-align: left;
    padding: 12px 16px;
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
}

.account-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

.account-table tbody tr:hover {
    background: #f8fafc;
}

/* 状态标签 */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 500;
}

.status-new {
    background: #fef2f2;
    color: #dc2626;
}

.status-assigned {
    background: #fef3c7;
    color: #d97706;
}

.status-processed {
    background: #dbeafe;
    color: #2563eb;
}

.status-closed {
    background: #f1f5f9;
    color: #64748b;
}

/* 空状态 */
.account-empty {
    text-align: center;
    padding: 48px 20px;
    color: #64748b;
}

.account-empty .empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.account-empty h3 {
    font-size: 1.125rem;
    color: #334155;
    margin-bottom: 8px;
}

.account-empty p {
    margin-bottom: 20px;
}

/* 会员权益 */
.membership-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.benefit-item.limit {
    border-color: #fecaca;
    background: #fef2f2;
}

.benefit-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.benefit-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-name {
    font-weight: 600;
    color: #334155;
    font-size: .9375rem;
}

.benefit-usage {
    font-size: .8125rem;
    color: #64748b;
}

.benefit-bar {
    width: 120px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.benefit-progress {
    height: 100%;
    background: #dc2626;
    border-radius: 3px;
    transition: width .3s;
}

.benefit-item.limit .benefit-progress {
    background: #ef4444;
}

/* 认证提示 */
.verify-prompt {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
    border: 1px solid #fecaca;
    border-radius: 12px;
}

.verify-prompt-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.verify-prompt-content {
    flex: 1;
}

.verify-prompt-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #991b1b;
    margin-bottom: 4px;
}

.verify-prompt-content p {
    font-size: .875rem;
    color: #b91c1c;
}

/* ========================================
   认证页面
   ======================================== */
.verify-status-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.verify-status-card.status-unverified {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.verify-status-card.status-pending {
    background: #fffbeb;
    border: 1px solid #fcd34d;
}

.verify-status-card.status-verified {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
}

.verify-status-card.status-rejected {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.status-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.status-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.status-info p {
    color: #64748b;
    font-size: .9375rem;
}

.verify-info {
    background: #f8fafc;
    border-radius: 10px;
    padding: 24px;
}

.verify-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.verify-table {
    width: 100%;
}

.verify-table th,
.verify-table td {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.verify-table th {
    width: 160px;
    color: #64748b;
    font-weight: 500;
}

/* ========================================
   表单样式
   ======================================== */
.form-section {
    margin-bottom: 32px;
}

.form-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: .9375rem;
    color: #1f2937;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input:disabled {
    background: #f3f4f6;
    color: #6b7280;
}

.form-group small {
    display: block;
    margin-top: 4px;
    font-size: .8125rem;
    color: #6b7280;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

/* 头像上传 */
.avatar-upload {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-upload .avatar-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.avatar-upload input[type="file"] {
    display: none;
}

/* 单选框组 */
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.radio-label {
    cursor: pointer;
}

.radio-label input {
    display: none;
}

.radio-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all .2s;
}

.radio-label input:checked + .radio-box {
    border-color: #dc2626;
    background: #fef2f2;
}

.radio-icon {
    font-size: 2rem;
}

.radio-title {
    font-weight: 600;
    color: #1e293b;
}

.radio-desc {
    font-size: .8125rem;
    color: #64748b;
}

/* 复选框 */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: .875rem;
    color: #374151;
}

.checkbox-label input {
    margin-top: 2px;
}

/* 表单消息 */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
}

.form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-message.warning {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fcd34d;
}

/* ========================================
   我的产品/文章
   ======================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-header .account-title {
    margin-bottom: 0;
}

.my-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.my-product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .2s;
}

.my-product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.my-product-image {
    position: relative;
    aspect-ratio: 4/3;
    background: #f1f5f9;
}

.my-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #94a3b8;
}

.product-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .6875rem;
    font-weight: 600;
}

.product-status.status-publish {
    background: #ecfdf5;
    color: #065f46;
}

.product-status.status-draft {
    background: #f1f5f9;
    color: #64748b;
}

.my-product-info {
    padding: 16px;
}

.my-product-info h3 {
    font-size: .9375rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.my-product-info h3 a {
    color: #1e293b;
    text-decoration: none;
}

.my-product-info h3 a:hover {
    color: #dc2626;
}

.product-model {
    font-size: .8125rem;
    color: #64748b;
    margin-bottom: 4px;
}

.product-price {
    font-size: .9375rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 4px;
}

.product-date {
    font-size: .75rem;
    color: #94a3b8;
}

.my-product-actions {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
}

/* 文章列表 */
.my-articles-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.my-article-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.article-image {
    width: 100px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e2e8f0;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.article-info {
    flex: 1;
    min-width: 0;
}

.article-info h4 {
    font-size: .9375rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.article-info h4 a {
    color: #1e293b;
    text-decoration: none;
}

.article-info h4 a:hover {
    color: #dc2626;
}

.article-excerpt {
    font-size: .8125rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 12px;
    font-size: .75rem;
}

.article-status {
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.article-status.status-publish {
    background: #ecfdf5;
    color: #065f46;
}

.article-status.status-draft {
    background: #f1f5f9;
    color: #64748b;
}

.article-date {
    color: #94a3b8;
}

.article-actions {
    display: flex;
    align-items: center;
}

/* ========================================
   店铺页面
   ======================================== */
.shops-section {
    padding: 60px 0;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.shop-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.shop-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.shop-header {
    position: relative;
    padding: 24px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.shop-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shop-header .verify-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: .6875rem;
    font-weight: 600;
}

.shop-body {
    padding: 16px 20px;
    text-align: center;
}

.shop-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.shop-contact {
    font-size: .8125rem;
    color: #64748b;
    margin-bottom: 12px;
}

.shop-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.shop-stat {
    font-size: .8125rem;
    color: #64748b;
}

.shop-stat strong {
    color: #1e293b;
    font-weight: 600;
}

.shop-footer {
    padding: 0 20px 20px;
}

/* 店铺详情 */
.shop-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    padding: 48px 0;
}

.shop-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.shop-hero-main {
    display: flex;
    align-items: center;
    gap: 24px;
}

.shop-hero-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.2);
}

.shop-hero-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.verify-badge-large {
    font-size: .75rem;
    background: #10b981;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.shop-hero-contact {
    display: flex;
    gap: 20px;
    font-size: .9375rem;
    opacity: .8;
    margin-bottom: 8px;
}

.shop-hero-bio {
    font-size: .9375rem;
    opacity: .7;
    line-height: 1.5;
    max-width: 600px;
}

.shop-content-section {
    padding: 40px 0 80px;
    background: #f8fafc;
}

.shop-content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
}

.shop-main .shop-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.shop-main .shop-section:last-child {
    margin-bottom: 0;
}

.shop-sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.shop-sidebar-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e293b;
}

.shop-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.shop-contact-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: .875rem;
}

.contact-label {
    color: #64748b;
}

.contact-value {
    color: #1e293b;
    font-weight: 500;
}

.shop-qualifications {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qual-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .875rem;
    color: #64748b;
}

.qual-item.verified {
    color: #059669;
    font-weight: 500;
}

.qual-icon {
    width: 24px;
    text-align: center;
}

/* ========================================
   认证页面
   ======================================== */
.auth-section {
    padding: 60px 0 100px;
    background: #f8fafc;
    min-height: calc(100vh - 300px);
}

.auth-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.auth-grid.single-column {
    grid-template-columns: 480px;
    justify-content: center;
}

.auth-form-area {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.auth-header p {
    color: #64748b;
    font-size: .9375rem;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-group label {
    font-size: .875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
    display: block;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="tel"],
.auth-form input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: .9375rem;
    transition: all .2s;
}

.auth-form input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.auth-form .btn-block {
    width: 100%;
    justify-content: center;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    font-size: .875rem;
    color: #64748b;
}

.auth-footer a {
    color: #dc2626;
    font-weight: 500;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #94a3b8;
    font-size: .875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider span {
    padding: 0 16px;
}

.auth-benefits {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.auth-benefits h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1e293b;
}

.auth-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-benefits li {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.auth-benefits li:last-child {
    border-bottom: none;
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.auth-benefits li strong {
    display: block;
    font-size: .9375rem;
    color: #1e293b;
    margin-bottom: 2px;
}

.auth-benefits li p {
    font-size: .8125rem;
    color: #64748b;
    margin: 0;
}

/* 成功状态 */
.auth-success {
    text-align: center;
    padding: 32px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

/* ========================================
   按钮样式补充
   ======================================== */
.btn-sm {
    padding: 6px 14px;
    font-size: .8125rem;
}

.btn-text {
    background: none;
    border: none;
    color: #dc2626;
    padding: 0;
    font-weight: 500;
}

.btn-text:hover {
    background: none;
    text-decoration: underline;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

/* 按钮加载动画 */
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

button:disabled {
    cursor: not-allowed;
}

/* ========================================
   询盘列表
   ======================================== */
.inquiries-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inquiry-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    transition: box-shadow .2s;
}

.inquiry-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.inquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.inquiry-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inquiry-product strong {
    font-size: 1rem;
    color: #1e293b;
}

.inquiry-quantity {
    font-size: .8125rem;
    color: #64748b;
    background: #e2e8f0;
    padding: 2px 10px;
    border-radius: 20px;
}

.inquiry-body {
    color: #475569;
}

.inquiry-message {
    font-size: .9375rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    border-left: 3px solid #dc2626;
}

.inquiry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .8125rem;
    color: #64748b;
}

/* ========================================
   响应式
   ======================================== */
@media (max-width: 1024px) {
    .account-grid {
        grid-template-columns: 240px 1fr;
    }
    
    .shop-content-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        position: static;
    }
    
    .account-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .account-nav a {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .auth-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-sidebar {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .shop-hero-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .shop-hero-main {
        flex-direction: column;
    }
    
    .my-article-card {
        flex-direction: column;
    }
    
    .article-image {
        width: 100%;
        height: 160px;
    }
    
    .verify-prompt {
        flex-direction: column;
        text-align: center;
    }
}
