/* ==================== 货主列表页面样式 ==================== */

/* 货主列表页面容器 */
.owner-list-page {
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 24px;
}

/* 主要内容区域 */
.owner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow: auto;
}

/* 搜索区域样式 */
.owner-search-form {
    background: #ffffff;
    border: 1px solid #e5e6eb;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.owner-search-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.owner-search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.owner-search-label {
    font-size: 13px;
    font-weight: 500;
    color: #1d2129;
    min-width: 80px;
}

.owner-search-input {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    vertical-align: middle;
    box-sizing: border-box;
}

.owner-search-select {
    width: 100%;
    height: 36px;
    padding: 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 13px;
    outline: none;
    vertical-align: middle;
    box-sizing: border-box;
}

.owner-search-input:focus,
.owner-search-select:focus {
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

/* 组合搜索框样式 */
.owner-search-field .owner-search-combined {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e6eb;
    width: 100%;
    min-width: 200px;
}

.owner-search-field .owner-search-type {
    width: 100px;
    height: 36px;
    border: none;
    border-right: 1px solid #e5e6eb;
    border-radius: 0;
    padding: 0 12px;
    cursor: pointer;
    margin: 0;
    background-color: #ffffff;
}

.owner-search-field .owner-search-value {
    flex: 1;
    border: none;
    border-radius: 0;
    height: 36px;
    background: #ffffff;
    padding: 0 12px;
    margin: 0;
}

.owner-search-field .owner-search-type:focus,
.owner-search-field .owner-search-value:focus {
    outline: none;
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

/* 日期范围选择器样式 */
.owner-date-range {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.owner-date-picker {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 1;
    min-width: 140px;
}

.owner-date-input {
    width: 100%;
    height: 36px;
    padding: 0 36px 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 13px;
    background: white;
    color: #1d2129;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
}

.owner-date-input:hover {
    border-color: #a6adb9;
}

.owner-date-input:focus {
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.owner-date-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #c0c4cc;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.owner-date-input:focus + .owner-date-icon {
    color: #0052d9;
}

.owner-date-separator {
    color: #606266;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    min-width: auto;
    flex-shrink: 0;
}

/* 日期选择器面板样式 */
.owner-date-panel {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #e4e7ed;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px;
    min-width: 280px;
    margin-top: 4px;
}

.owner-date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.owner-date-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.owner-date-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    color: #606266;
    transition: all 0.2s ease;
}

.owner-date-nav-btn:hover {
    background: #f5f7fa;
    color: #0052d9;
}

.owner-date-title {
    font-size: 14px;
    font-weight: 600;
    color: #303133;
    min-width: 120px;
    text-align: center;
}

.owner-date-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.owner-date-weekday {
    text-align: center;
    font-size: 12px;
    color: #909399;
    font-weight: 500;
    padding: 4px;
}

.owner-date-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.owner-date-day {
    text-align: center;
    font-size: 12px;
    padding: 8px 4px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.owner-date-day:hover {
    background: #f5f7fa;
    color: #0052d9;
}

.owner-date-day.selected {
    background: #0052d9;
    color: white;
}

.owner-date-day.today {
    border-color: #0052d9;
}

.owner-date-day.disabled {
    color: #c0c4cc;
    cursor: not-allowed;
}

.owner-date-day.disabled:hover {
    background: transparent;
    color: #c0c4cc;
}

/* 列表区域样式 */
.owner-list-area {
    height: calc(100vh - 300px); /* 固定高度，根据实际需求调整 */
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.owner-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.owner-list-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.owner-list-actions {
    display: flex;
    gap: 8px;
}

.owner-table-container {
    flex: 1;
    overflow-y: auto;
    min-height: 0; /* 确保flex子元素能正确收缩 */
}

.owner-data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.owner-data-table th {
    background: #f8f9fa;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

/* 店铺数量列居中对齐 */
.owner-data-table th:nth-child(6),
.owner-data-table td:nth-child(6) {
    text-align: center;
}

.owner-data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.owner-data-table tr:hover {
    background-color: #f8fafc;
}

.owner-data-table tr:last-child td {
    border-bottom: none;
}

/* 货主状态标签样式 */
.owner-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    min-width: 60px;
}

.owner-status.active {
    background-color: #e8f5e8;
    color: #52c41a;
}

.owner-status.inactive {
    background-color: #fff2f0;
    color: #ff4d4f;
}

/* 快递面单预扣状态标签 */
.owner-express-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    min-width: 60px;
}

.owner-express-status.enabled {
    background-color: #e8f5e8;
    color: #52c41a;
}

.owner-express-status.disabled {
    background-color: #fff2f0;
    color: #ff4d4f;
}

/* 操作按钮 */
.owner-action-btn {
    padding: 5px 10px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: white;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 26px;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.owner-action-btn:last-child {
    margin-right: 0;
}

.owner-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.owner-action-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* 查看详情按钮 - 中性色系 */
.owner-action-btn.view {
    background: #f0f5ff;
    color: #0958d9;
    border-color: #91caff;
}

.owner-action-btn.view:hover {
    background: #91caff;
    border-color: #69b1ff;
    color: #003a8c;
}

/* 编辑按钮 - 警告色系 */
.owner-action-btn.edit {
    background: #fff7e6;
    color: #d46b08;
    border-color: #ffd591;
}

.owner-action-btn.edit:hover {
    background: #ffe58f;
    border-color: #ffa940;
    color: #ad4e00;
}

/* 详情按钮 - 信息色系 */
.owner-action-btn.detail {
    background: #f0f5ff;
    color: #0958d9;
    border-color: #91caff;
}

.owner-action-btn.detail:hover {
    background: #91caff;
    border-color: #69b1ff;
    color: #003a8c;
}

/* 配置按钮 - 成功色系 */
.owner-action-btn.config {
    background: #f6ffed;
    color: #389e0d;
    border-color: #b7eb8f;
}

.owner-action-btn.config:hover {
    background: #b7eb8f;
    border-color: #95de64;
    color: #237804;
}

/* 日志按钮 - 中性色系 */
.owner-action-btn.log {
    background: #fafafa;
    color: #595959;
    border-color: #d9d9d9;
}

.owner-action-btn.log:hover {
    background: #d9d9d9;
    border-color: #bfbfbf;
    color: #262626;
}


/* 展开功能 */
.owner-expandable {
    display: flex;
    align-items: center;
    gap: 8px;
}

.owner-expand-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.owner-expand-btn:hover:not(.disabled) {
    background-color: #f0f0f0;
}

.owner-expand-btn.expanded {
    background-color: #e6f7ff;
}

.owner-expand-btn.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.owner-expand-icon {
    width: 16px;
    height: 16px;
    fill: #666;
    transition: transform 0.3s ease;
}

.owner-expand-btn:hover .owner-expand-icon {
    fill: #1890ff;
}

.owner-expand-btn.expanded .owner-expand-icon {
    fill: #1890ff;
    transform: rotate(90deg);
}

/* 店铺展开行样式 */
.owner-expand-row {
    background-color: #fafafa;
    border-left: 3px solid #1890ff;
}

.owner-expand-row.expanding {
    animation: expandAnimation 0.3s ease-out;
}

.owner-expand-row.collapsing {
    animation: collapseAnimation 0.3s ease-out;
}

@keyframes expandAnimation {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

@keyframes collapseAnimation {
    from {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
}

/* 展开详情内容 */
.owner-detail-container {
    padding: 16px;
    background: white;
    margin: 8px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.owner-detail-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.owner-detail-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.owner-detail-table th {
    background: #f8f9fa;
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    font-size: 13px;
}

.owner-detail-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.owner-detail-table tr:last-child td {
    border-bottom: none;
}

/* 店铺状态标签 */
.owner-shop-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    min-width: 60px;
}

.owner-shop-status.active {
    background-color: #e8f5e8;
    color: #52c41a;
}

.owner-shop-status.inactive {
    background-color: #fff2f0;
    color: #ff4d4f;
}

/* 授权状态标签 */
.owner-auth-status {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    min-width: 60px;
}

.owner-auth-status.authorized {
    background-color: #e8f5e8;
    color: #52c41a;
}

.owner-auth-status.unauthorized {
    background-color: #fff2f0;
    color: #ff4d4f;
}

/* 店铺操作按钮 */
.owner-shop-action-btn {
    padding: 4px 8px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: white;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 22px;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.owner-shop-action-btn:last-child {
    margin-right: 0;
}

.owner-shop-action-btn.view {
    background: #f0f5ff;
    color: #0958d9;
    border-color: #91caff;
}

.owner-shop-action-btn.view:hover {
    background: #91caff;
    border-color: #69b1ff;
    color: #003a8c;
}

.owner-shop-action-btn.detail {
    background: #f0f5ff;
    color: #0958d9;
    border-color: #91caff;
}

.owner-shop-action-btn.detail:hover {
    background: #91caff;
    border-color: #69b1ff;
    color: #003a8c;
}

.owner-shop-action-btn.edit {
    background: #fff7e6;
    color: #d46b08;
    border-color: #ffd591;
}

.owner-shop-action-btn.edit:hover {
    background: #ffe58f;
    border-color: #ffa940;
    color: #ad4e00;
}

.owner-shop-action-btn.auth {
    background: #f6ffed;
    color: #389e0d;
    border-color: #b7eb8f;
}

.owner-shop-action-btn.auth:hover {
    background: #b7eb8f;
    border-color: #95de64;
    color: #237804;
}

/* 分页样式 */
.owner-pagination {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.owner-pagination-info {
    font-size: 14px;
    color: #4b5563;
}

.owner-pagination-controls {
    display: flex;
    gap: 8px;
}

/* 货主详情弹窗样式 */
.owner-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 99998;
}

.owner-modal-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.3s ease-out;
    z-index: 99999;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.owner-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #f8f9fa;
}

.owner-modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.owner-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    color: #6b7280;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-modal-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.owner-modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.owner-detail-section {
    margin-bottom: 24px;
}

.owner-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.owner-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.owner-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.owner-detail-item label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.owner-detail-item span {
    font-size: 14px;
    font-weight: 400;
    color: #1f2937;
    word-break: break-word;
}

/* 详情弹窗中的状态标签样式 */
.owner-detail-item .owner-status,
.owner-detail-item .owner-express-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    min-width: 70px;
    margin-top: 4px;
}

.owner-detail-item .owner-status.active {
    background-color: #e6f7ff;
    color: #0958d9;
    border: 1px solid #91caff;
}

.owner-detail-item .owner-status.inactive {
    background-color: #fff1f0;
    color: #cf1322;
    border: 1px solid #ffa39e;
}

.owner-detail-item .owner-express-status.enabled {
    background-color: #f6ffed;
    color: #389e0d;
    border: 1px solid #b7eb8f;
}

.owner-detail-item .owner-express-status.disabled {
    background-color: #fff2e8;
    color: #d46b08;
    border: 1px solid #ffd666;
}

.owner-shop-list {
    overflow-x: auto;
}

.owner-shop-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 8px;
}

.owner-shop-table th {
    background: #f8f9fa;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.owner-shop-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #4b5563;
}

.owner-shop-table tr:last-child td {
    border-bottom: none;
}

.owner-shop-table tr:hover {
    background-color: #f8fafc;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .owner-search-area {
        padding: 20px;
    }
    
    .owner-list-area {
        height: calc(100vh - 400px); /* 移动端调整高度，考虑更多空间占用 */
    }
    
    .owner-search-form {
        gap: 20px;
    }
    
    .owner-search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 0;
    }
    
    .owner-search-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        min-width: 100%;
    }
    
    .owner-combined-search {
        flex-direction: column;
        align-items: stretch;
    }
    
    .owner-search-type {
        border-radius: 6px;
        border-right: 1px solid #d1d5db;
        margin-bottom: 8px;
    }
    
    .owner-combined-input {
        border-radius: 6px;
        border-left: 1px solid #d1d5db;
    }
    
    .owner-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .owner-pagination {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .owner-data-table {
        font-size: 12px;
    }
    
    .owner-data-table th,
    .owner-data-table td {
        padding: 8px 12px;
    }
    
    /* 弹窗响应式样式 */
    .owner-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .owner-modal-header {
        padding: 12px 16px;
    }
    
    .owner-modal-body {
        padding: 16px;
    }
    
    .owner-detail-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .owner-shop-table {
        font-size: 12px;
    }
    
    .owner-shop-table th,
    .owner-shop-table td {
        padding: 8px 12px;
    }
    
    .owner-auth-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .owner-auth-url-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .owner-process-step {
        gap: 12px;
    }
}

/* 授权弹窗样式 */
.owner-auth-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-auth-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.3s ease-out;
}

.owner-auth-section {
    margin-bottom: 24px;
}

.owner-auth-process {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.owner-process-step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.owner-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f5ff;
    color: #1890ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.owner-step-content {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.owner-auth-url-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.owner-auth-url-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    background: #f5f5f5;
    color: #333;
    word-break: break-all;
}

.owner-copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #1890ff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
    white-space: nowrap;
}

.owner-copy-btn:hover {
    background: #40a9ff;
}

.owner-qrcode-container {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.owner-qrcode-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 1px dashed #d9d9d9;
    border-radius: 8px;
    background: #fafafa;
}

.owner-qrcode-icon {
    margin-bottom: 12px;
    opacity: 0.6;
}

.owner-qrcode-text {
    font-size: 14px;
    color: #666;
}

.owner-auth-note {
    background: #f6ffed;
    border: 1px solid #b7eb8f;
    border-radius: 6px;
    padding: 12px;
    margin-top: 8px;
}

.owner-auth-note p {
    margin: 0;
    font-size: 14px;
    color: #389e0d;
    line-height: 1.5;
}