/* 仓库物流配置页面样式 - 基于出库单策略页面修改，添加wlc前缀 */
.wlc-card {
    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;
}

/* 搜索区域样式 */
.wlc-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);
}

/* 组合搜索框样式 */
.wlc-search-field .wlc-search-combined {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e6eb;
    width: 100%;
    min-width: 200px;
}

.wlc-search-field .wlc-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;
}

.wlc-search-field .wlc-search-value {
    flex: 1;
    border: none;
    border-radius: 0;
    height: 36px;
    background: #ffffff;
    padding: 0 12px;
    margin: 0;
}

.wlc-search-field .wlc-search-type:focus,
.wlc-search-field .wlc-search-value:focus {
    outline: none;
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.wlc-search-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.wlc-search-field {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.wlc-search-label {
    font-size: 13px;
    font-weight: 500;
    color: #1d2129;
    min-width: 80px;
}

.wlc-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;
}

.wlc-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;
}

/* 多选下拉框样式 */
.wlc-search-select[multiple] {
    height: auto;
    min-height: 36px;
    max-height: 120px;
    overflow-y: auto;
    padding: 4px;
}

.wlc-search-select[multiple] option {
    padding: 6px 8px;
    border-radius: 2px;
    margin: 2px 0;
    cursor: pointer;
}

.wlc-search-select[multiple] option:checked {
    background: linear-gradient(#1890ff, #1890ff);
    color: #fff;
    font-weight: 500;
}

.wlc-search-select[multiple] option:hover {
    background-color: #f0f5ff;
}

.wlc-search-input[type="date"] {
    padding: 0 8px;
    min-width: 120px;
}

.wlc-search-input:focus,
.wlc-search-select:focus {
    outline: none;
    border-color: #0052d9;
    box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.1);
}

.wlc-search-input:hover,
.wlc-search-select:hover {
    border-color: #c9cdd4;
}

/* 列表区域样式 */
.wlc-list {
    height: calc(100vh - 300px);
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.wlc-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.wlc-title {
    font-size: 16px;
    font-weight: 500;
    color: #303133;
}

.wlc-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.wlc-btn {
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f5f5f5;
    color: #4e5969;
    border: 1px solid #d9d9d9;
}

.wlc-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.wlc-btn:hover {
    background-color: #e6e6e6;
}

/* 主按钮样式 */
.wlc-btn-primary {
    background-color: #1890ff;
    color: white;
    border: 1px solid #1890ff;
}

.wlc-btn-primary:hover {
    background-color: #40a9ff;
    border-color: #40a9ff;
}

/* 表格样式 */
.wlc-table-container {
    flex: 1;
    overflow-y: auto;
    overflow-x: auto;
    min-height: 0;
}

.wlc-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
    min-width: 600px;
}

/* 序号列样式 */
.wlc-table th:nth-child(1),
.wlc-table td:nth-child(1) {
    width: 60px;
    text-align: center;
}

/* 物流名称列 */
.wlc-table th:nth-child(2),
.wlc-table td:nth-child(2) {
    width: 120px;
    max-width: 150px;
}

/* 物流状态列 */
.wlc-table th:nth-child(3),
.wlc-table td:nth-child(3) {
    width: 80px;
    text-align: center;
}

/* 承运类型列 */
.wlc-table th:nth-child(4),
.wlc-table td:nth-child(4) {
    width: 100px;
    text-align: center;
}

/* 覆盖区域列 */
.wlc-table th:nth-child(5),
.wlc-table td:nth-child(5) {
    width: 80px;
    text-align: center;
}

/* 重量限制列 */
.wlc-table th:nth-child(6),
.wlc-table td:nth-child(6) {
    width: 80px;
    text-align: center;
}

/* 计泡系数列 */
.wlc-table th:nth-child(7),
.wlc-table td:nth-child(7) {
    width: 80px;
    text-align: center;
}

/* 物流优选列 */
.wlc-table th:nth-child(8),
.wlc-table td:nth-child(8) {
    width: 80px;
    text-align: center;
}

/* 面单模板列 */
.wlc-table th:nth-child(9),
.wlc-table td:nth-child(9) {
    width: 120px;
    text-align: center;
}

/* 创建人员列 */
.wlc-table th:nth-child(10),
.wlc-table td:nth-child(10) {
    width: 80px;
    text-align: center;
}

/* 创建时间列 */
.wlc-table th:nth-child(11),
.wlc-table td:nth-child(11) {
    width: 150px;
}

/* 操作列样式 */
.wlc-table th:nth-child(12),
.wlc-table td:nth-child(12) {
    width: 200px;
    min-width: 200px;
    text-align: center;
    white-space: nowrap;
}

/* 操作按钮容器 */
.wlc-action-btns {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

/* 操作按钮样式 */
.wlc-action-btn {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid #d9d9d9;
    background-color: #fff;
    color: #595959;
}

.wlc-action-btn:hover {
    border-color: #1890ff;
    color: #1890ff;
}

/* 停用按钮样式（当前为启用状态时显示停用） */
.wlc-action-toggle {
    background-color: #fff;
    border-color: #52c41a;
    color: #52c41a;
}

.wlc-action-toggle:hover {
    background-color: #f6ffed;
    border-color: #52c41a;
    color: #52c41a;
}

/* 启用按钮样式（当前为禁用状态时显示启用） */
.wlc-action-toggle[data-status="禁用"] {
    border-color: #1890ff;
    color: #1890ff;
}

.wlc-action-toggle[data-status="禁用"]:hover {
    background-color: #e6f7ff;
}

/* 编辑按钮样式 */
.wlc-action-edit {
    border-color: #fa8c16;
    color: #fa8c16;
}

.wlc-action-edit:hover {
    background-color: #fff7e6;
    border-color: #fa8c16;
    color: #fa8c16;
}

/* 删除按钮样式 */
.wlc-action-delete {
    border-color: #ff4d4f;
    color: #ff4d4f;
}

.wlc-action-delete:hover {
    background-color: #fff1f0;
    border-color: #ff4d4f;
    color: #ff4d4f;
}

/* 日志按钮样式 */
.wlc-action-log {
    border-color: #722ed1;
    color: #722ed1;
}

.wlc-action-log:hover {
    background-color: #f9f0ff;
    border-color: #722ed1;
    color: #722ed1;
}

.wlc-table th,
.wlc-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #ebeef5;
    text-align: left;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.wlc-table th {
    background-color: #f5f7fa;
    font-weight: 500;
    color: #303133;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid #ebeef5;
}

.wlc-table tbody tr {
    cursor: pointer;
}

.wlc-table tbody tr:hover {
    background-color: #f5f7fa;
}

/* 主行样式 */
.wlc-table tbody tr {
    cursor: default;
}

/* 确保表格内容正确显示 */
.wlc-table td {
    vertical-align: middle;
}

/* 状态标签样式 */
.wlc-status-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
}

.wlc-status-pending {
    background-color: #ecf5ff;
    color: #409eff;
    border: 1px solid #d9ecff;
}

.wlc-status-processing {
    background-color: #fdf6ec;
    color: #e6a23c;
    border: 1px solid #f5dab1;
}

.wlc-status-completed {
    background-color: #f0f2f5;
    color: #909399;
    border: 1px solid #dcdfe6;
}

.wlc-status-cancelled {
    background-color: #fef0f0;
    color: #f56c6c;
    border: 1px solid #fde2e2;
}

.wlc-status-working {
    background-color: #f9f0ff;
    color: #722ed1;
    border: 1px solid #d3adf7;
}

.wlc-status-exception {
    background-color: #ff0000;
    color: #ffffff;
    border: 1px solid #ff0000;
}

/* 分页样式 */
.wlc-pagination {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.wlc-pagination-info {
    font-size: 14px;
    color: #4b5563;
}

.wlc-pagination-controls {
    display: flex;
    gap: 8px;
}

.wlc-pagination-btn {
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: white;
    color: #374151;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wlc-pagination-btn:hover:not(:disabled) {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.wlc-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wlc-page-size {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #4b5563;
}

.wlc-page-size-select {
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: white;
    font-size: 13px;
}

/* 无数据提示样式 */
.wlc-no-data {
    text-align: center;
    color: #86909c;
    padding: 20px;
}

/* 弹窗样式 */
.wlc-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.wlc-modal-container {
    background: white;
    border-radius: 8px;
    width: 500px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wlc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e6eb;
}

.wlc-modal-title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #1d2129;
}

.wlc-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #86909c;
    transition: all 0.2s;
}

.wlc-modal-close:hover {
    background: #f2f3f5;
    color: #1d2129;
}

.wlc-modal-close svg {
    width: 20px;
    height: 20px;
}

.wlc-modal-body {
    padding: 20px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.wlc-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #e5e6eb;
}

/* 表单样式 */
.wlc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wlc-form-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wlc-form-label {
    font-size: 14px;
    color: #4e5969;
    font-weight: 500;
}

.wlc-required {
    color: #f56c6c;
}

.wlc-form-input,
.wlc-form-select {
    height: 36px;
    padding: 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    background: white;
}

.wlc-form-input:focus,
.wlc-form-select:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

.wlc-form-input:disabled,
.wlc-form-select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    color: #999;
}

.wlc-form-input::placeholder {
    color: #c0c4cc;
}

/* 带后缀的输入框样式 */
.wlc-input-with-suffix {
    display: flex;
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.2s;
}

.wlc-input-with-suffix:focus-within {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

.wlc-input-suffix {
    background: #f5f5f5;
    color: #666;
    padding: 0 12px;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    border-left: 1px solid #d9d9d9;
    white-space: nowrap;
}

.wlc-input-with-suffix .wlc-form-input {
    flex: 1;
    border: none;
    border-radius: 0;
    height: 36px;
}

.wlc-input-with-suffix .wlc-form-input:focus {
    box-shadow: none;
}

/* 覆盖区域输入框样式 */
.wlc-region-input-wrapper {
    display: flex;
}

.wlc-region-input-wrapper .wlc-form-input {
    flex: 1;
    cursor: pointer;
    background: #fafafa;
}

.wlc-text-muted {
    font-size: 12px;
    color: #999;
    font-weight: normal;
}

/* 省市选择弹窗样式 */
.wlc-region-modal-body {
    padding: 0;
    max-height: 60vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.wlc-region-modal-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f5f5f5;
    border-bottom: 1px solid #e8e8e8;
}

.wlc-region-modal-stats {
    font-size: 13px;
    color: #666;
}

.wlc-region-modal-actions {
    display: flex;
    gap: 8px;
}

.wlc-region-modal-btn {
    padding: 4px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.wlc-region-modal-btn:hover {
    border-color: #1890ff;
    color: #1890ff;
}

.wlc-region-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
}

.wlc-region-province-item {
    margin-bottom: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.wlc-region-province-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #fafafa;
    cursor: pointer;
    transition: background 0.2s;
}

.wlc-region-province-header:hover {
    background: #f0f0f0;
}

.wlc-region-province-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.wlc-region-expand-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.wlc-region-expand-icon.expanded {
    transform: rotate(90deg);
}

.wlc-region-city-list {
    display: none;
    padding: 10px 12px 10px 40px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
}

.wlc-region-city-list.expanded {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.wlc-region-city-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
}

.wlc-region-city-item:hover {
    background: #f5f5f5;
}

.wlc-region-city-item input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
}

/* 省份checkbox半选状态样式 */
.wlc-province-checkbox.wlc-indeterminate {
    position: relative;
}

.wlc-province-checkbox.wlc-indeterminate::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #1890ff;
    border-radius: 1px;
}

.wlc-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.wlc-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* 表单分组样式 */
.wlc-form-section {
    border: 1px solid #e5e6eb;
    border-radius: 6px;
    padding: 16px;
    background: #fafbfc;
    margin-top: 8px;
}

.wlc-form-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e6eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wlc-form-section .wlc-form-item {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wlc-form-section .wlc-form-item:last-child {
    margin-bottom: 0;
}

.wlc-form-section .wlc-form-input {
    width: 100%;
    box-sizing: border-box;
}

/* Tooltip 问号图标 */
.wlc-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #c9cdd4;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    cursor: default;
    position: relative;
}

.wlc-tooltip-icon:hover {
    background-color: #86909c;
}

/* Tooltip 提示框 */
.wlc-tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    white-space: normal;
    max-width: 220px;
    width: max-content;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    line-height: 1.5;
}

/* Tooltip 箭头 */
.wlc-tooltip-icon::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(2px);
    border-width: 4px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.75) transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

/* 悬停显示 Tooltip */
.wlc-tooltip-icon:hover::after,
.wlc-tooltip-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

/* 文本域样式 */
.wlc-form-section {
    border: 1px solid #e5e6eb;
    border-radius: 6px;
    padding: 16px;
    background: #fafbfc;
    margin-top: 8px;
}

.wlc-form-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d2129;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e6eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Tooltip 问号图标 */
.wlc-tooltip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #c9cdd4;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    cursor: default;
    position: relative;
}

.wlc-tooltip-icon:hover {
    background-color: #86909c;
}

/* Tooltip 提示框 */
.wlc-tooltip-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    padding: 8px 12px;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 12px;
    font-weight: normal;
    white-space: normal;
    max-width: 220px;
    width: max-content;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    line-height: 1.5;
}

/* Tooltip 箭头 */
.wlc-tooltip-icon::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(2px);
    border-width: 4px;
    border-style: solid;
    border-color: transparent rgba(0, 0, 0, 0.75) transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

/* 悬停显示 Tooltip */
.wlc-tooltip-icon:hover::after,
.wlc-tooltip-icon:hover::before {
    opacity: 1;
    visibility: visible;
}

.wlc-form-section .wlc-form-item {
    margin-bottom: 12px;
}

/* 开关组件样式 */
.wlc-switch-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wlc-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.wlc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.wlc-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #c9cdd4;
    transition: .3s;
    border-radius: 22px;
}

.wlc-switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.wlc-switch input:checked + .wlc-switch-slider {
    background-color: #0052d9;
}

.wlc-switch input:checked + .wlc-switch-slider:before {
    transform: translateX(22px);
}

.wlc-switch-label {
    font-size: 14px;
    color: #4e5969;
}

.wlc-form-section .wlc-form-item:last-child {
    margin-bottom: 0;
}

/* 文本域样式 */
.wlc-form-textarea {
    padding: 10px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    background: white;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

.wlc-form-textarea:focus {
    border-color: #1890ff;
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

.wlc-form-textarea::placeholder {
    color: #c0c4cc;
}

/* 字数统计 */
.wlc-char-count {
    text-align: right;
    font-size: 12px;
    color: #86909c;
    margin-top: 2px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .wlc-card {
        padding: 16px;
    }
    
    .wlc-table {
        font-size: 12px;
    }
    
    .wlc-table th,
    .wlc-table td {
        padding: 8px;
    }
    
    .wlc-modal-container {
        width: 95vw;
    }
}
